yanweiyuan3
2023-08-09 588bc7829387dfc761cc25f06f77d4c81818bd10
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
ŽŽŠŽ
WizardManager: Ô¢    Âå Á
Id*ݍ
LibWiz_InitProcessBase: Ô¢    ¦æ Á
Id*[151892.2.673723078]
IdOwner*
 
Name*ï
LibWiz_InitSequence: Ô¢    §æ Á
Id*[151892.2.673723079]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Supply chain wizard"
ParentId*[151892.2.673723078]
 
SequenceNrû
Descriptionë*èWelcome to the Supply chain wizard. This will help you configure your supply chain in Macro Planner.
 
You will be guided through the steps to create, edit and validate the data related to:
- Suppliers
- Production resources and bill-of-materials
- Transportation network
- Settings: global parameters, optimizer strategies, authorizations, etc.
 
For each of the steps, you may have access to the following buttons at the bottom of the dialog:
- "?": will open the associated e-learning in your browser. This e-learning contains additional information on the current step.
- "Open view": will re-direct you to the view in which you will be able to perform the current step.
- "Edit knowledge": will open the knowledge table in which you will be able to define the knowledge associated to the current step.
- Use the "Previous", "Next" and "Skip" button to navigate through the steps.
- Use the "Make current" menu in the Overview tree on the left to focus on a specific step.
- Use the "Submit" button to validate a choice made on a decision step.
 
This wizard can be opened at any time using the Help > Supply chain wizard menu.
HelpUrl*
IsImage
    TableName*
 
