RSPO_TEST_UPDATE_TASK_OTF is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name RSPO_TEST_UPDATE_TASK_OTF into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
SPOO
Released Date:
Not Released
Processing type: Start update immediately (start immed)
CALL FUNCTION 'RSPO_TEST_UPDATE_TASK_OTF' "
EXPORTING
form = " thead-tdform
formlang = " thead-tdspras
textname = " thead-tdname
textlang = " thead-tdspras
no_close = " sy-langu
counter = " sy-index
destination = " tsp03-padest
immed = " itcpo-tdimmed
* delete = " itcpo-tddelete
. " RSPO_TEST_UPDATE_TASK_OTF
The ABAP code below is a full code listing to execute function module RSPO_TEST_UPDATE_TASK_OTF including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
DATA(ld_form) = some text here
DATA(ld_formlang) = Check type of data required
DATA(ld_textname) = some text here
DATA(ld_textlang) = Check type of data required
DATA(ld_no_close) = 'Check type of data required'.
DATA(ld_counter) = '123 '.
SELECT single PADEST
FROM TSP03
INTO @DATA(ld_destination).
DATA(ld_immed) = some text here
DATA(ld_delete) = some text here . CALL FUNCTION 'RSPO_TEST_UPDATE_TASK_OTF' EXPORTING form = ld_form formlang = ld_formlang textname = ld_textname textlang = ld_textlang no_close = ld_no_close counter = ld_counter destination = ld_destination immed = ld_immed * delete = ld_delete . " RSPO_TEST_UPDATE_TASK_OTF
IF SY-SUBRC EQ 0. "All OK ENDIF.
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_form | TYPE THEAD-TDFORM , |
| ld_formlang | TYPE THEAD-TDSPRAS , |
| ld_textname | TYPE THEAD-TDNAME , |
| ld_textlang | TYPE THEAD-TDSPRAS , |
| ld_no_close | TYPE SY-LANGU , |
| ld_counter | TYPE SY-INDEX , |
| ld_destination | TYPE TSP03-PADEST , |
| ld_immed | TYPE ITCPO-TDIMMED , |
| ld_delete | TYPE ITCPO-TDDELETE . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name RSPO_TEST_UPDATE_TASK_OTF or its description.