FVD_UPDATE_LOAN is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name FVD_UPDATE_LOAN into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FVD_UPDATE
Released Date:
Not Released
Processing type: Start update immediately (start immed)
CALL FUNCTION 'FVD_UPDATE_LOAN' "Update Module - Loans
* EXPORTING
* i_tab_vdarl_insert = " trty_vdarl Table Type for Table VDARL
* i_tab_vdarl_update = " trty_vdarl Table Type for Table VDARL
* i_tab_vdarl_delete = " trty_vdarl Table Type for Table VDARL
* i_tab_vzzkoko_insert = " trty_vzzkoko Table Type for Table VZZKOKO
* i_tab_vzzkoko_update = " trty_vzzkoko Table Type for Table VZZKOKO
* i_tab_vzzkoko_delete = " trty_vzzkoko Table Type for Table VZZKOKO
* i_tab_vzzkopo_insert = " trty_vzzkopo Table Type for Table VZZKOPO
* i_tab_vzzkopo_update = " trty_vzzkopo Table Type for Table VZZKOPO
* i_tab_vzzkopo_delete = " trty_vzzkopo Table Type for Table VZZKOPO
* i_tab_vzzkopa_insert = " trty_vzzkopa Table Type for Table VZZKOPA
* i_tab_vzzkopa_update = " trty_vzzkopa Table Type for Table VZZKOPA
* i_tab_vzzkopa_delete = " trty_vzzkopa Table Type for Table VZZKOPA
* i_tab_vdbepp_insert = " trty_vdbepp Table Type for Table VDBEPP
* i_tab_vdbepp_update = " trty_vdbepp Table Type for Table VDBEPP
* i_tab_vdbepp_delete = " trty_vdbepp Table Type for Table VDBEPP
* i_tab_vdarlsic_insert = " trty_vdarlsic Table Type Collaterals VDARLSIC
* i_tab_vdarlsic_update = " trty_vdarlsic Table Type Collaterals VDARLSIC
* i_tab_vdarlsic_delete = " trty_vdarlsic Table Type Collaterals VDARLSIC
* i_tab_vdarlobj_insert = " trty_vdarlobj Table Type Objects VDARLOBJ
* i_tab_vdarlobj_update = " trty_vdarlobj Table Type Objects VDARLOBJ
* i_tab_vdarlobj_delete = " trty_vdarlobj Table Type Objects VDARLOBJ
* i_tab_vdcharacdoc_insert = " trty_vdcharacdoc Table Type for Table VDCHARACDOC
* i_tab_vdcharacdoc_update = " trty_vdcharacdoc Table Type for Table VDCHARACDOC
* i_tab_vdcharacdoc_delete = " trty_vdcharacdoc Table Type for Table VDCHARACDOC
* i_tab_vdsubfacility_insert = " trty_vdsubfacility Table Type for VDSUBFACILITY
* i_tab_vdsubfacility_update = " trty_vdsubfacility Table Type for VDSUBFACILITY
* i_tab_vdsubfacility_delete = " trty_vdsubfacility Table Type for VDSUBFACILITY
* i_tab_vdlink_dd2sf_insert = " trty_vdlink_dd2sf Table type for VDLINK_DD2SF
* i_tab_vdlink_dd2sf_update = " trty_vdlink_dd2sf Table type for VDLINK_DD2SF
* i_tab_vdlink_dd2sf_delete = " trty_vdlink_dd2sf Table type for VDLINK_DD2SF
EXCEPTIONS
ERROR = 1 " Update Errors
. " FVD_UPDATE_LOAN
The ABAP code below is a full code listing to execute function module FVD_UPDATE_LOAN including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
DATA(ld_i_tab_vdarl_insert) = 'Check type of data required'.
DATA(ld_i_tab_vdarl_update) = 'Check type of data required'.
DATA(ld_i_tab_vdarl_delete) = 'Check type of data required'.
DATA(ld_i_tab_vzzkoko_insert) = 'Check type of data required'.
DATA(ld_i_tab_vzzkoko_update) = 'Check type of data required'.
DATA(ld_i_tab_vzzkoko_delete) = 'Check type of data required'.
DATA(ld_i_tab_vzzkopo_insert) = 'Check type of data required'.
DATA(ld_i_tab_vzzkopo_update) = 'Check type of data required'.
DATA(ld_i_tab_vzzkopo_delete) = 'Check type of data required'.
DATA(ld_i_tab_vzzkopa_insert) = 'Check type of data required'.
DATA(ld_i_tab_vzzkopa_update) = 'Check type of data required'.
DATA(ld_i_tab_vzzkopa_delete) = 'Check type of data required'.
DATA(ld_i_tab_vdbepp_insert) = 'Check type of data required'.
DATA(ld_i_tab_vdbepp_update) = 'Check type of data required'.
DATA(ld_i_tab_vdbepp_delete) = 'Check type of data required'.
DATA(ld_i_tab_vdarlsic_insert) = 'Check type of data required'.
DATA(ld_i_tab_vdarlsic_update) = 'Check type of data required'.
DATA(ld_i_tab_vdarlsic_delete) = 'Check type of data required'.
DATA(ld_i_tab_vdarlobj_insert) = 'Check type of data required'.
DATA(ld_i_tab_vdarlobj_update) = 'Check type of data required'.
DATA(ld_i_tab_vdarlobj_delete) = 'Check type of data required'.
DATA(ld_i_tab_vdcharacdoc_insert) = 'Check type of data required'.
DATA(ld_i_tab_vdcharacdoc_update) = 'Check type of data required'.
DATA(ld_i_tab_vdcharacdoc_delete) = 'Check type of data required'.
DATA(ld_i_tab_vdsubfacility_insert) = 'Check type of data required'.
DATA(ld_i_tab_vdsubfacility_update) = 'Check type of data required'.
DATA(ld_i_tab_vdsubfacility_delete) = 'Check type of data required'.
DATA(ld_i_tab_vdlink_dd2sf_insert) = 'Check type of data required'.
DATA(ld_i_tab_vdlink_dd2sf_update) = 'Check type of data required'.
DATA(ld_i_tab_vdlink_dd2sf_delete) = 'Check type of data required'. . CALL FUNCTION 'FVD_UPDATE_LOAN' * EXPORTING * i_tab_vdarl_insert = ld_i_tab_vdarl_insert * i_tab_vdarl_update = ld_i_tab_vdarl_update * i_tab_vdarl_delete = ld_i_tab_vdarl_delete * i_tab_vzzkoko_insert = ld_i_tab_vzzkoko_insert * i_tab_vzzkoko_update = ld_i_tab_vzzkoko_update * i_tab_vzzkoko_delete = ld_i_tab_vzzkoko_delete * i_tab_vzzkopo_insert = ld_i_tab_vzzkopo_insert * i_tab_vzzkopo_update = ld_i_tab_vzzkopo_update * i_tab_vzzkopo_delete = ld_i_tab_vzzkopo_delete * i_tab_vzzkopa_insert = ld_i_tab_vzzkopa_insert * i_tab_vzzkopa_update = ld_i_tab_vzzkopa_update * i_tab_vzzkopa_delete = ld_i_tab_vzzkopa_delete * i_tab_vdbepp_insert = ld_i_tab_vdbepp_insert * i_tab_vdbepp_update = ld_i_tab_vdbepp_update * i_tab_vdbepp_delete = ld_i_tab_vdbepp_delete * i_tab_vdarlsic_insert = ld_i_tab_vdarlsic_insert * i_tab_vdarlsic_update = ld_i_tab_vdarlsic_update * i_tab_vdarlsic_delete = ld_i_tab_vdarlsic_delete * i_tab_vdarlobj_insert = ld_i_tab_vdarlobj_insert * i_tab_vdarlobj_update = ld_i_tab_vdarlobj_update * i_tab_vdarlobj_delete = ld_i_tab_vdarlobj_delete * i_tab_vdcharacdoc_insert = ld_i_tab_vdcharacdoc_insert * i_tab_vdcharacdoc_update = ld_i_tab_vdcharacdoc_update * i_tab_vdcharacdoc_delete = ld_i_tab_vdcharacdoc_delete * i_tab_vdsubfacility_insert = ld_i_tab_vdsubfacility_insert * i_tab_vdsubfacility_update = ld_i_tab_vdsubfacility_update * i_tab_vdsubfacility_delete = ld_i_tab_vdsubfacility_delete * i_tab_vdlink_dd2sf_insert = ld_i_tab_vdlink_dd2sf_insert * i_tab_vdlink_dd2sf_update = ld_i_tab_vdlink_dd2sf_update * i_tab_vdlink_dd2sf_delete = ld_i_tab_vdlink_dd2sf_delete EXCEPTIONS ERROR = 1 . " FVD_UPDATE_LOAN
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ENDIF.
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_i_tab_vdarl_insert | TYPE TRTY_VDARL , |
| ld_i_tab_vdarl_update | TYPE TRTY_VDARL , |
| ld_i_tab_vdarl_delete | TYPE TRTY_VDARL , |
| ld_i_tab_vzzkoko_insert | TYPE TRTY_VZZKOKO , |
| ld_i_tab_vzzkoko_update | TYPE TRTY_VZZKOKO , |
| ld_i_tab_vzzkoko_delete | TYPE TRTY_VZZKOKO , |
| ld_i_tab_vzzkopo_insert | TYPE TRTY_VZZKOPO , |
| ld_i_tab_vzzkopo_update | TYPE TRTY_VZZKOPO , |
| ld_i_tab_vzzkopo_delete | TYPE TRTY_VZZKOPO , |
| ld_i_tab_vzzkopa_insert | TYPE TRTY_VZZKOPA , |
| ld_i_tab_vzzkopa_update | TYPE TRTY_VZZKOPA , |
| ld_i_tab_vzzkopa_delete | TYPE TRTY_VZZKOPA , |
| ld_i_tab_vdbepp_insert | TYPE TRTY_VDBEPP , |
| ld_i_tab_vdbepp_update | TYPE TRTY_VDBEPP , |
| ld_i_tab_vdbepp_delete | TYPE TRTY_VDBEPP , |
| ld_i_tab_vdarlsic_insert | TYPE TRTY_VDARLSIC , |
| ld_i_tab_vdarlsic_update | TYPE TRTY_VDARLSIC , |
| ld_i_tab_vdarlsic_delete | TYPE TRTY_VDARLSIC , |
| ld_i_tab_vdarlobj_insert | TYPE TRTY_VDARLOBJ , |
| ld_i_tab_vdarlobj_update | TYPE TRTY_VDARLOBJ , |
| ld_i_tab_vdarlobj_delete | TYPE TRTY_VDARLOBJ , |
| ld_i_tab_vdcharacdoc_insert | TYPE TRTY_VDCHARACDOC , |
| ld_i_tab_vdcharacdoc_update | TYPE TRTY_VDCHARACDOC , |
| ld_i_tab_vdcharacdoc_delete | TYPE TRTY_VDCHARACDOC , |
| ld_i_tab_vdsubfacility_insert | TYPE TRTY_VDSUBFACILITY , |
| ld_i_tab_vdsubfacility_update | TYPE TRTY_VDSUBFACILITY , |
| ld_i_tab_vdsubfacility_delete | TYPE TRTY_VDSUBFACILITY , |
| ld_i_tab_vdlink_dd2sf_insert | TYPE TRTY_VDLINK_DD2SF , |
| ld_i_tab_vdlink_dd2sf_update | TYPE TRTY_VDLINK_DD2SF , |
| ld_i_tab_vdlink_dd2sf_delete | TYPE TRTY_VDLINK_DD2SF . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name FVD_UPDATE_LOAN or its description.