View*9
RootOfProcess(
LibWiz_InitProcessBase: Ô¢    ¦æ Á0
First'
LibWiz_InitManualStep: Ô¢    äæ Á-
Last%
LibWiz_InitSequence: Ô¢    ©æ Á
LibWiz_InitManualStep: Ô¢    ¨æ Á
Id*[151892.2.673723080]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped"
Name*Quantity-based transport"
ParentId*[151892.2.673723078]
 
SequenceNrƒ
Descriptionó*ðThis section only applies to units of capacity type:
- Transport quantity
 
To create a transport capacity, right-click and select "New" menu. The Transport capacity dialog will pop up:
 
- General tab: 
    - Specify the date from which the capacity definition applies
    - Specify the minimum and maximum capacity constraints if there are any
    - Specify the lot size constraints where appropriate
 
- Advanced tab allows to specify the secondary capacity constraints in a different unit of measurement.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12627&chapterid=19767
IsImage
    TableName*
View*Unit capacities/
Parent%
LibWiz_InitSequence: Ô¢    ¬æ Á3
Previous'
LibWiz_InitManualStep: Ô¢    µæ Áö
LibWiz_InitSequence: Ô¢    ©æ Á
Id*[151892.2.673723081]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name * 6. Appendix"
ParentId*[151892.2.673723078]
 
SequenceNrß
DescriptionÏ*ÌThis section contains instructions for common actions:
 
- How to import data
- How to verify data
- How to define units of measure and currencies
 
& a set of useful links to Quintiq academy and community.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    §æ Á3
Previous'
LibWiz_InitManualStep: Ô¢    Ûæ Á.
First%
LibWiz_InitSequence: Ô¢    Úæ Á/
Last'
LibWiz_InitManualStep: Ô¢    ºæ Á×
 
LibWiz_InitManualStep: Ô¢    ªæ Á
Id*[151892.2.673723082]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped"
Name*Fulfillment restrictions"
ParentId*[151892.2.673723078]
 
SequenceNr´
Description¤*¡Fulfillment restrictions can be used in a context in which some sales demands are defined on non-leaf levels of the product hierarchy. For instance, a sales demand is defined on a product family which contains multiple SKUs.
As a result, it can by default be fulfilled by supplies of any of these SKUs.
 
Fulfillment restrictions allow to specify whether a product can be used to fulfill a sales demand set on a higher level. These settings are customer-dependent.
 
Open "Fulfillment restrictions" view by clicking on the "Open view" button below.
 
To create a fulfillment restriction, right-click in "Fulfillment restrictions" list and select "New" menu. Specify: 
- The customer (sales segment) to which the restriction applies
- The product that is restricted
- The horizon on which it is restrictedS
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12266&chapterid=27503
IsImage
    TableName*"
View*Fulfillment restrictions/
Parent%
LibWiz_InitSequence: Ô¢    ³æ Á3
Previous'
LibWiz_InitManualStep: Ô¢    üæ Áâ
LibWiz_InitSequence: Ô¢    «æ Á
Id*[151892.2.673723083]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped+
Name#*!Inventory constraints and targets"
ParentId*[151892.2.673723078]
 
SequenceNr‚
Descriptions*qThis step will allow you to define storage constraints and target inventory levels on your plant stocking points.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Öæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    ùæ Á/
Next'
LibWiz_InitManualStep: Ô¢    Ùæ Á0
First'
LibWiz_InitManualStep: Ô¢    »æ Á/
Last'
LibWiz_InitManualStep: Ô¢    ÷æ Áé
 
LibWiz_InitSequence: Ô¢    ¬æ Á
Id*[151892.2.673723084]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped%
Name*Define transport capacities"
ParentId*[151892.2.673723078]
 
SequenceNrí
DescriptionÝ*ÚSimilar to production units, transportation units can be divided into 2 type, which are time or quantity-based. 
 
This section explains how to set the capacity and its related constraints for each of these types.
 
This is done by defining the following constraints:
 
- Units of capacity type "Transport time":
    - Shift pattern
    - Transport availability
    
- Units of capacity type "Transport quantity"
    - Transport capacity
 
You can set all these specifications in the "Unit capacities" view, which can be opened by clicking on "Open view" button below.
 
Note: unit capacities can be imported/exported as part of the "Capacities" group. Refer to "Import Data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12627&chapterid=19767
IsImage
    TableName*
View*Unit capacities/
Parent%
LibWiz_InitSequence: Ô¢    îæ Á1
Previous%
LibWiz_InitSequence: Ô¢    ãæ Á0
First'
LibWiz_InitManualStep: Ô¢    µæ Á/
Last'
LibWiz_InitManualStep: Ô¢    ¨æ Á™    
LibWiz_InitManualStep: Ô¢    ­æ Á
Id*[151892.2.673723085]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped!
Name*Create units of measure"
ParentId*[151892.2.673723078]
 
SequenceNr
Descriptionÿ*üMacro Planner supports the definition of different units of measurement. A unit of measurement can for example be Ton, Roll, Pieces, Kilograms etc. You can define conversion between those different units of measurement and the units of measurement of products flowing between entities will be converted as necessary according to the defined conversion factor.
 
Open the Unit of Measurement view by clicking on "Open view" button below.
To create a new unit of measurement, right-click on Units of measurement list and select "New" menu.
 
Conversion factors from a unit of measurement to another can be defined in the Conversion matrix.C
HelpUrl8*6https://academy.quintiq.com/mod/book/view.php?id=12099
IsImage
    TableName*
View*Units of measurement/
Parent%
LibWiz_InitSequence: Ô¢    ßæ Á/
Next'
LibWiz_InitManualStep: Ô¢    ®æ Á—
LibWiz_InitManualStep: Ô¢    ®æ Á
Id*[151892.2.673723086]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Create currencies"
ParentId*[151892.2.673723078]
 
SequenceNrë
DescriptionÛ*ØMacro Planner supports currency definition and conversion. You can specify different time-dependent conversion rates. These rates will be used to convert the (foreign) currencies to the base currency specified in the application. 
 
Open the Currencies view by clicking on "Open view" button below. In the left panel you see all the different currencies that are defined. In the upper-right panel you see the currency rates of the selected currency relative to the base currency with their corresponding start date. In the right-lower panel you see the course of the currency rate of the selected currency over time.
 
To create a new currency, right-click on Currencies list and select "New" menu.
 
To define a currency rate for an existing currency, select the currency in the Currencies list, right-click in the Currency rates-list and select "New" menu.@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1174
IsImage
    TableName*
View *
Currencies/
Parent%
LibWiz_InitSequence: Ô¢    ßæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    ­æ Á/
Next'
LibWiz_InitManualStep: Ô¢    Ëæ Áµ
LibWiz_InitSequence: Ô¢    ¯æ Á
Id*[151892.2.673723087]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped 
Name*1. Supply chain design"
ParentId*[151892.2.673723078]
 
SequenceNræ
DescriptionÖ*ÓIn this section, you will be guided through the entire design of the Supply Chain.
 
You will be able to:
- Manage suppliers
- Manage production resources and bill-of-materials
- Define the transportation network
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    §æ Á3
Previous'
LibWiz_InitManualStep: Ô¢    Ýæ Á-
Next%
LibWiz_InitSequence: Ô¢    Éæ Á.
First%
LibWiz_InitSequence: Ô¢    Ôæ Á-
Last%
LibWiz_InitSequence: Ô¢    ·æ ÁŽ
LibWiz_InitManualStep: Ô¢    °æ Á
Id*[151892.2.673723088]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Supplier products"
ParentId*[151892.2.673723078]
 
SequenceNr–    
Description†    *ƒ    This section will allow you to define WHAT products can be supplied by a given Supplier.
 
Open the Products view by clicking on "Open view" button below.
 
In the products form you see two lists:
    - Product levels: allows you to define the levels in your product hierarchy 
    - Products: allows you to define the products in the system. Each product belongs to a product level.
 
To create a product level, right-click on Product levels list and select "New" menu. 
 
To create a product, right-click on Products list and select "New" menu. The Product dialog will pop-up:
- General tab:
    - Parent product: specify the place of the product in the hierarchy. 
    - Specify the Name and ID of the product.
    - Select the Unit of measurement you want to visualize the product in. Refer to "Create Units of Measure" section of the appendix at the end of this wizard to create a new unit of measurement.
 
- Other tabs allow the definition of more advanced configuration (costs, advanced settings). 
 
Note: products can be imported/exported as part of the "Products" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.C
HelpUrl8*6https://academy.quintiq.com/mod/book/view.php?id=12601
IsImage
    TableName*
View
*Products/
Parent%
LibWiz_InitSequence: Ô¢    ·æ Á/
Next'
LibWiz_InitManualStep: Ô¢    ìæ Áç    
LibWiz_InitManualStep: Ô¢    ±æ Á
Id*[151892.2.673723089]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped*
Name"* Define stocking point capacities"
ParentId*[151892.2.673723078]
 
SequenceNr¿
Description¯*¬This step will allow you to define storage constraints on your stocking points.
 
Open the "Stocking point capacities" view by clicking on "Open view" button below.
 
To create a stocking point capacity, right-click on Stocking point capacities list and select "New" menu.
The Stocking point capacity dialog will pop-up:
- Stocking point: specify the stocking point to which the capacity constraint applies.
- Start: specify the date from which this capacity applies.
- Specify the maximum capacity
 
Note: stocking point capacities can be imported/exported as part of the "Capacities" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12593&chapterid=19646
IsImage
    TableName*#
View*Stocking point capacities/
Parent%
LibWiz_InitSequence: Ô¢    ¸æ Á/
Next'
LibWiz_InitManualStep: Ô¢    çæ ÁÍ
LibWiz_InitSequence: Ô¢    ²æ Á
Id*[151892.2.673723090]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Production resources"
ParentId*[151892.2.673723078]
 
SequenceNr¸
Description¨*¥This section will allow you to define HOW are intermediate products and finished goods created, through the definition of production resources and bill-of-materials.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12588&chapterid=19633
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Ôæ Á1
Previous%
LibWiz_InitSequence: Ô¢    Öæ Á/
Next'
LibWiz_InitManualStep: Ô¢    Êæ Á0
First'
LibWiz_InitManualStep: Ô¢    éæ Á-
Last%
LibWiz_InitSequence: Ô¢    Ðæ Á£
LibWiz_InitSequence: Ô¢    ³æ Á
Id*[151892.2.673723091]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped 
Name*Advanced configuration"
ParentId*[151892.2.673723078]
 
SequenceNr˜
Descriptionˆ*…This section will allow you to perform advanced configuration for sales demands:
 
- Manage sales demand priorities
- Define postponement specifications: specify whether sales demands can be postponed for a given sales segment, and by which duration.
- Define fulfillment targets
- Define fulfillment restrictions: when customers accept supplies from a subset of products of the same familyC
HelpUrl8*6https://academy.quintiq.com/mod/book/view.php?id=12266
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Éæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    öæ Á/
Next'
LibWiz_InitManualStep: Ô¢    ‚ç Á0
First'
LibWiz_InitManualStep: Ô¢    ðæ Á/
Last'
LibWiz_InitManualStep: Ô¢    ªæ Á“
LibWiz_InitManualStep: Ô¢    ´æ Á
Id*[151892.2.673723092]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped#
Name*Quantity-based capacities"
ParentId*[151892.2.673723078]
 
SequenceNrú
Descriptionê*çThis section only applies to units of capacity type:
- Quantity
 
In contrast to time-based units, the capacity for quantity-based units is defined directly in quantity. Therefore, you don’t need to define a shift pattern nor set a rate for the operations defined on such units.
You can set the capacity for quantity-based units in the Unit capacities form in the "Unit capacities" view (click on "Open view" button below).
 
To create a unit capacity, right-click and select "New" menu.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12627&chapterid=19766
IsImage
    TableName*
View*Unit capacities/
Parent%
LibWiz_InitSequence: Ô¢    Ðæ Á1
Previous%
LibWiz_InitSequence: Ô¢    Óæ ÁÄ
LibWiz_InitManualStep: Ô¢    µæ Á
Id*[151892.2.673723093]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Time-based transport"
ParentId*[151892.2.673723078]
 
SequenceNr²
Description¢*ŸThis section only applies to units of capacity type:
- Transport time
 
To create a transport availability, right-click and select "New" menu. The Transport availability dialog will pop up:
 
- General tab: 
    - Specify the date from which the capacity definition applies
    - Specify the maximum load as well as the number of available transportation units
    - Specify the shift pattern: refer to "Shift Patterns" section of Units e-learning for more information on shift patterns.
 
- Advanced tab allows to specify lot sizes and maintenance rules.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12627&chapterid=19767
IsImage
    TableName*
View*Unit capacities/
Parent%
LibWiz_InitSequence: Ô¢    ¬æ Á/
Next'
LibWiz_InitManualStep: Ô¢    ¨æ ÁÞ
LibWiz_InitManualStep: Ô¢    ¶æ Á
Id*[151892.2.673723094]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped 
Name*Create stocking points"
ParentId*[151892.2.673723078]
 
SequenceNrÌ
Description¼*¹Stocking points represent storage locations for products. All network nodes (warehouses, distribution centers, customer ship-to's...) should be modelled as Stocking Points. 
 
Click on "Open view" button below to open the Stocking points view.
 
To create a stocking point, right-click on Stocking points list and select "New" menu. The Stocking Point dialog will pop up:
 
- General tab: 
    - Select, if relevant, the unit to which the stocking point belongs. 
    - Specify the stocking point Name and ID 
    - Specify the Unit of Measurement in which inventory should be displayed on the stocking point. Refer to "Create Units of Measure" section of the appendix at the end of this wizard to create a new unit of measurement.
    - Specify whether the stocking point is of infinite capacity (i.e. no maximum inventory)
 
- Other tabs allow the definition of more advanced configuration (costs, advanced settings). 
    
Note: stocking points can be imported/exported as part of the "Entities" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12593&chapterid=19644
IsImage
    TableName*
View*Stocking points/
Parent%
LibWiz_InitSequence: Ô¢    ææ Á-
Next%
LibWiz_InitSequence: Ô¢    ¸æ Á®
LibWiz_InitSequence: Ô¢    ·æ Á
Id*[151892.2.673723095]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Manage suppliers"
ParentId*[151892.2.673723078]
 
SequenceNr’
Description‚*ÿThis section will help you define:
 
- WHAT products can be supplied by a given Supplier (Supplier products).
- WHERE products can be supplied to by a given Supplier (Supply stocking points).
- HOW products can be supplied to a given location, by a given Supplier (Supply processes).
 
You may come back to this step at any time to create a new supplier or manage an existing supplier.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    ¯æ Á1
Previous%
LibWiz_InitSequence: Ô¢    þæ Á0
First'
LibWiz_InitManualStep: Ô¢    °æ Á/
Last'
LibWiz_InitManualStep: Ô¢    Õæ Á¬
LibWiz_InitSequence: Ô¢    ¸æ Á
Id*[151892.2.673723096]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped+
Name#*!Inventory constraints and targets"
ParentId*[151892.2.673723078]
 
SequenceNrÌ
Description¼*¹This step will allow you to:
 
- Define storage constraints on your stocking points
- (Optional) Define product-dependent storage constraints and targets on your network stocking points.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    ææ Á3
Previous'
LibWiz_InitManualStep: Ô¢    ¶æ Á/
Next'
LibWiz_InitManualStep: Ô¢    ׿ Á0
First'
LibWiz_InitManualStep: Ô¢    ±æ Á/
Last'
LibWiz_InitManualStep: Ô¢    çæ ÁË
LibWiz_InitManualStep: Ô¢    ¹æ Á
Id*[151892.2.673723097]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Global parameters"
ParentId*[151892.2.673723078]
 
SequenceNr‘
Description*þ To configure global parameters, click on Edit > Configuration > Global Parameters menu.
 
Global parameters dialog will pop-up (hover over each label for more information):
 
- General tab allows you to specify:
    - Tolerance thresholds for balance and lot size
    - Lot size horizon (duration from the start of planning): horizon on which the lot size constraints will be considered
    - Disaggregation ratio: define how supply quantities will be disaggregated when planned on a higher product level
    - Lead time for dependent demand: specify how to derive dependent demands on periods based on operation or laneleg lead time.
    
- Bottleneck detection tab allows you to define rules for bottleneck resource determination (detection thresholds and detection time window).
 
- Optimizer settings tab allows to define advanced settings for the optimizer.
 
- Actuals tab allows you to specify the bias and outlier tolerances between actual and planned values.
 
- Sanity check tab allows you to set the maximum number of error messages (per group) to be shown in the application. The absolute limit is used to guard the range of the numeric data. Data outside this range will be reported as a data error in the sanity check messages.
 
 A quantity is considered invalid when it is outside the limit (e.g. sales demand quantity)
 
- Default values tab allows you to define miscellaneous default values for unit and stocking point capacities, inventory holding cost modalities as well as default parameters for safety stock calculation
 
- KPIs tab allows you to specify the horizon over which KPIs should be calculated.
 
Note: global parameters can be imported/exported as part of the "Global parameters" group. Refer to "Import Data" section of the appendix of this wizard for more details on data import.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Íæ Á/
Next'
LibWiz_InitManualStep: Ô¢    Ææ Á
LibWiz_InitManualStep: Ô¢    ºæ Á
Id*[151892.2.673723098]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name* Useful links"
ParentId*[151892.2.673723078]
 
SequenceNrÊ
Descriptionº*·Some questions?
 
Check out S&OP learning path: https://academy.quintiq.com/catalog.php?role=64&level=0
 
Ask your questions on Quintiq community: https://academy.quintiq.com/community/
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    ©æ Á1
Previous%
LibWiz_InitSequence: Ô¢    ßæ Áí    
LibWiz_InitManualStep: Ô¢    »æ Á
Id*[151892.2.673723099]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped*
Name"* Define stocking point capacities"
ParentId*[151892.2.673723078]
 
SequenceNrÅ
Descriptionµ*²This step will allow you to define storage constraints on your plant stocking points.
 
Open the "Stocking point capacities" view by clicking on "Open view" button below.
 
To create a stocking point capacity, right-click on Stocking point capacities list and select "New" menu.
The Stocking point capacity dialog will pop-up:
- Stocking point: specify the stocking point to which the capacity constraint applies.
- Start: specify the date from which this capacity applies.
- Specify the maximum capacity
 
Note: stocking point capacities can be imported/exported as part of the "Capacities" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12593&chapterid=19646
IsImage
    TableName*#
View*Stocking point capacities/
Parent%
LibWiz_InitSequence: Ô¢    «æ Á/
Next'
LibWiz_InitManualStep: Ô¢    ÷æ Áð
 
LibWiz_InitManualStep: Ô¢    ¼æ Á
Id*[151892.2.673723100]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped!
Name*Define production costs"
ParentId*[151892.2.673723078]
 
SequenceNró
Descriptionã*àProduction costs can be defined in the Cost tab of the Operation dialog.
The operation dialog can be opened by double-clicking on an operation (blue box within a routing).
 
Right-click in the Cost list and select "New" menu:
- Account: production costs are generally composed of Operating cost and/or Labor cost (note: it is possible to define multiple costs for a given operation)
- Select "Volume" as Cost driver (note: it is also possible to define a cost per time or per lot)
- Define a production cost per unit in the cost section.
 
An introduction to Macro Planner accounts and cost drivers can be found in "Financial impact analysis" e-learning (by clicking on the help button below).
 
Note: operation costs can be imported/exported as part of the "Costs" group. Refer to "Import Data" section of the appendix of this wizard for more details on data import.@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1243
IsImage
    TableName*
View
*Routings/
Parent%
LibWiz_InitSequence: Ô¢    Îæ Á1
Previous%
LibWiz_InitSequence: Ô¢    Âæ Á©
 
LibWiz_InitManualStep: Ô¢    ½æ Á
Id*[151892.2.673723101]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped$
Name*Manage the sales hierarchy"
ParentId*[151892.2.673723078]
 
SequenceNr‘
Description*þIn Macro Planner, customers are organized into a sales hierarchy. A sales hierarchy consists of multiple level of sales segments, from the highest (all customers) to the lowest (a specific customer).
 
Sales segments define markets from which sales demands arise. The segmentation of market is generally done along geographic, demographic and or psychographic lines. Sales segments may represent customers, customer groups or market segments. 
 
Open the "Sales hierarchy" view by clicking on "Open view" button below.
Sales levels and sales segments can be managed in the Sales hierarchy tab.
 
Note: sales segments can be imported/exported as part of the "Entities" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12261&chapterid=18696
IsImage
    TableName*
View*Sales hierarchy/
Parent%
LibWiz_InitSequence: Ô¢    Éæ Á/
Next'
LibWiz_InitManualStep: Ô¢    ç Á¬
LibWiz_InitSequence: Ô¢    ¾æ Á
Id*[151892.2.673723102]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*[Optional] Blending"
ParentId*[151892.2.673723078]
 
SequenceNr©
Description™*–In certain cases, a product can be made out of a blend of ingredients. 
The standard operation and input groups (as introduced in the previous section) however, is not capable of handling a dynamic bill-of-materials which contains products (both input and output) that are a composition of ingredients.
 
Blending functionality allows the optimization of the input product mix for dynamic bill-of-materials.@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1219
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Îæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    ÿæ Á-
Next%
LibWiz_InitSequence: Ô¢    Âæ Á0
First'
LibWiz_InitManualStep: Ô¢    øæ Á/
Last'
LibWiz_InitManualStep: Ô¢    ƒç Áê
LibWiz_InitManualStep: Ô¢    ¿æ Á
Id*[151892.2.673723103]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Excel"
ParentId*[151892.2.673723078]
 
SequenceNr†
Descriptionö*óTo import data from Excel:
 
- Click on the "Direct import" button (green arrow) on the application toolbar. The import dialog will pop up.
- Make sure that the source of the import type is set to "Excel".
- Click the "Browse" button to navigate to the location in which your Excel files are located.
- Check all relevant checkboxes.
- Click on "Import".
 
Depending on how large your dataset is, the import (and export) process may take a few seconds up to a couple of minutes to complete. In the meantime, the application will not respond to further inputs. A light blue box may also appear to indicate the progress of the import if the import lasts more than 2 seconds.
 
Once the import is complete, take a look at the icon on the "Import all" button:
- If it remains the same (green arrow): congratulations, your import is successful!
- If what you see is an icon with a red cross: the import process contains some errors. Usually it is due to an invalid mapping between the Excel file(s) and the EDI brokers.C
HelpUrl8*6https://academy.quintiq.com/mod/book/view.php?id=13135
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Úæ Á/
Next'
LibWiz_InitManualStep: Ô¢    ïæ Á«
LibWiz_InitSequence: Ô¢    Àæ Á
Id*[151892.2.673723104]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped"
Name*Define supplier routings"
ParentId*[151892.2.673723078]
 
SequenceNrž
DescriptionŽ*‹Now that you have created a supplier resource, you need to specify which products can be supplied by this resource.
This is done through the definition of Supplier Routings.
Generally, one routing is defined by product for each of the locations it can be supplied to.C
HelpUrl8*6https://academy.quintiq.com/mod/book/view.php?id=12614
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    óæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    Þæ Á/
Next'
LibWiz_InitManualStep: Ô¢    Äæ Á0
First'
LibWiz_InitManualStep: Ô¢    àæ Á/
Last'
LibWiz_InitManualStep: Ô¢    Áæ Á¬    
LibWiz_InitManualStep: Ô¢    Áæ Á
Id*[151892.2.673723105]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Define supply costs"
ParentId*[151892.2.673723078]
 
SequenceNr±
Description¡*žSupply costs can be defined in the Cost tab of the Operation dialog.
The operation dialog can be opened by double-clicking on an operation (blue box within a routing).
 
Right-click in the Cost list and select "New" menu:
- Select "Sourcing cost" as Account
- Select "Volume" as Cost driver
- Define a supply cost per unit in the cost section.
 
An introduction to Macro Planner accounts and cost drivers can be found in "Financial impact analysis" e-learning (by clicking on the help button below).
 
Note: operation costs can be imported/exported as part of the "Costs" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1243
IsImage
    TableName*
View
*Routings/
Parent%
LibWiz_InitSequence: Ô¢    Àæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    àæ ÁÚ
LibWiz_InitSequence: Ô¢    Âæ Á
Id*[151892.2.673723106]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*[Optional] Campaigns"
ParentId*[151892.2.673723078]
 
SequenceNrÖ
DescriptionÆ*ÃSetup time is the period whereby it is used to prepare a device, process or system for it be ready to function or accept a job. In production, setup times are often unavoidable when switching between different tasks on the same unit.
 
In Macro Planner, campaigns are introduced to allow the planner to simulate a prolonged production of a single or a set of products, which would result in efficient production due to the minimal setup times incurred.@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1222
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Îæ Á1
Previous%
LibWiz_InitSequence: Ô¢    ¾æ Á/
Next'
LibWiz_InitManualStep: Ô¢    ¼æ Á0
First'
LibWiz_InitManualStep: Ô¢    ûæ Á/
Last'
LibWiz_InitManualStep: Ô¢    Ñæ Á»
LibWiz_InitManualStep: Ô¢    Ãæ Á
Id*[151892.2.673723107]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name* Manage users"
ParentId*[151892.2.673723078]
 
SequenceNr­
Description*šWorkflow is all about users and the collaboration between them. In order to assign activities and steps to users, the application needs to have a notion of the users that play a role in the S&OP process. The framework offers the functionality to manage the users and their roles, as well as the user profiles containing user-specific information such as contact details, areas of expertise, etc.
 
Open the "Users and roles" view by clicking on "Open view" button below.
 
The Roles list on the right shows all the roles that are defined in the system and their primary user. 
 
Note: user administration is not handled in Macro Planner: any user should first be registered via the common Quintiq user administration functionality, which is handled outside the application in the user administrator tool. Here the user administrator can specify which users have access to the application and which roles they are assigned to.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=13873&chapterid=22604
IsImage
    TableName*
View*Users and roles/
Parent%
LibWiz_InitSequence: Ô¢    âæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    êæ Á»    
LibWiz_InitManualStep: Ô¢    Äæ Á
Id*[151892.2.673723108]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped&
Name*Define supply specifications"
ParentId*[151892.2.673723078]
 
SequenceNrŸ
Description*ŒSupply specifications allow to model supply contract modalities.
 
Supply specifications allow to define time-dependent constraints for a given supplier:
- Minimum supply quantity
- Maximum supply quantity
- Target supply quantity
These can be global or product-dependent.
 
Navigate to the "Supply specifications" form by clicking on "Open view" button below.
To create a supply specification, right-click on Supply Specifications list and select "New" menu.
 
Note: supply specifications can be imported/exported as part of the "Supply specifications" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12627&chapterid=19768
IsImage
    TableName*
View*Unit capacities/
Parent%
LibWiz_InitSequence: Ô¢    óæ Á1
Previous%
LibWiz_InitSequence: Ô¢    Àæ Á³
LibWiz_InitManualStep: Ô¢    Åæ Á
Id*[151892.2.673723109]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name* Data exchange"
ParentId*[151892.2.673723078]
 
SequenceNrÆ    
Description¶    *³    Skip this step if your Macro Planner application was not installed together with a Demand Planner application.
 
The Data Exchange framework allows to exchange data between Demand Planner and Macro Planner.
This step will explain how to import Sales Demands (i.e. forecast) from Demand Planner to Macro Planner.
 
1) Export unconstrained forecast from Demand Planner:
The first stage in which you transfer data from Demand Planner to Macro Planner is after you forecasted the unconstrained demand. When this stage is done, you can export your forecasted demand from anywhere in the application by selecting the export button (green arrow) in Demand Planner toolbar. Choose as destination "Data manager" to make it possible to import it again in Macro Planner. 
 
2) Import unconstrained forecast in Macro Planner:
The unconstrained demand is exported as a set with the given name, which is then retrievable in Macro Planner.
- In Macro Planner, click on the â€˜Import all' button (green arrow) on the application toolbar. The import dialog will pop up.
- Make sure that the source of the import type is set to "Data Exchange".
- Tick Sales demand checkbox and select the set to be imported as sales demand.@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1193
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Úæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    ïæ Áÿ
LibWiz_InitManualStep: Ô¢    Ææ Á
Id*[151892.2.673723110]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Optimizer strategies"
ParentId*[151892.2.673723078]
 
