tkaplanusmc
Technical User
using CR 11. I am trying to create a report that shows the correct order of jobs by sequence and current workcenter thats next up on the sequence list. I am using this formula to calculate the workcenter next up on the worklist:
if Previous({Job_Operation.Status}) = "C"
and {Job_Operation.Status} = "O" then true
based on this calculation im trying to display only the workcenters that meet the true statement, and summarize all the current jobs in that workcenter based on this sequence
additionally i need to take these sequential jobs and determine which are late based on the formula below:
if {Job_Operation.Work_Center} = "Planning"
and{Delivery.Promised_Date} <= today -27 then 1
else if {Job_Operation.Work_Center} = "Purchasing"
and{Delivery.Promised_Date} <= today -24 then 1
else if {Job_Operation.Work_Center} = "Contracts"
and{Delivery.Promised_Date} <= today -28 then 1
else if {Job_Operation.Work_Center} = "Program"
and{Delivery.Promised_Date} <= today -24 then 1
else if {Job_Operation.Work_Center} = "Review"
and{Delivery.Promised_Date} <= today -23 then 1
........(Continued)........
any assistance would be greatly appreciated i have no idea where to go from here.
if Previous({Job_Operation.Status}) = "C"
and {Job_Operation.Status} = "O" then true
based on this calculation im trying to display only the workcenters that meet the true statement, and summarize all the current jobs in that workcenter based on this sequence
additionally i need to take these sequential jobs and determine which are late based on the formula below:
if {Job_Operation.Work_Center} = "Planning"
and{Delivery.Promised_Date} <= today -27 then 1
else if {Job_Operation.Work_Center} = "Purchasing"
and{Delivery.Promised_Date} <= today -24 then 1
else if {Job_Operation.Work_Center} = "Contracts"
and{Delivery.Promised_Date} <= today -28 then 1
else if {Job_Operation.Work_Center} = "Program"
and{Delivery.Promised_Date} <= today -24 then 1
else if {Job_Operation.Work_Center} = "Review"
and{Delivery.Promised_Date} <= today -23 then 1
........(Continued)........
any assistance would be greatly appreciated i have no idea where to go from here.