SAP COIS_DISP_LAYOUT_APPLY Function Module for NOTRANSL: get and apply ALV layout
COIS_DISP_LAYOUT_APPLY is a standard cois disp layout apply SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: get and apply ALV layout 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 cois disp layout apply FM, simply by entering the name COIS_DISP_LAYOUT_APPLY into the relevant SAP transaction such as SE37 or SE38.
Function Group: COISDISP
Program Name: SAPLCOISDISP
Main Program: SAPLCOISDISP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function COIS_DISP_LAYOUT_APPLY 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 'COIS_DISP_LAYOUT_APPLY'"NOTRANSL: get and apply ALV layout.
EXPORTING
* IT_FIELDCAT_ALV = "Field Catalog for SAP List Viewer Control
IMPORTING
ET_SORT = "ALV Control: Table of Sort Criteria
ET_FILTER = "ALV Control: Table of Filter Conditions
CHANGING
CS_VARIANT = "Layout (External Use)
TABLES
IT_DATA = "
* IT_FIELDCAT_SHOW = "Structure for Key Figures Chosen in Standard Selection
* IT_FIELDCAT_ALL = "Structure for Key Figures Chosen in Standard Selection
IMPORTING Parameters details for COIS_DISP_LAYOUT_APPLY
IT_FIELDCAT_ALV - Field Catalog for SAP List Viewer Control
Data type: LVC_T_FCATOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for COIS_DISP_LAYOUT_APPLY
ET_SORT - ALV Control: Table of Sort Criteria
Data type: LVC_T_SORTOptional: No
Call by Reference: Yes
ET_FILTER - ALV Control: Table of Filter Conditions
Data type: LVC_T_FILTOptional: No
Call by Reference: Yes
CHANGING Parameters details for COIS_DISP_LAYOUT_APPLY
CS_VARIANT - Layout (External Use)
Data type: DISVARIANTOptional: No
Call by Reference: Yes
TABLES Parameters details for COIS_DISP_LAYOUT_APPLY
IT_DATA -
Data type:Optional: No
Call by Reference: Yes
IT_FIELDCAT_SHOW - Structure for Key Figures Chosen in Standard Selection
Data type: MCS03Optional: Yes
Call by Reference: Yes
IT_FIELDCAT_ALL - Structure for Key Figures Chosen in Standard Selection
Data type: MCS03Optional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for COIS_DISP_LAYOUT_APPLY 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_et_sort | TYPE LVC_T_SORT, " | |||
| lt_it_data | TYPE STANDARD TABLE OF LVC_T_SORT, " | |||
| lv_cs_variant | TYPE DISVARIANT, " | |||
| lv_it_fieldcat_alv | TYPE LVC_T_FCAT, " | |||
| lv_et_filter | TYPE LVC_T_FILT, " | |||
| lt_it_fieldcat_show | TYPE STANDARD TABLE OF MCS03, " | |||
| lt_it_fieldcat_all | TYPE STANDARD TABLE OF MCS03. " |
|   CALL FUNCTION 'COIS_DISP_LAYOUT_APPLY' "NOTRANSL: get and apply ALV layout |
| EXPORTING | ||
| IT_FIELDCAT_ALV | = lv_it_fieldcat_alv | |
| IMPORTING | ||
| ET_SORT | = lv_et_sort | |
| ET_FILTER | = lv_et_filter | |
| CHANGING | ||
| CS_VARIANT | = lv_cs_variant | |
| TABLES | ||
| IT_DATA | = lt_it_data | |
| IT_FIELDCAT_SHOW | = lt_it_fieldcat_show | |
| IT_FIELDCAT_ALL | = lt_it_fieldcat_all | |
| . " COIS_DISP_LAYOUT_APPLY | ||
ABAP code using 7.40 inline data declarations to call FM COIS_DISP_LAYOUT_APPLY
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