SAP BKK_PAYM_CHNG_FIELDSTAT Function Module for Verbinden der Feldstatus in Abhängigkeit v. RCV-Identifizierung
BKK_PAYM_CHNG_FIELDSTAT is a standard bkk paym 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 Verbinden der Feldstatus in Abhängigkeit v. RCV-Identifizierung 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 chng fieldstat FM, simply by entering the name BKK_PAYM_CHNG_FIELDSTAT into the relevant SAP transaction such as SE37 or SE38.
Function Group: FBID
Program Name: SAPLFBID
Main Program: SAPLFBID
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BKK_PAYM_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_CHNG_FIELDSTAT'"Verbinden der Feldstatus in Abhängigkeit v. RCV-Identifizierung.
EXPORTING
I_OBJECT = "Object in BCA (Payment Item or Payment Order)
I_DIA_VAR = "Field Status Variants
I_DYNNR = "ABAP Program, Number of Current Screen
* I_EXCLBUTTON = "Sequential Number for Functions to Be Hidden
TABLES
C_T_FIELDSTATUS = "
IMPORTING Parameters details for BKK_PAYM_CHNG_FIELDSTAT
I_OBJECT - Object in BCA (Payment Item or Payment Order)
Data type: TBKKI_02A-OBJECTOptional: No
Call by Reference: Yes
I_DIA_VAR - Field Status Variants
Data type: BKK_BANK_VAR_FLOptional: No
Call by Reference: Yes
I_DYNNR - ABAP Program, Number of Current Screen
Data type: SY-DYNNROptional: No
Call by Reference: Yes
I_EXCLBUTTON - Sequential Number for Functions to Be Hidden
Data type: TBKKI_02A-EXCLBUTTONOptional: Yes
Call by Reference: Yes
TABLES Parameters details for BKK_PAYM_CHNG_FIELDSTAT
C_T_FIELDSTATUS -
Data type: BKKP_T_FIELDSTATUSOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for BKK_PAYM_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_object | TYPE TBKKI_02A-OBJECT, " | |||
| lt_c_t_fieldstatus | TYPE STANDARD TABLE OF BKKP_T_FIELDSTATUS, " | |||
| lv_i_dia_var | TYPE BKK_BANK_VAR_FL, " | |||
| lv_i_dynnr | TYPE SY-DYNNR, " | |||
| lv_i_exclbutton | TYPE TBKKI_02A-EXCLBUTTON. " |
|   CALL FUNCTION 'BKK_PAYM_CHNG_FIELDSTAT' "Verbinden der Feldstatus in Abhängigkeit v. RCV-Identifizierung |
| EXPORTING | ||
| I_OBJECT | = lv_i_object | |
| I_DIA_VAR | = lv_i_dia_var | |
| I_DYNNR | = lv_i_dynnr | |
| I_EXCLBUTTON | = lv_i_exclbutton | |
| TABLES | ||
| C_T_FIELDSTATUS | = lt_c_t_fieldstatus | |
| . " BKK_PAYM_CHNG_FIELDSTAT | ||
ABAP code using 7.40 inline data declarations to call FM BKK_PAYM_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 OBJECT FROM TBKKI_02A INTO @DATA(ld_i_object). | ||||
| "SELECT single DYNNR FROM SY INTO @DATA(ld_i_dynnr). | ||||
| "SELECT single EXCLBUTTON FROM TBKKI_02A INTO @DATA(ld_i_exclbutton). | ||||
Search for further information about these or an SAP related objects