SAP SREP_GEN_FMODULE_DECODE Function Module for SAP Query Function Module -> Info Set Query
SREP_GEN_FMODULE_DECODE is a standard srep gen fmodule decode SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for SAP Query Function Module -> Info Set Query 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 srep gen fmodule decode FM, simply by entering the name SREP_GEN_FMODULE_DECODE into the relevant SAP transaction such as SE37 or SE38.
Function Group: SREP_GEN
Program Name: SAPLSREP_GEN
Main Program: SAPLSREP_GEN
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SREP_GEN_FMODULE_DECODE 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 'SREP_GEN_FMODULE_DECODE'"SAP Query Function Module -> Info Set Query.
EXPORTING
I_FMODULE = "ABAP Program: Current Main Program
IMPORTING
E_USERGROUP = "SAP Query (S): Name of a user group
E_QUERY = "SAP Query (S): Query name
E_INFOSET = "SAP Query (S): InfoSet
E_TABLE = "SAP Query (S): Table name
TABLES
* T_AQDBSE = "SAP Query (S): DBSE Select-Options Query
* T_AQDBOP = "SAP Query (S): DBOP Query Fields
EXCEPTIONS
DOES_NOT_EXIST = 1 SYSTEM_CORRUPTED = 2
IMPORTING Parameters details for SREP_GEN_FMODULE_DECODE
I_FMODULE - ABAP Program: Current Main Program
Data type: SYREPIDOptional: No
Call by Reference: Yes
EXPORTING Parameters details for SREP_GEN_FMODULE_DECODE
E_USERGROUP - SAP Query (S): Name of a user group
Data type: AQS_BGNAMEOptional: No
Call by Reference: Yes
E_QUERY - SAP Query (S): Query name
Data type: AQS_QUNAMEOptional: No
Call by Reference: Yes
E_INFOSET - SAP Query (S): InfoSet
Data type: AQS_SGNAMEOptional: No
Call by Reference: Yes
E_TABLE - SAP Query (S): Table name
Data type: AQS_TNAMEOptional: No
Call by Reference: Yes
TABLES Parameters details for SREP_GEN_FMODULE_DECODE
T_AQDBSE - SAP Query (S): DBSE Select-Options Query
Data type: AQDBSEOptional: Yes
Call by Reference: Yes
T_AQDBOP - SAP Query (S): DBOP Query Fields
Data type: AQDBOPOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
DOES_NOT_EXIST -
Data type:Optional: No
Call by Reference: Yes
SYSTEM_CORRUPTED -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SREP_GEN_FMODULE_DECODE 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: | ||||
| lt_t_aqdbse | TYPE STANDARD TABLE OF AQDBSE, " | |||
| lv_i_fmodule | TYPE SYREPID, " | |||
| lv_e_usergroup | TYPE AQS_BGNAME, " | |||
| lv_does_not_exist | TYPE AQS_BGNAME, " | |||
| lv_e_query | TYPE AQS_QUNAME, " | |||
| lt_t_aqdbop | TYPE STANDARD TABLE OF AQDBOP, " | |||
| lv_system_corrupted | TYPE AQDBOP, " | |||
| lv_e_infoset | TYPE AQS_SGNAME, " | |||
| lv_e_table | TYPE AQS_TNAME. " |
|   CALL FUNCTION 'SREP_GEN_FMODULE_DECODE' "SAP Query Function Module -> Info Set Query |
| EXPORTING | ||
| I_FMODULE | = lv_i_fmodule | |
| IMPORTING | ||
| E_USERGROUP | = lv_e_usergroup | |
| E_QUERY | = lv_e_query | |
| E_INFOSET | = lv_e_infoset | |
| E_TABLE | = lv_e_table | |
| TABLES | ||
| T_AQDBSE | = lt_t_aqdbse | |
| T_AQDBOP | = lt_t_aqdbop | |
| EXCEPTIONS | ||
| DOES_NOT_EXIST = 1 | ||
| SYSTEM_CORRUPTED = 2 | ||
| . " SREP_GEN_FMODULE_DECODE | ||
ABAP code using 7.40 inline data declarations to call FM SREP_GEN_FMODULE_DECODE
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.Search for further information about these or an SAP related objects