SAP PROCESS_00109050_IMPL Function Module for









PROCESS_00109050_IMPL is a standard process 00109050 impl 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 process 00109050 impl FM, simply by entering the name PROCESS_00109050_IMPL 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 PROCESS_00109050_IMPL 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 'PROCESS_00109050_IMPL'"
EXPORTING
I_REV_FONDS = "
* I_INCR_VALTP = "
I_REV_FIPEX = "
I_REV_FICTR = "
* I_REV_FAREA = "
I_FM_AREA = "
I_COMP_CODE = "
I_FISC_YEAR = "
I_OI_DOC_NO = "
I_OI_DOC_POS = "

CHANGING
C_F_BUDGET_ENTRY_DOC_HEADER = "
.



IMPORTING Parameters details for PROCESS_00109050_IMPL

I_REV_FONDS -

Data type: FMUDREL-SFONDS
Optional: No
Call by Reference: Yes

I_INCR_VALTP -

Data type: FMIOI-WRTTP
Optional: Yes
Call by Reference: Yes

I_REV_FIPEX -

Data type: FMUDREL-SFIPEX
Optional: No
Call by Reference: Yes

I_REV_FICTR -

Data type: FMUDREL-SFICTR
Optional: No
Call by Reference: Yes

I_REV_FAREA -

Data type: FMIFIIT-FAREA
Optional: Yes
Call by Reference: Yes

I_FM_AREA -

Data type: FM01-FIKRS
Optional: No
Call by Reference: Yes

I_COMP_CODE -

Data type: BSEG-BUKRS
Optional: No
Call by Reference: Yes

I_FISC_YEAR -

Data type: FM01UD-GJAHR
Optional: No
Call by Reference: Yes

I_OI_DOC_NO -

Data type: KBLP-BELNR
Optional: No
Call by Reference: Yes

I_OI_DOC_POS -

Data type: KBLP-BLPOS
Optional: No
Call by Reference: Yes

CHANGING Parameters details for PROCESS_00109050_IMPL

C_F_BUDGET_ENTRY_DOC_HEADER -

Data type: FMDOCHEADER
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for PROCESS_00109050_IMPL 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_i_rev_fonds  TYPE FMUDREL-SFONDS, "   
lv_c_f_budget_entry_doc_header  TYPE FMDOCHEADER, "   
lv_i_incr_valtp  TYPE FMIOI-WRTTP, "   
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_oi_doc_no  TYPE KBLP-BELNR, "   
lv_i_oi_doc_pos  TYPE KBLP-BLPOS. "   

  CALL FUNCTION 'PROCESS_00109050_IMPL'  "
    EXPORTING
         I_REV_FONDS = lv_i_rev_fonds
         I_INCR_VALTP = lv_i_incr_valtp
         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_OI_DOC_NO = lv_i_oi_doc_no
         I_OI_DOC_POS = lv_i_oi_doc_pos
    CHANGING
         C_F_BUDGET_ENTRY_DOC_HEADER = lv_c_f_budget_entry_doc_header
. " PROCESS_00109050_IMPL




ABAP code using 7.40 inline data declarations to call FM PROCESS_00109050_IMPL

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 SFONDS FROM FMUDREL INTO @DATA(ld_i_rev_fonds).
 
 
"SELECT single WRTTP FROM FMIOI INTO @DATA(ld_i_incr_valtp).
 
"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 KBLP INTO @DATA(ld_i_oi_doc_no).
 
"SELECT single BLPOS FROM KBLP INTO @DATA(ld_i_oi_doc_pos).
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!