SAP RSS_PROGRAM_GENSTATUS_GET Function Module for
RSS_PROGRAM_GENSTATUS_GET is a standard rss program genstatus get 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 rss program genstatus get FM, simply by entering the name RSS_PROGRAM_GENSTATUS_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: RSSG
Program Name: SAPLRSSG
Main Program: SAPLRSSG
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RSS_PROGRAM_GENSTATUS_GET 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 'RSS_PROGRAM_GENSTATUS_GET'".
EXPORTING
I_UNI_IDC25 = "
* I_PROGRAM_CLASS = "Program Class
* I_CLIENT = "
* I_TIMESTAMP = "
* I_NO_RDIR_CHECK = RSSG_C_FALSE "
* I_BUFFERED = RSSG_C_FALSE "
IMPORTING
E_GENSTATUS = "Generation Status
E_TIMESTAMP = "
E_PROGRAM_NAME = "Program Name
E_CLSNAME = "Object Type Name
E_S_PDIR = "
E_T_PDIRSUB = "
EXCEPTIONS
INVALID_UNIQUE_ID = 1 INVALID_PROGRAM_CLASS = 2 TEMPLATE_NOT_FOUND = 3
IMPORTING Parameters details for RSS_PROGRAM_GENSTATUS_GET
I_UNI_IDC25 -
Data type: RSSG_UNI_IDC25Optional: No
Call by Reference: No ( called with pass by value option)
I_PROGRAM_CLASS - Program Class
Data type: RSSG_PROGCLASSOptional: Yes
Call by Reference: No ( called with pass by value option)
I_CLIENT -
Data type: SY-MANDTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_TIMESTAMP -
Data type: RSSG_GENTSTMPOptional: Yes
Call by Reference: Yes
I_NO_RDIR_CHECK -
Data type: RSSG_BOOLDefault: RSSG_C_FALSE
Optional: Yes
Call by Reference: Yes
I_BUFFERED -
Data type: RSSG_BOOLDefault: RSSG_C_FALSE
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for RSS_PROGRAM_GENSTATUS_GET
E_GENSTATUS - Generation Status
Data type: RSSG_GENSTATUSOptional: No
Call by Reference: No ( called with pass by value option)
E_TIMESTAMP -
Data type: RSSG_GENTSTMPOptional: No
Call by Reference: No ( called with pass by value option)
E_PROGRAM_NAME - Program Name
Data type: SY-REPIDOptional: No
Call by Reference: No ( called with pass by value option)
E_CLSNAME - Object Type Name
Data type: SEOCLSNAMEOptional: No
Call by Reference: Yes
E_S_PDIR -
Data type: RSSG_S_PDIROptional: No
Call by Reference: Yes
E_T_PDIRSUB -
Data type: RSSG_T_PDIRSUBOptional: No
Call by Reference: Yes
EXCEPTIONS details
INVALID_UNIQUE_ID -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INVALID_PROGRAM_CLASS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TEMPLATE_NOT_FOUND - Unable to Find Template
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RSS_PROGRAM_GENSTATUS_GET 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_e_genstatus | TYPE RSSG_GENSTATUS, " | |||
| lv_i_uni_idc25 | TYPE RSSG_UNI_IDC25, " | |||
| lv_invalid_unique_id | TYPE RSSG_UNI_IDC25, " | |||
| lv_e_timestamp | TYPE RSSG_GENTSTMP, " | |||
| lv_i_program_class | TYPE RSSG_PROGCLASS, " | |||
| lv_invalid_program_class | TYPE RSSG_PROGCLASS, " | |||
| lv_i_client | TYPE SY-MANDT, " | |||
| lv_e_program_name | TYPE SY-REPID, " | |||
| lv_template_not_found | TYPE SY, " | |||
| lv_e_clsname | TYPE SEOCLSNAME, " | |||
| lv_i_timestamp | TYPE RSSG_GENTSTMP, " | |||
| lv_e_s_pdir | TYPE RSSG_S_PDIR, " | |||
| lv_i_no_rdir_check | TYPE RSSG_BOOL, " RSSG_C_FALSE | |||
| lv_i_buffered | TYPE RSSG_BOOL, " RSSG_C_FALSE | |||
| lv_e_t_pdirsub | TYPE RSSG_T_PDIRSUB. " |
|   CALL FUNCTION 'RSS_PROGRAM_GENSTATUS_GET' " |
| EXPORTING | ||
| I_UNI_IDC25 | = lv_i_uni_idc25 | |
| I_PROGRAM_CLASS | = lv_i_program_class | |
| I_CLIENT | = lv_i_client | |
| I_TIMESTAMP | = lv_i_timestamp | |
| I_NO_RDIR_CHECK | = lv_i_no_rdir_check | |
| I_BUFFERED | = lv_i_buffered | |
| IMPORTING | ||
| E_GENSTATUS | = lv_e_genstatus | |
| E_TIMESTAMP | = lv_e_timestamp | |
| E_PROGRAM_NAME | = lv_e_program_name | |
| E_CLSNAME | = lv_e_clsname | |
| E_S_PDIR | = lv_e_s_pdir | |
| E_T_PDIRSUB | = lv_e_t_pdirsub | |
| EXCEPTIONS | ||
| INVALID_UNIQUE_ID = 1 | ||
| INVALID_PROGRAM_CLASS = 2 | ||
| TEMPLATE_NOT_FOUND = 3 | ||
| . " RSS_PROGRAM_GENSTATUS_GET | ||
ABAP code using 7.40 inline data declarations to call FM RSS_PROGRAM_GENSTATUS_GET
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.| "SELECT single MANDT FROM SY INTO @DATA(ld_i_client). | ||||
| "SELECT single REPID FROM SY INTO @DATA(ld_e_program_name). | ||||
| DATA(ld_i_no_rdir_check) | = RSSG_C_FALSE. | |||
| DATA(ld_i_buffered) | = RSSG_C_FALSE. | |||
Search for further information about these or an SAP related objects