RFVDAUTOPOSTSINGLE 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 RFVDAUTOPOSTSINGLE into the relevant SAP transactions such as SE38 or SE80
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.
Selection Text: ANLNR1 = Contract Number
Selection Text: BKTXT = Document Text
Selection Text: BUDAT = Posting Date
Selection Text: BUKRS = Company Code
Selection Text: DSOLL = Debit Position Date
Selection Text: PROTOCOL = Log
Selection Text: SIM = Simulation
Title: Automatic Posting, Single
Text Symbol: 001 = Loan Debit Position
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
LOAN_READ_VDARL *CALL FUNCTION 'LOAN_READ_VDARL' "gepufferter select auf vdarl * CHANGING * IO_VDARL = L_VDARL * EXCEPTIONS * CONTRACT_NOT_FOUND = 1 * KEY_NOT_FILLED = 2 * OTHERS = 3.
FVD_DB_VDARL_GET_SNG CALL FUNCTION 'FVD_DB_VDARL_GET_SNG' EXPORTING i_bukrs = bukrs i_sarchiv = ' ' i_ranl = anlnr1 IMPORTING e_str_vdarl = l_vdarl EXCEPTIONS contract_not_found = 1 OTHERS = 2.
RS_REFRESH_FROM_SELECTOPTIONS CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS' EXPORTING curr_report = 'RFVDAUTOPOSTSINGLE' TABLES selection_table = seltab EXCEPTIONS not_found = 1 no_report = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.