MO of Fixed-time operation for FIFO #648
Unanswered
maxware0715
asked this question in
Q&A
Replies: 1 comment
-
Try out that MO of stack at fixed-time operation should combined with routing operation: subOP: owner: MainOP SubMO: subOP, startdate given, enddate given, complete, owner: MainMO this work currently, and I will try if remove startdate in MainMO works |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Given a routing Operation which includes multiple Fixed-time operations,
If some confirmed manufacturing orders on a fixed-time operation with decided end date is set up,
how to make them consumed in order of ascending end date?
For example, the earliest end date should consumed first:
Operations
MainOp
SubOp1: owner: MainOp
SubOp2: owner: MainOp
SubOp3: owner: MainOp
Manufacturing Orders
MO1: Operation: SubOp2, enddate: 20240420
MO2: Operation: SubOp2, enddate: 20240421
MO3: Operation: SubOp3, enddate: 20240422
Expect sales order take MO1 -> MO2 -> MO3
Currently we modified MO1 to a MO set:
MainMO1: startdate given, enddate: 20240421, confirmed
prevMO1: Operation: SubOp1, owner: MainOp, enddate given, complete
MO1: Operation: SubOp2, owner: MainOp, startdate given, enddate: 20240421, confirmed
this make MO consumed in order of ascending end date, but the time is refreshed
Beta Was this translation helpful? Give feedback.
All reactions