SAP RSTS_WRITE Function Module for Read from TemSe Object
RSTS_WRITE is a standard rsts write SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read from TemSe Object processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for rsts write FM, simply by entering the name RSTS_WRITE into the relevant SAP transaction such as SE37 or SE38.
Function Group: STMS
Program Name: SAPLSTMS
Main Program: SAPLSTMS
Appliation area: S
Release date: 10-Mar-1998
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RSTS_WRITE pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'RSTS_WRITE'"Read from TemSe Object.
EXPORTING
* BUFFLG = '*' "Maximum Storage Length per Line
* FBHANDLE = 0 "Handle for Open Object
* SHOWLG = ' ' "Every Line with Length Field
* ROWS = 0 "
* STARTROW = 1 "
TABLES
DATATAB = "Data Transfer
EXCEPTIONS
FB_CALL_HANDLE = 1 FB_ERROR = 2 FB_RSTS_NOCONV = 3 FB_RSTS_OTHER = 4
IMPORTING Parameters details for RSTS_WRITE
BUFFLG - Maximum Storage Length per Line
Data type:Default: '*'
Optional: Yes
Call by Reference: No ( called with pass by value option)
FBHANDLE - Handle for Open Object
Data type: RSTSTYPE-FBHANDLEOptional: Yes
Call by Reference: No ( called with pass by value option)
SHOWLG - Every Line with Length Field
Data type: RSTSTYPE-SHOWLGDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
ROWS -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
STARTROW -
Data type:Default: 1
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for RSTS_WRITE
DATATAB - Data Transfer
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
FB_CALL_HANDLE - Error with Handles at CALL Interface
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
FB_ERROR - Function Module Error
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
FB_RSTS_NOCONV - Required Conversion Not Possible
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
FB_RSTS_OTHER - Other Errors Reported by TemSe C System
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RSTS_WRITE Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_bufflg | TYPE STRING, " '*' | |||
| lt_datatab | TYPE STANDARD TABLE OF STRING, " | |||
| lv_fb_call_handle | TYPE STRING, " | |||
| lv_fbhandle | TYPE RSTSTYPE-FBHANDLE, " 0 | |||
| lv_fb_error | TYPE RSTSTYPE, " | |||
| lv_showlg | TYPE RSTSTYPE-SHOWLG, " ' ' | |||
| lv_fb_rsts_noconv | TYPE RSTSTYPE, " | |||
| lv_rows | TYPE RSTSTYPE, " 0 | |||
| lv_fb_rsts_other | TYPE RSTSTYPE, " | |||
| lv_startrow | TYPE RSTSTYPE. " 1 |
|   CALL FUNCTION 'RSTS_WRITE' "Read from TemSe Object |
| EXPORTING | ||
| BUFFLG | = lv_bufflg | |
| FBHANDLE | = lv_fbhandle | |
| SHOWLG | = lv_showlg | |
| ROWS | = lv_rows | |
| STARTROW | = lv_startrow | |
| TABLES | ||
| DATATAB | = lt_datatab | |
| EXCEPTIONS | ||
| FB_CALL_HANDLE = 1 | ||
| FB_ERROR = 2 | ||
| FB_RSTS_NOCONV = 3 | ||
| FB_RSTS_OTHER = 4 | ||
| . " RSTS_WRITE | ||
ABAP code using 7.40 inline data declarations to call FM RSTS_WRITE
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| DATA(ld_bufflg) | = '*'. | |||
| "SELECT single FBHANDLE FROM RSTSTYPE INTO @DATA(ld_fbhandle). | ||||
| "SELECT single SHOWLG FROM RSTSTYPE INTO @DATA(ld_showlg). | ||||
| DATA(ld_showlg) | = ' '. | |||
| DATA(ld_startrow) | = 1. | |||
Search for further information about these or an SAP related objects