SAP NORM_CONF_DISPLAY_LIST Function Module for Display List
NORM_CONF_DISPLAY_LIST is a standard norm conf display list SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Display List 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 norm conf display list FM, simply by entering the name NORM_CONF_DISPLAY_LIST into the relevant SAP transaction such as SE37 or SE38.
Function Group: SIC_NORM_WHERE_USED
Program Name: SAPLSIC_NORM_WHERE_USED
Main Program: SAPLSIC_NORM_WHERE_USED
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function NORM_CONF_DISPLAY_LIST 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 'NORM_CONF_DISPLAY_LIST'"Display List.
EXPORTING
IT_LIST = "
IV_STRUCTURE_NAME = "Table Name
* IT_FIELDCAT = "Field Catalog for SAP List Viewer Control
* IV_INFO = "
IV_TITLE = "
* IV_REFRESH_ALV = 'X' "Checkbox
IMPORTING Parameters details for NORM_CONF_DISPLAY_LIST
IT_LIST -
Data type: STANDARD TABLEOptional: No
Call by Reference: Yes
IV_STRUCTURE_NAME - Table Name
Data type: DD02L-TABNAMEOptional: No
Call by Reference: Yes
IT_FIELDCAT - Field Catalog for SAP List Viewer Control
Data type: LVC_T_FCATOptional: Yes
Call by Reference: Yes
IV_INFO -
Data type: STRINGOptional: Yes
Call by Reference: Yes
IV_TITLE -
Data type: STRINGOptional: No
Call by Reference: Yes
IV_REFRESH_ALV - Checkbox
Data type: XFELDDefault: 'X'
Optional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for NORM_CONF_DISPLAY_LIST 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_it_list | TYPE STANDARD TABLE, " | |||
| lv_iv_structure_name | TYPE DD02L-TABNAME, " | |||
| lv_it_fieldcat | TYPE LVC_T_FCAT, " | |||
| lv_iv_info | TYPE STRING, " | |||
| lv_iv_title | TYPE STRING, " | |||
| lv_iv_refresh_alv | TYPE XFELD. " 'X' |
|   CALL FUNCTION 'NORM_CONF_DISPLAY_LIST' "Display List |
| EXPORTING | ||
| IT_LIST | = lv_it_list | |
| IV_STRUCTURE_NAME | = lv_iv_structure_name | |
| IT_FIELDCAT | = lv_it_fieldcat | |
| IV_INFO | = lv_iv_info | |
| IV_TITLE | = lv_iv_title | |
| IV_REFRESH_ALV | = lv_iv_refresh_alv | |
| . " NORM_CONF_DISPLAY_LIST | ||
ABAP code using 7.40 inline data declarations to call FM NORM_CONF_DISPLAY_LIST
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 TABNAME FROM DD02L INTO @DATA(ld_iv_structure_name). | ||||
| DATA(ld_iv_refresh_alv) | = 'X'. | |||
Search for further information about these or an SAP related objects