preserve partially planned result for next task #485
-
I try to run a new output planning task with result of sales orders (SO) and manufacturing orders (MO) from previous round. In the new round, items, operations related tables will be updated while features related to SO and MO are not affected. I try to solve this problem in DB base, so solutions in psql are preferred than in interface During the process, I met several challenges:
I prefer this can be solved by adding features in DB tables because I need to reload SO and MO after update operations.
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
We can do "dynamic pegging", which is the default. With every planning run the pegging is recomputed based on a FIFO material allocation in the material buffer. We can do "hard pegging" where you can use the batch field to create a hard reservation of an MO to an SO. We haven't done any project yet where we switched between both types in different planning runs. (And personally, I think it gets very messy...)
I don't understand the question.
Frepple partitions the planning problem in isolated sub-problems. If we can only identify 4 sub-problems, then we'll use only 4 planning threads. |
Beta Was this translation helpful? Give feedback.
We can do "dynamic pegging", which is the default. With every planning run the pegging is recomputed based on a FIFO material allocation in the material buffer.
We can do "hard pegging" where you can use the batch field to create a hard reservation of an MO to an SO.
We haven't done any project yet where we switched between both types in different planning runs. (And personally, I think it gets very messy...)