SAP BKK_CHEQUE_ISSUE_FROM_STACK Function Module for BCA: Issue Checks From Stack Management









BKK_CHEQUE_ISSUE_FROM_STACK is a standard bkk cheque issue from stack SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for BCA: Issue Checks From Stack Management 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 bkk cheque issue from stack FM, simply by entering the name BKK_CHEQUE_ISSUE_FROM_STACK into the relevant SAP transaction such as SE37 or SE38.

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



Function BKK_CHEQUE_ISSUE_FROM_STACK 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 'BKK_CHEQUE_ISSUE_FROM_STACK'"BCA: Issue Checks From Stack Management
EXPORTING
I_BKKRS = "
* I_ISSUETIME = SY-UZEIT "
* I_USERNAME = SY-UNAME "
* I_ACNUM_INT = "
I_ACNUM_EXT = "
I_CASHB_TYPE = "
I_NCHEQUES = "
I_CASHB_EX_FROM = "
* I_CASHB_EX_TO = "
I_STACK_PLACE = "
* I_ISSUEDATE = SY-DATUM "

IMPORTING
E_RC = "
.



IMPORTING Parameters details for BKK_CHEQUE_ISSUE_FROM_STACK

I_BKKRS -

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

I_ISSUETIME -

Data type: BKKA1-CASHB_ITIM
Default: SY-UZEIT
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_USERNAME -

Data type: BKKA1-UNAME_IDAT
Default: SY-UNAME
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_ACNUM_INT -

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

I_ACNUM_EXT -

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

I_CASHB_TYPE -

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

I_NCHEQUES -

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

I_CASHB_EX_FROM -

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

I_CASHB_EX_TO -

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

I_STACK_PLACE -

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

I_ISSUEDATE -

Data type: BKKA1-CASHB_IDAT
Default: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for BKK_CHEQUE_ISSUE_FROM_STACK

E_RC -

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

Copy and paste ABAP code example for BKK_CHEQUE_ISSUE_FROM_STACK 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_e_rc  TYPE SY-SUBRC, "   
lv_i_bkkrs  TYPE BKKA5-BKKRS, "   
lv_i_issuetime  TYPE BKKA1-CASHB_ITIM, "   SY-UZEIT
lv_i_username  TYPE BKKA1-UNAME_IDAT, "   SY-UNAME
lv_i_acnum_int  TYPE BKKA1-ACCNT_NR, "   
lv_i_acnum_ext  TYPE BKK42-ACNUM_EXT, "   
lv_i_cashb_type  TYPE BKKA5-CASHB_TYPE, "   
lv_i_ncheques  TYPE IBKK_CHEQ-NCHEQUES, "   
lv_i_cashb_ex_from  TYPE BKKA5-CASHB_EX_FROM, "   
lv_i_cashb_ex_to  TYPE BKKA5-CASHB_EX_TO, "   
lv_i_stack_place  TYPE BKKA5-STACK_PLACE, "   
lv_i_issuedate  TYPE BKKA1-CASHB_IDAT. "   SY-DATUM

  CALL FUNCTION 'BKK_CHEQUE_ISSUE_FROM_STACK'  "BCA: Issue Checks From Stack Management
    EXPORTING
         I_BKKRS = lv_i_bkkrs
         I_ISSUETIME = lv_i_issuetime
         I_USERNAME = lv_i_username
         I_ACNUM_INT = lv_i_acnum_int
         I_ACNUM_EXT = lv_i_acnum_ext
         I_CASHB_TYPE = lv_i_cashb_type
         I_NCHEQUES = lv_i_ncheques
         I_CASHB_EX_FROM = lv_i_cashb_ex_from
         I_CASHB_EX_TO = lv_i_cashb_ex_to
         I_STACK_PLACE = lv_i_stack_place
         I_ISSUEDATE = lv_i_issuedate
    IMPORTING
         E_RC = lv_e_rc
. " BKK_CHEQUE_ISSUE_FROM_STACK




ABAP code using 7.40 inline data declarations to call FM BKK_CHEQUE_ISSUE_FROM_STACK

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 SUBRC FROM SY INTO @DATA(ld_e_rc).
 
"SELECT single BKKRS FROM BKKA5 INTO @DATA(ld_i_bkkrs).
 
"SELECT single CASHB_ITIM FROM BKKA1 INTO @DATA(ld_i_issuetime).
DATA(ld_i_issuetime) = SY-UZEIT.
 
"SELECT single UNAME_IDAT FROM BKKA1 INTO @DATA(ld_i_username).
DATA(ld_i_username) = SY-UNAME.
 
"SELECT single ACCNT_NR FROM BKKA1 INTO @DATA(ld_i_acnum_int).
 
"SELECT single ACNUM_EXT FROM BKK42 INTO @DATA(ld_i_acnum_ext).
 
"SELECT single CASHB_TYPE FROM BKKA5 INTO @DATA(ld_i_cashb_type).
 
"SELECT single NCHEQUES FROM IBKK_CHEQ INTO @DATA(ld_i_ncheques).
 
"SELECT single CASHB_EX_FROM FROM BKKA5 INTO @DATA(ld_i_cashb_ex_from).
 
"SELECT single CASHB_EX_TO FROM BKKA5 INTO @DATA(ld_i_cashb_ex_to).
 
"SELECT single STACK_PLACE FROM BKKA5 INTO @DATA(ld_i_stack_place).
 
"SELECT single CASHB_IDAT FROM BKKA1 INTO @DATA(ld_i_issuedate).
DATA(ld_i_issuedate) = SY-DATUM.
 


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!