SAP Function Modules

FKK_BIX_IFCOMP_DISC_BASICS_30 SAP Function module







FKK_BIX_IFCOMP_DISC_BASICS_30 is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name FKK_BIX_IFCOMP_DISC_BASICS_30 into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: FKKBIX_BIT_IFCOMP
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM FKK_BIX_IFCOMP_DISC_BASICS_30 - FKK BIX IFCOMP DISC BASICS 30





CALL FUNCTION 'FKK_BIX_IFCOMP_DISC_BASICS_30' "
  EXPORTING
    iv_bitcat =                 " bitcat_kk
    iv_ifcomp =                 " bit_ifcomp_kk
    it_ifcomp =                 " fkkbixbit_ifcomp_tab
    it_bit0_it =                " fkkbixbit0_it_all_tab
    it_bit0_py =                " fkkbixbit0_py_all_tab
    it_bit0_tx =                " fkkbixbit0_tx_all_tab
    it_bit0_tt =                " fkkbixbit0_tt_all_tab
    it_bit2_it =                " fkkbixbit2_it_all_tab
    it_bit2_py =                " fkkbixbit2_py_all_tab
    it_bit2_tx =                " fkkbixbit2_tx_all_tab
    it_bit2_tt =                " fkkbixbit2_tt_all_tab
  IMPORTING
    et_bit2_it_chg =            " fkkbixbit2_it_all_tab
    et_bit2_py_chg =            " fkkbixbit2_py_all_tab
    et_bit2_tx_chg =            " fkkbixbit2_tx_all_tab
    et_bit2_tt_chg =            " fkkbixbit2_tt_all_tab
    et_bit2_msg =               " fkkbixbit2_msg_tab
    .  "  FKK_BIX_IFCOMP_DISC_BASICS_30

ABAP code example for Function Module FKK_BIX_IFCOMP_DISC_BASICS_30





The ABAP code below is a full code listing to execute function module FKK_BIX_IFCOMP_DISC_BASICS_30 including all data declarations. The code uses 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 original method of declaring data variables up front. 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).

DATA:
ld_et_bit2_it_chg  TYPE FKKBIXBIT2_IT_ALL_TAB ,
ld_et_bit2_py_chg  TYPE FKKBIXBIT2_PY_ALL_TAB ,
ld_et_bit2_tx_chg  TYPE FKKBIXBIT2_TX_ALL_TAB ,
ld_et_bit2_tt_chg  TYPE FKKBIXBIT2_TT_ALL_TAB ,
ld_et_bit2_msg  TYPE FKKBIXBIT2_MSG_TAB .

DATA(ld_iv_bitcat) = 'Check type of data required'.
DATA(ld_iv_ifcomp) = 'Check type of data required'.
DATA(ld_it_ifcomp) = 'Check type of data required'.
DATA(ld_it_bit0_it) = 'Check type of data required'.
DATA(ld_it_bit0_py) = 'Check type of data required'.
DATA(ld_it_bit0_tx) = 'Check type of data required'.
DATA(ld_it_bit0_tt) = 'Check type of data required'.
DATA(ld_it_bit2_it) = 'Check type of data required'.
DATA(ld_it_bit2_py) = 'Check type of data required'.
DATA(ld_it_bit2_tx) = 'Check type of data required'.
DATA(ld_it_bit2_tt) = 'Check type of data required'. . CALL FUNCTION 'FKK_BIX_IFCOMP_DISC_BASICS_30' EXPORTING iv_bitcat = ld_iv_bitcat iv_ifcomp = ld_iv_ifcomp it_ifcomp = ld_it_ifcomp it_bit0_it = ld_it_bit0_it it_bit0_py = ld_it_bit0_py it_bit0_tx = ld_it_bit0_tx it_bit0_tt = ld_it_bit0_tt it_bit2_it = ld_it_bit2_it it_bit2_py = ld_it_bit2_py it_bit2_tx = ld_it_bit2_tx it_bit2_tt = ld_it_bit2_tt IMPORTING et_bit2_it_chg = ld_et_bit2_it_chg et_bit2_py_chg = ld_et_bit2_py_chg et_bit2_tx_chg = ld_et_bit2_tx_chg et_bit2_tt_chg = ld_et_bit2_tt_chg et_bit2_msg = ld_et_bit2_msg . " FKK_BIX_IFCOMP_DISC_BASICS_30
IF SY-SUBRC EQ 0. "All OK ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_et_bit2_it_chg  TYPE FKKBIXBIT2_IT_ALL_TAB ,
ld_iv_bitcat  TYPE BITCAT_KK ,
ld_et_bit2_py_chg  TYPE FKKBIXBIT2_PY_ALL_TAB ,
ld_iv_ifcomp  TYPE BIT_IFCOMP_KK ,
ld_et_bit2_tx_chg  TYPE FKKBIXBIT2_TX_ALL_TAB ,
ld_it_ifcomp  TYPE FKKBIXBIT_IFCOMP_TAB ,
ld_et_bit2_tt_chg  TYPE FKKBIXBIT2_TT_ALL_TAB ,
ld_it_bit0_it  TYPE FKKBIXBIT0_IT_ALL_TAB ,
ld_et_bit2_msg  TYPE FKKBIXBIT2_MSG_TAB ,
ld_it_bit0_py  TYPE FKKBIXBIT0_PY_ALL_TAB ,
ld_it_bit0_tx  TYPE FKKBIXBIT0_TX_ALL_TAB ,
ld_it_bit0_tt  TYPE FKKBIXBIT0_TT_ALL_TAB ,
ld_it_bit2_it  TYPE FKKBIXBIT2_IT_ALL_TAB ,
ld_it_bit2_py  TYPE FKKBIXBIT2_PY_ALL_TAB ,
ld_it_bit2_tx  TYPE FKKBIXBIT2_TX_ALL_TAB ,
ld_it_bit2_tt  TYPE FKKBIXBIT2_TT_ALL_TAB .

ld_iv_bitcat = 'Check type of data required'.
ld_iv_ifcomp = 'Check type of data required'.
ld_it_ifcomp = 'Check type of data required'.
ld_it_bit0_it = 'Check type of data required'.
ld_it_bit0_py = 'Check type of data required'.
ld_it_bit0_tx = 'Check type of data required'.
ld_it_bit0_tt = 'Check type of data required'.
ld_it_bit2_it = 'Check type of data required'.
ld_it_bit2_py = 'Check type of data required'.
ld_it_bit2_tx = 'Check type of data required'.
ld_it_bit2_tt = 'Check type of data required'.

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name FKK_BIX_IFCOMP_DISC_BASICS_30 or its description.