SAP FKK_BIX_PTSET_REL_PARTNER_BITS Function Module for
FKK_BIX_PTSET_REL_PARTNER_BITS is a standard fkk bix ptset rel partner bits 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 ptset rel partner bits FM, simply by entering the name FKK_BIX_PTSET_REL_PARTNER_BITS into the relevant SAP transaction such as SE37 or SE38.
Function Group: FKKBIX_PTSET_REL
Program Name: SAPLFKKBIX_PTSET_REL
Main Program: SAPLFKKBIX_PTSET_REL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FKK_BIX_PTSET_REL_PARTNER_BITS 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_PTSET_REL_PARTNER_BITS'".
EXPORTING
* IT_KEYPP_RANGES = "
* IT_BITDATE_RANGES = "
I_SEL_BY_CUST = "
I_SEL_BY_PART = "
* I_SIMURUN = ' ' "
* I_MAX_PROBCL = '4' "
* IT_INVDOCNO_RANGES = "
* IT_BILLDOCNO_RANGES = "
* IT_FAEDN_RANGES = "
* IT_INVCRDATE_RANGES = "
* I_FAEDN = "
* IT_SUBPR_RANGES = "
* IT_VKONT_RANGES = "
* IT_GPART_RANGES = "
IMPORTING
E_CNT_BITS_SELECTED = "
E_CNT_BITS_ACTIVATED = "
E_CNT_TRIG_SELECTED = "
E_CNT_TRIG_DELETED = "
IMPORTING Parameters details for FKK_BIX_PTSET_REL_PARTNER_BITS
IT_KEYPP_RANGES -
Data type: FKK_RT_KEYPPOptional: Yes
Call by Reference: Yes
IT_BITDATE_RANGES -
Data type: FKK_RT_BITDATEOptional: Yes
Call by Reference: Yes
I_SEL_BY_CUST -
Data type: SEL_BY_CUST_KKOptional: No
Call by Reference: Yes
I_SEL_BY_PART -
Data type: SEL_BY_PART_KKOptional: No
Call by Reference: Yes
I_SIMURUN -
Data type: SIMULDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_MAX_PROBCL -
Data type: PROBCL_KKDefault: '4'
Optional: Yes
Call by Reference: Yes
IT_INVDOCNO_RANGES -
Data type: FKK_RT_INVDOCNOOptional: Yes
Call by Reference: Yes
IT_BILLDOCNO_RANGES -
Data type: FKK_RT_BILLDOCNOOptional: Yes
Call by Reference: Yes
IT_FAEDN_RANGES -
Data type: FKK_RT_CRDATEOptional: Yes
Call by Reference: Yes
IT_INVCRDATE_RANGES -
Data type: FKK_RT_CRDATEOptional: Yes
Call by Reference: Yes
I_FAEDN -
Data type: FAEDN_PTSET_KKOptional: Yes
Call by Reference: Yes
IT_SUBPR_RANGES -
Data type: FKK_RT_SUBPROCESSOptional: Yes
Call by Reference: Yes
IT_VKONT_RANGES -
Data type: FKK_RT_VKONTOptional: Yes
Call by Reference: Yes
IT_GPART_RANGES -
Data type: FKK_RT_GPARTOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FKK_BIX_PTSET_REL_PARTNER_BITS
E_CNT_BITS_SELECTED -
Data type: CNT_BITS_SELECTED_KKOptional: No
Call by Reference: Yes
E_CNT_BITS_ACTIVATED -
Data type: CNT_BITS_ACTIVATED_KKOptional: No
Call by Reference: Yes
E_CNT_TRIG_SELECTED -
Data type: CNT_TRIG_SELECTED_KKOptional: No
Call by Reference: Yes
E_CNT_TRIG_DELETED -
Data type: CNT_TRIG_DELETED_KKOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FKK_BIX_PTSET_REL_PARTNER_BITS 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_it_keypp_ranges | TYPE FKK_RT_KEYPP, " | |||
| lv_e_cnt_bits_selected | TYPE CNT_BITS_SELECTED_KK, " | |||
| lv_it_bitdate_ranges | TYPE FKK_RT_BITDATE, " | |||
| lv_i_sel_by_cust | TYPE SEL_BY_CUST_KK, " | |||
| lv_i_sel_by_part | TYPE SEL_BY_PART_KK, " | |||
| lv_i_simurun | TYPE SIMUL, " SPACE | |||
| lv_i_max_probcl | TYPE PROBCL_KK, " '4' | |||
| lv_it_invdocno_ranges | TYPE FKK_RT_INVDOCNO, " | |||
| lv_e_cnt_bits_activated | TYPE CNT_BITS_ACTIVATED_KK, " | |||
| lv_e_cnt_trig_selected | TYPE CNT_TRIG_SELECTED_KK, " | |||
| lv_it_billdocno_ranges | TYPE FKK_RT_BILLDOCNO, " | |||
| lv_it_faedn_ranges | TYPE FKK_RT_CRDATE, " | |||
| lv_e_cnt_trig_deleted | TYPE CNT_TRIG_DELETED_KK, " | |||
| lv_it_invcrdate_ranges | TYPE FKK_RT_CRDATE, " | |||
| lv_i_faedn | TYPE FAEDN_PTSET_KK, " | |||
| lv_it_subpr_ranges | TYPE FKK_RT_SUBPROCESS, " | |||
| lv_it_vkont_ranges | TYPE FKK_RT_VKONT, " | |||
| lv_it_gpart_ranges | TYPE FKK_RT_GPART. " |
|   CALL FUNCTION 'FKK_BIX_PTSET_REL_PARTNER_BITS' " |
| EXPORTING | ||
| IT_KEYPP_RANGES | = lv_it_keypp_ranges | |
| IT_BITDATE_RANGES | = lv_it_bitdate_ranges | |
| I_SEL_BY_CUST | = lv_i_sel_by_cust | |
| I_SEL_BY_PART | = lv_i_sel_by_part | |
| I_SIMURUN | = lv_i_simurun | |
| I_MAX_PROBCL | = lv_i_max_probcl | |
| IT_INVDOCNO_RANGES | = lv_it_invdocno_ranges | |
| IT_BILLDOCNO_RANGES | = lv_it_billdocno_ranges | |
| IT_FAEDN_RANGES | = lv_it_faedn_ranges | |
| IT_INVCRDATE_RANGES | = lv_it_invcrdate_ranges | |
| I_FAEDN | = lv_i_faedn | |
| IT_SUBPR_RANGES | = lv_it_subpr_ranges | |
| IT_VKONT_RANGES | = lv_it_vkont_ranges | |
| IT_GPART_RANGES | = lv_it_gpart_ranges | |
| IMPORTING | ||
| E_CNT_BITS_SELECTED | = lv_e_cnt_bits_selected | |
| E_CNT_BITS_ACTIVATED | = lv_e_cnt_bits_activated | |
| E_CNT_TRIG_SELECTED | = lv_e_cnt_trig_selected | |
| E_CNT_TRIG_DELETED | = lv_e_cnt_trig_deleted | |
| . " FKK_BIX_PTSET_REL_PARTNER_BITS | ||
ABAP code using 7.40 inline data declarations to call FM FKK_BIX_PTSET_REL_PARTNER_BITS
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_simurun) | = ' '. | |||
| DATA(ld_i_max_probcl) | = '4'. | |||
Search for further information about these or an SAP related objects