Sorry I was looking at my ver 6 documentation. <*hand slap*>
Anyway, yes, use the JobPart table. My point with not using the JobProd is that you have to summarize the values for the JobProd where the JobPart values will already be summarized for the received and shipped totals. No need to do calculations when they are already done.
Chris
Anyway, yes, use the JobPart table. My point with not using the JobProd is that you have to summarize the values for the JobProd where the JobPart values will already be summarized for the received and shipped totals. No need to do calculations when they are already done.
Chris
--- In vantage@yahoogroups.com, "michael.hutcheson@..." <michael.hutcheson@...> wrote:
>
> Yes, you are correct it is in the Job Prod table. According to the data dictionary it is also present in the Job Part table.
>
> Regards,
>
> Michael Hutcheson
> IT Developer
> Anson
> Mission Products
> National Oilwell Varco
> Tel: + 44 (0) 191 4820022
>
>
> --- In vantage@yahoogroups.com, Michelle de la Vega <mdelavega@> wrote:
> >
> > I could be completely blind, but I don't see the receivedqty field in the JobHead table. That's why I went to the JobProd table.
> >
> > If this field is really there, please let me know, it would make my life a lot easier.
> >
> > Thanks!
> >
> > Michelle de la Vega
> > Business Applications Manager
> > Cold Jet, LLC
> > 455 Wards Corner Road
> > Loveland, Ohio 45140
> > USA
> > +1 513-716-6400 (office)
> > +1 513-382-3281 (mobile)
> > +1 513-831-1209 (fax)
> > www.coldjet.com<http://www.coldjet.com>
> > [cid:image001.jpg@]
> >
> > From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of saab_barracuda
> > Sent: Friday, December 04, 2009 9:11 AM
> > To: vantage@yahoogroups.com
> > Subject: [Vantage] Re: Job Receipt to Inventory
> >
> >
> >
> > I agree this needs to occur at the JobHead level rather than at the demand link in JobProd. There are three types of demand links, make to stock, make to order, and make to job. You don't have a robust solution if you don't account for all of them. Both the make to stock and make to job count in the ReceivedQty but for completeness sake you should include the ShippedQty in your formula. Even if you "always" make to stock, you never know...
> >
> > All these fields are stored in the JobHead so there isn't any advantage to pull from other tables. So I would use:
> >
> > (JobHead.QtyCompleted - JobHead.ReceivedQty - JobHead.ShippedQty) < ttPartTran.TranQty
> >
> > I haven't looked into it but you probably need to do this check in multiple places to account for all three ways the material can be relieved from the job.
> >
> > I will also mention that although you don't want this "feature", our company does take advantage of this flexibility. We often ship from the job before production has reported completed quantities. Although I'd like to have more real-time reporting, in the meantime, it's nice the system allows this.
> >
> > Chris
> >
> > --- In vantage@yahoogroups.com<mailto:vantage%40yahoogroups.com>, "Rob Bucek" <rbucek@> wrote:
> > >
> > > Correction, its jobpart table
> > >
> > >
> > >
> > > We use MES and hand helds so I am monitoring
> > > ReceiptsFromMfg.ReceiveMfgPartToInventory
> > >
> > >
> > >
> > > for each ttPartTran
> > >
> > > where (ttPartTran.RowMod = 'U' or ttPartTran.RowMod = 'A' and
> > > ttPartTran.TranType = 'MFG-STK') ,
> > >
> > > each JobHead
> > >
> > > each JobPart
> > >
> > > where JobHead.JobNum = ttPartTran.JobNum and JobPart.JobNum =
> > > ttPartTran.JobNum and
> > >
> > > (Jobhead.QtyCompleted - JobPart.ReceivedQty) < ttPartTran.TranQty
> > >
> > >
> > >
> > > Rob Bucek
> > >
> > > Manufacturing Engineer
> > >
> > > PH: (715) 284-5376 ext 3111
> > >
> > > FAX: (715)284-4084
> > >
> > > <http://www.dsmfg.com/>
> > >
> > > (Click the logo to view our site) <http://www.dsmfg.com/>
> >
> >
> >
> > [Non-text portions of this message have been removed]
> >
>