SAP SAMPLE_PROCESS_00101133 Function Module for Description of Process Interface 00101133
SAMPLE_PROCESS_00101133 is a standard sample process 00101133 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Description of Process Interface 00101133 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 sample process 00101133 FM, simply by entering the name SAMPLE_PROCESS_00101133 into the relevant SAP transaction such as SE37 or SE38.
Function Group: FMBWCORE
Program Name: SAPLFMBWCORE
Main Program: SAPLFMBWCORE
Appliation area: B
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SAMPLE_PROCESS_00101133 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 'SAMPLE_PROCESS_00101133'"Description of Process Interface 00101133.
EXPORTING
I_CHGTYPE = "Type of Change (I, U, M, D)
I_ORIGIN = "Data Source (Program Form Routine)
* I_DATA_COMPLETE = ' ' "Indicator: All Fields are filled
TABLES
* T_FMIOI = "Commitment line items
* T_FMIFIIT = "FI Lione Items (Document Items)
* T_FMIFIHD = "FI Line Items (Header Document)
* T_FMIA = "CO line items
* T_BPGE = "Totals Record Overall Budget
* T_BPJA = "Totals Record Annual Budget
* T_BPPE = "Totals Record Period Budget
* T_WHERE_FIELDS = "Interface to accessing report programs with LDB
EXCEPTIONS
ERROR = 1
IMPORTING Parameters details for SAMPLE_PROCESS_00101133
I_CHGTYPE - Type of Change (I, U, M, D)
Data type:Optional: No
Call by Reference: Yes
I_ORIGIN - Data Source (Program Form Routine)
Data type: RSDSWHERE-LINEOptional: No
Call by Reference: Yes
I_DATA_COMPLETE - Indicator: All Fields are filled
Data type: XFELDDefault: SPACE
Optional: Yes
Call by Reference: Yes
TABLES Parameters details for SAMPLE_PROCESS_00101133
T_FMIOI - Commitment line items
Data type: FMIOIOptional: Yes
Call by Reference: Yes
T_FMIFIIT - FI Lione Items (Document Items)
Data type: FMIFIITOptional: Yes
Call by Reference: Yes
T_FMIFIHD - FI Line Items (Header Document)
Data type: FMIFIHDOptional: Yes
Call by Reference: Yes
T_FMIA - CO line items
Data type: FMIAOptional: Yes
Call by Reference: Yes
T_BPGE - Totals Record Overall Budget
Data type: BPGEOptional: Yes
Call by Reference: Yes
T_BPJA - Totals Record Annual Budget
Data type: BPJAOptional: Yes
Call by Reference: Yes
T_BPPE - Totals Record Period Budget
Data type: BPPEOptional: Yes
Call by Reference: Yes
T_WHERE_FIELDS - Interface to accessing report programs with LDB
Data type: LDB_REPORT_CALLOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SAMPLE_PROCESS_00101133 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_error | TYPE STRING, " | |||
| lt_t_fmioi | TYPE STANDARD TABLE OF FMIOI, " | |||
| lv_i_chgtype | TYPE FMIOI, " | |||
| lv_i_origin | TYPE RSDSWHERE-LINE, " | |||
| lt_t_fmifiit | TYPE STANDARD TABLE OF FMIFIIT, " | |||
| lt_t_fmifihd | TYPE STANDARD TABLE OF FMIFIHD, " | |||
| lv_i_data_complete | TYPE XFELD, " SPACE | |||
| lt_t_fmia | TYPE STANDARD TABLE OF FMIA, " | |||
| lt_t_bpge | TYPE STANDARD TABLE OF BPGE, " | |||
| lt_t_bpja | TYPE STANDARD TABLE OF BPJA, " | |||
| lt_t_bppe | TYPE STANDARD TABLE OF BPPE, " | |||
| lt_t_where_fields | TYPE STANDARD TABLE OF LDB_REPORT_CALL. " |
|   CALL FUNCTION 'SAMPLE_PROCESS_00101133' "Description of Process Interface 00101133 |
| EXPORTING | ||
| I_CHGTYPE | = lv_i_chgtype | |
| I_ORIGIN | = lv_i_origin | |
| I_DATA_COMPLETE | = lv_i_data_complete | |
| TABLES | ||
| T_FMIOI | = lt_t_fmioi | |
| T_FMIFIIT | = lt_t_fmifiit | |
| T_FMIFIHD | = lt_t_fmifihd | |
| T_FMIA | = lt_t_fmia | |
| T_BPGE | = lt_t_bpge | |
| T_BPJA | = lt_t_bpja | |
| T_BPPE | = lt_t_bppe | |
| T_WHERE_FIELDS | = lt_t_where_fields | |
| EXCEPTIONS | ||
| ERROR = 1 | ||
| . " SAMPLE_PROCESS_00101133 | ||
ABAP code using 7.40 inline data declarations to call FM SAMPLE_PROCESS_00101133
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 LINE FROM RSDSWHERE INTO @DATA(ld_i_origin). | ||||
| DATA(ld_i_data_complete) | = ' '. | |||
Search for further information about these or an SAP related objects