SAP EECIC_FRWLAYOUT_PBO Function Module for PBO of Hidden Components
EECIC_FRWLAYOUT_PBO is a standard eecic frwlayout pbo SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for PBO of Hidden Components 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 eecic frwlayout pbo FM, simply by entering the name EECIC_FRWLAYOUT_PBO into the relevant SAP transaction such as SE37 or SE38.
Function Group: EECIC_FRWLAYOUT
Program Name: SAPLEECIC_FRWLAYOUT
Main Program: SAPLEECIC_FRWLAYOUT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EECIC_FRWLAYOUT_PBO 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 'EECIC_FRWLAYOUT_PBO'"PBO of Hidden Components.
EXPORTING
X_HANDLE = "
* X_PF_PROG = "Program/transaction in SQL trace analysis
* X_PF_EXCL = "
* X_SET_MODE = ABAP_FALSE "General Indicator
* X_TIT = "Menu Painter: Title code
* X_TIT_PROG = "Program/transaction in SQL trace analysis
* X_TIT_V1 = "
* X_TIT_V2 = "
* X_TIT_V3 = "
* X_TIT_V4 = "
* X_PF_STAT = "Menu Painter: Status code
IMPORTING Parameters details for EECIC_FRWLAYOUT_PBO
X_HANDLE -
Data type: CIC0_HANDLEOptional: No
Call by Reference: Yes
X_PF_PROG - Program/transaction in SQL trace analysis
Data type: PROGRAMOptional: Yes
Call by Reference: Yes
X_PF_EXCL -
Data type: TABLEOptional: Yes
Call by Reference: Yes
X_SET_MODE - General Indicator
Data type: FLAGDefault: ABAP_FALSE
Optional: Yes
Call by Reference: Yes
X_TIT - Menu Painter: Title code
Data type: GUI_TITLEOptional: Yes
Call by Reference: Yes
X_TIT_PROG - Program/transaction in SQL trace analysis
Data type: PROGRAMOptional: Yes
Call by Reference: Yes
X_TIT_V1 -
Data type: COptional: Yes
Call by Reference: Yes
X_TIT_V2 -
Data type: COptional: Yes
Call by Reference: Yes
X_TIT_V3 -
Data type: COptional: Yes
Call by Reference: Yes
X_TIT_V4 -
Data type: COptional: Yes
Call by Reference: Yes
X_PF_STAT - Menu Painter: Status code
Data type: GUI_STATUSOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for EECIC_FRWLAYOUT_PBO 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_x_handle | TYPE CIC0_HANDLE, " | |||
| lv_x_pf_prog | TYPE PROGRAM, " | |||
| lv_x_pf_excl | TYPE TABLE, " | |||
| lv_x_set_mode | TYPE FLAG, " ABAP_FALSE | |||
| lv_x_tit | TYPE GUI_TITLE, " | |||
| lv_x_tit_prog | TYPE PROGRAM, " | |||
| lv_x_tit_v1 | TYPE C, " | |||
| lv_x_tit_v2 | TYPE C, " | |||
| lv_x_tit_v3 | TYPE C, " | |||
| lv_x_tit_v4 | TYPE C, " | |||
| lv_x_pf_stat | TYPE GUI_STATUS. " |
|   CALL FUNCTION 'EECIC_FRWLAYOUT_PBO' "PBO of Hidden Components |
| EXPORTING | ||
| X_HANDLE | = lv_x_handle | |
| X_PF_PROG | = lv_x_pf_prog | |
| X_PF_EXCL | = lv_x_pf_excl | |
| X_SET_MODE | = lv_x_set_mode | |
| X_TIT | = lv_x_tit | |
| X_TIT_PROG | = lv_x_tit_prog | |
| X_TIT_V1 | = lv_x_tit_v1 | |
| X_TIT_V2 | = lv_x_tit_v2 | |
| X_TIT_V3 | = lv_x_tit_v3 | |
| X_TIT_V4 | = lv_x_tit_v4 | |
| X_PF_STAT | = lv_x_pf_stat | |
| . " EECIC_FRWLAYOUT_PBO | ||
ABAP code using 7.40 inline data declarations to call FM EECIC_FRWLAYOUT_PBO
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.| DATA(ld_x_set_mode) | = ABAP_FALSE. | |||
Search for further information about these or an SAP related objects