RJRVA001 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 RJRVA001 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: P_VDAT = Shipping date
Selection Text: P_VBELN = Order number
Selection Text: P_POSNR = Order item
Selection Text: P_ETENR = Order schedule line
Title: IS-M/SD: Shipping Analysis: Postal Shipping
Text Symbol: 195 = Bundling rules
Text Symbol: 194 = Shipping schedule variants
Text Symbol: 192 = Drop-offs
Text Symbol: 191 = Containers
Text Symbol: 190 = PPacks
Text Symbol: 100 = ItNo. SLNo STPtyPCd PPck(Int.) PPck(Ext.) PPckPCd PPg Drop-Off Number ContPCode CP Cont(Int.) Cont(Ext.) TrRte
Text Symbol: 099 = No postal shipping found that matches the criteria
Text Symbol: 095 = P LD NW Plnt Publ. Edit. BdlgGrp MT LT CarRoute Unloadg Pt TrRte Valid From Valid To BDiv. Min. Max. OBGrp.
Text Symbol: 094 = SSVar Valid From Valid To Publn Edit. LD Plant
Text Symbol: 093 = Plnt ShipSched FullBdles BDiv. OddBd M
Text Symbol: 092 = Drop-off number Issue Ins Publn Edit. Publ.Date Geo.Unit Unloadg Pt TrRte LD Nwk
Text Symbol: 091 = Cont(int.) Ctr ContPCode Pkg
Text Symbol: 090 = PPck(Int.) Drop-Off No. PPckPCd PkgArea(Int.) No.Issues Bg
Text Symbol: A01 = Analyze postal shipping for order number
Text Symbol: A02 = and shippg date
Text Symbol: B01 = Inconsistencies found while reading data.
Text Symbol: B02 = Please notify your system administrator.
Text Symbol: C04 = Shipp.date
Text Symbol: C03 = SLne
Text Symbol: C02 = Item
Text Symbol: C01 = Detail analysis for postal shipping: order
INCLUDE MJ000TAL.
No SAP DATABASE tables are accessed within this REPORT code!
ISP_JVTBUND_BY_ORDER CALL FUNCTION 'ISP_JVTBUND_BY_ORDER' EXPORTING VBELN = P_VBELN POSNR = P_POSNR ETENR = P_ETENR VERSANDDAT = P_VDAT TABLES ETENR_TAB = ET_TAB EXCEPTIONS OTHERS = 1.
ISP_DISTRIBUTION_PLAN_VAR_READ CALL FUNCTION 'ISP_DISTRIBUTION_PLAN_VAR_READ' EXPORTING DRERZ = ET_TAB-DRERZTAT GUELTIGBIS = ET_TAB-VERSANDDAT GUELTIGVON = ET_TAB-VERSANDDAT LFART = JRTABLG-LFARTLOG NOJOIN = ' ' "Lesen JVTVARTIME/ZPVA/LART * "nicht notwendig PVA = ET_TAB-PVATAT * VARIANTE = ' ' WERK = JRTABLG-DRUCKEREI TABLES OUT_VARIANTE = OUT_VARIANTE VARIANTEN_TAB = VARIANTEN_TAB VARILART_TAB = VARILART_TAB VARIPVA_TAB = VARIPVA_TAB VARITIME_TAB = VARITIME_TAB EXCEPTIONS OTHERS = 1.
ISP_GET_PACKAGING CALL FUNCTION 'ISP_GET_PACKAGING' EXPORTING BEABLST = JRTABLG-BEABLST BEZIRK = JRTABLG-BEZIRKTAT " inital bei Postversand BEZUGSTYP = JRTABLG-BEZUGSTYP DATUM = ET_TAB-VERSANDDAT DRERZ = ET_TAB-DRERZTAT DRKEI = JRTABLG-DRUCKEREI LIEFART = JRTABLG-LFARTLOG NETZ = JRTABLG-NETZ * VAVARTYP = ' ' * VA_WEIGHT = 0 * VA_WEIGHT_UNIT = ' ' VAUSGB = JRTABLG-VAUSGB PVA = ET_TAB-PVATAT IN_BEILGAUSST = JRTABLG-BEILGAUSST IN_SPLIT = JRTABLG-SPLIT IMPORTING STVOPA = STVOPA EXCEPTIONS NO_RULE_FOUND = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.