SequenceNrÜ
DescriptionÌ*ÉMacro Planner optimizer makes use of strategies, which allows user to specify: 
- The goals should be considered by the optimizer
- The relative importance of each of these goals (e.g. fulfillment should be prioritized compared to global cost minimization).
 
This section will explain how to configure the optimizer strategies according to the business goals.
 
To manage optimizer strategies, click on the gear button on the main toolbar. The optimizer dialog will pop up.
Macro Planner provides a standard set of strategies which are available in the strategy drop-down list.
 
Click on "..." button next to the strategy drop-down list to open the Strategy dialog.
You can select an existing strategy to edit using the dropdown list or click on the right button to create a new strategy.
 
An optimizer strategy is defined by selecting the active KPIs (on the left side of the dialog). Inactive goals are visible in the right side of the dialog and may be added to the strategy using the blue arrow buttons.
By default, Macro Planner offers many different KPIs (e.g. Fulfillment, Unit & stocking point capacity violations, Transportation costs, Inventory costs, Revenue, etc.).
 
Strategies allow to prioritize certain KPIs by defining multiple levels of priority:
For each strategy level you can define which KPIs should be considered. When you run the optimizer, it will optimize the strategy levels sequentially, starting from the lowest level (level 1) to the highest. For each strategy level, the optimizer will optimize the KPIs of the current level while making sure that the KPIs of the previous levels do not become worse than in the solution obtained on the previous levels.
 
Note: optimizer strategies can be imported/exported as part of the "Strategies" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1017
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Íæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    ¹æ Á-
Next%
LibWiz_InitSequence: Ô¢    âæ Á»
LibWiz_InitSequence: Ô¢    Çæ Á
Id*[151892.2.673723111]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*3. Planning horizon"
ParentId*[151892.2.673723078]
 
SequenceNrº
Descriptionª*§In Macro Planner, periods are used to represent the discrete time buckets in which the planning is performed or visualized.
 
In this section, you will be explained how to set up the periods and how to use multiple period specifications to allow for planning or visualization at different levels.@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1238
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    §æ Á1
Previous%
LibWiz_InitSequence: Ô¢    Éæ Á-
Next%
LibWiz_InitSequence: Ô¢    Íæ Á0
First'
LibWiz_InitManualStep: Ô¢    ýæ Á/
Last'
LibWiz_InitManualStep: Ô¢    ôæ ÁÁ
LibWiz_InitManualStep: Ô¢    Èæ Á
Id*[151892.2.673723112]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Authorizations"
ParentId*[151892.2.673723078]
 
SequenceNr‘
Description*þMacro Planner supports the definition of Functionality authorizations, meaning that it can only allow certain user groups to use a given functionality. Authorizing a user on a functionality needs to be done via the User Administrator application.
 
Via Forms > Administration > Functionality authorization  you can see for which functionalities you are authorized. If you hover over the labels, you will see a short explanation of the functionality. The Administrator can always see and use all functionalities.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12070&chapterid=23554
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Íæ Á1
Previous%
LibWiz_InitSequence: Ô¢    âæ Á/
Next'
LibWiz_InitManualStep: Ô¢    èæ ÁÄ
LibWiz_InitSequence: Ô¢    Éæ Á
Id*[151892.2.673723113]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*2. Demand management"
ParentId*[151892.2.673723078]
 
SequenceNrÂ
Description²*¯This section will help you:
 
- Define the sales hierarchy.
- Import the forecast from an external system: forecasts are generally imported from a demand planning or forecasting application, such as Quintiq Demand Planner.
- Perform quick adjustments on the demand to test different scenarios. 
- Define additional settings, such as priorities, postponement rules and fulfillment restrictions (see "Advanced configuration" section).@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1191
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    §æ Á1
Previous%
LibWiz_InitSequence: Ô¢    ¯æ Á-
Next%
LibWiz_InitSequence: Ô¢    Çæ Á0
First'
LibWiz_InitManualStep: Ô¢    ½æ Á/
Last'
LibWiz_InitManualStep: Ô¢    ‚ç Áó
LibWiz_InitManualStep: Ô¢    Êæ Á
Id*[151892.2.673723114]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name * Verify data"
ParentId*[151892.2.673723078]
 
SequenceNr½
Description­*ªVerify the validity of your current production process definition by checking the following sanity check groups:
 
