J_2IRTN 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 J_2IRTN into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
J2IN - New RT-12 Report
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: P_EXGRP = Excise group
Selection Text: P_BUDAT = Period
Title: RT-12 New Format
Text Symbol: 035 = cleared
Text Symbol: 036 = Unit
Text Symbol: 037 = CENVAT Credit
Text Symbol: 038 = Interest
Text Symbol: 039 = Duty
Text Symbol: 040 = Total
Text Symbol: 041 = Others
Text Symbol: 042 = Cess
Text Symbol: 043 = Addl.
Text Symbol: 044 = Mode of
Text Symbol: 045 = Date(s) of
Text Symbol: 046 = B. Duty payment details:
Text Symbol: 047 = Credit
Text Symbol: 048 = Removed
Text Symbol: 049 = Total duty paid
Text Symbol: 050 = Total duty
Text Symbol: 051 = Rate of duty
Text Symbol: 052 = Assessable
Text Symbol: 053 = Quantity
Text Symbol: 054 = Product
Text Symbol: 055 = NCCD
Text Symbol: 056 = ECS
Text Symbol: 100 = 4. DETAILS OF EXCISABLE GOODS MANUFACTURED, FOR THE MONTH/QUARTER
Text Symbol: 101 = 8. DETAILS OF GOODS CLEARED WITHOUT PAYMENT OF DUTY OR UNDER FULL EXEMPTION OR AT
Text Symbol: 102 = NIL
Text Symbol: 103 = RATE OF DUTY:
Text Symbol: 104 = DETAILS OF REMOVALS OF ALL EXCISABLE GOODS ON WHICH DUTY IS PAYABLE IN THE SECOND FORTNIGHT OF MONTH/SECOND MONTH OF QUARTER
Text Symbol: 105 = INCLUDING DUTY LIABILITY AND PAYMENT PARTICULARS RELATING TO THE SAID PERIOD:
Text Symbol: 106 = PAYMENT PARTICULARS RELATING TO THE SAID PERIOD:'.
Text Symbol: 034 = clearance
Text Symbol: 001 = Details
Text Symbol: 002 = Fortnight - Removals & duty payment
Text Symbol: 004 = Month - Goods cleared without payment of duty
Text Symbol: 005 = Month - Total duty and interest paid
Text Symbol: 006 = Month - Excisable goods manufactured
INCLUDE J_2ISDEF.
No SAP DATABASE tables are accessed within this REPORT code!
LAST_DAY_OF_MONTHS CALL FUNCTION 'LAST_DAY_OF_MONTHS' EXPORTING DAY_IN = P_FDATE IMPORTING LAST_DAY_OF_MONTH = M_DATE.
GET_BALANCE_RG1_FOR_RT12 CALL FUNCTION 'GET_BALANCE_RG1_FOR_RT12' EXPORTING I_DATUM = P_FDATE I_EXGRP = P_EXGRP I_WERKS = '' I_MATNR = I_RG1-RG1_DATA-MATNR I_FORM = 'P' IMPORTING E_RG1BAL = T_RG1BAL EXCEPTIONS NOT_FOUND = 1 PARAMETER_ERROR = 2 ERROR_OCCURED = 3 OTHERS = 4.
GET_BALANCE_RG1_FOR_RT12 CALL FUNCTION 'GET_BALANCE_RG1_FOR_RT12' EXPORTING I_DATUM = P_FDATE I_EXGRP = P_EXGRP I_WERKS = '' I_MATNR = I_RG1-RG1_DATA-MATNR I_FORM = 'L' IMPORTING E_RG1BAL = T_RG1BAL EXCEPTIONS NOT_FOUND = 1 PARAMETER_ERROR = 2 ERROR_OCCURED = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.