SAP Function Modules

FKK_BIX_BIT3_SELECT_COUNT SAP Function module







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

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


Pattern for FM FKK_BIX_BIT3_SELECT_COUNT - FKK BIX BIT3 SELECT COUNT





CALL FUNCTION 'FKK_BIX_BIT3_SELECT_COUNT' "
* EXPORTING
*   it_gpart_range =            " fkk_rt_gpart  Range Table GPART
*   it_vkont_range =            " fkk_rt_vkont  Range Table VKONT
*   it_mdcat_range =            " fkk_rt_mdcat
*   it_srctatype_range =        " fkk_rt_srctatype  Ranges Table for SRCTATYPE_KK
*   it_srctaid_range =          " fkk_rt_srctaid  Ranges Table for SRCTAID_KK
*   it_bitcat_range =           " fkk_rt_bitcat  Ranges Table for BITCAT_KK
*   it_subprocess_range =       " fkk_rt_subprocess  Ranges Table for SUB_PROCESS_KK
*   it_bittype_range =          " fkk_rt_bittype  Ranges Table for BITTYPE_KK
*   it_bitdate_range =          " fkk_rt_datum
*   it_bitcrdate_range =        " fkk_rt_datum  Range Table for Any Date
*   it_bill_first_range =       " fkk_rt_datum  Range Table for Any Date
*   iv_bill_process =           " bill_process_kk  Billing Process
*   it_excdate_range =          " fkk_rt_datum  Range Table for Any Date
*   it_exctime_range =          " fkk_rt_tims   Range Table Any Time
*   it_excreason_range =        " fkk_rt_excreason  Range Table for Exception Reason
*   it_excusname_range =        " fkk_rt_uname  User Name Range Table
*   it_further_sel =            " fkk_mad_twherel  Table Type for WHERE Clause
    .  "  FKK_BIX_BIT3_SELECT_COUNT

ABAP code example for Function Module FKK_BIX_BIT3_SELECT_COUNT





The ABAP code below is a full code listing to execute function module FKK_BIX_BIT3_SELECT_COUNT 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_it_gpart_range) = 'Check type of data required'.
DATA(ld_it_vkont_range) = 'Check type of data required'.
DATA(ld_it_mdcat_range) = 'Check type of data required'.
DATA(ld_it_srctatype_range) = 'Check type of data required'.
DATA(ld_it_srctaid_range) = 'Check type of data required'.
DATA(ld_it_bitcat_range) = 'Check type of data required'.
DATA(ld_it_subprocess_range) = 'Check type of data required'.
DATA(ld_it_bittype_range) = 'Check type of data required'.
DATA(ld_it_bitdate_range) = 'Check type of data required'.
DATA(ld_it_bitcrdate_range) = 'Check type of data required'.
DATA(ld_it_bill_first_range) = 'Check type of data required'.
DATA(ld_iv_bill_process) = 'Check type of data required'.
DATA(ld_it_excdate_range) = 'Check type of data required'.
DATA(ld_it_exctime_range) = 'Check type of data required'.
DATA(ld_it_excreason_range) = 'Check type of data required'.
DATA(ld_it_excusname_range) = 'Check type of data required'.
DATA(ld_it_further_sel) = 'Check type of data required'. . CALL FUNCTION 'FKK_BIX_BIT3_SELECT_COUNT' * EXPORTING * it_gpart_range = ld_it_gpart_range * it_vkont_range = ld_it_vkont_range * it_mdcat_range = ld_it_mdcat_range * it_srctatype_range = ld_it_srctatype_range * it_srctaid_range = ld_it_srctaid_range * it_bitcat_range = ld_it_bitcat_range * it_subprocess_range = ld_it_subprocess_range * it_bittype_range = ld_it_bittype_range * it_bitdate_range = ld_it_bitdate_range * it_bitcrdate_range = ld_it_bitcrdate_range * it_bill_first_range = ld_it_bill_first_range * iv_bill_process = ld_iv_bill_process * it_excdate_range = ld_it_excdate_range * it_exctime_range = ld_it_exctime_range * it_excreason_range = ld_it_excreason_range * it_excusname_range = ld_it_excusname_range * it_further_sel = ld_it_further_sel . " FKK_BIX_BIT3_SELECT_COUNT
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_it_gpart_range  TYPE FKK_RT_GPART ,
ld_it_vkont_range  TYPE FKK_RT_VKONT ,
ld_it_mdcat_range  TYPE FKK_RT_MDCAT ,
ld_it_srctatype_range  TYPE FKK_RT_SRCTATYPE ,
ld_it_srctaid_range  TYPE FKK_RT_SRCTAID ,
ld_it_bitcat_range  TYPE FKK_RT_BITCAT ,
ld_it_subprocess_range  TYPE FKK_RT_SUBPROCESS ,
ld_it_bittype_range  TYPE FKK_RT_BITTYPE ,
ld_it_bitdate_range  TYPE FKK_RT_DATUM ,
ld_it_bitcrdate_range  TYPE FKK_RT_DATUM ,
ld_it_bill_first_range  TYPE FKK_RT_DATUM ,
ld_iv_bill_process  TYPE BILL_PROCESS_KK ,
ld_it_excdate_range  TYPE FKK_RT_DATUM ,
ld_it_exctime_range  TYPE FKK_RT_TIMS ,
ld_it_excreason_range  TYPE FKK_RT_EXCREASON ,
ld_it_excusname_range  TYPE FKK_RT_UNAME ,
ld_it_further_sel  TYPE FKK_MAD_TWHEREL .

ld_it_gpart_range = 'Check type of data required'.
ld_it_vkont_range = 'Check type of data required'.
ld_it_mdcat_range = 'Check type of data required'.
ld_it_srctatype_range = 'Check type of data required'.
ld_it_srctaid_range = 'Check type of data required'.
ld_it_bitcat_range = 'Check type of data required'.
ld_it_subprocess_range = 'Check type of data required'.
ld_it_bittype_range = 'Check type of data required'.
ld_it_bitdate_range = 'Check type of data required'.
ld_it_bitcrdate_range = 'Check type of data required'.
ld_it_bill_first_range = 'Check type of data required'.
ld_iv_bill_process = 'Check type of data required'.
ld_it_excdate_range = 'Check type of data required'.
ld_it_exctime_range = 'Check type of data required'.
ld_it_excreason_range = 'Check type of data required'.
ld_it_excusname_range = 'Check type of data required'.
ld_it_further_sel = '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_BIT3_SELECT_COUNT or its description.