Stocking points:
    - StockingPoint
    - StockingPointCapacity
    
Units:
    - Unit
    - UnitCapacity
    - UnitAvailability
    
Routings:
    - Operation
    - OperationInput
    - OperationInputGroup
    - OperationInputSet
    - OperationLink
    - OperationOutput
    - Routing
    - RoutingStep
    
Campaigns:
    - CampaignType_MP
    - OperationInCampaignType
    
Refer to "How to verify data" section of the appendix at the end of this wizard for more information on sanity checks.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Ôæ Á1
Previous%
LibWiz_InitSequence: Ô¢    ²æ Á¹
LibWiz_InitManualStep: Ô¢    Ëæ Á
Id*[151892.2.673723115]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name * Verify data"
ParentId*[151892.2.673723078]
 
SequenceNr
Descriptionñ*îVerify the validity of your currency and unit of measure definitions by checking the following sanity check groups:
 
- Currency_MP
- CurrencyRate_MP
- UnitOfMeasure_MP
 
Refer to "How to verify data" section of the appendix at the end of this wizard for more information on sanity checks.
 
Note: units of measure and currencies can be imported/exported as part of the "Supply chain parameters" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    ßæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    ®æ Áµ
 
LibWiz_InitManualStep: Ô¢    Ìæ Á
Id*[151892.2.673723116]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Define activities"
ParentId*[151892.2.673723078]
 
SequenceNrí
DescriptionÝ*ÚS&OP is a cyclic process with recurring activities. Defining an activity consists in providing a description of what the activity is about, but also information about who the activity is assigned to and when it is due with respect to the start of the cycle.
 
An activity definition is a template for an activity that occurs every cycle. Activity definitions are managed in the same place as step definitions (in the "Process definitions" view, which can be opened by clicking on the "Open view" button below).
The Step definitions from is a master-detail list that shows the activity definitions for the selected step definition(s).
 
To create an activity definition, right-click on Activity definitions list to select "New" menu.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=13873&chapterid=22597
IsImage
    TableName*
View*Process definitions/
Parent%
LibWiz_InitSequence: Ô¢    âæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    „ç Á/
Next'
LibWiz_InitManualStep: Ô¢    êæ Áþ    
LibWiz_InitSequence: Ô¢    Íæ Á
Id*[151892.2.673723117]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped 
Name*4. Other configuration"
ParentId*[151892.2.673723078]
 
SequenceNr«
Description›*˜This section will guide you through the configuration of:
 
- Global parameters: define default values and thresholds, planning and visualization horizons, optimizer settings, lead time logic...
- Optimizer strategies: define strategies by specifying which constraints and goals should be considered by the optimizer.
- S&OP workflow: Workflow enables collaboration between multiple users throughout the different stages of the planning process.Define workflow activities and assign these to users.
- Authorizations: define functionality authorizations to specify which actions can be performed by specific people.
- Resource protection: specify sizing limitations.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    §æ Á1
Previous%
LibWiz_InitSequence: Ô¢    Çæ Á/
Next'
LibWiz_InitManualStep: Ô¢    Ûæ Á0
First'
LibWiz_InitManualStep: Ô¢    ¹æ Á/
Last'
LibWiz_InitManualStep: Ô¢    èæ ÁÐ
LibWiz_InitSequence: Ô¢    Îæ Á
Id*[151892.2.673723118]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Production routings"
ParentId*[151892.2.673723078]
 
SequenceNrÊ
Descriptionº*·Now that you have created a production resource, you need to specify how it will be used by defining the bill-of-materials.
This is done through the definition of Production Routings.C
HelpUrl8*6https://academy.quintiq.com/mod/book/view.php?id=12614
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    ²æ Á3
Previous'
LibWiz_InitManualStep: Ô¢    éæ Á-
Next%
LibWiz_InitSequence: Ô¢    Ðæ Á0
First'
LibWiz_InitManualStep: Ô¢    ÿæ Á/
Last'
LibWiz_InitManualStep: Ô¢    ¼æ Á®
LibWiz_InitManualStep: Ô¢    Ïæ Á
Id*[151892.2.673723119]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped%
Name*Postponement specifications"
ParentId*[151892.2.673723078]
 
SequenceNrÔ
DescriptionÄ*ÁA sales demand may be postponed when there is no available supply quantity on the period on which the demand is set. Macro Planner supports the postponement of a sales demand for it to be fulfilled on a later period.
 
By default, sales demands are considered non-postponable. User can configure postponement settings by defining postponement specifications.
 
Postponement specifications allow to define:
- For which customers can sales demands be postponed
- On which horizon (e.g. postponement can only be performed on the first three months of the plan)
- By how much time can a sales demand be postponed (e.g. sales demand cannot be postponed by more than one month).
 
Open "Postponement Specifications" view by clicking on the "Open view" button below.
 
To create a postponement specification, right-click and select "New" menu.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12266&chapterid=24401
IsImage
    TableName*%
View*Postponement specifications/
Parent%
LibWiz_InitSequence: Ô¢    ³æ Á3
Previous'
LibWiz_InitManualStep: Ô¢    ðæ Á/
Next'
LibWiz_InitManualStep: Ô¢    üæ Á‚
LibWiz_InitSequence: Ô¢    Ðæ Á
Id*[151892.2.673723120]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped&
Name*Define production capacities"
ParentId*[151892.2.673723078]
 
SequenceNr
Descriptioný*úAs seen in the previous step ("Create production units"), production units have a capacity type, which is time or quantity-based. 
 
This section explains how to set the capacity and related constraints for each of these types.
 
This is done by defining the following constraints:
 
- Units of capacity type "Time" or "Time aggregation":
    - Shift pattern
    - Unit availability
    
- Units of capacity type "Quantity" or "Quantity aggregation"
    - Unit capacity
 
You can set all these specifications in the "Unit capacities" view, which can be opened by clicking on "Open view" button below.
 
Note: unit capacities can be imported/exported as part of the "Capacities" group. Refer to "Import Data" section of the appendix of this wizard for more details on data import.M
HelpUrlB*@https://academy.quintiq.com/mod/book/view.php?id=12627&x=21&y=17
IsImage
    TableName*
View*Unit capacities/
Parent%
LibWiz_InitSequence: Ô¢    ²æ Á1
Previous%
LibWiz_InitSequence: Ô¢    Îæ Á.
First%
LibWiz_InitSequence: Ô¢    Óæ Á/
Last'
LibWiz_InitManualStep: Ô¢    ´æ Áè
 
LibWiz_InitManualStep: Ô¢    Ñæ Á
Id*[151892.2.673723121]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped!
Name*Define transition types"
ParentId*[151892.2.673723078]
 
SequenceNrÐ
DescriptionÀ*½A transition occurs when switching from one campaign to another campaign. Similarly to campaign types, a transition type specifies the collection of operations that can be performed within the specified transition duration between 2 campaigns. Transition types also allow to specify the minimum and maximum duration between two campaign types.
 
Transition types can get created between two campaigns types using the "Transition types" matrix.
 
A transition type consists of a set of operations: to assign an operation to a transition type, drag&drop the desired operation from the Operations list onto the transition type (in "Transition types" list).
 
Note: transition types can be imported/exported as part of the "Campaigns" group. Refer to "Import Data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12490&chapterid=21210
IsImage
    TableName*
View*Campaign types/
Parent%
LibWiz_InitSequence: Ô¢    Âæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    ûæ Á™    
LibWiz_InitSequence: Ô¢    Òæ Á
Id*[151892.2.673723122]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Use external supplies"
ParentId*[151892.2.673723078]
 
SequenceNrƒ
Descriptionó*ðExternal supplies allow to define supplies on the root stocking points of the supply chain (i.e. the stocking point you created in the previous step, typically the Plant Raw Material stocking point) without modeling an associated process.
External supplies allow you to specify which quantity of which product is supplied to which stocking point, at which date.
This decision is provided as an input to Macro Planner, meaning that these quantities will remain FIXED when building the supply plan.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12602&chapterid=19676
IsImage
    TableName*
 
View*-
Parent#
LibWiz_InitChoice: Ô¢    òæ Á-
Next%
LibWiz_InitSequence: Ô¢    óæ Á0
First'
LibWiz_InitManualStep: Ô¢    áæ Á/
Last'
LibWiz_InitManualStep: Ô¢    åæ Á3
SelectionFor#
LibWiz_InitChoice: Ô¢    òæ ÁŒ
LibWiz_InitSequence: Ô¢    Óæ Á
Id*[151892.2.673723123]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped#
Name*Time-based availabilities"
ParentId*[151892.2.673723078]
 
