SAP FVD_LOAN_OL_GET_CUSTOMIZING Function Module for Read Customizing Tables
FVD_LOAN_OL_GET_CUSTOMIZING is a standard fvd loan ol get customizing SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Read Customizing Tables 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 loan ol get customizing FM, simply by entering the name FVD_LOAN_OL_GET_CUSTOMIZING into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVD_LOAN_OL
Program Name: SAPLFVD_LOAN_OL
Main Program: SAPLFVD_LOAN_OL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FVD_LOAN_OL_GET_CUSTOMIZING 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_LOAN_OL_GET_CUSTOMIZING'"Read Customizing Tables.
EXPORTING
* I_BUKRS = "Company Code
* I_GSART = "Transaction Type (Reference Interest Rate)
* I_SBEWART = "Flow Type
* I_SKOGRP = "Condition Group
* I_SKOART = "Condition Type (Smallest Subdivision of Condition Records)
* I_SZKEY = "Indicator for Control of Incoming Payment Distribution
* I_STATU = "Policy Status
* I_SREG = "File Item
IMPORTING
E_S_T001 = "Company Codes
E_S_TZPA = "Financial Assets Management Product Types
E_S_TDP1 = "File register definition
E_TAB_TD19 = "Table Type TD19
E_TAB_TD30 = "Table Type TD30
E_TAB_TD07T = "Table Type td07t
E_S_TZPAB = "Financial Assets Management Product Types
E_S_TZBZ = "Company Code: Additional Data
E_S_TZB0A = "Definition of flow types
E_S_TZB0T = "Flow types text table
E_S_TZK01 = "Condition Types
E_S_TZK02 = "Condition group, condition group - condition type allocation
E_S_TZK0A = "Condition type texts (Table TZK01)
E_S_TVZ01 = "Control of Incoming Payments
E_S_TZC37 = "Financial Assets Management Status Definition
EXCEPTIONS
FAILED = 1
IMPORTING Parameters details for FVD_LOAN_OL_GET_CUSTOMIZING
I_BUKRS - Company Code
Data type: BUKRSOptional: Yes
Call by Reference: No ( called with pass by value option)
I_GSART - Transaction Type (Reference Interest Rate)
Data type: GSARTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_SBEWART - Flow Type
Data type: SBEWARTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_SKOGRP - Condition Group
Data type: SKOGRPOptional: Yes
Call by Reference: No ( called with pass by value option)
I_SKOART - Condition Type (Smallest Subdivision of Condition Records)
Data type: SKOARTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_SZKEY - Indicator for Control of Incoming Payment Distribution
Data type: VVSZKEYOptional: Yes
Call by Reference: No ( called with pass by value option)
I_STATU - Policy Status
Data type: VVUSTATOptional: Yes
Call by Reference: No ( called with pass by value option)
I_SREG - File Item
Data type: VVSREGOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for FVD_LOAN_OL_GET_CUSTOMIZING
E_S_T001 - Company Codes
Data type: T001Optional: No
Call by Reference: No ( called with pass by value option)
E_S_TZPA - Financial Assets Management Product Types
Data type: TZPAOptional: No
Call by Reference: No ( called with pass by value option)
E_S_TDP1 - File register definition
Data type: TDP1Optional: No
Call by Reference: No ( called with pass by value option)
E_TAB_TD19 - Table Type TD19
Data type: TRTY_TD19Optional: No
Call by Reference: No ( called with pass by value option)
E_TAB_TD30 - Table Type TD30
Data type: TRTY_TD30Optional: No
Call by Reference: No ( called with pass by value option)
E_TAB_TD07T - Table Type td07t
Data type: TRTY_TD07TOptional: No
Call by Reference: No ( called with pass by value option)
E_S_TZPAB - Financial Assets Management Product Types
Data type: TZPABOptional: No
Call by Reference: No ( called with pass by value option)
E_S_TZBZ - Company Code: Additional Data
Data type: TZBZOptional: No
Call by Reference: No ( called with pass by value option)
E_S_TZB0A - Definition of flow types
Data type: TZB0AOptional: No
Call by Reference: No ( called with pass by value option)
E_S_TZB0T - Flow types text table
Data type: TZB0TOptional: No
Call by Reference: No ( called with pass by value option)
E_S_TZK01 - Condition Types
Data type: TZK01Optional: No
Call by Reference: No ( called with pass by value option)
E_S_TZK02 - Condition group, condition group - condition type allocation
Data type: TZK02Optional: No
Call by Reference: No ( called with pass by value option)
E_S_TZK0A - Condition type texts (Table TZK01)
Data type: TZK0AOptional: No
Call by Reference: No ( called with pass by value option)
E_S_TVZ01 - Control of Incoming Payments
Data type: TVZ01Optional: No
Call by Reference: No ( called with pass by value option)
E_S_TZC37 - Financial Assets Management Status Definition
Data type: TZC37Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
FAILED - Fehler beim Einlesen der Tabellen
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FVD_LOAN_OL_GET_CUSTOMIZING 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_failed | TYPE STRING, " | |||
| lv_i_bukrs | TYPE BUKRS, " | |||
| lv_e_s_t001 | TYPE T001, " | |||
| lv_e_s_tzpa | TYPE TZPA, " | |||
| lv_e_s_tdp1 | TYPE TDP1, " | |||
| lv_e_tab_td19 | TYPE TRTY_TD19, " | |||
| lv_e_tab_td30 | TYPE TRTY_TD30, " | |||
| lv_e_tab_td07t | TYPE TRTY_TD07T, " | |||
| lv_e_s_tzpab | TYPE TZPAB, " | |||
| lv_i_gsart | TYPE GSART, " | |||
| lv_e_s_tzbz | TYPE TZBZ, " | |||
| lv_e_s_tzb0a | TYPE TZB0A, " | |||
| lv_i_sbewart | TYPE SBEWART, " | |||
| lv_i_skogrp | TYPE SKOGRP, " | |||
| lv_e_s_tzb0t | TYPE TZB0T, " | |||
| lv_i_skoart | TYPE SKOART, " | |||
| lv_e_s_tzk01 | TYPE TZK01, " | |||
| lv_i_szkey | TYPE VVSZKEY, " | |||
| lv_e_s_tzk02 | TYPE TZK02, " | |||
| lv_i_statu | TYPE VVUSTAT, " | |||
| lv_e_s_tzk0a | TYPE TZK0A, " | |||
| lv_i_sreg | TYPE VVSREG, " | |||
| lv_e_s_tvz01 | TYPE TVZ01, " | |||
| lv_e_s_tzc37 | TYPE TZC37. " |
|   CALL FUNCTION 'FVD_LOAN_OL_GET_CUSTOMIZING' "Read Customizing Tables |
| EXPORTING | ||
| I_BUKRS | = lv_i_bukrs | |
| I_GSART | = lv_i_gsart | |
| I_SBEWART | = lv_i_sbewart | |
| I_SKOGRP | = lv_i_skogrp | |
| I_SKOART | = lv_i_skoart | |
| I_SZKEY | = lv_i_szkey | |
| I_STATU | = lv_i_statu | |
| I_SREG | = lv_i_sreg | |
| IMPORTING | ||
| E_S_T001 | = lv_e_s_t001 | |
| E_S_TZPA | = lv_e_s_tzpa | |
| E_S_TDP1 | = lv_e_s_tdp1 | |
| E_TAB_TD19 | = lv_e_tab_td19 | |
| E_TAB_TD30 | = lv_e_tab_td30 | |
| E_TAB_TD07T | = lv_e_tab_td07t | |
| E_S_TZPAB | = lv_e_s_tzpab | |
| E_S_TZBZ | = lv_e_s_tzbz | |
| E_S_TZB0A | = lv_e_s_tzb0a | |
| E_S_TZB0T | = lv_e_s_tzb0t | |
| E_S_TZK01 | = lv_e_s_tzk01 | |
| E_S_TZK02 | = lv_e_s_tzk02 | |
| E_S_TZK0A | = lv_e_s_tzk0a | |
| E_S_TVZ01 | = lv_e_s_tvz01 | |
| E_S_TZC37 | = lv_e_s_tzc37 | |
| EXCEPTIONS | ||
| FAILED = 1 | ||
| . " FVD_LOAN_OL_GET_CUSTOMIZING | ||
ABAP code using 7.40 inline data declarations to call FM FVD_LOAN_OL_GET_CUSTOMIZING
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.Search for further information about these or an SAP related objects