SAP FKK_BIX_BIT_ERRLOG_SELECT Function Module for









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

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



Function FKK_BIX_BIT_ERRLOG_SELECT 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_ERRLOG_SELECT'"
EXPORTING
* IRT_PROCESSID = "
* IRT_SUBAP = "
* IRT_CRDATE = "
* IRT_BITDATAPACKID = "
* IRT_BILL_DATE = "
* IRT_BILL_TYPE = "
* IRT_BILL_PROCESS = "
* IRT_BILL_RUNNO = "
* IT_BIT_IT = "
* IT_WHERE = "
* I_MAXREC = 0 "
* IRT_BITCAT = "
* IRT_SRCTATYPE = "
* IRT_SRCTAID = "
* IRT_ERRUUID = "
* IRT_BITPACKUUID = "
* IRT_GPART = "
* IRT_VKONT = "
* IRT_VTREF = "

IMPORTING
ET_BIT_ERR = "
E_BIT_ERR_COUNT = "
.



IMPORTING Parameters details for FKK_BIX_BIT_ERRLOG_SELECT

IRT_PROCESSID -

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

IRT_SUBAP -

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

IRT_CRDATE -

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

IRT_BITDATAPACKID -

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

IRT_BILL_DATE -

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

IRT_BILL_TYPE -

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

IRT_BILL_PROCESS -

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

IRT_BILL_RUNNO -

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

IT_BIT_IT -

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

IT_WHERE -

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

I_MAXREC -

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

IRT_BITCAT -

Data type: FKK_RT_BITCAT
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

IRT_ERRUUID -

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

IRT_BITPACKUUID -

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

IRT_GPART -

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

IRT_VKONT -

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

IRT_VTREF -

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

EXPORTING Parameters details for FKK_BIX_BIT_ERRLOG_SELECT

ET_BIT_ERR -

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

E_BIT_ERR_COUNT -

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

Copy and paste ABAP code example for FKK_BIX_BIT_ERRLOG_SELECT 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_et_bit_err  TYPE DFKKBIXBIT_ERR_TAB, "   
lv_irt_processid  TYPE FKK_RT_BIT_PROCESSID, "   
lv_irt_subap  TYPE FKK_RT_SUBAP, "   
lv_irt_crdate  TYPE FKK_RT_CRDATE, "   
lv_irt_bitdatapackid  TYPE FKK_RT_BITDATAPACKID, "   
lv_irt_bill_date  TYPE FKK_RT_BILLDATE, "   
lv_irt_bill_type  TYPE FKK_RT_BILLTYPE, "   
lv_irt_bill_process  TYPE FKK_RT_BILLPROCESS, "   
lv_irt_bill_runno  TYPE FKK_RT_BILLRUNNO, "   
lv_it_bit_it  TYPE FKKBIXBIT_IT_ALL_TAB, "   
lv_it_where  TYPE FKK_MAD_TWHEREL, "   
lv_i_maxrec  TYPE DDSHMAXREC, "   0
lv_irt_bitcat  TYPE FKK_RT_BITCAT, "   
lv_e_bit_err_count  TYPE I, "   
lv_irt_srctatype  TYPE FKK_RT_SRCTATYPE, "   
lv_irt_srctaid  TYPE FKK_RT_SRCTAID, "   
lv_irt_erruuid  TYPE FKK_RT_ERRUUID, "   
lv_irt_bitpackuuid  TYPE FKK_RT_BITPACKUUID, "   
lv_irt_gpart  TYPE FKK_RT_GPART, "   
lv_irt_vkont  TYPE FKK_RT_VKONT, "   
lv_irt_vtref  TYPE FKK_RT_VTREF. "   

  CALL FUNCTION 'FKK_BIX_BIT_ERRLOG_SELECT'  "
    EXPORTING
         IRT_PROCESSID = lv_irt_processid
         IRT_SUBAP = lv_irt_subap
         IRT_CRDATE = lv_irt_crdate
         IRT_BITDATAPACKID = lv_irt_bitdatapackid
         IRT_BILL_DATE = lv_irt_bill_date
         IRT_BILL_TYPE = lv_irt_bill_type
         IRT_BILL_PROCESS = lv_irt_bill_process
         IRT_BILL_RUNNO = lv_irt_bill_runno
         IT_BIT_IT = lv_it_bit_it
         IT_WHERE = lv_it_where
         I_MAXREC = lv_i_maxrec
         IRT_BITCAT = lv_irt_bitcat
         IRT_SRCTATYPE = lv_irt_srctatype
         IRT_SRCTAID = lv_irt_srctaid
         IRT_ERRUUID = lv_irt_erruuid
         IRT_BITPACKUUID = lv_irt_bitpackuuid
         IRT_GPART = lv_irt_gpart
         IRT_VKONT = lv_irt_vkont
         IRT_VTREF = lv_irt_vtref
    IMPORTING
         ET_BIT_ERR = lv_et_bit_err
         E_BIT_ERR_COUNT = lv_e_bit_err_count
. " FKK_BIX_BIT_ERRLOG_SELECT




ABAP code using 7.40 inline data declarations to call FM FKK_BIX_BIT_ERRLOG_SELECT

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.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


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!