SequenceNrj
Description[*YThis section only applies to production units of capacity type:
- Time
- Time Aggregation
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Ðæ Á/
Next'
LibWiz_InitManualStep: Ô¢    ´æ Á0
First'
LibWiz_InitManualStep: Ô¢    €ç Á/
Last'
LibWiz_InitManualStep: Ô¢    íæ Áâ
LibWiz_InitSequence: Ô¢    Ôæ Á
Id*[151892.2.673723124]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Manage production"
ParentId*[151892.2.673723078]
 
SequenceNrÉ
Description¹*¶This section will help you define:
 
- WHAT products are used or created in the production process (Products). Products can be raw material, intermediate products or finished goods.
- WHERE are raw materials, intermediate products or finished goods stored (or where they transit by) (Plant stocking points).
- HOW are intermediate products and finished goods created, through the definition of production resources and bill-of-materials (Production resources).
 
You may come back to this step at any time to create a new production resource or manage an existing one.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    ¯æ Á-
Next%
LibWiz_InitSequence: Ô¢    þæ Á0
First'
LibWiz_InitManualStep: Ô¢    úæ Á/
Last'
LibWiz_InitManualStep: Ô¢    Êæ ÁÙ
LibWiz_InitManualStep: Ô¢    Õæ Á
Id*[151892.2.673723125]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name * Verify data"
ParentId*[151892.2.673723078]
 
SequenceNr¥
Description•*’Verify the validity of your current production process definition by checking the following sanity check groups:
 
Stocking points:
    - StockingPoint
    
Units:
    - Unit
    - SupplySpecification
    
Routings:
    - Operation
    - OperationOutput
    - Routing
    
External supplies:
    - ExternalSupply
    
Refer to "How to verify data" section of the appendix at the end of this wizard for more information on sanity checks.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    ·æ Á/
Previous#
LibWiz_InitChoice: Ô¢    òæ ÁÛ
LibWiz_InitSequence: Ô¢    Öæ Á
Id*[151892.2.673723126]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Plant stocking points"
ParentId*[151892.2.673723078]
 
SequenceNrÃ
Description³*°This section will allow you to define WHERE raw materials, intermediate products or finished goods are stored (or where they transit by).
 
Production stocking points represent storage locations for products in a plant. 
 
A plant is generally modelled using multiple stocking points, e.g.:
- A stocking point for raw materials
- A stocking point for intermediate products of each production step
- A stocking point for finished goodsS
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12593&chapterid=19641
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Ôæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    úæ Á-
Next%
LibWiz_InitSequence: Ô¢    ²æ Á0
First'
LibWiz_InitManualStep: Ô¢    ùæ Á/
Last'
LibWiz_InitManualStep: Ô¢    Ùæ Á¸
 
LibWiz_InitManualStep: Ô¢    ׿ Á
Id*[151892.2.673723127]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped 
Name*Define inventory costs"
ParentId*[151892.2.673723078]
 
SequenceNrª
Descriptionš*—Inventory costs can be defined on Products In Stocking Points in the "Inventory values and costs" view.
 
Select a product in stocking point. Right-click in the "Inventory value and costs" list and select "New" menu:
- Select "Inventory holding cost" as Account
- Select "Inventory holding" as Cost driver (note: it is also possible to define the inventory holding cost based on the inventory value)
- Define an inventory cost per unit in the cost section.
 
An introduction to Macro Planner accounts and cost drivers can be found in "Financial impact analysis" e-learning (by clicking on the help button below).
 
Note: inventory holding costs can be imported/exported as part of the "Costs" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1243
IsImage
    TableName*$
View*Inventory values and costs/
Parent%
LibWiz_InitSequence: Ô¢    ææ Á1
Previous%
LibWiz_InitSequence: Ô¢    ¸æ Á¢
LibWiz_InitManualStep: Ô¢    Øæ Á
Id*[151892.2.673723128]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*How to verify data"
ParentId*[151892.2.673723078]
 
SequenceNrƒ
Descriptionó*ðNow that you have imported data, you will be able to verify its validity through Macro Planner sanity checks.
 
Sanity checks are automatic verifications which can roughly be divided into the following types:
- Checks on data correctness
- Checks on data completeness
- Checks on data links
- Checks on planning feasibility
- Checks on targets and goals
 
The sanity check smiley from the main toolbar provides an overview over data validity:
 
- The smiley color indicates the most severe sanity check violation:
    - Red: there are data issues
    - Purple: there are data warnings
    - Orange: there are planning issues
    - Yellow: there are planning warnings
    - Blue: there are unclassified errors
    - Green: there is no identified issue
    
- When not green: the number corresponds to the number of most severe sanity check issues
    - Click on the button for more details.
    - A message is provided for each sanity check violation to help you solve the issue.
    - Double-click on the message to open the associated view.@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1119
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    ©æ Á1
Previous%
LibWiz_InitSequence: Ô¢    Úæ Á-
Next%
LibWiz_InitSequence: Ô¢    ßæ Á¸
 
LibWiz_InitManualStep: Ô¢    Ùæ Á
Id*[151892.2.673723129]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped 
Name*Define inventory costs"
ParentId*[151892.2.673723078]
 
SequenceNrª
Descriptionš*—Inventory costs can be defined on Products In Stocking Points in the "Inventory values and costs" view.
 
Select a product in stocking point. Right-click in the "Inventory value and costs" list and select "New" menu:
- Select "Inventory holding cost" as Account
- Select "Inventory holding" as Cost driver (note: it is also possible to define the inventory holding cost based on the inventory value)
- Define an inventory cost per unit in the cost section.
 
An introduction to Macro Planner accounts and cost drivers can be found in "Financial impact analysis" e-learning (by clicking on the help button below).
 
Note: inventory holding costs can be imported/exported as part of the "Costs" group. Refer to "Import Data" section of the appendix of this wizard for more details on data import.@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1243
IsImage
    TableName*$
View*Inventory values and costs/
Parent%
LibWiz_InitSequence: Ô¢    Öæ Á1
Previous%
LibWiz_InitSequence: Ô¢    «æ Áº
LibWiz_InitSequence: Ô¢    Úæ Á
Id*[151892.2.673723130]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*How to import data"
ParentId*[151892.2.673723078]
 
SequenceNrž
DescriptionŽ*‹Data can be imported from three types of sources:
- Excel files
- Database
- Data Exchange: when used together with a Demand Planner application, forecast will be imported using Data Exchange.
 
You may choose to import data from a single or multiple sources. You may also define part of your data manually directly in Macro Planner.
Each of these import processes are detailed in the next steps.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    ©æ Á/
Next'
LibWiz_InitManualStep: Ô¢    Øæ Á0
First'
LibWiz_InitManualStep: Ô¢    ¿æ Á/
Last'
LibWiz_InitManualStep: Ô¢    Åæ ÁÒ
LibWiz_InitManualStep: Ô¢    Ûæ Á
Id*[151892.2.673723131]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*5. Give it a go!"
ParentId*[151892.2.673723078]
 
SequenceNr
Descriptioný *ú Verify that scenario contains no sanity check violation (refer to "Verify Data" step of the appendix at the end of this wizard).
 
Ready to start? Let's create your first supply plan using Macro Planner optimizer:
 
- Open "Create supply plan" view by clicking on "Open view" button below
- Click on the gear button on the main toolbar
- The optimizer dialog will pop up
- Select 'Default - Infinite' standard strategy: this strategy maximizes demand fulfillment while ignoring resource capacities. 
- Click on 'OK & Run': the gear button should switch to a red square button while the optimizer is running.
 
Once the optimizer run is over, verify the fulfillment KPI:
 
- If fulfillment is 100%: Congratulations! This proves that the flows defined in the supply chain you have designed allow to fulfill all sales demands.
Please note that this plan was built independently from capacity constraints, as it only intends  to verify that no major process (routings and lanes) was omitted from the supply chain definition.
 
- If fulfillment is less than 100%: 
This can be caused by two reasons:
    - There are missing flows  in the supply chain, e.g. missing routings or missing lane/product in lane definitions.
    - If you have not defined the supply chain from end-to-end (typically if you used external supplies to model the suppliers): it does not necessarily means that flow definitions are missing, as you may simply not have enough supply from the upstream stocking points of your supply chain.
    A good way to verify this is to re-perform a test by increasing the initial stocks/external supplies, re-run the optimizer and verify that fulfillment is improved.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=11989&chapterid=17910
IsImage
    TableName*
View*3. Create supply plan/
Parent%
LibWiz_InitSequence: Ô¢    §æ Á1
Previous%
LibWiz_InitSequence: Ô¢    Íæ Á-
Next%
LibWiz_InitSequence: Ô¢    ©æ ÁÎ
LibWiz_InitManualStep: Ô¢    Üæ Á
Id*[151892.2.673723132]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped%
Name*Create transportation lanes"
ParentId*[151892.2.673723078]
 
SequenceNr¿
Description¯*¬Open the Lanes view by clicking on "Open view" button below.
 
To create a new lane, right-click on Lanes list and select "New" menu.
 
To add stocking points as origins (respectively destinations) of a given lane, select stocking points in the Navigation panel and drag&drop these in the Origins (respectively Destinations) list of the Lane from.
This results in creating a lane leg for each couple Origin-Destination. Each leg is represented by a cell in the Laneleg matrix: the origin stocking points are listed vertically while the destination stocking points are listed horizontally.
 
Products can be assigned to a Lane by drag&dropping a product from the navigation panel onto a lane. As a result, this product can be carried on any of the active legs of the selected lane.
 
Note: lanes can be imported/exported as part of the "Lanes" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12621&chapterid=19725
IsImage
    TableName*
View*Lanes/
Parent%
LibWiz_InitSequence: Ô¢    ãæ Á/
Next'
LibWiz_InitManualStep: Ô¢    ëæ Áã
LibWiz_InitManualStep: Ô¢    Ýæ Á
Id*[151892.2.673723133]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped*
Name"* How to navigate in Macro Planner"
ParentId*[151892.2.673723078]
 
SequenceNr´
Description¤*¡In Macro Planner, you can browse the supply chain using the navigation panel.
The navigation panel is accessible from any view within the application and can be opened using the "Show/Hide navigation panel" button on the main toolbar.
 
The panel contains multiple lists:
 
1) Stocking points and units pane
2) Products pane
3) Sales Segments pane
4) Periods pane
 
Selecting items in these lists will result in filtering the elements displayed in the view.
 
Next to the Navigation tab, Bookmarks tab allows you to store frequently used selections.@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1511
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    §æ Á3
Previous'
LibWiz_InitManualStep: Ô¢    äæ Á-
Next%
LibWiz_InitSequence: Ô¢    ¯æ Á¿
LibWiz_InitManualStep: Ô¢    Þæ Á
Id*[151892.2.673723134]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Create supplier units"
ParentId*[151892.2.673723078]
 
SequenceNr¸
Description¨*¥Supplier resources are modelled as Units in Macro Planner.
 
Click on "Open view" button below to open the Units view.
 
To create a unit, right-click on Units list and select "New" menu. The Unit dialog will pop up:
 
- General tab:
    - If you have a hierarchical unit structure and this unit is not at the highest level, specify the Parent unit. Leaving the check box unchecked results in creating a unit at the highest level.
    - Specify the unit Name and ID (ID must be unique)
    - Specify the Unit of Measurement in which supply quantities should be displayed on the unit. Refer to "Create Units of Measure" section of the appendix at the end of this wizard to create a new unit of measurement.
    - Select the Capacity type of the unit (hover over the label for more explanations).
 
- Other tabs allow the definition of more advanced configuration (costs, lot sizes, capacity, advanced settings). 
 
Note: units can be imported/exported as part of the "Entities" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12588&chapterid=19633
IsImage
    TableName*
