SAP AIPA_BUDGPROC_INPUT_CREATE Function Module for









AIPA_BUDGPROC_INPUT_CREATE is a standard aipa budgproc input create 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 aipa budgproc input create FM, simply by entering the name AIPA_BUDGPROC_INPUT_CREATE into the relevant SAP transaction such as SE37 or SE38.

Function Group: AIPA_FUNC_BP
Program Name: SAPLAIPA_FUNC_BP
Main Program: SAPLAIPA_FUNC_BP
Appliation area: A
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function AIPA_BUDGPROC_INPUT_CREATE 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 'AIPA_BUDGPROC_INPUT_CREATE'"
EXPORTING
I_IMTP = "
I_POSIT_TO = "
* I_VERSN_FROM = '000' "
* I_VERSN_TO = '000' "
IT_QUELLE_COVOB = "
* I_FLG_ROLLUP = ' ' "
* I_ROLLUPCORR_COVOB = "
* I_FLG_ADD = ' ' "
* I_FLG_ADD_ON_LOCKED_LEAFS = ' ' "
* I_FLG_RECALC_DIST = "
* I_FLG_DIST_ON_LEAFS = "
I_VORGA = "
* I_TWAER = "Transaction Currency
* I_TRGKZ_FROM_1 = "
* I_TRGKZ_FROM_2 = "
I_TRGKZ_TO = "
* I_WRTTP_FROM_1 = "
* I_WRTTP_FROM_2 = "
I_WRTTP_TO = "
I_POSIT_FROM = "

IMPORTING
ET_ZIEL_COVOB = "

TABLES
IT_ZIEL_IMPR = "
.



IMPORTING Parameters details for AIPA_BUDGPROC_INPUT_CREATE

I_IMTP -

Data type: IMTP
Optional: No
Call by Reference: No ( called with pass by value option)

I_POSIT_TO -

Data type: BPGE-POSIT
Optional: No
Call by Reference: No ( called with pass by value option)

I_VERSN_FROM -

Data type: RAIP3-VERSN
Default: '000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_VERSN_TO -

Data type: RAIP3-VERSN
Default: '000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_QUELLE_COVOB -

Data type: IM_COVOB_TAB_TYPE
Optional: No
Call by Reference: No ( called with pass by value option)

I_FLG_ROLLUP -

Data type:
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_ROLLUPCORR_COVOB -

Data type: IM_COVOB_TYPE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FLG_ADD -

Data type:
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FLG_ADD_ON_LOCKED_LEAFS -

Data type:
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FLG_RECALC_DIST -

Data type: XFELD
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FLG_DIST_ON_LEAFS -

Data type: XFELD
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_VORGA -

Data type: BPGE-VORGA
Optional: No
Call by Reference: No ( called with pass by value option)

I_TWAER - Transaction Currency

Data type: BPGE-TWAER
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_TRGKZ_FROM_1 -

Data type: BPGE-TRGKZ
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_TRGKZ_FROM_2 -

Data type: BPGE-TRGKZ
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_TRGKZ_TO -

Data type: BPGE-TRGKZ
Optional: No
Call by Reference: No ( called with pass by value option)

I_WRTTP_FROM_1 -

Data type: BPGE-WRTTP
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_WRTTP_FROM_2 -

Data type: BPGE-WRTTP
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_WRTTP_TO -

Data type: BPGE-WRTTP
Optional: No
Call by Reference: No ( called with pass by value option)

I_POSIT_FROM -

Data type: BPGE-POSIT
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for AIPA_BUDGPROC_INPUT_CREATE

ET_ZIEL_COVOB -

Data type: IM_COVOB_TAB_TYPE
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for AIPA_BUDGPROC_INPUT_CREATE

IT_ZIEL_IMPR -

