SAP FKK_BIX_BIT_MON Function Module for









FKK_BIX_BIT_MON is a standard fkk bix bit mon 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 fkk bix bit mon FM, simply by entering the name FKK_BIX_BIT_MON into the relevant SAP transaction such as SE37 or SE38.

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



Function FKK_BIX_BIT_MON 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 'FKK_BIX_BIT_MON'"
EXPORTING
* IRT_GPART = "
* IRT_BITSTATUS = "
* IRT_BITCAT = "
* IRT_BITDATE = "
* IRT_BITCRDATE = "
* IRT_BITTYPE = "
* IRT_SUBPROCESS = "
* IRT_BILLCRDATE = "
* IRT_INVDOCNO = "
* IRT_BILLDOCNO = "
* IRT_MDCAT = "
* IRT_VKONT = "
* IRT_BILL_FIRST = "
* IT_FURTHER_SEL = "
* I_BIT4_UNINVOICED_REQ = "
* I_BIT4_INVOICED_REQ = "
* IRT_BITREVERSAL = "
* IRT_BITREVERSED = "
* IRT_BILLREVERSAL = "
* IRT_BILLREVERSED = "
* IT_BIT_IT_DISP = "
* I_MAXREC = '10000' "
* IRT_MAKEY = "
* I_NO_COLLECT = "
* IRT_VTREF = "
* IRT_SUBAP = "
* IRT_PPACC = "
* IRT_PREPAID = "
* IRT_SRCTATYPE = "
* IRT_SRCTAID = "

EXCEPTIONS
NOT_FOUND = 1
.



IMPORTING Parameters details for FKK_BIX_BIT_MON

IRT_GPART -

Data type: FKK_RT_GPART
Optional: Yes
Call by Reference: Yes

IRT_BITSTATUS -

Data type: FKK_RT_BITSTATUS
Optional: Yes
Call by Reference: Yes

IRT_BITCAT -

Data type: FKK_RT_BITCAT
Optional: Yes
Call by Reference: Yes

IRT_BITDATE -

Data type: FKK_RT_BITDATE
Optional: Yes
Call by Reference: Yes

IRT_BITCRDATE -

Data type: FKK_RT_BITCRDATE
Optional: Yes
Call by Reference: Yes

IRT_BITTYPE -

Data type: FKK_RT_BITTYPE
Optional: Yes
Call by Reference: Yes

IRT_SUBPROCESS -

Data type: FKK_RT_SUBPROCESS
Optional: Yes
Call by Reference: Yes

IRT_BILLCRDATE -

Data type: FKK_RT_BILLCRDATE
Optional: Yes
Call by Reference: Yes

IRT_INVDOCNO -

Data type: FKK_RT_INVDOCNO
Optional: Yes
Call by Reference: Yes

IRT_BILLDOCNO -

Data type: FKK_RT_BILLDOCNO
Optional: Yes
Call by Reference: Yes

IRT_MDCAT -

Data type: FKK_RT_MDCAT
Optional: Yes
Call by Reference: Yes

IRT_VKONT -

Data type: FKK_RT_VKONT
Optional: Yes
Call by Reference: Yes

IRT_BILL_FIRST -

Data type: FKK_RT_BILL_FIRST
Optional: Yes
Call by Reference: Yes

IT_FURTHER_SEL -

Data type: FKK_MAD_TWHEREL
Optional: Yes
Call by Reference: Yes

I_BIT4_UNINVOICED_REQ -

Data type: UNINVOICED_REQUESTED_KK
Optional: Yes
Call by Reference: Yes

I_BIT4_INVOICED_REQ -

Data type: INVOICED_REQUESTED_KK
Optional: Yes
Call by Reference: Yes

IRT_BITREVERSAL -

Data type: FKK_RT_BITREVERSAL
Optional: Yes
Call by Reference: Yes

IRT_BITREVERSED -

Data type: FKK_RT_BITREVERSED
Optional: Yes
Call by Reference: Yes

IRT_BILLREVERSAL -

Data type: FKK_RT_BILLREVERSAL
Optional: Yes
Call by Reference: Yes

IRT_BILLREVERSED -

Data type: FKK_RT_BILLREVERSED
Optional: Yes
Call by Reference: Yes

IT_BIT_IT_DISP -

Data type: FKKBIXBIT_IT_DISP_TAB
Optional: Yes
Call by Reference: Yes

I_MAXREC -

Data type: DDSHMAXREC
Default: '10000'
Optional: Yes
Call by Reference: Yes

IRT_MAKEY -

Data type: FKK_RT_MAKEY
Optional: Yes
Call by Reference: Yes

I_NO_COLLECT -

Data type: XFELD
Optional: Yes
Call by Reference: Yes

IRT_VTREF -

Data type: FKK_RT_VTREF
Optional: Yes
Call by Reference: Yes

IRT_SUBAP -

Data type: FKK_RT_SUBAP
Optional: Yes
Call by Reference: Yes

IRT_PPACC -

Data type: FKK_RT_PPACC
Optional: Yes
Call by Reference: Yes

IRT_PREPAID -

