ArticlesArticles Most Helpful ArticlesMost Helpful Articles Language SettingsLanguage Settings LoginLogin
RSS Feeds
DrillDown Icon Table of Contents
DrillDown Icon MX
DrillDown Icon MANUALS and Other Info for SQL MANEX Client Server
DrillDown Icon Customer Relationship Management (CRM)
DrillDown Icon ManEx Minute
DrillDown Icon ManEx Component Exchange
DrillDown Icon ManEx Supplier Directory & Rankings
  Email This ArticlePrint PreviewPrint Current Article and All Sub-Articles
 
ICM Query - Transaction Detail Log Report
SELECT part_no, revision, whno, qtyisu, date, issuedto , transref;
 FROM invt_isu, inventor;
 WHERE invt_isu.uniq_key = inventor.uniq_key;
 INTO CURSOR seeissues
BROWSE last
 
SELECT part_no, revision, warehouse, qtyrec, date, commrec , transref;
 FROM invt_rec, inventor;
 WHERE invt_rec.uniq_key = inventor.uniq_key;
 INTO CURSOR seereceipts
BROWSE last

SELECT
part_no, revision,  qtyxfer, date, reason , transref;
 FROM invttrns, inventor;
 WHERE invttrns.uniq_key = inventor.uniq_key;
 INTO CURSOR seetransfers
BROWSE last
 

Once you have this information setup , you can expand it to include serial numbers, lot codes, initials, etc.

Article ID: 3191