Data type: IMPR
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for AIPA_BUDGPROC_INPUT_CREATE 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_imtp  TYPE IMTP, "   
lt_it_ziel_impr  TYPE STANDARD TABLE OF IMPR, "   
lv_et_ziel_covob  TYPE IM_COVOB_TAB_TYPE, "   
lv_i_posit_to  TYPE BPGE-POSIT, "   
lv_i_versn_from  TYPE RAIP3-VERSN, "   '000'
lv_i_versn_to  TYPE RAIP3-VERSN, "   '000'
lv_it_quelle_covob  TYPE IM_COVOB_TAB_TYPE, "   
lv_i_flg_rollup  TYPE IM_COVOB_TAB_TYPE, "   ' '
lv_i_rollupcorr_covob  TYPE IM_COVOB_TYPE, "   
lv_i_flg_add  TYPE IM_COVOB_TYPE, "   ' '
lv_i_flg_add_on_locked_leafs  TYPE IM_COVOB_TYPE, "   ' '
lv_i_flg_recalc_dist  TYPE XFELD, "   
lv_i_flg_dist_on_leafs  TYPE XFELD, "   
lv_i_vorga  TYPE BPGE-VORGA, "   
lv_i_twaer  TYPE BPGE-TWAER, "   
lv_i_trgkz_from_1  TYPE BPGE-TRGKZ, "   
lv_i_trgkz_from_2  TYPE BPGE-TRGKZ, "   
lv_i_trgkz_to  TYPE BPGE-TRGKZ, "   
lv_i_wrttp_from_1  TYPE BPGE-WRTTP, "   
lv_i_wrttp_from_2  TYPE BPGE-WRTTP, "   
lv_i_wrttp_to  TYPE BPGE-WRTTP, "   
lv_i_posit_from  TYPE BPGE-POSIT. "   

  CALL FUNCTION 'AIPA_BUDGPROC_INPUT_CREATE'  "
    EXPORTING
         I_IMTP = lv_i_imtp
         I_POSIT_TO = lv_i_posit_to
         I_VERSN_FROM = lv_i_versn_from
         I_VERSN_TO = lv_i_versn_to
         IT_QUELLE_COVOB = lv_it_quelle_covob
         I_FLG_ROLLUP = lv_i_flg_rollup
         I_ROLLUPCORR_COVOB = lv_i_rollupcorr_covob
         I_FLG_ADD = lv_i_flg_add
         I_FLG_ADD_ON_LOCKED_LEAFS = lv_i_flg_add_on_locked_leafs
         I_FLG_RECALC_DIST = lv_i_flg_recalc_dist
         I_FLG_DIST_ON_LEAFS = lv_i_flg_dist_on_leafs
         I_VORGA = lv_i_vorga
         I_TWAER = lv_i_twaer
         I_TRGKZ_FROM_1 = lv_i_trgkz_from_1
         I_TRGKZ_FROM_2 = lv_i_trgkz_from_2
         I_TRGKZ_TO = lv_i_trgkz_to
         I_WRTTP_FROM_1 = lv_i_wrttp_from_1
         I_WRTTP_FROM_2 = lv_i_wrttp_from_2
         I_WRTTP_TO = lv_i_wrttp_to
         I_POSIT_FROM = lv_i_posit_from
    IMPORTING
         ET_ZIEL_COVOB = lv_et_ziel_covob
    TABLES
         IT_ZIEL_IMPR = lt_it_ziel_impr
. " AIPA_BUDGPROC_INPUT_CREATE




ABAP code using 7.40 inline data declarations to call FM AIPA_BUDGPROC_INPUT_CREATE

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 POSIT FROM BPGE INTO @DATA(ld_i_posit_to).
 
"SELECT single VERSN FROM RAIP3 INTO @DATA(ld_i_versn_from).
DATA(ld_i_versn_from) = '000'.
 
"SELECT single VERSN FROM RAIP3 INTO @DATA(ld_i_versn_to).
DATA(ld_i_versn_to) = '000'.
 
 
DATA(ld_i_flg_rollup) = ' '.
 
 
DATA(ld_i_flg_add) = ' '.
 
DATA(ld_i_flg_add_on_locked_leafs) = ' '.
 
 
 
"SELECT single VORGA FROM BPGE INTO @DATA(ld_i_vorga).
 
"SELECT single TWAER FROM BPGE INTO @DATA(ld_i_twaer).
 
"SELECT single TRGKZ FROM BPGE INTO @DATA(ld_i_trgkz_from_1).
 
"SELECT single TRGKZ FROM BPGE INTO @DATA(ld_i_trgkz_from_2).
 
"SELECT single TRGKZ FROM BPGE INTO @DATA(ld_i_trgkz_to).
 
"SELECT single WRTTP FROM BPGE INTO @DATA(ld_i_wrttp_from_1).
 
"SELECT single WRTTP FROM BPGE INTO @DATA(ld_i_wrttp_from_2).
 
"SELECT single WRTTP FROM BPGE INTO @DATA(ld_i_wrttp_to).
 
"SELECT single POSIT FROM BPGE INTO @DATA(ld_i_posit_from).
 


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!