Data type: FKK_RT_PREPAID
Optional: Yes
Call by Reference: Yes

IRT_SRCTATYPE -

Data type: FKK_RT_SRCTATYPE
Optional: Yes
Call by Reference: Yes

IRT_SRCTAID -

Data type: FKK_RT_SRCTAID
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

NOT_FOUND -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FKK_BIX_BIT_MON 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_irt_gpart  TYPE FKK_RT_GPART, "   
lv_not_found  TYPE FKK_RT_GPART, "   
lv_irt_bitstatus  TYPE FKK_RT_BITSTATUS, "   
lv_irt_bitcat  TYPE FKK_RT_BITCAT, "   
lv_irt_bitdate  TYPE FKK_RT_BITDATE, "   
lv_irt_bitcrdate  TYPE FKK_RT_BITCRDATE, "   
lv_irt_bittype  TYPE FKK_RT_BITTYPE, "   
lv_irt_subprocess  TYPE FKK_RT_SUBPROCESS, "   
lv_irt_billcrdate  TYPE FKK_RT_BILLCRDATE, "   
lv_irt_invdocno  TYPE FKK_RT_INVDOCNO, "   
lv_irt_billdocno  TYPE FKK_RT_BILLDOCNO, "   
lv_irt_mdcat  TYPE FKK_RT_MDCAT, "   
lv_irt_vkont  TYPE FKK_RT_VKONT, "   
lv_irt_bill_first  TYPE FKK_RT_BILL_FIRST, "   
lv_it_further_sel  TYPE FKK_MAD_TWHEREL, "   
lv_i_bit4_uninvoiced_req  TYPE UNINVOICED_REQUESTED_KK, "   
lv_i_bit4_invoiced_req  TYPE INVOICED_REQUESTED_KK, "   
lv_irt_bitreversal  TYPE FKK_RT_BITREVERSAL, "   
lv_irt_bitreversed  TYPE FKK_RT_BITREVERSED, "   
lv_irt_billreversal  TYPE FKK_RT_BILLREVERSAL, "   
lv_irt_billreversed  TYPE FKK_RT_BILLREVERSED, "   
lv_it_bit_it_disp  TYPE FKKBIXBIT_IT_DISP_TAB, "   
lv_i_maxrec  TYPE DDSHMAXREC, "   '10000'
lv_irt_makey  TYPE FKK_RT_MAKEY, "   
lv_i_no_collect  TYPE XFELD, "   
lv_irt_vtref  TYPE FKK_RT_VTREF, "   
lv_irt_subap  TYPE FKK_RT_SUBAP, "   
lv_irt_ppacc  TYPE FKK_RT_PPACC, "   
lv_irt_prepaid  TYPE FKK_RT_PREPAID, "   
lv_irt_srctatype  TYPE FKK_RT_SRCTATYPE, "   
lv_irt_srctaid  TYPE FKK_RT_SRCTAID. "   

  CALL FUNCTION 'FKK_BIX_BIT_MON'  "
    EXPORTING
         IRT_GPART = lv_irt_gpart
         IRT_BITSTATUS = lv_irt_bitstatus
         IRT_BITCAT = lv_irt_bitcat
         IRT_BITDATE = lv_irt_bitdate
         IRT_BITCRDATE = lv_irt_bitcrdate
         IRT_BITTYPE = lv_irt_bittype
         IRT_SUBPROCESS = lv_irt_subprocess
         IRT_BILLCRDATE = lv_irt_billcrdate
         IRT_INVDOCNO = lv_irt_invdocno
         IRT_BILLDOCNO = lv_irt_billdocno
         IRT_MDCAT = lv_irt_mdcat
         IRT_VKONT = lv_irt_vkont
         IRT_BILL_FIRST = lv_irt_bill_first
         IT_FURTHER_SEL = lv_it_further_sel
         I_BIT4_UNINVOICED_REQ = lv_i_bit4_uninvoiced_req
         I_BIT4_INVOICED_REQ = lv_i_bit4_invoiced_req
         IRT_BITREVERSAL = lv_irt_bitreversal
         IRT_BITREVERSED = lv_irt_bitreversed
         IRT_BILLREVERSAL = lv_irt_billreversal
         IRT_BILLREVERSED = lv_irt_billreversed
         IT_BIT_IT_DISP = lv_it_bit_it_disp
         I_MAXREC = lv_i_maxrec
         IRT_MAKEY = lv_irt_makey
         I_NO_COLLECT = lv_i_no_collect
         IRT_VTREF = lv_irt_vtref
         IRT_SUBAP = lv_irt_subap
         IRT_PPACC = lv_irt_ppacc
         IRT_PREPAID = lv_irt_prepaid
         IRT_SRCTATYPE = lv_irt_srctatype
         IRT_SRCTAID = lv_irt_srctaid
    EXCEPTIONS
        NOT_FOUND = 1
. " FKK_BIX_BIT_MON




ABAP code using 7.40 inline data declarations to call FM FKK_BIX_BIT_MON

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.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
DATA(ld_i_maxrec) = '10000'.
 
 
 
 
 
 
 
 
 


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!