SAP RS_SCRP_SET_DYNPROS Function Module for
RS_SCRP_SET_DYNPROS is a standard rs scrp set dynpros SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 rs scrp set dynpros FM, simply by entering the name RS_SCRP_SET_DYNPROS into the relevant SAP transaction such as SE37 or SE38.
Function Group: SCR3
Program Name: SAPLSCR3
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RS_SCRP_SET_DYNPROS 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 'RS_SCRP_SET_DYNPROS'".
EXPORTING
* I_NEWLENG = "Output Length
* I_KORRNUM = ' ' "
* F_SHOW_PROGRESS = '' "
* F_RUN_IN_THE_DARK = ' ' "
TABLES
T_SCRPDYNP = "Result Structure for Screen Field Length Checks
* T_PROGDYNP = "
EXCEPTIONS
NO_DATA_IN_T_SCRPDYNP = 1
IMPORTING Parameters details for RS_SCRP_SET_DYNPROS
I_NEWLENG - Output Length
Data type: OUTPUTLENOptional: Yes
Call by Reference: No ( called with pass by value option)
I_KORRNUM -
Data type: KORRNUMDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
F_SHOW_PROGRESS -
Data type: CHAR01Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)
F_RUN_IN_THE_DARK -
Data type: CHAR01Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for RS_SCRP_SET_DYNPROS
T_SCRPDYNP - Result Structure for Screen Field Length Checks
Data type: SCRPDYNPOptional: No
Call by Reference: Yes
T_PROGDYNP -
Data type: SCRPDYNPOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
NO_DATA_IN_T_SCRPDYNP -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for RS_SCRP_SET_DYNPROS 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_i_newleng | TYPE OUTPUTLEN, " | |||
| lt_t_scrpdynp | TYPE STANDARD TABLE OF SCRPDYNP, " | |||
| lv_no_data_in_t_scrpdynp | TYPE SCRPDYNP, " | |||
| lv_i_korrnum | TYPE KORRNUM, " ' ' | |||
| lt_t_progdynp | TYPE STANDARD TABLE OF SCRPDYNP, " | |||
| lv_f_show_progress | TYPE CHAR01, " '' | |||
| lv_f_run_in_the_dark | TYPE CHAR01. " ' ' |
|   CALL FUNCTION 'RS_SCRP_SET_DYNPROS' " |
| EXPORTING | ||
| I_NEWLENG | = lv_i_newleng | |
| I_KORRNUM | = lv_i_korrnum | |
| F_SHOW_PROGRESS | = lv_f_show_progress | |
| F_RUN_IN_THE_DARK | = lv_f_run_in_the_dark | |
| TABLES | ||
| T_SCRPDYNP | = lt_t_scrpdynp | |
| T_PROGDYNP | = lt_t_progdynp | |
| EXCEPTIONS | ||
| NO_DATA_IN_T_SCRPDYNP = 1 | ||
| . " RS_SCRP_SET_DYNPROS | ||
ABAP code using 7.40 inline data declarations to call FM RS_SCRP_SET_DYNPROS
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_i_korrnum) | = ' '. | |||
| DATA(ld_f_show_progress) | = ''. | |||
| DATA(ld_f_run_in_the_dark) | = ' '. | |||
Search for further information about these or an SAP related objects