SAP DEFINE_AND_SHOW_LIST_EA_07 Function Module for ALM: Filling of List Display for Single Value Analysis, Position Eval.
DEFINE_AND_SHOW_LIST_EA_07 is a standard define and show list ea 07 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for ALM: Filling of List Display for Single Value Analysis, Position Eval. 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 define and show list ea 07 FM, simply by entering the name DEFINE_AND_SHOW_LIST_EA_07 into the relevant SAP transaction such as SE37 or SE38.
Function Group: RMG3_D
Program Name: SAPLRMG3_D
Main Program: SAPLRMG3_D
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DEFINE_AND_SHOW_LIST_EA_07 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 'DEFINE_AND_SHOW_LIST_EA_07'"ALM: Filling of List Display for Single Value Analysis, Position Eval..
EXPORTING
I_JBRGAPPARAMETER = "Gap Eval. Parameters
I_CONTROLS = "Control Parameters for List Display
SETTINGS = "Control Parameters for Data that is to be displayed
I_DATE = "Evaluation Date
TABLES
IT_FIELDS = "Display Fields for Control of List Tool
IT_JBRFOB = "Financial objects that were selected
IT_JBROBJGAP = "Gap Results at Object Number Level
IT_JBROBJAMORT = "P+L Results at Object Number Level
IT_JBRSZTAB = "Table of Scenarios and Scenario Progressions
IT_DISP_RMFOS_DIM = "
IMPORTING Parameters details for DEFINE_AND_SHOW_LIST_EA_07
I_JBRGAPPARAMETER - Gap Eval. Parameters
Data type: JBRGAPPARAMETEROptional: No
Call by Reference: Yes
I_CONTROLS - Control Parameters for List Display
Data type: ALM99_CONTROLS_TYPOptional: No
Call by Reference: Yes
SETTINGS - Control Parameters for Data that is to be displayed
Data type: ALM99_SETTINGS_TYPOptional: No
Call by Reference: Yes
I_DATE - Evaluation Date
Data type: SY-DATUMOptional: No
Call by Reference: Yes
TABLES Parameters details for DEFINE_AND_SHOW_LIST_EA_07
IT_FIELDS - Display Fields for Control of List Tool
Data type: ALM99_FIELD_TABOptional: No
Call by Reference: No ( called with pass by value option)
IT_JBRFOB - Financial objects that were selected
Data type: JBRFOBOptional: No
Call by Reference: No ( called with pass by value option)
IT_JBROBJGAP - Gap Results at Object Number Level
Data type: JBROBJGAPOptional: No
Call by Reference: No ( called with pass by value option)
IT_JBROBJAMORT - P+L Results at Object Number Level
Data type: JBROBJAMORTOptional: No
Call by Reference: No ( called with pass by value option)
IT_JBRSZTAB - Table of Scenarios and Scenario Progressions
Data type: JBRSZTABOptional: No
Call by Reference: No ( called with pass by value option)
IT_DISP_RMFOS_DIM -
Data type: RMFOS_DIM_TOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for DEFINE_AND_SHOW_LIST_EA_07 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_it_fields | TYPE STANDARD TABLE OF ALM99_FIELD_TAB, " | |||
| lv_i_jbrgapparameter | TYPE JBRGAPPARAMETER, " | |||
| lt_it_jbrfob | TYPE STANDARD TABLE OF JBRFOB, " | |||
| lv_i_controls | TYPE ALM99_CONTROLS_TYP, " | |||
| lv_settings | TYPE ALM99_SETTINGS_TYP, " | |||
| lt_it_jbrobjgap | TYPE STANDARD TABLE OF JBROBJGAP, " | |||
| lv_i_date | TYPE SY-DATUM, " | |||
| lt_it_jbrobjamort | TYPE STANDARD TABLE OF JBROBJAMORT, " | |||
| lt_it_jbrsztab | TYPE STANDARD TABLE OF JBRSZTAB, " | |||
| lt_it_disp_rmfos_dim | TYPE STANDARD TABLE OF RMFOS_DIM_T. " |
|   CALL FUNCTION 'DEFINE_AND_SHOW_LIST_EA_07' "ALM: Filling of List Display for Single Value Analysis, Position Eval. |
| EXPORTING | ||
| I_JBRGAPPARAMETER | = lv_i_jbrgapparameter | |
| I_CONTROLS | = lv_i_controls | |
| SETTINGS | = lv_settings | |
| I_DATE | = lv_i_date | |
| TABLES | ||
| IT_FIELDS | = lt_it_fields | |
| IT_JBRFOB | = lt_it_jbrfob | |
| IT_JBROBJGAP | = lt_it_jbrobjgap | |
| IT_JBROBJAMORT | = lt_it_jbrobjamort | |
| IT_JBRSZTAB | = lt_it_jbrsztab | |
| IT_DISP_RMFOS_DIM | = lt_it_disp_rmfos_dim | |
| . " DEFINE_AND_SHOW_LIST_EA_07 | ||
ABAP code using 7.40 inline data declarations to call FM DEFINE_AND_SHOW_LIST_EA_07
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 DATUM FROM SY INTO @DATA(ld_i_date). | ||||
Search for further information about these or an SAP related objects