SAP FVD_BAFIN_GET_DATA Function Module for Get Loan Data for German Federal Financial Supervisory Authority









FVD_BAFIN_GET_DATA is a standard fvd bafin get data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get Loan Data for German Federal Financial Supervisory Authority 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 fvd bafin get data FM, simply by entering the name FVD_BAFIN_GET_DATA into the relevant SAP transaction such as SE37 or SE38.

Function Group: FVD_KWG24C
Program Name: SAPLFVD_KWG24C
Main Program: SAPLFVD_KWG24C
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FVD_BAFIN_GET_DATA 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 'FVD_BAFIN_GET_DATA'"Get Loan Data for German Federal Financial Supervisory Authority
EXPORTING
I_FLG_PARTNER_CHANGE = "'X' Partneränderungen wurden vollzogen, ' ' keine Änderung
I_TDA10_STATUS = "Status in dem sich der Vertrag befindet
I_TDA10_BEARB = "Kennzeichen für Bearbeitungsvorgang
I_STR_VDARL = "Darlehenstruktur
I_TAB_VZZKOKO = "Table Type for Table VZZKOKO
I_TAB_XVDGPO = "Geschäftspartnerzuordnung - neu
I_TAB_YVDGPO = "Geschäftspartnerzuordnung - alt
* I_FLG_NO_TABLE_SET = ' ' "' ' TTKWGDATA verbuchen 'X' TTKWGDATA nicht verbuchen
* I_FLG_INIT_TIMESTAMP = ' ' "Neuen Timestamp für Verbucher ermitteln

IMPORTING
E_STR_VDARL = "Loan
E_TAB_TTKWGDATA = "Table Type for ttkwgdata
.



IMPORTING Parameters details for FVD_BAFIN_GET_DATA

I_FLG_PARTNER_CHANGE - 'X' Partneränderungen wurden vollzogen, ' ' keine Änderung

Data type: XFELD
Optional: No
Call by Reference: Yes

I_TDA10_STATUS - Status in dem sich der Vertrag befindet

Data type: TDA10-STATUS
Optional: No
Call by Reference: Yes

I_TDA10_BEARB - Kennzeichen für Bearbeitungsvorgang

Data type: TDA10-BEARB
Optional: No
Call by Reference: Yes

I_STR_VDARL - Darlehenstruktur

Data type: VDARL
Optional: No
Call by Reference: Yes

I_TAB_VZZKOKO - Table Type for Table VZZKOKO

Data type: TRTY_VZZKOKO
Optional: No
Call by Reference: Yes

I_TAB_XVDGPO - Geschäftspartnerzuordnung - neu

Data type: TRTY_VDGPO
Optional: No
Call by Reference: Yes

I_TAB_YVDGPO - Geschäftspartnerzuordnung - alt

Data type: TRTY_VDGPO
Optional: No
Call by Reference: Yes

I_FLG_NO_TABLE_SET - ' ' TTKWGDATA verbuchen 'X' TTKWGDATA nicht verbuchen

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_FLG_INIT_TIMESTAMP - Neuen Timestamp für Verbucher ermitteln

Data type: XFELD
Default: SPACE
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for FVD_BAFIN_GET_DATA

E_STR_VDARL - Loan

Data type: VDARL
Optional: No
Call by Reference: Yes

E_TAB_TTKWGDATA - Table Type for ttkwgdata

Data type: TRTY_TTKWGDATA
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FVD_BAFIN_GET_DATA 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_e_str_vdarl  TYPE VDARL, "   
lv_i_flg_partner_change  TYPE XFELD, "   
lv_i_tda10_status  TYPE TDA10-STATUS, "   
lv_e_tab_ttkwgdata  TYPE TRTY_TTKWGDATA, "   
lv_i_tda10_bearb  TYPE TDA10-BEARB, "   
lv_i_str_vdarl  TYPE VDARL, "   
lv_i_tab_vzzkoko  TYPE TRTY_VZZKOKO, "   
lv_i_tab_xvdgpo  TYPE TRTY_VDGPO, "   
lv_i_tab_yvdgpo  TYPE TRTY_VDGPO, "   
lv_i_flg_no_table_set  TYPE XFELD, "   SPACE
lv_i_flg_init_timestamp  TYPE XFELD. "   SPACE

  CALL FUNCTION 'FVD_BAFIN_GET_DATA'  "Get Loan Data for German Federal Financial Supervisory Authority
    EXPORTING
         I_FLG_PARTNER_CHANGE = lv_i_flg_partner_change
         I_TDA10_STATUS = lv_i_tda10_status
         I_TDA10_BEARB = lv_i_tda10_bearb
         I_STR_VDARL = lv_i_str_vdarl
         I_TAB_VZZKOKO = lv_i_tab_vzzkoko
         I_TAB_XVDGPO = lv_i_tab_xvdgpo
         I_TAB_YVDGPO = lv_i_tab_yvdgpo
         I_FLG_NO_TABLE_SET = lv_i_flg_no_table_set
         I_FLG_INIT_TIMESTAMP = lv_i_flg_init_timestamp
    IMPORTING
         E_STR_VDARL = lv_e_str_vdarl
         E_TAB_TTKWGDATA = lv_e_tab_ttkwgdata
. " FVD_BAFIN_GET_DATA




ABAP code using 7.40 inline data declarations to call FM FVD_BAFIN_GET_DATA

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 STATUS FROM TDA10 INTO @DATA(ld_i_tda10_status).
 
 
"SELECT single BEARB FROM TDA10 INTO @DATA(ld_i_tda10_bearb).
 
 
 
 
 
DATA(ld_i_flg_no_table_set) = ' '.
 
DATA(ld_i_flg_init_timestamp) = ' '.
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!