SAP REXC_GUI_AJPROC_CH01_PBO Function Module for
REXC_GUI_AJPROC_CH01_PBO is a standard rexc gui ajproc ch01 pbo SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 rexc gui ajproc ch01 pbo FM, simply by entering the name REXC_GUI_AJPROC_CH01_PBO into the relevant SAP transaction such as SE37 or SE38.
Function Group: REXC_GUI_AJPROCESS_CH01
Program Name: SAPLREXC_GUI_AJPROCESS_CH01
Main Program: SAPLREXC_GUI_AJPROCESS_CH01
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function REXC_GUI_AJPROC_CH01_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 'REXC_GUI_AJPROC_CH01_PBO'".
EXPORTING
* ID_ACTIVITY = RECA1_ACTIVITY-CREATE "Activity
* ID_ADJMMETH = "Adjustment Method
* IT_RANGE = "Ranges for Saving Selection Screen Values
* IS_NAVIGATION = "For Field Navigation During Process
* IF_INCLEMPTY = ABAP_TRUE "
IMPORTING
ES_SUBSCREEN = "Screen
ET_RANGE = "Ranges for Saving Selection Screen Values
EF_FOUND = "General Yes/No Field
IMPORTING Parameters details for REXC_GUI_AJPROC_CH01_PBO
ID_ACTIVITY - Activity
Data type: RECAACTIVITYDefault: RECA1_ACTIVITY-CREATE
Optional: No
Call by Reference: No ( called with pass by value option)
ID_ADJMMETH - Adjustment Method
Data type: REAJADJMMETHOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_RANGE - Ranges for Saving Selection Screen Values
Data type: RE_T_RANGEOptional: Yes
Call by Reference: Yes
IS_NAVIGATION - For Field Navigation During Process
Data type: REAJ_NAVIGATIONOptional: Yes
Call by Reference: No ( called with pass by value option)
IF_INCLEMPTY -
Data type: ABAP_BOOLDefault: ABAP_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for REXC_GUI_AJPROC_CH01_PBO
ES_SUBSCREEN - Screen
Data type: RECASCREENOptional: No
Call by Reference: Yes
ET_RANGE - Ranges for Saving Selection Screen Values
Data type: RE_T_RANGEOptional: No
Call by Reference: Yes
EF_FOUND - General Yes/No Field
Data type: RECABOOLOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for REXC_GUI_AJPROC_CH01_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_id_activity | TYPE RECAACTIVITY, " RECA1_ACTIVITY-CREATE | |||
| lv_es_subscreen | TYPE RECASCREEN, " | |||
| lv_et_range | TYPE RE_T_RANGE, " | |||
| lv_id_adjmmeth | TYPE REAJADJMMETH, " | |||
| lv_ef_found | TYPE RECABOOL, " | |||
| lv_it_range | TYPE RE_T_RANGE, " | |||
| lv_is_navigation | TYPE REAJ_NAVIGATION, " | |||
| lv_if_inclempty | TYPE ABAP_BOOL. " ABAP_TRUE |
|   CALL FUNCTION 'REXC_GUI_AJPROC_CH01_PBO' " |
| EXPORTING | ||
| ID_ACTIVITY | = lv_id_activity | |
| ID_ADJMMETH | = lv_id_adjmmeth | |
| IT_RANGE | = lv_it_range | |
| IS_NAVIGATION | = lv_is_navigation | |
| IF_INCLEMPTY | = lv_if_inclempty | |
| IMPORTING | ||
| ES_SUBSCREEN | = lv_es_subscreen | |
| ET_RANGE | = lv_et_range | |
| EF_FOUND | = lv_ef_found | |
| . " REXC_GUI_AJPROC_CH01_PBO | ||
ABAP code using 7.40 inline data declarations to call FM REXC_GUI_AJPROC_CH01_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_id_activity) | = RECA1_ACTIVITY-CREATE. | |||
| DATA(ld_if_inclempty) | = ABAP_TRUE. | |||
Search for further information about these or an SAP related objects