View*Units/
Parent%
LibWiz_InitSequence: Ô¢    óæ Á-
Next%
LibWiz_InitSequence: Ô¢    Àæ ÁÖ
LibWiz_InitSequence: Ô¢    ßæ Á
Id*[151892.2.673723135]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped7
Name/*-How to define units of measure and currencies"
ParentId*[151892.2.673723078]
 
SequenceNr·
Description§*¤This section will allow you to:
 
- Define currencies and their expected conversion rate.
- Define units of measurement (e.g. tons, pieces, truckload and container).@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1174
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    ©æ Á3
Previous'
LibWiz_InitManualStep: Ô¢    Øæ Á/
Next'
LibWiz_InitManualStep: Ô¢    ºæ Á0
First'
LibWiz_InitManualStep: Ô¢    ­æ Á/
Last'
LibWiz_InitManualStep: Ô¢    Ëæ Á¾
LibWiz_InitManualStep: Ô¢    àæ Á
Id*[151892.2.673723136]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped"
Name*Create supplier routings"
ParentId*[151892.2.673723078]
 
SequenceNr¿
Description¯*¬Open the Routings view by clicking on "Open view" button below.
 
To create a new routing: drag&drop a supplier unit from the Units list onto the Routing list. This will create a new routing that automatically gets a routing step containing an operation for that unit.
 
You can then build up the rest of the routing using the canvas of the Routing configurator:
- Supplied product should be set as an output of the routing. To specify output products for a given operation: drag an operation (dark blue box) onto the product inside the navigation panel.
- This output must be linked to a stocking point (supply stocking point created in the previous step). Drag the stocking point from the navigation panel onto the output to specify that it belongs to the stocking point.
 
Note: routings can be imported/exported as part of the "Routings" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.C
HelpUrl8*6https://academy.quintiq.com/mod/book/view.php?id=12614
IsImage
    TableName*
View
*Routings/
Parent%
LibWiz_InitSequence: Ô¢    Àæ Á/
Next'
LibWiz_InitManualStep: Ô¢    Áæ ÁË
LibWiz_InitManualStep: Ô¢    áæ Á
Id*[151892.2.673723137]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped"
Name*Create external supplies"
ParentId*[151892.2.673723078]
 
SequenceNr²
Description¢*ŸOpen "External supplies" view by clicking on the "Open view" button below.
 
To create an external supply, right-click on "New" context menu of External supply form and specify:
- The product that is supplied
- To which stocking point
- At which date
- The quantity that is supplied
 
Click on the help button below for more information on external supplies.
 
Note: external supplies can be imported/exported as part of the "External supplies" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12602&chapterid=19676
IsImage
    TableName*
View*Inventory supplies/
Parent%
LibWiz_InitSequence: Ô¢    Òæ Á/
Next'
LibWiz_InitManualStep: Ô¢    åæ Á­
LibWiz_InitSequence: Ô¢    âæ Á
Id*[151892.2.673723138]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped!
Name*Configure S&OP Workflow"
ParentId*[151892.2.673723078]
 
SequenceNr¤
Description”*‘S&OP Workflow functionality is designed to:
- Help S&OP managers to manage the cycles and the recurring steps and activities in those cycles
- Guide S&OP participants through the different process steps of the active cycle
- Enable participants to collaborate and create tasks for themselves and for others
- Measure the workflow progress through clear KPIs
 
The workflow framework is available for Macro Planner individually, but also in a solution which includes Demand Planner application. The workflow framework allows to synchronize the workflow data between the two applications in order to provide a truly integrated solution.
 
Setting up the process consists in: 
    - Defining the workflow steps
    - Defining the workflow activities
    - Managing the cycles
    - Managing the users.@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1391
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Íæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    Ææ Á/
Next'
LibWiz_InitManualStep: Ô¢    Èæ Á0
First'
LibWiz_InitManualStep: Ô¢    „ç Á/
Last'
LibWiz_InitManualStep: Ô¢    Ãæ Á¸
LibWiz_InitSequence: Ô¢    ãæ Á
Id*[151892.2.673723139]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped%
Name*Define transportation lanes"
ParentId*[151892.2.673723078]
 
SequenceNrš
DescriptionŠ*‡Lanes are used to model the transportation in your supply chain.
Lanes allow to define transportation routes between possible origin and destination stocking points, as well as which products can be transported, at which cost, with which transportation lead time.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12621&chapterid=19721
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    îæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    õæ Á-
Next%
LibWiz_InitSequence: Ô¢    ¬æ Á0
First'
LibWiz_InitManualStep: Ô¢    Üæ Á/
Last'
LibWiz_InitManualStep: Ô¢    ëæ Áã    
LibWiz_InitManualStep: Ô¢    äæ Á
Id*[151892.2.673723140]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped0
Name(*&Introduction to Macro Planner concepts"
ParentId*[151892.2.673723078]
 
SequenceNrÎ
Description¾*»Macro Planner makes use of the following concepts:
 
- Units: resources (e.g. plants, suppliers, tollers, etc).
- Stocking points: warehouses, storage or WIP locations.
- Products: raw materials, finished goods or WIP stored products.
- Routings: a combination of bill-of-materials and bill-of-operations.
- Lanes/lane legs: transportation routes or legs.
- Periods: Macro Planner uses discrete time buckets for planning purposes. Hence, time buckets are also referred to as periods.
- Sales demands: collectively refers to aggregated sales orders or forecasted sales demands.
 
Refer to the Supply Chain Design Overview e-learning (by clicking on the help button below) for a small real-life example.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12580&chapterid=19609
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    §æ Á/
Next'
LibWiz_InitManualStep: Ô¢    Ýæ Áä    
LibWiz_InitManualStep: Ô¢    åæ Á
Id*[151892.2.673723141]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped&
Name*Define external supply costs"
ParentId*[151892.2.673723078]
 
SequenceNrÖ
DescriptionÆ*ÃExternal supply costs can be defined in the Cost tab of the "External Supply" dialog: right-click in the Cost list and select "New" menu. 
A dialog will pop-up, pre-filled with the following selection:
- Account: Inventory supply cost
- Cost driver: Inventory supply 
 
Leave this default setting and define an external supply cost per unit in the cost section.
 
An introduction to Macro Planner accounts and cost drivers can be found in "Financial impact analysis" e-learning (by clicking on the help button below).
 
Note: external supply costs can be imported/exported as part of the "Inventory supplies" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1243
IsImage
    TableName*
View*Inventory supplies/
Parent%
LibWiz_InitSequence: Ô¢    Òæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    áæ ÁÙ
LibWiz_InitSequence: Ô¢    ææ Á
Id*[151892.2.673723142]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped!
Name*Network stocking points"
ParentId*[151892.2.673723078]
 
SequenceNru
Descriptionf*dThis section will allow you to define WHERE products can be shipped from, shipped to, or transit by.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12593&chapterid=19641
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    þæ Á-
Next%
LibWiz_InitSequence: Ô¢    îæ Á0
First'
LibWiz_InitManualStep: Ô¢    ¶æ Á/
Last'
LibWiz_InitManualStep: Ô¢    ׿ Á¦
 
LibWiz_InitManualStep: Ô¢    çæ Á
Id*[151892.2.673723143]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped)
Name!*Define inventory specifications"
ParentId*[151892.2.673723078]
 
SequenceNr“
Descriptionƒ*€This optional step will allow you to define product-dependent storage constraints and targets on your network stocking points.
 
Inventory specifications allow you to set a minimum and/or maximum and/or target inventory level end on a specific product in stocking point. 
 
Open the "Inventory targets" view by clicking on "Open view" button below.
To create an inventory specification, right-click on the "Inventory specifications" list and select "New" menu.
These inventory levels can be set directly in quantity or by specifying a number of days of demand coverage.
 
Note: inventory specifications can be imported/exported as part of the "Inventory specifications" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.C
HelpUrl8*6https://academy.quintiq.com/mod/book/view.php?id=12707
IsImage
    TableName*
View*Inventory targets/
Parent%
LibWiz_InitSequence: Ô¢    ¸æ Á3
Previous'
LibWiz_InitManualStep: Ô¢    ±æ Á±
LibWiz_InitManualStep: Ô¢    èæ Á
Id*[151892.2.673723144]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Resource protection"
ParentId*[151892.2.673723078]
 
SequenceNrñ
Descriptioná*ÞThis step allows you to protect your resources by setting limitations on dataset size, number of (active datasets) and optimizer runs.
 
Open Sizing parameters dialog: Edit >Configuration > Sizing parameters
 
In the dialog you can define the maximum number of:
- Scenarios
- Online (i.e. active) scenarios
- Product in Stocking Point in Period (PISPIP) instances
- Routing instances
- Product In Lane instances
- Concurrent optimizer run
- Number of threads used by the optimizer
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Íæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    Èæ Á‡
LibWiz_InitManualStep: Ô¢    éæ Á
Id*[151892.2.673723145]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped!
Name*Create production units"
ParentId*[151892.2.673723078]
 
SequenceNrþ
Descriptionî*ëClick on "Open view" button below to open the Units view.
 
To create a unit, right-click on Units list and select "New" menu. The Unit dialog will pop up:
 
- General tab:
    - If you have a hierarchical unit structure and this unit is not at the highest level, specify the Parent unit. Leaving the check box unchecked results in creating a unit at the highest level.
    - Specify the unit Name and ID (ID must be unique)
    - Specify the Unit of Measurement in which supply quantities should be displayed on the unit.
    - Select the Capacity type according to the desired characteristics of the unit.
 
- Other tabs allow the definition of more advanced configuration (costs, lot sizes, capacity, advanced settings). 
 
Note: units can be imported/exported as part of the "Entities" group. Refer to "Import Data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12588&chapterid=19635
IsImage
    TableName*
View*Units/
Parent%
LibWiz_InitSequence: Ô¢    ²æ Á-
Next%
LibWiz_InitSequence: Ô¢    Îæ Á™
LibWiz_InitManualStep: Ô¢    êæ Á
Id*[151892.2.673723146]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name* Manage cycles"
ParentId*[151892.2.673723078]
 
SequenceNrâ
DescriptionÒ*ÏThe S&OP process is carried out in recurring cycles, which are often monthly and start at a certain day in the month. In the workflow framework, you can define the cycles and set their start dates. 
 
Open the Cycles view by clicking on "Open view" button below.
 
To create a new cycle, right-click on Cycles list and select "New" menu.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=13873&chapterid=22600
IsImage
    TableName*
View*Cycles/
Parent%
LibWiz_InitSequence: Ô¢    âæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    Ìæ Á/
Next'
LibWiz_InitManualStep: Ô¢    Ãæ ÁÊ
LibWiz_InitManualStep: Ô¢    ëæ Á
Id*[151892.2.673723147]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped%
Name*Define transportation costs"
ParentId*[151892.2.673723078]
 
SequenceNrÊ
Descriptionº*·Transportation costs can be defined in two places:
 
1) Cost tab of the Lane dialog: allows to define a default transportation cost on the Lane. It will apply to all associated Lane Legs, IF not re-defined on the Lane Leg.
    Right-click in the Cost list and select "New" menu:
    - Select "Transportation cost" as Account
    - Select "Volume" as Cost driver (note: it is also possible to define a cost per time or per lot)
    - Define a transportation cost per unit in the cost section.
 
2) Cost tab of the Lane Leg dialog: allows to override the Lane default transportation cost for a given Lane Leg. 
    The Lane Leg dialog can be opened by double-clicking on a Lane Leg (cell of the Lane Leg matrix): right-click in the Cost list and select "New" menu. 
 
An introduction to Macro Planner accounts and cost drivers can be found in "Financial impact analysis" e-learning (by clicking on the help button below).
 
Note: transportation costs can be imported/exported as part of the "Costs" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.@
HelpUrl5*3https://academy.quintiq.com/course/view.php?id=1243
IsImage
    TableName*
View*Lanes/
Parent%
LibWiz_InitSequence: Ô¢    ãæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    Üæ Á”    
LibWiz_InitManualStep: Ô¢    ìæ Á
Id*[151892.2.673723148]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped 
Name*Supply stocking points"
ParentId*[151892.2.673723078]
 
SequenceNrÏ
Description¿*¼This section will allow you to define WHERE products can be supplied to by a given supplier.
 
Typically, supplies of raw material are delivered to a plant warehouse. 
You therefore need to define a stocking point for that plant warehouse.
 
Click on "Open view" button below to open the Stocking points view.
 
To create a stocking point, right-click on Stocking points list and select "New" menu. 
 
Note: stocking points can be imported/exported as part of the "Entities" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12593&chapterid=19644
IsImage
    TableName*
View*Stocking points/
Parent%
LibWiz_InitSequence: Ô¢    ·æ Á3
Previous'
LibWiz_InitManualStep: Ô¢    °æ Á+
Next#
LibWiz_InitChoice: Ô¢    òæ Á½
LibWiz_InitManualStep: Ô¢    íæ Á
Id*[151892.2.673723149]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Unit availabilities"
ParentId*[151892.2.673723078]
 
SequenceNr¨
Description˜*•The capacity for time-based units is measured in hours of availability. Macro Planner derives this availability per period from the shift pattern of the unit. The rates of the operations defined on the unit then determine the quantity it can produce in the available time.
 
If you want to override the default availability derived for time-based units, you can do so in the "Unit availability" form of the view "Unit capacities" (click on "Open view" button below). 
 
To create a unit availability, right-click and select "New" menu.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12627&chapterid=19765
IsImage
    TableName*
View*Unit capacities/
Parent%
LibWiz_InitSequence: Ô¢    Óæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    €ç ÁÄ
LibWiz_InitSequence: Ô¢    îæ Á
Id*[151892.2.673723150]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped"
Name*Transportation resources"
ParentId*[151892.2.673723078]
 
SequenceNrr
Descriptionc*aThis section will allow you to define HOW products can transit within the transportation network.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    þæ Á1
Previous%
LibWiz_InitSequence: Ô¢    ææ Á/
Next'
LibWiz_InitManualStep: Ô¢    ñæ Á0
First'
LibWiz_InitManualStep: Ô¢    õæ Á-
Last%
LibWiz_InitSequence: Ô¢    ¬æ Á
LibWiz_InitManualStep: Ô¢    ïæ Á
Id*[151892.2.673723151]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name
*Database"
ParentId*[151892.2.673723078]
 
SequenceNrä
DescriptionÔ*ÑSkip this step if your Macro Planner application does not make use of a database source.
 
To import data (partially or exclusively) from a database, you first need to define import profiles.
An import profile is a specification of which data to source from where. Here the source can be either the database or Excel files.
 
To manage and execute import profiles, click on the orange import button on the application toolbar. This opens the Import profiles dialog. 
 
To create an import profile, use the "New" context menu in the dialog to bring up the import profile creation dialog.
Here you can specify per object group if you want to include it in the profile and, if so, whether to source it from Excel or from the database. If any of the included object groups is sourced from Excel, you need to specify the path where to find the Excel files.
 
Use the button on the bottom of the screen to execute the active profiles, or a context menu to execute any selected profile.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=13136&chapterid=20918
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Úæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    ¿æ Á/
Next'
LibWiz_InitManualStep: Ô¢    Åæ Á‰
 
LibWiz_InitManualStep: Ô¢    ðæ Á
Id*[151892.2.673723152]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped!
Name*Sales demand priorities"
ParentId*[151892.2.673723078]
 
SequenceNrù
Descriptioné*æPriorities allow to specify that the fulfillment of some sales demands is more important than others.
You may for instance want to prioritize sales demands that fall early in the horizon or sales demands from a key customer.
 
Click on "Open view" button below to open the Priorities view.
 
To create a priority, right-click on Units list and select "New" menu. 
 
To assign the priority to sales demands, select one or many sales demands and right-click on "Edit" menu.
The priority will be visible in the Priority drop-down list of the Sales Demand dialog.
 
It is later possible to use priorities as a goal in an optimizer strategy. Refer to "Optimizer strategies" section of this wizard for more information on optimizer strategy definition.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12266&chapterid=18708
IsImage
    TableName*
View *
Priorities/
Parent%
LibWiz_InitSequence: Ô¢    ³æ Á/
Next'
LibWiz_InitManualStep: Ô¢    Ïæ ÁÓ
LibWiz_InitManualStep: Ô¢    ñæ Á
Id*[151892.2.673723153]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name * Verify data"
ParentId*[151892.2.673723078]
 
SequenceNr
Description*ŠVerify the validity of your current transportation network by checking the following sanity check groups:
 
Stocking points:
    - StockingPoint
    - StockingPointCapacity
 
Units:
    - Unit
    - UnitCapacity
    - TransportCapacity
 
Lanes:
    - Lane
    - LaneCost
    - LaneLeg
    - ProductInLane
 
Refer to "How to verify data" section of the appendix at the end of this wizard for more information on sanity checks.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    þæ Á1
Previous%
LibWiz_InitSequence: Ô¢    îæ Á¢
LibWiz_InitChoice: Ô¢    òæ Á
Id*[151892.2.673723154]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Supply processes"
ParentId*[151892.2.673723078]
 
SequenceNrñ
Explanationá*ÞThis section will allow you to define HOW products can be supplied to a given location, by a given supplier.
 
To model the injection of products into the supply chain, you can either define external supplies or model supplier resources. Please select one of the two options:
 
1) Use external supplies
External supplies allow to define supplies on the root stocking points of the supply chain (i.e. the stocking point you created in the previous step, typically the Plant Raw Material stocking point) without modeling an associated process.
 
2) Use supplier resources
This option provides more liberty for Macro Planner to decide on which quantities should be supplied, by which supplier, to a given location.
Selecting this option will allow you to manage supplier resources (possibly involving supply specifications, e.g. minimum or maximum volume commitments).
HelpUrl*
QuestionText*/
Parent%
LibWiz_InitSequence: Ô¢    ·æ Á3
Previous'
LibWiz_InitManualStep: Ô¢    ìæ Á/
Next'
LibWiz_InitManualStep: Ô¢    Õæ Á.
First%
LibWiz_InitSequence: Ô¢    Òæ Á-
Last%
LibWiz_InitSequence: Ô¢    óæ Áú
LibWiz_InitSequence: Ô¢    óæ Á
Id*[151892.2.673723155]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped 
Name*Use supplier resources"
ParentId*[151892.2.673723078]
 
