RFVD_PRODUCT_DELETE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RFVD_PRODUCT_DELETE into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FNLOS_PRODUCT_DEL - Delete Products in Aquisition System
FNLOC_PRODUCT_DEL - Delete Products - Lines of Credit
FN_CL_PRODUCT_DEL - Delete Products - Consumer Loans
FNINL_PRODUCT_DEL - Delete Installment Loan Products
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Title: Delete a Product
Text Symbol: 001 = Delete a Product
Text Symbol: 002 = Version (Optional)
Text Symbol: 003 = Product Category
Text Symbol: 004 = Product
TDPR_PROD_ADMIN_CONST,
TDPR_BASIS_CONST_PRIVATE.
No SAP DATABASE tables are accessed within this REPORT code!
FVD_PRODUCTV_GET_SINGLE CALL FUNCTION 'FVD_PRODUCTV_GET_SINGLE' EXPORTING i_prodint = l_prodint i_version = p_vers
IMPORTING
e_rcd = l_rcd.
FVD_PROD_IS_IT_USED CALL FUNCTION 'FVD_PROD_IS_IT_USED' EXPORTING I_PRODTYPE = p_prodt I_PRODINT = t_prodv-prodint I_VERSION = t_prodv-version IMPORTING E_FLAG_FOUND = l_flag_found E_CONTRACT_NUMBER = l_contract_number.
FVD_DB_PRD_CON_R_W_PRD_A CALL FUNCTION 'FVD_DB_PRD_CON_R_W_PRD_A' EXPORTING * I_LAYER_BUFFER = CON_SOURCE_DB I_PRODINT = l_prodint EXCEPTIONS NO_ASS1_FOR_PROD = 1 NO_ASS2_FOR_PROD = 2 NO_ASS_FOR_PROD = 3 OTHERS = 4.
FVD_TRANSPORT_ORDER_CREATE * CALL FUNCTION 'FVD_TRANSPORT_ORDER_CREATE' * TABLES * t_product = t_product * t_productt = t_productt * t_prodv = t_prodv * t_va = t_va * t_va_fld = t_va_fld * t_va_fldm = t_va_fldm.
FVD_PRODUCT_GET_INT_KEY CALL FUNCTION 'FVD_PRODUCT_GET_INT_KEY' EXPORTING i_prodtype = u_prodtype i_prodext = u_prodext IMPORTING e_prodint = c_prodint e_rcd = l_rcd.
FVD_PRODUCT_GET CALL FUNCTION 'FVD_PRODUCT_GET' EXPORTING i_prodint = c_prodint IMPORTING e_str_tdpr_product = l_tdpr_product.
FVD_PRODUCT_GET CALL FUNCTION 'FVD_PRODUCT_GET' EXPORTING i_prodint = u_prodint * I_CLIENT = SY-MANDT IMPORTING e_str_tdpr_product = l_str_product e_rcd = l_rcd.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.