SAP FVD_DISB_OL_CHECK_DISB Function Module for Checks for Disbursement - Loan-Specific
FVD_DISB_OL_CHECK_DISB is a standard fvd disb ol check disb SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Checks for Disbursement - Loan-Specific 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 disb ol check disb FM, simply by entering the name FVD_DISB_OL_CHECK_DISB into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVD_DISB_OL
Program Name: SAPLFVD_DISB_OL
Main Program: SAPLFVD_DISB_OL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FVD_DISB_OL_CHECK_DISB 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_DISB_OL_CHECK_DISB'"Checks for Disbursement - Loan-Specific.
EXPORTING
I_CHECK_MODE = "Check Mode
* I_S_VZZKOKO = "Table Condition Header
* I_TAB_VZZKOKO = "Table Type for Table VZZKOKO
* I_TAB_VVZZKOPO = "Table Type for Table VVZZKOPO
* I_TAB_VZZBEPP = "Table Type for Structure VZZBEPP
* I_S_TZC37 = "Financial Assets Management Status Definition
* I_S_TZPA = "Financial Assets Management Product Types
* I_S_TZPAB = "Financial Assets Management Product Types
* I_FLG_CHANGED = "Flag: KT wurde geändert
* I_S_STEER_OL = "Control Data Object Layer Disbursement
* I_S_STEER_UI = "Control Data for Disbursement User Interface
* I_S_DISPLAY = "Display Data for Disbursement
* I_S_DISB_FIRST = "Interface Structure and Control Data for Disbursement
* I_S_VDBOHEAD = "Business Operation: Header
* I_S_VDDISB = "Disbursement Specific Header Data
* I_S_VDARL = "Loan
IMPORTING Parameters details for FVD_DISB_OL_CHECK_DISB
I_CHECK_MODE - Check Mode
Data type: CHAR1Optional: No
Call by Reference: Yes
I_S_VZZKOKO - Table Condition Header
Data type: VZZKOKOOptional: Yes
Call by Reference: Yes
I_TAB_VZZKOKO - Table Type for Table VZZKOKO
Data type: TRTY_VZZKOKOOptional: Yes
Call by Reference: Yes
I_TAB_VVZZKOPO - Table Type for Table VVZZKOPO
Data type: TRTY_VVZZKOPOOptional: Yes
Call by Reference: Yes
I_TAB_VZZBEPP - Table Type for Structure VZZBEPP
Data type: TRTY_VZZBEPPOptional: Yes
Call by Reference: Yes
I_S_TZC37 - Financial Assets Management Status Definition
Data type: TZC37Optional: Yes
Call by Reference: Yes
I_S_TZPA - Financial Assets Management Product Types
Data type: TZPAOptional: Yes
Call by Reference: Yes
I_S_TZPAB - Financial Assets Management Product Types
Data type: TZPABOptional: Yes
Call by Reference: Yes
I_FLG_CHANGED - Flag: KT wurde geändert
Data type: COptional: Yes
Call by Reference: Yes
I_S_STEER_OL - Control Data Object Layer Disbursement
Data type: RDISB_STEER_OLOptional: Yes
Call by Reference: Yes
I_S_STEER_UI - Control Data for Disbursement User Interface
Data type: RDISB_STEER_UIOptional: Yes
Call by Reference: Yes
I_S_DISPLAY - Display Data for Disbursement
Data type: RDISB_DISPLAYOptional: Yes
Call by Reference: Yes
I_S_DISB_FIRST - Interface Structure and Control Data for Disbursement
Data type: RDISBOptional: Yes
Call by Reference: Yes
I_S_VDBOHEAD - Business Operation: Header
Data type: VDBOHEADOptional: Yes
Call by Reference: Yes
I_S_VDDISB - Disbursement Specific Header Data
Data type: VDDISBOptional: Yes
Call by Reference: Yes
I_S_VDARL - Loan
Data type: VDARLOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for FVD_DISB_OL_CHECK_DISB 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_check_mode | TYPE CHAR1, " | |||
| lv_i_s_vzzkoko | TYPE VZZKOKO, " | |||
| lv_i_tab_vzzkoko | TYPE TRTY_VZZKOKO, " | |||
| lv_i_tab_vvzzkopo | TYPE TRTY_VVZZKOPO, " | |||
| lv_i_tab_vzzbepp | TYPE TRTY_VZZBEPP, " | |||
| lv_i_s_tzc37 | TYPE TZC37, " | |||
| lv_i_s_tzpa | TYPE TZPA, " | |||
| lv_i_s_tzpab | TYPE TZPAB, " | |||
| lv_i_flg_changed | TYPE C, " | |||
| lv_i_s_steer_ol | TYPE RDISB_STEER_OL, " | |||
| lv_i_s_steer_ui | TYPE RDISB_STEER_UI, " | |||
| lv_i_s_display | TYPE RDISB_DISPLAY, " | |||
| lv_i_s_disb_first | TYPE RDISB, " | |||
| lv_i_s_vdbohead | TYPE VDBOHEAD, " | |||
| lv_i_s_vddisb | TYPE VDDISB, " | |||
| lv_i_s_vdarl | TYPE VDARL. " |
|   CALL FUNCTION 'FVD_DISB_OL_CHECK_DISB' "Checks for Disbursement - Loan-Specific |
| EXPORTING | ||
| I_CHECK_MODE | = lv_i_check_mode | |
| I_S_VZZKOKO | = lv_i_s_vzzkoko | |
| I_TAB_VZZKOKO | = lv_i_tab_vzzkoko | |
| I_TAB_VVZZKOPO | = lv_i_tab_vvzzkopo | |
| I_TAB_VZZBEPP | = lv_i_tab_vzzbepp | |
| I_S_TZC37 | = lv_i_s_tzc37 | |
| I_S_TZPA | = lv_i_s_tzpa | |
| I_S_TZPAB | = lv_i_s_tzpab | |
| I_FLG_CHANGED | = lv_i_flg_changed | |
| I_S_STEER_OL | = lv_i_s_steer_ol | |
| I_S_STEER_UI | = lv_i_s_steer_ui | |
| I_S_DISPLAY | = lv_i_s_display | |
| I_S_DISB_FIRST | = lv_i_s_disb_first | |
| I_S_VDBOHEAD | = lv_i_s_vdbohead | |
| I_S_VDDISB | = lv_i_s_vddisb | |
| I_S_VDARL | = lv_i_s_vdarl | |
| . " FVD_DISB_OL_CHECK_DISB | ||
ABAP code using 7.40 inline data declarations to call FM FVD_DISB_OL_CHECK_DISB
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