SAP Function Modules

FKK_BIX_BIT4_SEL_FOR_PRINT SAP Function module







FKK_BIX_BIT4_SEL_FOR_PRINT 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_BIT4_SEL_FOR_PRINT into the relevant SAP transaction such as SE37 or SE80.

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


Pattern for FM FKK_BIX_BIT4_SEL_FOR_PRINT - FKK BIX BIT4 SEL FOR PRINT





CALL FUNCTION 'FKK_BIX_BIT4_SEL_FOR_PRINT' "
* EXPORTING
*   i_billdocno =               " billdocno_kk  Number of Billing Document
*   ix_it =                     " xfeld         Checkbox
*   ix_py =                     " xfeld         Checkbox
*   ix_tx =                     " xfeld         Checkbox
*   ix_tt =                     " xfeld         Checkbox
  IMPORTING
    et_bit4_it =                " fkkbixbit4_it_print_tab  Print Data for Billed Items (Main Items)
    et_bit4_py =                " fkkbixbit4_py_print_tab  Print Data for Billed Items (Payment Data)
    et_bit4_tx =                " fkkbixbit4_tx_print_tab  Print Data for Billed Items (Tax Data)
    et_bit4_tt =                " fkkbixbit4_tt_print_tab  Print Data for Billed Items (Texts)
    e_not_all_found =           " xfeld
    .  "  FKK_BIX_BIT4_SEL_FOR_PRINT

ABAP code example for Function Module FKK_BIX_BIT4_SEL_FOR_PRINT





The ABAP code below is a full code listing to execute function module FKK_BIX_BIT4_SEL_FOR_PRINT 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_bit4_it  TYPE FKKBIXBIT4_IT_PRINT_TAB ,
ld_et_bit4_py  TYPE FKKBIXBIT4_PY_PRINT_TAB ,
ld_et_bit4_tx  TYPE FKKBIXBIT4_TX_PRINT_TAB ,
ld_et_bit4_tt  TYPE FKKBIXBIT4_TT_PRINT_TAB ,
ld_e_not_all_found  TYPE XFELD .

DATA(ld_i_billdocno) = 'Check type of data required'.
DATA(ld_ix_it) = 'Check type of data required'.
DATA(ld_ix_py) = 'Check type of data required'.
DATA(ld_ix_tx) = 'Check type of data required'.
DATA(ld_ix_tt) = 'Check type of data required'. . CALL FUNCTION 'FKK_BIX_BIT4_SEL_FOR_PRINT' * EXPORTING * i_billdocno = ld_i_billdocno * ix_it = ld_ix_it * ix_py = ld_ix_py * ix_tx = ld_ix_tx * ix_tt = ld_ix_tt IMPORTING et_bit4_it = ld_et_bit4_it et_bit4_py = ld_et_bit4_py et_bit4_tx = ld_et_bit4_tx et_bit4_tt = ld_et_bit4_tt e_not_all_found = ld_e_not_all_found . " FKK_BIX_BIT4_SEL_FOR_PRINT
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_bit4_it  TYPE FKKBIXBIT4_IT_PRINT_TAB ,
ld_i_billdocno  TYPE BILLDOCNO_KK ,
ld_et_bit4_py  TYPE FKKBIXBIT4_PY_PRINT_TAB ,
ld_ix_it  TYPE XFELD ,
ld_et_bit4_tx  TYPE FKKBIXBIT4_TX_PRINT_TAB ,
ld_ix_py  TYPE XFELD ,
ld_et_bit4_tt  TYPE FKKBIXBIT4_TT_PRINT_TAB ,
ld_ix_tx  TYPE XFELD ,
ld_e_not_all_found  TYPE XFELD ,
ld_ix_tt  TYPE XFELD .

ld_i_billdocno = 'Check type of data required'.
ld_ix_it = 'Check type of data required'.
ld_ix_py = 'Check type of data required'.
ld_ix_tx = 'Check type of data required'.
ld_ix_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_BIT4_SEL_FOR_PRINT or its description.