RFUMSV30 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program is used for selecting accounting documents that are debited with foreign input tax...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RFUMSV30 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: SEL_BELN = D Document number
Selection Text: SEL_BLAR = D Document type
Selection Text: SEL_BLDT = D Document date
Selection Text: SEL_BUDA = D Posting date
Selection Text: SEL_BUKR = D Company code
Selection Text: SEL_DMBT = D Amount in loc. curr.
Selection Text: SEL_GJAH = D Fiscal year
Selection Text: SEL_KOAR = D Account type
Selection Text: SEL_LAND = D Country
Selection Text: SEL_LIFN = D Vendor
Selection Text: SEL_MONA = D Posting period
Selection Text: SEL_MWKZ = D Tax code
Title: Input Tax Refund
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BUKRS_AUTHORITY_CHECK CALL FUNCTION 'BUKRS_AUTHORITY_CHECK' EXPORTING xdatabase = 'B' TABLES xbukreis = sel_bukr[].
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = g_repid i_structure_name = 'TAX_REP_STRUC_001' CHANGING ct_fieldcat = gt_fieldcat EXCEPTIONS OTHERS = 3.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = g_repid i_callback_user_command = 'USER_COMMAND' it_fieldcat = gt_fieldcat i_save = 'A' TABLES t_outtab = gt_output_table.
LFA1_SINGLE_READ CALL FUNCTION 'LFA1_SINGLE_READ' EXPORTING lfa1_lifnr = ls_bseg-lifnr IMPORTING wlfa1 = ls_vendor EXCEPTIONS OTHERS = 1.
INITIALIZE_STRUCTURE CALL FUNCTION 'INITIALIZE_STRUCTURE' CHANGING c_workarea = cs_lfa1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.