FVD_BO_DB_UPDATE_SIMPLE 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_BO_DB_UPDATE_SIMPLE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FVD_BO_DB
Released Date:
Not Released
Processing type: Start update immediately (start immed)
CALL FUNCTION 'FVD_BO_DB_UPDATE_SIMPLE' "
* EXPORTING
* i_str_insert_vdausz = " vdausz
* i_str_update_vdbohead = " vdbohead
* i_tab_insert_vdausz = " trty_vdausz_b
* i_str_delete_vdausz = " vdausz
* i_str_insert_vdbobepp = " vdbobepp
* i_str_delete_vdbobepp = " vdbobepp
* i_str_insert_vddisbtemp = " vddisbtemp Disbursements That Were Not Released
* i_str_delete_vddisbtemp = " vddisbtemp Disbursements That Were Not Released
EXCEPTIONS
ERROR = 1 "
. " FVD_BO_DB_UPDATE_SIMPLE
The ABAP code below is a full code listing to execute function module FVD_BO_DB_UPDATE_SIMPLE 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_str_insert_vdausz) = 'Check type of data required'.
DATA(ld_i_str_update_vdbohead) = 'Check type of data required'.
DATA(ld_i_tab_insert_vdausz) = 'Check type of data required'.
DATA(ld_i_str_delete_vdausz) = 'Check type of data required'.
DATA(ld_i_str_insert_vdbobepp) = 'Check type of data required'.
DATA(ld_i_str_delete_vdbobepp) = 'Check type of data required'.
DATA(ld_i_str_insert_vddisbtemp) = 'Check type of data required'.
DATA(ld_i_str_delete_vddisbtemp) = 'Check type of data required'. . CALL FUNCTION 'FVD_BO_DB_UPDATE_SIMPLE' * EXPORTING * i_str_insert_vdausz = ld_i_str_insert_vdausz * i_str_update_vdbohead = ld_i_str_update_vdbohead * i_tab_insert_vdausz = ld_i_tab_insert_vdausz * i_str_delete_vdausz = ld_i_str_delete_vdausz * i_str_insert_vdbobepp = ld_i_str_insert_vdbobepp * i_str_delete_vdbobepp = ld_i_str_delete_vdbobepp * i_str_insert_vddisbtemp = ld_i_str_insert_vddisbtemp * i_str_delete_vddisbtemp = ld_i_str_delete_vddisbtemp EXCEPTIONS ERROR = 1 . " FVD_BO_DB_UPDATE_SIMPLE
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_str_insert_vdausz | TYPE VDAUSZ , |
| ld_i_str_update_vdbohead | TYPE VDBOHEAD , |
| ld_i_tab_insert_vdausz | TYPE TRTY_VDAUSZ_B , |
| ld_i_str_delete_vdausz | TYPE VDAUSZ , |
| ld_i_str_insert_vdbobepp | TYPE VDBOBEPP , |
| ld_i_str_delete_vdbobepp | TYPE VDBOBEPP , |
| ld_i_str_insert_vddisbtemp | TYPE VDDISBTEMP , |
| ld_i_str_delete_vddisbtemp | TYPE VDDISBTEMP . |
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_BO_DB_UPDATE_SIMPLE or its description.
FVD_BO_DB_UPDATE_SIMPLE - FVD_BO_DB_SAVE_BUS - Save All BO Data to Database FVD_BO_DB_READ_VDIOA_CALC - Read Business Operation Data from Database FVD_BO_DB_READ_VDEXTSKIP - Read Business Operation Data from Database FVD_BO_DB_READ_VDDISB - Read Business Operation Data from Database FVD_BO_DB_READ_VDDEBTTRANS - Read Borrower Change Data from Database