SAP BKK_PAYM_ORDER_CHNG_FIELDSTAT Function Module for Connect Field Statuses According to Recipient Identification
BKK_PAYM_ORDER_CHNG_FIELDSTAT is a standard bkk paym order chng fieldstat SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Connect Field Statuses According to Recipient Identification processing and below is the pattern details for this FM, 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 bkk paym order chng fieldstat FM, simply by entering the name BKK_PAYM_ORDER_CHNG_FIELDSTAT into the relevant SAP transaction such as SE37 or SE38.
Function Group: FBP11
Program Name: SAPLFBP11
Main Program:
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BKK_PAYM_ORDER_CHNG_FIELDSTAT 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 'BKK_PAYM_ORDER_CHNG_FIELDSTAT'"Connect Field Statuses According to Recipient Identification.
EXPORTING
I_ACTIVITY = "Activity
I_DOCTYPE = "Document Type
I_DIA_VAR = "Field Status Variants
* I_FLG_BKS = "Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
I_DYNNR = "ABAP Program, Number of Current Screen
TABLES
C_T_FIELDSTATUS = "
IMPORTING Parameters details for BKK_PAYM_ORDER_CHNG_FIELDSTAT
I_ACTIVITY - Activity
Data type: TBKKI_02A-AKTYPOptional: No
Call by Reference: Yes
I_DOCTYPE - Document Type
Data type: TBKKI_02A-DOCTYPEOptional: No
Call by Reference: Yes
I_DIA_VAR - Field Status Variants
Data type: BKK_BANK_VAR_FLOptional: No
Call by Reference: Yes
I_FLG_BKS - Data Element for BOOLE Domain: TRUE (='X') and FALSE (=' ')
Data type: BOOLE-BOOLEOptional: Yes
Call by Reference: Yes
I_DYNNR - ABAP Program, Number of Current Screen
Data type: SY-DYNNROptional: No
Call by Reference: Yes
TABLES Parameters details for BKK_PAYM_ORDER_CHNG_FIELDSTAT
C_T_FIELDSTATUS -
Data type: BKKP_T_FIELDSTATUSOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for BKK_PAYM_ORDER_CHNG_FIELDSTAT 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_i_activity | TYPE TBKKI_02A-AKTYP, " | |||
| lt_c_t_fieldstatus | TYPE STANDARD TABLE OF BKKP_T_FIELDSTATUS, " | |||
| lv_i_doctype | TYPE TBKKI_02A-DOCTYPE, " | |||
| lv_i_dia_var | TYPE BKK_BANK_VAR_FL, " | |||
| lv_i_flg_bks | TYPE BOOLE-BOOLE, " | |||
| lv_i_dynnr | TYPE SY-DYNNR. " |
|   CALL FUNCTION 'BKK_PAYM_ORDER_CHNG_FIELDSTAT' "Connect Field Statuses According to Recipient Identification |
| EXPORTING | ||
| I_ACTIVITY | = lv_i_activity | |
| I_DOCTYPE | = lv_i_doctype | |
| I_DIA_VAR | = lv_i_dia_var | |
| I_FLG_BKS | = lv_i_flg_bks | |
| I_DYNNR | = lv_i_dynnr | |
| TABLES | ||
| C_T_FIELDSTATUS | = lt_c_t_fieldstatus | |
| . " BKK_PAYM_ORDER_CHNG_FIELDSTAT | ||
ABAP code using 7.40 inline data declarations to call FM BKK_PAYM_ORDER_CHNG_FIELDSTAT
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.| "SELECT single AKTYP FROM TBKKI_02A INTO @DATA(ld_i_activity). | ||||
| "SELECT single DOCTYPE FROM TBKKI_02A INTO @DATA(ld_i_doctype). | ||||
| "SELECT single BOOLE FROM BOOLE INTO @DATA(ld_i_flg_bks). | ||||
| "SELECT single DYNNR FROM SY INTO @DATA(ld_i_dynnr). | ||||
Search for further information about these or an SAP related objects