SAP EXIT_SAPLJYCICEXITS_102 Function Module for IS-M/AM: CIC, Adjust Field Catalog and Layout of Order Overview
EXIT_SAPLJYCICEXITS_102 is a standard exit sapljycicexits 102 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M/AM: CIC, Adjust Field Catalog and Layout of Order Overview 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 exit sapljycicexits 102 FM, simply by entering the name EXIT_SAPLJYCICEXITS_102 into the relevant SAP transaction such as SE37 or SE38.
Function Group: XJYCIC
Program Name: SAPLXJYCIC
Main Program: SAPLXJYCIC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EXIT_SAPLJYCICEXITS_102 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 'EXIT_SAPLJYCICEXITS_102'"IS-M/AM: CIC, Adjust Field Catalog and Layout of Order Overview.
CHANGING
FIELDCATALOG = "Field Catalog for List Viewer Control
LAYOUT = "ALV Control: Layout Structure
Related Function Modules
Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.ISM_CICX_MAMORDER_ALVLAYOUT IS-M/AM: CIC, Adjust Field Catalog and Layout of Order Overview
ISM_CICX_MAMORDER_DATA_ADD IS-M/AM: CIC, Enrich Order Overview
ISM_CICX_MAMORDER_DOUBLE_CLICK IS-M/AM: CIC, Double Click Handling
ISM_CICX_MAMORDER_TOOLBAR_ACT IS-M/AM: CIC, Toolbar Command Handling
ISM_CICX_MAMORDER_TOOLBAR_EXT IS-M/AM: CIC, Toolbar Extension
ISM_CICX_MSDORDER_ACTIVITY_GET IS-M/SD: Determine Activity for OK Code
ISM_CICX_MSDORDER_ALVLAYOUT IS-M/SD: CIC, Adjust Field Catalog and Layout of Order Overview
ISM_CICX_MSDORDER_BUTTON_CLICK IS-M/SD: CIC, Button Click Handling
ISM_CICX_MSDORDER_CONTEXT_MENU IS-M/SD: CIC, Context Menu
ISM_CICX_MSDORDER_DATA_ADD IS-M/SD: CIC, Enrich Order Overview
ISM_CICX_MSDORDER_DOUBLE_CLICK IS-M/SD: CIC, Double Click Handling
ISM_CICX_MSDORDER_HOTSPOTCLICK IS-M/SD: CIC, Double Click Handling
ISM_CICX_MSDORDER_MENU_BUTTON IS-M/SD: CIC, Generate Menu for Toolbar Button
ISM_CICX_MSDORDER_TOOLBAR_ACT IS-M/SD: CIC, Toolbar Command Handling
ISM_CICX_MSDORDER_TOOLBAR_EXT IS-M/SD: CIC, Toolbar Extension
ISM_CICX_MSDORDER_TOOLBAR_OKC IS-M/SD: CIC, Toolbar Extension, OK Codes
ISM_CICX_SCRIPT_MODIF IS-M: CIC, Modify Script
ISM_CICX_SEARCH_CUSSUB_FILL IS-M: CIC, Transfer Identified BP to Subscreen
ISM_CICX_SEARCH_DOCTYPES Change Possible Document Types for Search
ISM_CICX_SEARCH_SEARCH IS-M: CIC, BP Search
CHANGING Parameters details for EXIT_SAPLJYCICEXITS_102
FIELDCATALOG - Field Catalog for List Viewer Control
Data type: LVC_T_FCATOptional: No
Call by Reference: Yes
LAYOUT - ALV Control: Layout Structure
Data type: LVC_S_LAYOOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for EXIT_SAPLJYCICEXITS_102 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_fieldcatalog | TYPE LVC_T_FCAT, " | |||
| lv_layout | TYPE LVC_S_LAYO. " |
|   CALL FUNCTION 'EXIT_SAPLJYCICEXITS_102' "IS-M/AM: CIC, Adjust Field Catalog and Layout of Order Overview |
| CHANGING | ||
| FIELDCATALOG | = lv_fieldcatalog | |
| LAYOUT | = lv_layout | |
| . " EXIT_SAPLJYCICEXITS_102 | ||
ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLJYCICEXITS_102
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