SAP BCA_US_ACCNT_LIMIT_SET_AMNT Function Module for Save Amounts to be Updated in Global Memory









BCA_US_ACCNT_LIMIT_SET_AMNT is a standard bca us accnt limit set amnt SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Save Amounts to be Updated in Global Memory 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 bca us accnt limit set amnt FM, simply by entering the name BCA_US_ACCNT_LIMIT_SET_AMNT into the relevant SAP transaction such as SE37 or SE38.

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



Function BCA_US_ACCNT_LIMIT_SET_AMNT 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 'BCA_US_ACCNT_LIMIT_SET_AMNT'"Save Amounts to be Updated in Global Memory
EXPORTING
I_BKKRS = "
I_ACNUM_INT = "
I_POSTDATE = "
I_AMOUNT = "

IMPORTING
E_RETURN = "
.



IMPORTING Parameters details for BCA_US_ACCNT_LIMIT_SET_AMNT

I_BKKRS -

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

I_ACNUM_INT -

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

I_POSTDATE -

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

I_AMOUNT -

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

EXPORTING Parameters details for BCA_US_ACCNT_LIMIT_SET_AMNT

E_RETURN -

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

Copy and paste ABAP code example for BCA_US_ACCNT_LIMIT_SET_AMNT 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_bkkrs  TYPE IBKK_ITEM-BKKRS, "   
lv_e_return  TYPE SY-SUBRC, "   
lv_i_acnum_int  TYPE IBKK_ITEM-ACNUM_INT, "   
lv_i_postdate  TYPE IBKK_ITEM-DATE_SYPO, "   
lv_i_amount  TYPE IBKK_ITEM-A_AMOUNT. "   

  CALL FUNCTION 'BCA_US_ACCNT_LIMIT_SET_AMNT'  "Save Amounts to be Updated in Global Memory
    EXPORTING
         I_BKKRS = lv_i_bkkrs
         I_ACNUM_INT = lv_i_acnum_int
         I_POSTDATE = lv_i_postdate
         I_AMOUNT = lv_i_amount
    IMPORTING
         E_RETURN = lv_e_return
. " BCA_US_ACCNT_LIMIT_SET_AMNT




ABAP code using 7.40 inline data declarations to call FM BCA_US_ACCNT_LIMIT_SET_AMNT

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 BKKRS FROM IBKK_ITEM INTO @DATA(ld_i_bkkrs).
 
"SELECT single SUBRC FROM SY INTO @DATA(ld_e_return).
 
"SELECT single ACNUM_INT FROM IBKK_ITEM INTO @DATA(ld_i_acnum_int).
 
"SELECT single DATE_SYPO FROM IBKK_ITEM INTO @DATA(ld_i_postdate).
 
"SELECT single A_AMOUNT FROM IBKK_ITEM INTO @DATA(ld_i_amount).
 


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!