SequenceNr”
Description„*This section will allow you to:
 
- Define supplier resources (possibly involving supply specifications, e.g. minimum or maximum volume commitments).
- Define supplier routings: specify which products can be supplied by a given supplier, at a given location.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12588&chapterid=19633
IsImage
    TableName*
 
View*-
Parent#
LibWiz_InitChoice: Ô¢    òæ Á1
Previous%
LibWiz_InitSequence: Ô¢    Òæ Á0
First'
LibWiz_InitManualStep: Ô¢    Þæ Á/
Last'
LibWiz_InitManualStep: Ô¢    Äæ ÁÍ
LibWiz_InitManualStep: Ô¢    ôæ Á
Id*[151892.2.673723156]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name * Verify data"
ParentId*[151892.2.673723078]
 
SequenceNr•
Description…*‚Verify the validity of your planning horizon definition by checking the following sanity check groups:
 
- MacroPlan
- PeriodSpecifications
 
Refer to "How to verify data" section of the appendix at the end of this wizard for more information on sanity checks.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Çæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    ýæ Á¬
LibWiz_InitManualStep: Ô¢    õæ Á
Id*[151892.2.673723157]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped%
Name*Create transportation units"
ParentId*[151892.2.673723078]
 
SequenceNrŸ
Description*ŒTransportation Resources are modelled as Units in Macro Planner.
 
Click on 'Open view' button below to open the Units view.
 
To create a unit, right-click on Units list and select "New" menu. The Unit dialog will pop up:
 
- General tab:
    - If you have a hierarchical unit structure and this unit is not at the highest level, specify the Parent unit. Leaving the check box unchecked results in creating a unit at the highest level.
    - Specify the unit Name and ID (ID must be unique)
    - Specify the Unit of Measurement in which supply quantities should be displayed on the unit. Refer to "Create Units of Measure" section of the appendix at the end of this wizard to create a new unit of measurement.
    - Set the Capacity type to Transport time or Transport quantity.
 
- Other tabs allow the definition of more advanced configuration (costs, capacity, advanced settings). 
 
Note: units can be imported/exported as part of the "Entities" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12588&chapterid=19633
IsImage
    TableName*
View*Units/
Parent%
LibWiz_InitSequence: Ô¢    îæ Á-
Next%
LibWiz_InitSequence: Ô¢    ãæ Áè
LibWiz_InitManualStep: Ô¢    öæ Á
Id*[151892.2.673723158]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Adjust forecasts"
ParentId*[151892.2.673723078]
 
SequenceNr­
Description*šMacro Planner allows the adjustment of sales demand quantities in order to quickly create what-if scenarios to investigate the consequences. 
 
Open "Forecasts" view by clicking on "Open view" button below.
 
Click on "Adjust quantity" menu on Forecasts list. It allows you to adjust the quantity of the selected forecasts. The adjustment options are:
- Set to a specified quantity
- Add an absolute quantity (enter a negative value to subtract)
- Multiply by a factor
- Add a percentage of the quantity (enter a negative value to subtract)S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12266&chapterid=18710
IsImage
    TableName*
View *    Forecasts/
Parent%
LibWiz_InitSequence: Ô¢    Éæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    ç Á-
Next%
LibWiz_InitSequence: Ô¢    ³æ Á¤
 
LibWiz_InitManualStep: Ô¢    ÷æ Á
Id*[151892.2.673723159]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped)
Name!*Define inventory specifications"
ParentId*[151892.2.673723078]
 
SequenceNr‘
Description*þThis optional step will allow you to define product-dependent storage constraints and targets on your plant stocking points.
 
Inventory specifications allow you to set a minimum and/or maximum and/or target inventory level end on a specific product in stocking point. 
 
Open the "Inventory targets" view by clicking on "Open view" button below.
To create an inventory specification, right-click on the "Inventory specifications" list and select "New" menu.
These inventory levels can be set directly in quantity or by specifying a number of days of demand coverage.
 
Note: inventory specifications can be imported/exported as part of the "Inventory specifications" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.C
HelpUrl8*6https://academy.quintiq.com/mod/book/view.php?id=12707
IsImage
    TableName*
View*Inventory targets/
Parent%
LibWiz_InitSequence: Ô¢    «æ Á3
Previous'
LibWiz_InitManualStep: Ô¢    »æ ÁŠ
LibWiz_InitManualStep: Ô¢    øæ Á
Id*[151892.2.673723160]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped!
Name*Define blending recipes"
ParentId*[151892.2.673723078]
 
SequenceNrý
Descriptioní*êThe capability to blend is enabled by the recipes and ingredients feature in Macro Planner.
 
Open the "Recipes" view by clicking on the "Open view" button below.
 
Recipes allow to define the composition of a given product. A recipe consists of a list of ingredients. Each ingredient within a recipe has a tolerance defined by a minimum and maximum ratio. This tolerance defines the allowed range of the ingredient for the recipe to be valid.
 
- To create an ingredient, right-click on Ingredients list and select "New" menu.
- To create a recipe, right-click on Recipes list and select "New" menu.
- Ingredients can be assigned to recipes by drag&dropping an ingredient onto a recipe. You can later specify the minimum, maximum and nominal ratios of the ingredient within the recipe.
- You can later assign a recipe to a product by drag&dropping the recipe onto the product.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12459&chapterid=19207
IsImage
    TableName*
View    *Recipes/
Parent%
LibWiz_InitSequence: Ô¢    ¾æ Á/
Next'
LibWiz_InitManualStep: Ô¢    ƒç Áê
 
LibWiz_InitManualStep: Ô¢    ùæ Á
Id*[151892.2.673723161]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped 
Name*Create stocking points"
ParentId*[151892.2.673723078]
 
SequenceNrØ
DescriptionÈ*ÅTo create a stocking point, right-click on Stocking points list and select "New" menu. The Stocking Point dialog will pop up:
 
- General tab: 
    - Select, if relevant, the unit to which the stocking point belongs. 
    - Specify the stocking point Name and ID 
    - Specify the Unit of Measurement in which inventory should be displayed on the stocking point. Refer to "Create Units of Measure" section of the appendix at the end of this wizard to create a new unit of measurement.
    - Specify whether the stocking point is of infinite capacity (i.e. no maximum inventory)
 
- Other tabs allow the definition of more advanced configuration (costs, advanced settings). 
    
Note: stocking points can be imported/exported as part of the "Entities" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12593&chapterid=19643
IsImage
    TableName*
View*Stocking points/
Parent%
LibWiz_InitSequence: Ô¢    Öæ Á-
Next%
LibWiz_InitSequence: Ô¢    «æ ÁÔ
LibWiz_InitManualStep: Ô¢    úæ Á
Id*[151892.2.673723162]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name
*Products"
ParentId*[151892.2.673723078]
 
SequenceNrç    
Description×    *Ô    This section will allow you to define WHAT products are used or created in the production process. Products can be raw material, intermediate products or finished goods.
 
Open the Products view by clicking on "Open view" button below.
 
In the products form you see two lists:
    - Product levels: allows you to define the levels in your product hierarchy 
    - Products: allows you to define the products in the system. Each product belongs to a product level.
 
