Hi Everyone,
We have a job queue that runs every night for the planning report. We noticed that it was only checking things that were set to Items = Prob. Order for the replenishment system. I tried adding this over line to make it the following
ItemReplSystem := Item."Replenishment System"::"Prod. Order";
ItemReplSystem := Item."Replenishment System"::Assembly;
When it was only the first line, everything worked fine. Ever since I added the 2nd line, things have been hit or miss. I'm wondering if there is a nice clean way to add everything to 1 line or if I'm missing something here.
Thank you
Answers
http://www.epimatic.com
Hi Rob,
Just trying to set the ItemReplSystem variable to BOTH Prod. Order; Assembly
You can create another variable, assign the other value and then use both the variables in your filters or conditions.
SETFILTER("Replenishment System",'%1|%2',"Replenishment System"::"Prod. Order","Replenishment System"::Assembly);
http://www.epimatic.com
Perfect! It works! Thank you very very much!