Difference between revisions of "Information Systems:EODRPTW"

From uniWIKI
Jump to navigation Jump to search
Line 7: Line 7:
 
 
 
/* Print onhand inventory at cost by item account group for MAI and RET. */
 
/* Print onhand inventory at cost by item account group for MAI and RET. */
  +
  +
/* log entry is 'INV VAL 2' */
 
 
 
RUNQRY QRY(STOCKST03A)
 
RUNQRY QRY(STOCKST03A)
Line 13: Line 15:
 
/* Compare summary of WHOLTR to WHOLOP, and summary of SROITR to summary */
 
/* Compare summary of WHOLTR to WHOLOP, and summary of SROITR to summary */
 
/* of WHOLTR. */
 
/* of WHOLTR. */
  +
  +
/* log entry is 'BAL TRANS' */
 
 
 
CALL PGM(BALTRANS) PARM('UP1480BFVA')
 
CALL PGM(BALTRANS) PARM('UP1480BFVA')

Revision as of 14:10, 18 March 2016

Runs report of inventory onhand, and validate that SROSRO (Warehouse Balance), SROITR (Inventory Transactions), WHOLOP (Location Occupancy), and WHOLTR (Location Transactions) all balance with each other. It is called by EODWEEKLY.

/* Uniquely identify Query report so that Catapult Poller can file it on   */
/* SuperServer.                                                            */
                                                                             
            OVRPRTF    FILE(QPQUPRFIL) OUTQ(FINANCE/FINTEMP) USRDTA(REPORT3)   
                         
/* Print onhand inventory at cost by item account group for MAI and RET.   */

/* log entry is 'INV VAL 2'                                                */
 
            RUNQRY     QRY(STOCKST03A)                                       
            DLTOVR     FILE(QPQUPRFIL)

/* Compare summary of WHOLTR to WHOLOP, and summary of SROITR to summary   */
/* of WHOLTR.                                                              */

/* log entry is 'BAL TRANS'                                                */
                                                                             
             CALL       PGM(BALTRANS) PARM('UP1480BFVA')