SAP SAMPLE_PROCESS_00109020 Function Module for Description of Process-Interface 00109020
SAMPLE_PROCESS_00109020 is a standard sample process 00109020 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 00109020 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 00109020 FM, simply by entering the name SAMPLE_PROCESS_00109020 into the relevant SAP transaction such as SE37 or SE38.
Function Group: FMBT
Program Name: SAPLFMBT
Main Program: SAPLFMBT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SAMPLE_PROCESS_00109020 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_00109020'"Description of Process-Interface 00109020.
EXPORTING
I_REV_FONDS = "Fund
I_REV_FIPEX = "Commitment Item (No Longer in Use -> FM_FIPEX)
I_REV_FICTR = "Funds Center
* I_REV_FAREA = "Functional Area
I_FM_AREA = "Financial Management Area
I_COMP_CODE = "Company Code
I_FISC_YEAR = "Fiscal Year
I_FI_DOC_NO = "Accounting Document Number
I_FI_DOC_ITEM_NO = "Number of Line Item Within Accounting Document
CHANGING
C_VALTP_PAY = "Value Type
C_VALTP_COM = "Value Type
IMPORTING Parameters details for SAMPLE_PROCESS_00109020
I_REV_FONDS - Fund
Data type: FMUDREL-SFONDSOptional: No
Call by Reference: Yes
I_REV_FIPEX - Commitment Item (No Longer in Use -> FM_FIPEX)
Data type: FMUDREL-SFIPEXOptional: No
Call by Reference: Yes
I_REV_FICTR - Funds Center
Data type: FMUDREL-SFICTROptional: No
Call by Reference: Yes
I_REV_FAREA - Functional Area
Data type: FMIFIIT-FAREAOptional: Yes
Call by Reference: Yes
I_FM_AREA - Financial Management Area
Data type: FM01-FIKRSOptional: No
Call by Reference: Yes
I_COMP_CODE - Company Code
Data type: BSEG-BUKRSOptional: No
Call by Reference: Yes
I_FISC_YEAR - Fiscal Year
Data type: FM01UD-GJAHROptional: No
Call by Reference: Yes
I_FI_DOC_NO - Accounting Document Number
Data type: BSEG-BELNROptional: No
Call by Reference: Yes
I_FI_DOC_ITEM_NO - Number of Line Item Within Accounting Document
Data type: BSEG-BUZEIOptional: No
Call by Reference: Yes
CHANGING Parameters details for SAMPLE_PROCESS_00109020
C_VALTP_PAY - Value Type
Data type: FMIT-RWRTTPOptional: No
Call by Reference: Yes
C_VALTP_COM - Value Type
Data type: FMIT-RWRTTPOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for SAMPLE_PROCESS_00109020 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_c_valtp_pay | TYPE FMIT-RWRTTP, " | |||
| lv_i_rev_fonds | TYPE FMUDREL-SFONDS, " | |||
| lv_c_valtp_com | TYPE FMIT-RWRTTP, " | |||
| lv_i_rev_fipex | TYPE FMUDREL-SFIPEX, " | |||
| lv_i_rev_fictr | TYPE FMUDREL-SFICTR, " | |||
| lv_i_rev_farea | TYPE FMIFIIT-FAREA, " | |||
| lv_i_fm_area | TYPE FM01-FIKRS, " | |||
| lv_i_comp_code | TYPE BSEG-BUKRS, " | |||
| lv_i_fisc_year | TYPE FM01UD-GJAHR, " | |||
| lv_i_fi_doc_no | TYPE BSEG-BELNR, " | |||
| lv_i_fi_doc_item_no | TYPE BSEG-BUZEI. " |
|   CALL FUNCTION 'SAMPLE_PROCESS_00109020' "Description of Process-Interface 00109020 |
| EXPORTING | ||
| I_REV_FONDS | = lv_i_rev_fonds | |
| I_REV_FIPEX | = lv_i_rev_fipex | |
| I_REV_FICTR | = lv_i_rev_fictr | |
| I_REV_FAREA | = lv_i_rev_farea | |
| I_FM_AREA | = lv_i_fm_area | |
| I_COMP_CODE | = lv_i_comp_code | |
| I_FISC_YEAR | = lv_i_fisc_year | |
| I_FI_DOC_NO | = lv_i_fi_doc_no | |
| I_FI_DOC_ITEM_NO | = lv_i_fi_doc_item_no | |
| CHANGING | ||
| C_VALTP_PAY | = lv_c_valtp_pay | |
| C_VALTP_COM | = lv_c_valtp_com | |
| . " SAMPLE_PROCESS_00109020 | ||
ABAP code using 7.40 inline data declarations to call FM SAMPLE_PROCESS_00109020
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 RWRTTP FROM FMIT INTO @DATA(ld_c_valtp_pay). | ||||
| "SELECT single SFONDS FROM FMUDREL INTO @DATA(ld_i_rev_fonds). | ||||
| "SELECT single RWRTTP FROM FMIT INTO @DATA(ld_c_valtp_com). | ||||
| "SELECT single SFIPEX FROM FMUDREL INTO @DATA(ld_i_rev_fipex). | ||||
| "SELECT single SFICTR FROM FMUDREL INTO @DATA(ld_i_rev_fictr). | ||||
| "SELECT single FAREA FROM FMIFIIT INTO @DATA(ld_i_rev_farea). | ||||
| "SELECT single FIKRS FROM FM01 INTO @DATA(ld_i_fm_area). | ||||
| "SELECT single BUKRS FROM BSEG INTO @DATA(ld_i_comp_code). | ||||
| "SELECT single GJAHR FROM FM01UD INTO @DATA(ld_i_fisc_year). | ||||
| "SELECT single BELNR FROM BSEG INTO @DATA(ld_i_fi_doc_no). | ||||
| "SELECT single BUZEI FROM BSEG INTO @DATA(ld_i_fi_doc_item_no). | ||||
Search for further information about these or an SAP related objects