J_3RFVATMMF03 is a standard ABAP INCLUDE 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 J_3RFVATMMF03 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.
Title: Create VAT Documents
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POSTING_INTERFACE_START CALL FUNCTION 'POSTING_INTERFACE_START' EXPORTING i_function = l_type i_group = l_grpid i_user = sy-uname i_xbdcc = 'X' EXCEPTIONS OTHERS = 1.
POSTING_INTERFACE_DOCUMENT CALL FUNCTION 'POSTING_INTERFACE_DOCUMENT' EXPORTING i_tcode = l_tcode "type sy-tcode i_sgfunct = l_type "type RFIPI-SGFUNCT i_no_auth = 'X' IMPORTING e_msgid = ls_msg-msgid e_msgno = l_msgno e_msgty = ls_msg-msgty e_msgv1 = ls_msg-msgv1 e_msgv2 = ls_msg-msgv2 e_msgv3 = ls_msg-msgv3 e_msgv4 = ls_msg-msgv4 e_subrc = l_subrc TABLES t_blntab = lt_vat[] "type BLNTAB t_ftpost = lt_bdctab[] "type FTPOST t_fttax = lt_dummytax[] "type FTTAX EXCEPTIONS account_missing = 1 company_code_missing = 2 posting_key_invalid = 3 posting_key_missing = 4 record_type_invalid = 5 transaction_code_invalid = 6 amount_format_error = 7 too_many_line_items = 8 OTHERS = 9.
DEQUEUE_EJ_3RFVATMM CALL FUNCTION 'DEQUEUE_EJ_3RFVATMM' EXPORTING * MODE_J_3RFVAT_REP_MM = 'E' belnr_mm =
-belnr_mm gjahr_mm = -gjahr_mm * X_BELNR_MM = ' ' * X_GJAHR_MM = ' ' * _SCOPE = '3' * _SYNCHRON = ' ' * _COLLECT = ' ' .
POSTING_INTERFACE_END CALL FUNCTION 'POSTING_INTERFACE_END' EXCEPTIONS OTHERS = 1. "#EC FB_RC
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.