1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| Quintiq file version 2.0
| #root
| #parent: #DomainModel
| TypeSpecialization SupplyChainView
| {
| #keys: '2[11660.0.937582267][11660.0.937582264]'
| Description:
| [*
| MP
| Stores supply chain view data
| *]
| OnCreate:
| [*
| traverse( this.MacroPlan(), Unit, unit )
| {
| UnitNode::Create( this, unit, false, 0, 0, 'Black', false, true );
| }
| traverse( this.MacroPlan(), StockingPoint_MP, sp )
| {
| StockingPointNode::Create( this, sp, false, 0, 0, '', '' );
| }
| traverse( this.MacroPlan(), Product_MP, p )
| {
| ProductNode::Create( this, p, true, 0, 0, 'Black', false );
| }
|
| // Propagate all nodes info
| Transaction::Transaction().Propagate();
|
| feedback := ''
| this.RestoreDefaultLayout( feedback );
| *]
| Parent: ViewBase
| StructuredName: 'SupplyChainViews'
| }
|
|