To create a product level, right-click on Product levels list and select "New" menu. 
 
To create a product, right-click on Products list and select "New" menu. The Product dialog will pop-up:
- General tab:
    - Parent product: specify the place of the product in the hierarchy. 
    - Specify the Name and ID of the product.
    - Select the Unit of measurement you want to visualize the product in. Refer to "Create Units of Measure" section of the appendix at the end of this wizard to create a new unit of measurement.
 
- Other tabs allow the definition of more advanced configuration (costs, advanced settings). 
 
Note: products can be imported/exported as part of the "Products" group. Refer to "Import Data" section of the appendix of this wizard for more details on data import.C
HelpUrl8*6https://academy.quintiq.com/mod/book/view.php?id=12601
IsImage
    TableName*
View
*Products/
Parent%
LibWiz_InitSequence: Ô¢    Ôæ Á-
Next%
LibWiz_InitSequence: Ô¢    Öæ Áñ
 
LibWiz_InitManualStep: Ô¢    ûæ Á
Id*[151892.2.673723163]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Define campaign types"
ParentId*[151892.2.673723078]
 
SequenceNrß
DescriptionÏ*ÌA campaign type specifies the collection of operations that can be performed within the campaign on a certain unit. 
 
Open the "Campaign types" view by clicking on "Open view" button below.
 
To create a campaign type, right-click on Campaign types list and select "New" menu.
Specify the production unit to which this campaign type belongs, as well as the campaign type name. You may also define the default minimal and maximal quantities that should be processed during campaigns of that type.
 
A campaign type consists of a set of operations: to assign an operation to a campaign type, drag&drop the desired operation from the Operations list onto the campaign type.
 
Note: campaign types can be imported/exported as part of the "Campaigns" group. Refer to "Import Data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12490&chapterid=19313
IsImage
    TableName*
View*Campaign types/
Parent%
LibWiz_InitSequence: Ô¢    Âæ Á/
Next'
LibWiz_InitManualStep: Ô¢    Ñæ Á©
LibWiz_InitManualStep: Ô¢    üæ Á
Id*[151892.2.673723164]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Fulfillment targets"
ParentId*[151892.2.673723078]
 
SequenceNrã
DescriptionÓ*ÐFulfillment targets are objectives of service level.
These can be customer, stocking point and product dependent.
 
Fulfillment targets can be used as a goal in an optimizer strategy. Refer to "Optimizer Strategies" section of this wizard for more information on optimizer strategy definition.
 
Open "Sales hierarchy" view by clicking on the "Open view" button below.
 
To create a fulfillment target, right-click in "Fulfillment targets" list and select "New" menu.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12266&chapterid=18711
IsImage
    TableName*
View*Sales hierarchy/
Parent%
LibWiz_InitSequence: Ô¢    ³æ Á3
Previous'
LibWiz_InitManualStep: Ô¢    Ïæ Á/
Next'
LibWiz_InitManualStep: Ô¢    ªæ Áý
LibWiz_InitManualStep: Ô¢    ýæ Á
Id*[151892.2.673723165]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped&
Name*Create period specifications"
ParentId*[151892.2.673723078]
 
SequenceNrë
DescriptionÛ*ØThe periods and the horizon are defined by the period specifications. 
You can define multiple period specifications (e.g. Weekly, Monthly, Quarterly, and Yearly), which can be used for planning or visualization.
 
Open "Periods" view by clicking on "Open view" button below.
 
To create a period specification, right-click on period specification list and select "New" menu.
 
Specify:
- The period specification ID 
- The Time unit and the Number of time units, which together determine the duration of your periods.
- The Period alignment. This allows you, for instance, to specify that a week should start on a Monday.
- Number of periods: specify the number of historical and future periods for this period specification.
- Whether this period specification is used for planning or visualization only.
 
Note: period specifications can be imported/exported as part of the "Periods" group. Refer to "Import data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12607&chapterid=19683
IsImage
    TableName*
View    *Periods/
Parent%
LibWiz_InitSequence: Ô¢    Çæ Á/
Next'
LibWiz_InitManualStep: Ô¢    ôæ Áª
LibWiz_InitSequence: Ô¢    þæ Á
Id*[151892.2.673723166]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped+
Name#*!Design the transportation network"
ParentId*[151892.2.673723078]
 
SequenceNrÐ
DescriptionÀ*½This section will help you define:
 
- WHERE can products be sent from, delivered to or transit by (Network stocking points).
- HOW can products be carried between stocking points (Transportation resources).
 
You may come back to this step at any time to create a new transportation resource or manage an existing one.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    ¯æ Á1
Previous%
LibWiz_InitSequence: Ô¢    Ôæ Á-
Next%
LibWiz_InitSequence: Ô¢    ·æ Á.
First%
LibWiz_InitSequence: Ô¢    ææ Á/
Last'
LibWiz_InitManualStep: Ô¢    ñæ ÁÕ
LibWiz_InitManualStep: Ô¢    ÿæ Á
Id*[151892.2.673723167]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped$
Name*Create production routings"
ParentId*[151892.2.673723078]
 
SequenceNrÆ
 
Description¶
Open the Routings view by clicking on "Open view" button below.
 
To create a new routing:
- Drag&drop a unit from the Units list onto the Routing list. This will create a new routing that automatically gets a routing step containing an operation for that unit.
- Or right-click on Routings list and select "New" menu
 
You can then build up the rest of the routing using the canvas of the Routing configurator:
 
- To specify input products for a given operation: drag a product from the navigation panel onto an operation to set it as an operation input.
- To specify output products for a given operation: drag an operation onto a product inside the navigation panel  set it as an operation output.
- Inputs and outputs must be linked to a stocking point. Drag a stocking point from the navigation panel onto an operation input (or operation output) to specify that this input (or output) belongs to the stocking point.
- To create a new routing step, drag&drop a unit from the navigation panel to the routing configurator.
- To edit an operation input (or output) quantity, double-click on the operation input (ouput). A dialog to edit the quantity will pop-up.
 
Note: routings can be imported/exported as part of the "Routings" group. Refer to "Import Data" section of the appendix of this wizard for more details on data import.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12614&chapterid=19703
IsImage
    TableName*
View
*Routings/
Parent%
LibWiz_InitSequence: Ô¢    Îæ Á-
Next%
LibWiz_InitSequence: Ô¢    ¾æ Á¸
LibWiz_InitManualStep: Ô¢    €ç Á
Id*[151892.2.673723168]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Shift patterns"
ParentId*[151892.2.673723078]
 
SequenceNr¬
Descriptionœ*™As explained in the previous step, the Time capacity type is based on the availability of the resource. The availability is derived from the Shift pattern, which dictates on which days the resource can be used and for how many hours per day.
For instance, 24x7 shift pattern represents â€˜always available’ while 8x5 represents â€˜available during working hours’.
 
You can define the shift patterns in the "Unit capacities" (by clicking on "Open view" button below) in the "Shift patterns" form.
To create or edit a shift pattern, right-click on Shift patterns list and select "New" menu. The Shift Pattern dialog will pop-up:
Specify the name of the shift pattern and the duration of the cycle in number of days (e.g. 7 for a weekly pattern).
 
The Shifts matrix on the right side of the form shows the days in the cycle for a selected shift pattern. Here you can set the availability per day for this shift pattern.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12627&chapterid=19764
IsImage
    TableName*
View*Unit capacities/
Parent%
LibWiz_InitSequence: Ô¢    Óæ Á/
Next'
LibWiz_InitManualStep: Ô¢    íæ Á®    
LibWiz_InitManualStep: Ô¢    ç Á
Id*[151892.2.673723169]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name*Import forecasts"
ParentId*[151892.2.673723078]
 
SequenceNrÀ
Description°*­Forecasts can be imported from three types of sources:
 
1) Excel
Forecasts can be imported/exported as part of the "Forecasts" group. Refer to "Excel" step of "How to import data" section in the appendix for more information.
 
2) Database
To import forecasts from a database: you need to execute an Import Profile which includes "Forecasts" group. Refer to "Database" step of "How to import data" section in the appendix for more information.
 
3) Data exchange (when Macro Planner is used together with a Demand Planner application)
To import forecasts from Demand Planner application: refer to "Data exchange" step of "How to Import Data" section in the appendix for more information.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Éæ Á3
Previous'
LibWiz_InitManualStep: Ô¢    ½æ Á/
Next'
LibWiz_InitManualStep: Ô¢    öæ ÁÞ
LibWiz_InitManualStep: Ô¢    ‚ç Á
Id*[151892.2.673723170]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped
Name * Verify data"
ParentId*[151892.2.673723078]
 
SequenceNr¨
Description˜*•Verify the validity of your current sales demands by checking the following sanity check groups:
 
Sales segments:
    - SalesLevel_MP
    - SalesSegment_MP
    
Sales demands:
    - Forecast
    
Others configuration:
    - Priority
    - ServiceLevel
    - PostponementSpecification
    - FulfillmentRestriction
 
Refer to "How to verify data" section of the appendix at the end of this wizard for more information on sanity checks.
HelpUrl*
IsImage
    TableName*
 
View*/
Parent%
LibWiz_InitSequence: Ô¢    Éæ Á1
Previous%
LibWiz_InitSequence: Ô¢    ³æ ÁÊ
LibWiz_InitManualStep: Ô¢    ƒç Á
Id*[151892.2.673723171]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped$
Name*Define blending operations"
ParentId*[151892.2.673723078]
 
SequenceNrµ
Description¥*¢As seen in the previous section, the transformation of input products into output products is defined by operations in Macro Planner. 
 
An operation is automatically regarded as a blending operation when it meets certain criteria, as described below:
- Recipes are needed for both input and output products because they define the nominal composition of the input product as well as the tolerable composition of the output product.
- The input products have to be in groups to allow for variation in the input quantity of each individual product.S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=12459&chapterid=19222
IsImage
    TableName*
View
*Routings/
Parent%
LibWiz_InitSequence: Ô¢    ¾æ Á3
Previous'
LibWiz_InitManualStep: Ô¢    øæ Á·
 
LibWiz_InitManualStep: Ô¢    „ç Á
Id*[151892.2.673723172]
IdOwner*
ImportedSequenceNr
IsCompleted
    IsCurrent
    IsEnabled
IsFirstStep
    IsSkipped!
Name*Create step definitions"
ParentId*[151892.2.673723078]
 
SequenceNrž
DescriptionŽ*‹The activities of an S&OP process are generally grouped in different phases, or as we call them: steps.
 
A step definition is a template for a step that occurs every cycle.
 
To set up the step definitions, open the "Process definitions" view by clicking on "Open view" button below. 
The list on the left shows the hierarchy of the step definitions. 
 
To create a new step definition, right-click on Step definition list and select "New" menu. 
 
Dependencies can be defined between steps. These are shown in the lists Previous and Next for the selected steps. A step depends on another if the associated activities cannot be carried out until the previous step completed. 
You can create dependencies by drag-and-dropping a step definition onto another one (of which it depends).S
HelpUrlH*Fhttps://academy.quintiq.com/mod/book/view.php?id=13873&chapterid=22596
IsImage
    TableName*
View*Process definitions/
Parent%
LibWiz_InitSequence: Ô¢    âæ Á/
Next'
LibWiz_InitManualStep: Ô¢    Ìæ Á6
OwningLibWiz_Wizard
WizardManager: Ô¢    Âå Á0
Current%
LibWiz_InitSequence: Ô¢    §æ Á