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
Quintiq file version 2.0
Component mbMainMenu
{
  #keys: '[514.0.2181]'
  BaseType: 'MenuBar'
  GBLayout
  {
    Type: 'internal[GBLayoutDefinition]'
    Columns:
    [
      GBFlow.Column { grow: 0 id: 688 parent: 0 }
    ]
    Gaps: [ left: 5 right: 5 top: 0 bottom: 0 inner: 5 ]
    Rows:
    [
      GBFlow.Row { grow: 128 id: 193 parent: 0 }
      GBFlow.Row { grow: 0 id: 314 parent: 0 }
    ]
  }
  Children:
  [
    Component menuFile
    {
      #keys: '[514.0.2182]'
      BaseType: 'Menu'
      Children:
      [
        Component ComponentMenu3 { #keys: '[514.0.2193917]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'dlgServerMessages' Image: 'viewobject' Shortcut: 'Ctrl+S' Text: 'View server output' ] }
        Component Menu9 { #keys: '[514.0.2141307]' BaseType: 'Menu' Properties: [ Enabled: false Separator: true ] }
        Component menuBroadcastMessage { #keys: '[530.0.2556036]' BaseType: 'Menu' Properties: [ Text: 'Broadcast message' ] }
        Component menuQuintiqChat { #keys: '[536.0.1160124]' BaseType: 'Menu' Properties: [ Text: 'Quintiq Chat' ] }
        Component Menu10 { #keys: '[536.0.1172596]' BaseType: 'Menu' Properties: [ Image: '245' Text: 'Change language' ] }
        Component menuChangePassword { #keys: '[536.0.1157470]' BaseType: 'Menu' Properties: [ Text: 'Change password' ] }
        Component Menu11 { #keys: '[536.0.1157473]' BaseType: 'Menu' Properties: [ Enabled: false Separator: true ] }
        Component menuLoadReport { #keys: '[558.0.592613]' BaseType: 'Menu' Properties: [ Image: 'printer' Text: 'Load report...' ] }
        Component Menu13 { #keys: '[558.0.592614]' BaseType: 'Menu' Properties: [ Enabled: false Separator: true ] }
        Component MenuRestart { #keys: '[678.0.8616365]' BaseType: 'Menu' Properties: [ Shortcut: 'Ctrl+R' Text: 'Restart' ] }
        Component menuExit { #keys: '[514.0.2183]' BaseType: 'Menu' Properties: [ Shortcut: 'Alt+F4' Text: 'E&xit' ] }
      ]
      Properties:
      [
        Text: '&File'
        ModeledStringList ChildOrdering
        {
          c: ComponentMenu3
          c: Menu9
          c: menuBroadcastMessage
          c: menuQuintiqChat
          c: Menu10
          c: menuChangePassword
          c: Menu11
          c: menuLoadReport
          c: Menu13
          c: MenuRestart
          c: menuExit
        }
      ]
    }
    Component menuEdit
    {
      #keys: '[514.0.118230]'
      BaseType: 'Menu'
      Children:
      [
        Component Menu18 { #keys: '[11518.0.90515634]' BaseType: 'Menu' ViewSecurity: 'Administrator' Properties: [ Separator: true ] }
        Component MenuAuthorization
        {
          #keys: '[11660.0.228094531]'
          BaseType: 'Menu'
          ViewSecurity: 'Administrator'
          Children:
          [
            Component menuFormKBCategories { #keys: '[11660.0.228094532]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormKnowledgeBaseCategories' Image: 'data_lock' Text: 'Knowledge base categories' ] }
          ]
          Properties:
          [
            Image: 'LOCK2'
            Text: 'Authorization'
          ]
        }
        Component Menu8 { #keys: '[11660.0.228094566]' BaseType: 'Menu' ViewSecurity: 'Administrator' Properties: [ Separator: true ] }
        Component MenuSeparatorFunctions { #keys: '[108486.0.976866713]' BaseType: 'Menu' Properties: [ Separator: true ] }
        Component MenuEditKnowledgeTables
        {
          #keys: '[108486.0.1360070426]'
          BaseType: 'Menu'
          Children:
          [
            Component MenuEditKBScenarioManager { #keys: '[108486.0.1360074545]' BaseType: 'Menu' Properties: [ Image: 'WORKER' Text: 'Scenario Manager' ] }
            Component MenuEditKBScenario { #keys: '[108486.0.1360075714]' BaseType: 'Menu' Properties: [ Image: 'TABLES' Text: 'Scenario' ] }
            Component MenuEditKBCalendar { #keys: '[108486.0.1360078628]' BaseType: 'Menu' Properties: [ Image: 'CALENDAR' Text: 'Calendar' ] }
          ]
          Properties:
          [
            Image: 'CABINET'
            Text: 'Knowledge tables'
            ModeledStringList ChildOrdering
            {
              c: MenuEditKBScenarioManager
              c: MenuEditKBScenario
              c: MenuEditKBCalendar
            }
          ]
        }
        Component MenuAdministrativeTools1
        {
          #keys: '[110880.4.403308086]'
          BaseType: 'Menu'
          ViewSecurity: 'Administrator'
          Children:
          [
            Component ComponentMenuFormDecisionLog { #keys: '[110880.4.403810862]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormDecisionLog' Image: 'OUTBOX' Text: 'Decision log' ] }
            Component Menu44 { #keys: '[110880.4.403811313]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component MenuModelingToolpane { #keys: '[110880.4.403814029]' BaseType: 'Menu' Properties: [ Image: 'GEAR' Text: 'Modeling Toolpane' ] }
            Component ComponentEDIBroker { #keys: '[110880.4.403816760]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'frmEDIBrokers' Image: 'DATA_INTO' Text: 'EDI Brokers' ] }
            Component MenuSetDeleteScenarioFrequency { #keys: '[110880.7.2007532744]' BaseType: 'Menu' Properties: [ Image: 'EARTH_PREFERENCES' Text: 'Scenario maintenance' ] }
            Component Menu43 { #keys: '[110880.7.2007532961]' BaseType: 'Menu' Properties: [ Separator: true ] }
          ]
          Properties:
          [
            Image: 'POLICEMAN_BOBBY'
            Text: 'Administration'
            ModeledStringList ChildOrdering
            {
              c: ComponentMenuFormDecisionLog
              c: Menu44
              c: MenuModelingToolpane
              c: ComponentEDIBroker
              c: Menu43
              c: MenuSetDeleteScenarioFrequency
            }
          ]
        }
        Component Menu38 { #keys: '[118956.1.606727817]' BaseType: 'Menu' Properties: [ Separator: true ] }
        Component MenuFunctions
        {
          #keys: '[123848.0.44221232]'
          BaseType: 'Menu'
          Children:
          [
            Component MenuSpecial
            {
              #keys: '[123848.0.44223975]'
              BaseType: 'Menu'
              Children:
              [
                Component menufrmStandardAnalysis3 { #keys: '[123848.0.44223976]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'DEVFormAnalysisMacroPlan' Image: 'ganttchart' Text: 'Developer Analysis - MacroPlan' ] }
                Component menufrmStandardAnalysis1 { #keys: '[123848.0.44223977]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'DEVFormAnalysisScenarioManager' Image: 'ganttchart' Text: 'Developer Analysis - ScenarioManager' ] }
                Component Menu14 { #keys: '[123848.0.44223980]' BaseType: 'Menu' Properties: [ Separator: true ] }
                Component MenuTest { #keys: '[123848.0.44223981]' BaseType: 'Menu' Properties: [ Image: 'DUDE2' Text: 'MacroPlan Test' ] }
                Component MenuDoKickModel { #keys: '[123848.0.44223987]' BaseType: 'Menu' Properties: [ Image: 'USERS_BACK' Text: 'Do kick model' ] }
                Component MenuCleanKB { #keys: '[123848.0.44223988]' BaseType: 'Menu' Properties: [ Image: 'BRUSH3' Text: 'Clean KB' ] }
                Component MenuFixKB { #keys: '[123848.0.44223989]' BaseType: 'Menu' Properties: [ Image: 'HAMMER2' Text: 'Fix KB' ] }
                Component Menu16 { #keys: '[123848.0.44223990]' BaseType: 'Menu' Properties: [ Separator: true ] }
                Component MenuSelectDataForApplication { #keys: '[123848.0.44223991]' BaseType: 'Menu' Properties: [ Image: 'folder_window' Text: 'Select dataset for &active window' ] }
                Component MenuSelectData { #keys: '[123848.0.44223992]' BaseType: 'Menu' Properties: [ Image: 'folders' Text: 'Select &dataset globally' ] }
                Component MenuKnowledge { #keys: '[123848.0.44223994]' BaseType: 'Menu' Properties: [ Image: 'briefcase' Text: 'Edit &knowledge globally' ] }
                Component MenuEditKnowledgeForApplication { #keys: '[123848.0.44223995]' BaseType: 'Menu' Properties: [ Image: 'briefcase_document' Text: 'Edit knowledge for active &window' ] }
                Component MenuUpgradePhysicalStorage { #keys: '[123848.0.44223996]' BaseType: 'Menu' Properties: [ Image: 'DATA_REPLACE' Text: 'Upgrade physical storage' ] }
                Component MenuScenarioManagerTest { #keys: '[123848.0.44223982]' BaseType: 'Menu' Properties: [ Image: 'dude2' Text: 'ScenarioManager Test' ] }
                Component Menu17 { #keys: '[123848.0.44223998]' BaseType: 'Menu' Properties: [ Separator: true ] }
                Component MenuPreconfigureDialog { #keys: '[123848.0.44224003]' BaseType: 'Menu' Properties: [ Image: 'TABLE_SQL_VIEW' Text: 'Pre-configure dialogs' ] }
                Component Menu27 { #keys: '[123848.0.44224004]' BaseType: 'Menu' Properties: [ Separator: true ] }
                Component ComponentMenuFormUnitAccountInPeriods { #keys: '[123848.0.44224005]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormUnitAccountInPeriods' Image: 'TABLE_SQL' Text: 'Unit account in periods' ] }
                Component ComponentMenuAnalysisWorkfFlow { #keys: '[123848.0.44223978]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'DEVFormAnalysisWorkflow' Image: 'GANTTCHART' Text: 'Developer Analysis - Workflow' ] }
                Component MenuSetApplicationMode { #keys: '[123848.0.44224000]' BaseType: 'Menu' Properties: [ Image: 'SIGNALING_DISK_GREEN' Text: 'Set application mode' ] }
                Component ComponentMenu5 { #keys: '[123848.0.44223999]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'dlgEnvironment' Image: 'ENVIRONMENT_PREFERENCES' Text: 'Environment' ] }
                Component Menu42 { #keys: '[123848.0.44224002]' BaseType: 'Menu' Properties: [ Separator: true ] }
                Component Menu46 { #keys: '[123848.0.44223984]' BaseType: 'Menu' Properties: [ Separator: true ] }
                Component MenuDoBenchmarking { #keys: '[123848.0.44223986]' BaseType: 'Menu' Properties: [ Image: 'GEARS' Text: 'Do benchmarking' ] }
                Component MenuCreateAllSalesDemands { #keys: '[123848.0.44224001]' BaseType: 'Menu' Properties: [ Image: 'CONTRACT' Text: 'Create all sales demands' ] }
                Component MenuRemoveHistory { #keys: '[123848.0.44223983]' BaseType: 'Menu' Properties: [ Image: 'STEP_DELETE' Text: 'Remove history' ] }
                Component MenuRecreateDatabaseTables { #keys: '[123848.0.44223997]' BaseType: 'Menu' Properties: [ Image: 'DATA_REFRESH' Text: 'Recreate external tables' ] }
                Component MenuCleanUpSoftDeletedDataFormDatabaseImport { #keys: '[123848.0.44229041]' BaseType: 'Menu' Properties: [ Image: 'DATA_DELETE' Text: 'Clean up soft-deleted data' ] }
                Component menuSeparator460 { #keys: '[123848.0.44229081]' BaseType: 'Menu' Properties: [ Separator: true ] }
                Component MenuImportDataIntoScenarioManager { #keys: '[123848.0.44229572]' BaseType: 'Menu' Properties: [ Image: 'Import' Text: 'Import data - scenario manager' Tooltip: 'Import data into scenario manager' ] }
                Component MenuExportDataFromScenarioManager { #keys: '[123848.0.44229846]' BaseType: 'Menu' Properties: [ Image: 'export' Text: 'Export data - scenario manager' Tooltip: 'Export data from scenario manager' ] }
                Component ComponentMenuAnalysisSOPWorkfFlow { #keys: '[127238.0.1783267444]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'DEVFormAnalysisSWFWorkflow' Image: 'GANTTCHART' Text: 'Developer Analysis - SWFDataset' ] }
                Component ComponentMenuAnalysisSWFComDataset { #keys: '[113694.2.1265311774]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'DEVFormAnalysisSWFCommunication' Image: 'GANTTCHART' Text: 'Developer Analysis - SWFComDataset' ] }
                Component ComponentMenuAnalysisDEF { #keys: '[127710.1.1016800365]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'DEVFormAnalysisDEFDataRepository' Image: 'GANTTCHART' Text: 'Developer Analysis - DEFDataRepository' ] }
                Component ComponentMenuAnalysisDEF939 { #keys: '[127710.1.1017429762]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'DEVFormAnalysisDEFDataBroker' Image: 'GANTTCHART' Text: 'Developer Analysis - DEFDataBroker' ] }
                Component menuSeparator762 { #keys: '[132444.0.22680523]' BaseType: 'Menu' Properties: [ Separator: true ] }
                Component ComponentMenuTest { #keys: '[132444.0.22803479]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormTest' Text: 'Test' ] }
                Component MenuCopyBrokersInfo { #keys: '[132448.0.70030954]' BaseType: 'Menu' Properties: [ Image: 'TABLE_ADD' Text: 'Copy brokers info to clipboard' ] }
                Component MenuMPDomainHandlerTest { #keys: '[132448.0.86961122]' BaseType: 'Menu' Properties: [ Image: 'dude2' Text: 'MPDomainHandler Test' ] }
                Component menufrmStandardAnalysis551 { #keys: '[132448.0.86963163]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'DEVFormAnalysisMPDomainHandler' Image: 'ganttchart' Text: 'Developer Analysis - MPDomainHandler' ] }
                Component ComponentMenuAnalysisDEF553 { #keys: '[132894.0.8034827]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'DEVFormAnalysisMPSync' Image: 'GANTTCHART' Text: 'Developer Analysis - MPSync' ] }
                Component menuSeparator125 { #keys: '[132448.0.186430407]' BaseType: 'Menu' Properties: [ Separator: true ] }
                Component ComponentMenu640 { #keys: '[132448.0.186442706]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormEDIBrowser' SingleInstance: false Text: 'EDI browser' ] }
                Component MenuRefresh { #keys: '[127238.1.107631926]' BaseType: 'Menu' Properties: [ Image: 'refresh' Text: 'Recreate missing PISPIPs' Tooltip: 'Refreshes the application by recreating missing instances initially prohibited by sizing parameters' ] }
                Component menuSeparator846 { #keys: '[130238.0.588746469]' BaseType: 'Menu' Properties: [ Separator: true ] }
                Component MenuSyncKPIs { #keys: '[132894.0.680204184]' BaseType: 'Menu' Properties: [ Image: 'Refresh' Text: 'Sync KPIs' ] }
                Component MenuSynchronizeSanityCheckCategories { #keys: '[133706.0.612767824]' BaseType: 'Menu' Properties: [ Image: 'Import' Text: 'Synchronize sanity check categories' Tooltip: 'Synchronize sanity check category level on sanity check dialog' ] }
                Component ComponentMenuTaskManager { #keys: '[138346.0.56291698]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'frmTaskmanager' Text: 'Task manager' ] }
                Component ComponentMenu730 { #keys: '[138546.0.251137460]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormSupplyPlanWebClient' Text: 'Supply planning web client' ] }
                Component menuForm957 { #keys: '[139394.0.741924650]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormLibMon_MonitoringLibraryTopic' Text: 'Monitoring library topic' ] }
                Component ComponentMenuRoutingsObsolete { #keys: '[137862.0.1676820843]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormRoutings_obsolete' Text: 'Routings (obsolete)' ] }
                Component MenuSynchronizePeriodTask { #keys: '[148910.0.66427843]' BaseType: 'Menu' Properties: [ Image: 'REFRESH' Text: 'Synchronize period task quantity' Tooltip: 'Synchronize period tasks for campaigns and transitions' ] }
                Component menuSeparator750 { #keys: '[148910.0.66427862]' BaseType: 'Menu' Properties: [ Separator: true ] }
                Component MenuExportDataDeveloper { #keys: '[144402.0.1384670810]' BaseType: 'Menu' Properties: [ Image: 'EXPORT1' Text: 'Export data - Developer' ] }
                Component ComponentMenuFormSalesDemands { #keys: '[151892.2.100587788]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormSalesDemands' Text: 'Sales &demands (obsolete)' ] }
              ]
              Properties:
              [
                Image: 'GEARS'
                Text: 'Special'
                Visible: false
                ModeledStringList ChildOrdering
                {
                  c: menufrmStandardAnalysis3
                  c: menufrmStandardAnalysis1
                  c: menufrmStandardAnalysis551
                  c: ComponentMenuAnalysisWorkfFlow
                  c: ComponentMenuAnalysisSOPWorkfFlow
                  c: ComponentMenuAnalysisSWFComDataset
                  c: ComponentMenuAnalysisDEF
                  c: ComponentMenuAnalysisDEF939
                  c: ComponentMenuAnalysisDEF553
                  c: Menu14
                  c: MenuTest
                  c: MenuScenarioManagerTest
                  c: MenuMPDomainHandlerTest
                  c: MenuRemoveHistory
                  c: Menu46
                  c: MenuRefresh
                  c: MenuDoKickModel
                  c: menuSeparator846
                  c: MenuDoBenchmarking
                  c: ComponentMenuTaskManager
                  c: Menu16
                  c: MenuSelectDataForApplication
                  c: MenuSelectData
                  c: MenuKnowledge
                  c: MenuEditKnowledgeForApplication
                  c: MenuCleanKB
                  c: MenuFixKB
                  c: MenuUpgradePhysicalStorage
                  c: MenuRecreateDatabaseTables
                  c: menuSeparator125
                  c: ComponentMenu640
                  c: MenuCopyBrokersInfo
                  c: Menu17
                  c: ComponentMenu5
                  c: MenuSetApplicationMode
                  c: Menu42
                  c: MenuPreconfigureDialog
                  c: Menu27
                  c: MenuCreateAllSalesDemands
                  c: ComponentMenuFormSalesDemands
                  c: ComponentMenuFormUnitAccountInPeriods
                  c: MenuSyncKPIs
                  c: menuSeparator460
                  c: MenuSynchronizeSanityCheckCategories
                  c: MenuImportDataIntoScenarioManager
                  c: MenuExportDataFromScenarioManager
                  c: MenuCleanUpSoftDeletedDataFormDatabaseImport
                  c: menuForm957
                  c: menuSeparator762
                  c: ComponentMenuTest
                  c: ComponentMenu730
                  c: ComponentMenuRoutingsObsolete
                  c: menuSeparator750
                  c: MenuSynchronizePeriodTask
                  c: MenuExportDataDeveloper
                }
              ]
            }
            Component MenuPegging
            {
              #keys: '[123848.0.44581798]'
              BaseType: 'Menu'
              Children:
              [
                Component MenuRunPeggingAlgorithm { #keys: '[123848.0.44581799]' BaseType: 'Menu' Properties: [ Image: 'STEP' Text: 'Run pegging algorithm' ] }
                Component MenuRemoveAllPegging { #keys: '[123848.0.44581800]' BaseType: 'Menu' Properties: [ Image: 'STEP_DELETE' Text: 'Remove all pegging' ] }
                Component MenuRemoveAllNonUserPegging { #keys: '[123848.0.44581801]' BaseType: 'Menu' Properties: [ Image: 'STEP_NEW' Text: 'Remove all non-user pegging' ] }
                Component Menu34 { #keys: '[123848.0.44581802]' BaseType: 'Menu' Properties: [ Separator: true ] }
                Component MenuFindPeggingCircularity { #keys: '[123848.0.44581803]' BaseType: 'Menu' Properties: [ Image: 'RECYCLE' Text: 'Find pegging circularity' ] }
              ]
              Properties:
              [
                Image: 'STEP'
                Text: 'Pegging'
                ModeledStringList ChildOrdering
                {
                  c: MenuRunPeggingAlgorithm
                  c: MenuRemoveAllPegging
                  c: MenuRemoveAllNonUserPegging
                  c: Menu34
                  c: MenuFindPeggingCircularity
                }
              ]
            }
            Component MenuEditWorkflow
            {
              #keys: '[127238.0.1773123308]'
              BaseType: 'Menu'
              Children:
              [
                Component MenuImportXML { #keys: '[127238.0.1773123309]' BaseType: 'Menu' ViewSecurity: 'Administrator' Properties: [ Image: 'Import' Text: 'Import XML' ] }
                Component MenuExportXML { #keys: '[127238.0.1773123310]' BaseType: 'Menu' ViewSecurity: 'Administrator' Properties: [ Image: 'Export' Text: 'Export XML' ] }
                Component menuSeparator802 { #keys: '[127238.0.1773123311]' BaseType: 'Menu' Properties: [ Separator: true ] }
                Component MenuSynchronizeRoleWithTheModel { #keys: '[127238.0.1773123312]' BaseType: 'Menu' Properties: [ Image: 'REPLACE2' Text: 'Synchronize roles with the model' ] }
                Component MenuRequestForFullDatasetSync { #keys: '[127238.0.1773123313]' BaseType: 'Menu' Properties: [ Image: 'Refresh' Text: 'Request for full dataset sync' ] }
                Component MenuImport { #keys: '[134266.0.148168885]' BaseType: 'Menu' Properties: [ Image: 'IMPORT1' Text: 'Import' ] }
                Component MenuExport { #keys: '[134266.0.148169122]' BaseType: 'Menu' Properties: [ Image: 'Export1' Text: 'Export' ] }
              ]
              Properties:
              [
                Image: 'ELBOW_ARROW'
                Text: 'S&&OP Workflow'
                ModeledStringList ChildOrdering
                {
                  c: MenuImport
                  c: MenuExport
                  c: MenuImportXML
                  c: MenuExportXML
                  c: menuSeparator802
                  c: MenuSynchronizeRoleWithTheModel
                  c: MenuRequestForFullDatasetSync
                }
              ]
            }
            Component MenuImport628
            {
              #keys: '[139394.1.895777657]'
              BaseType: 'Menu'
              Children:
              [
                Component MenuImportDetailedSchedule { #keys: '[139394.1.895783510]' BaseType: 'Menu' Properties: [ Image: 'IMPORT1' Text: 'Import Detailed Schedule' ] }
                Component MenuExportMPSPlan { #keys: '[139394.1.905678176]' BaseType: 'Menu' Properties: [ Image: 'EXPORT1' Text: 'Export MPSPlan' ] }
                Component menuSeparator211 { #keys: '[139394.1.1007645153]' BaseType: 'Menu' ViewSecurity: 'Administrator' Properties: [ Separator: true ] }
                Component MenuMockExportSCMPSParam { #keys: '[139394.1.1007646884]' BaseType: 'Menu' ViewSecurity: 'Administrator' Properties: [ Image: 'SPADE' Text: 'Mock export SC_MPSParams' ] }
                Component MenuMockExportSCPlan { #keys: '[139394.1.1007674081]' BaseType: 'Menu' ViewSecurity: 'Administrator' Properties: [ Image: 'SPADE' Text: 'Mock export SC_Plan' ] }
              ]
              Properties:
              [
                Image: 'EXCHANGE'
                Text: 'Import/Export'
                ModeledStringList ChildOrdering
                {
                  c: MenuImportDetailedSchedule
                  c: MenuExportMPSPlan
                  c: menuSeparator211
                  c: MenuMockExportSCMPSParam
                  c: MenuMockExportSCPlan
                }
              ]
            }
          ]
          Properties:
          [
            Image: 'WRENCH'
            Text: 'Functions'
            ModeledStringList ChildOrdering
            {
              c: MenuSpecial
              c: MenuPegging
              c: MenuEditWorkflow
              c: MenuImport628
            }
          ]
        }
        Component MenuConfiguration
        {
          #keys: '[123848.0.44569031]'
          BaseType: 'Menu'
          Children:
          [
            Component menuEditRepresentations { #keys: '[123848.0.44571638]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'dlgRepresentations' Text: 'Representations' ] }
            Component MenuEditDataColumnDefinitions { #keys: '[123848.0.44572515]' BaseType: 'Menu' Properties: [ Text: 'Column definitions' ] }
            Component ComponentMenu2 { #keys: '[123848.0.44574142]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'frmDataModelEnrichment' Image: 'branch' Text: 'Image Attributes' ] }
            Component menuEditColorScheme { #keys: '[123848.0.44574809]' BaseType: 'Menu' ViewSecurity: 'Edit color schemes' Properties: [ Image: 'COLORS' Text: 'Color schemes' ] }
            Component menuSeparator943 { #keys: '[123848.0.44575204]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component menuSeparator970 { #keys: '[123848.0.44576287]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component MenuEditScenarioManager { #keys: '[123848.0.44576512]' BaseType: 'Menu' Properties: [ Image: 'FOLDER_EDIT' Text: 'Edit scenario manager storage' ] }
            Component menuSeparator991 { #keys: '[123848.0.44578160]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component MenuSetGlobalParameter { #keys: '[132444.0.61018970]' BaseType: 'Menu' Properties: [ Image: 'EARTH_VIEW' Shortcut: 'Alt+Ctrl+G' Text: 'Global parameters...' ] }
            Component MenuEditSOPWorkflowParameters { #keys: '[132444.0.61019140]' BaseType: 'Menu' ViewSecurity: 'Workflow' Properties: [ Image: 'ELBOW_ARROW' Text: 'S&&OP Workflow parameters...' ] }
            Component MenuSizingParameters { #keys: '[127238.1.54892227]' BaseType: 'Menu' ViewSecurity: 'Administrator' Properties: [ Image: 'COUNT' Text: 'Sizing parameters...' ] }
          ]
          Properties:
          [
            Image: 'GEARS'
            Text: 'Configuration'
            ModeledStringList ChildOrdering
            {
              c: menuEditRepresentations
              c: MenuEditDataColumnDefinitions
              c: menuSeparator943
              c: menuEditColorScheme
              c: ComponentMenu2
              c: menuSeparator970
              c: MenuEditScenarioManager
              c: menuSeparator991
              c: MenuSizingParameters
              c: MenuSetGlobalParameter
              c: MenuEditSOPWorkflowParameters
            }
          ]
        }
        Component MenuSelectDemoDataset { #keys: '[123848.0.105554598]' BaseType: 'Menu' Properties: [ Image: 'DATA' Text: 'Select demo dataset...' ] }
      ]
      Properties:
      [
        Text: '&Edit'
        ModeledStringList ChildOrdering
        {
          c: MenuFunctions
          c: MenuSeparatorFunctions
          c: MenuConfiguration
          c: Menu38
          c: MenuEditKnowledgeTables
          c: Menu18
          c: MenuAuthorization
          c: MenuAdministrativeTools1
          c: Menu8
          c: MenuSelectDemoDataset
        }
      ]
    }
    Component menuForms
    {
      #keys: '[514.0.2184]'
      BaseType: 'Menu'
      Children:
      [
        Component Menu21 { #keys: '[11766.1.566113986]' BaseType: 'Menu' Properties: [ Separator: true ] }
        Component Menu24 { #keys: '[107654.0.139674234]' BaseType: 'Menu' Properties: [ Separator: true ] }
        Component MenuSupplyChainPlanning
        {
          #keys: '[104220.0.341737700]'
          BaseType: 'Menu'
          Children:
          [
            Component ComponentMenuFormPeriodTasks { #keys: '[104220.0.341844543]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormPeriodTasks' Image: 'REGISTRY' Text: 'Period &tasks' ] }
            Component ComponentMenuProductPlanning { #keys: '[108486.0.1877303413]' BaseType: 'ComponentMenu' ViewSecurity: 'ProductPlanningGanttChart' Properties: [ ComponentType: 'FormProductPlanning' Image: 'LINE-CHART' SingleInstance: false Text: '&Product planning' ] }
            Component ComponentMenuCapacityPlanning { #keys: '[108486.0.1891181957]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormCapacityPlanning' Image: 'AVERAGE' Text: '&Capacity planning' ] }
            Component Menu32 { #keys: '[108486.0.2078775173]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component Menu33 { #keys: '[108486.0.2078775686]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component ComponentMenuFormPegging { #keys: '[108486.1.1494697458]' BaseType: 'ComponentMenu' ViewSecurity: 'Pegging' Properties: [ ComponentType: 'FormPegging' Image: 'TARGET' Text: 'Pegging' ] }
            Component ComponentMenuFormDemandSupply { #keys: '[110880.6.523442242]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormDemandSupply' Image: 'EXCHANGE' Text: 'Demands and supplies' ] }
            Component Menu47 { #keys: '[110880.6.675102452]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component ComponentMenuFormSupplyPlanning { #keys: '[110880.8.1408107264]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormSupplyPlanning' Image: 'ELEMENT_INTO' Text: 'S&upply planning' ] }
            Component ComponentMenuFormTripPlanning { #keys: '[113694.0.1587433229]' BaseType: 'ComponentMenu' ViewSecurity: 'TransportationPlanning' Properties: [ ComponentType: 'FormTripPlanning' Image: 'TRUCK_RED' Text: 'T&rip planning' ] }
            Component ComponentMenu7 { #keys: '[112884.1.730019484]' BaseType: 'ComponentMenu' ViewSecurity: 'Feedback' Properties: [ ComponentType: 'FormFeedback' Image: 'SAFE_INTO' Text: 'Feedback' ] }
            Component MenuCampaigns
            {
              #keys: '[126550.0.587691426]'
              BaseType: 'Menu'
              ViewSecurity: 'CampaignPlanning'
              Children:
              [
                Component ComponentMenuFormCampaigns { #keys: '[126550.0.587692805]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormCampaigns' Image: 'ELEMENT_TIME' Text: 'Campaigns' ] }
                Component ComponentMenu9 { #keys: '[126550.0.587692849]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormTransitions' Image: 'ELEMENT_TIME' Text: 'Transitions' ] }
                Component menuForm10 { #keys: '[126550.0.587692882]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormTransitionTypes' Image: 'TABLE_REFRESH' Text: 'Transition type matrix' ] }
              ]
              Properties:
              [
                Image: 'ELEMENT_TIME'
                Text: 'Campaigns'
                ModeledStringList ChildOrdering
                {
                  c: ComponentMenuFormCampaigns
                  c: ComponentMenu9
                  c: menuForm10
                }
              ]
            }
            Component menuForm325 { #keys: '[127710.1.828269013]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormProductPlanningMatrix' Text: '' ] }
            Component MenuSalesDemands
            {
              #keys: '[130152.0.269852811]'
              BaseType: 'Menu'
              Children:
              [
                Component ComponentMenuFormFulfillmentRestriction { #keys: '[130152.0.269865625]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormFulfillmentRestriction' Text: 'Fulfillment restrictions' ] }
                Component ComponentMenuFormSalesDemandFulfillmentRestriction { #keys: '[130152.0.269866003]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormSalesDemandFulfillmentRestriction' Text: 'Restricted sales demands' ] }
                Component menuSeparator597 { #keys: '[130152.0.269873140]' BaseType: 'Menu' Properties: [ Separator: true ] }
                Component MenuPostponementSpecification { #keys: '[134266.0.1699542112]' BaseType: 'ComponentMenu' ViewSecurity: 'SalesDemandPostponement' Properties: [ ComponentType: 'FormPostponementSpecification' Text: 'Postponement specifications' ] }
                Component ComponentMenuFormCustomerOrders { #keys: '[142576.0.84134089]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormCustomerOrders' Text: 'Customer orders' ] }
                Component ComponentMenuForecast { #keys: '[151892.2.53966728]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormForecasts' Text: 'Forecasts' ] }
              ]
              Properties:
              [
                Image: 'CONTRACT'
                Text: 'Sales &demands'
                ModeledStringList ChildOrdering
                {
                  c: ComponentMenuForecast
                  c: ComponentMenuFormCustomerOrders
                  c: MenuPostponementSpecification
                  c: menuSeparator597
                  c: ComponentMenuFormFulfillmentRestriction
                  c: ComponentMenuFormSalesDemandFulfillmentRestriction
                }
              ]
            }
            Component ComponentMenuFormStockingPointInPeriod { #keys: '[130076.0.814855534]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormStockingPointPlanning' Text: '' ] }
          ]
          Properties:
          [
            Image: 'GANTTCHART'
            Text: 'Supply chain planning'
            ModeledStringList ChildOrdering
            {
              c: ComponentMenuCapacityPlanning
              c: ComponentMenuProductPlanning
              c: ComponentMenuFormStockingPointInPeriod
              c: menuForm325
              c: ComponentMenuFormSupplyPlanning
              c: ComponentMenuFormTripPlanning
              c: Menu47
              c: ComponentMenuFormDemandSupply
              c: ComponentMenuFormPeriodTasks
              c: ComponentMenu7
              c: Menu32
              c: MenuCampaigns
              c: ComponentMenuFormPegging
              c: Menu33
              c: MenuSalesDemands
            }
          ]
        }
        Component MenuSupplyChainDesign
        {
          #keys: '[104220.0.341858455]'
          BaseType: 'Menu'
          Children:
          [
            Component ComponentMenuFormGroups { #keys: '[110880.4.401231082]' BaseType: 'ComponentMenu' ViewSecurity: 'Groups' Properties: [ ComponentType: 'FormGroups' Image: 'USERS1' Text: 'Groups' ] }
            Component MenuRoutings
            {
              #keys: '[112610.0.804808737]'
              BaseType: 'Menu'
              Children:
              [
                Component ComponentMenu1 { #keys: '[112610.0.804809558]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormSupplyChainFlow' Image: 'BRANCH' Text: 'Supply chain flow' ] }
                Component MenuRouting { #keys: '[112610.0.1481069086]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormRoutings' Image: 'TRANSFORM' Text: 'Routings' ] }
                Component ComponentMenuFormOperations { #keys: '[126550.0.242583912]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormOperations' Image: 'ELEMENT_NEXT' Text: '&Operations' ] }
              ]
              Properties:
              [
                Image: 'TRANSFORM'
                Text: 'Routings'
                ModeledStringList ChildOrdering
                {
                  c: MenuRouting
                  c: ComponentMenuFormOperations
                  c: ComponentMenu1
                }
              ]
            }
            Component MenuLanes1
            {
              #keys: '[112610.0.804810290]'
              BaseType: 'Menu'
              ViewSecurity: 'TransportationPlanning'
              Children:
              [
                Component ComponentMenuFormLanes { #keys: '[112610.0.804811557]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormLanes' Image: 'NODE' Text: 'Lanes' ] }
                Component menuForm5 { #keys: '[112610.0.804811616]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormProductInLanes' Image: 'BOX_OUT' Text: 'Product in lanes' ] }
                Component menuForm6 { #keys: '[112610.0.804811674]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormStockingPointInLanes' Image: 'HOUSES' Text: 'Stocking point in lanes' ] }
              ]
              Properties:
              [
                Image: 'NODE'
                Text: 'Lanes'
                ModeledStringList ChildOrdering
                {
                  c: ComponentMenuFormLanes
                  c: menuForm5
                  c: menuForm6
                }
              ]
            }
            Component MenuCapacityDefinitions
            {
              #keys: '[112610.0.804812352]'
              BaseType: 'Menu'
              Children:
              [
                Component ComponentMenuFormShiftPatterns { #keys: '[112610.0.804813020]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormShiftPatterns' Image: 'HISTORY2' Text: 'Shift patter&ns' ] }
                Component ComponentMenuFormUnitAvailabilities { #keys: '[112610.0.804813078]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormUnitAvailabilities' Image: 'CLOCK' Text: 'Unit &availabilities' ] }
                Component ComponentMenuFormUnitCapacities { #keys: '[112610.0.804813507]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormUnitCapacities' Image: 'FACTORY' Text: 'Unit &capacities' ] }
                Component ComponentMenuFormTransportAvailability { #keys: '[112610.0.804813558]' BaseType: 'ComponentMenu' ViewSecurity: 'TransportationPlanning' Properties: [ ComponentType: 'FormTransportAvailabilities' Image: 'TRUCK_RED' Text: 'Transport availabilities' ] }
                Component ComponentMenuFormStockingPointCapacities { #keys: '[112610.0.804813658]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormStockingPointCapacities' Image: 'HOME' Text: 'S&tocking point capacities' ] }
                Component ComponentMenuFormTransportCapacity { #keys: '[132448.0.45957144]' BaseType: 'ComponentMenu' ViewSecurity: 'TransportationPlanning' Properties: [ ComponentType: 'FormTransportCapacities' Text: 'Transport capacities' ] }
                Component ComponentMenuCommonCalendar { #keys: '[136682.2.1410404773]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'LibCal_frmCommonCalendar' Text: 'Common calendar' ] }
                Component ComponentMenuResourceCalendar { #keys: '[136682.2.1410405951]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormResourceCalendars' Text: 'Unit calendars' ] }
              ]
              Properties:
              [
                Image: 'WRENCH'
                Text: 'Capacity definitions'
                ModeledStringList ChildOrdering
                {
                  c: ComponentMenuFormShiftPatterns
                  c: ComponentMenuFormUnitAvailabilities
                  c: ComponentMenuFormUnitCapacities
                  c: ComponentMenuFormTransportAvailability
                  c: ComponentMenuFormTransportCapacity
                  c: ComponentMenuFormStockingPointCapacities
                  c: ComponentMenuCommonCalendar
                  c: ComponentMenuResourceCalendar
                }
              ]
            }
            Component MenuSpecificationsAndTargets
            {
              #keys: '[112610.0.804814432]'
              BaseType: 'Menu'
              Children:
              [
                Component ComponentMenuFormSalesHierarchy { #keys: '[112610.0.804815112]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormSalesHierarchy' Image: 'ENVIRONMENT' Text: 'Sales &hierarchy' ] }
                Component ComponentMenuFormSupplySpecifications { #keys: '[112610.0.804815290]' BaseType: 'ComponentMenu' ViewSecurity: 'SupplySpecifications' Properties: [ ComponentType: 'FormSupplySpecifications' Image: 'PACKAGE_PREFERENCES' Text: 'Supply specifications' ] }
                Component Menu28 { #keys: '[112884.1.869082196]' BaseType: 'Menu' Properties: [ Separator: true ] }
                Component ComponentMenuFormInventorySupplies { #keys: '[112884.1.870906174]' BaseType: 'ComponentMenu' ViewSecurity: 'InventorySupplies' Properties: [ ComponentType: 'FormInventorySupplies' Image: 'BOX' Text: 'External supplies' ] }
                Component menuForm11 { #keys: '[126550.0.242580668]' BaseType: 'ComponentMenu' ViewSecurity: 'AggregatedPlanning' Properties: [ ComponentType: 'FormDisaggregationFactors' Image: 'CHEST' Text: 'Disaggregation factors' ] }
                Component ComponentMenuFormSafetyStocks { #keys: '[113400.0.1595230884]' BaseType: 'ComponentMenu' ViewSecurity: 'InventorySpecifications' Properties: [ ComponentType: 'FormInventorySpecifications' Text: 'Inventory specifications' ] }
                Component menuForm259 { #keys: '[113694.2.1021116211]' BaseType: 'ComponentMenu' ViewSecurity: 'SafetyStockCalculation' Properties: [ ComponentType: 'FormServiceLevels' Text: '' ] }
                Component menuForm215 { #keys: '[127238.0.1975959465]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormFulfillmentTarget' Text: '' ] }
              ]
              Properties:
              [
                Image: 'TARGET'
                Text: 'Specifications and targets'
                ModeledStringList ChildOrdering
                {
                  c: ComponentMenuFormSalesHierarchy
                  c: menuForm259
                  c: menuForm215
                  c: ComponentMenuFormSupplySpecifications
                  c: Menu28
                  c: ComponentMenuFormSafetyStocks
                  c: ComponentMenuFormInventorySupplies
                  c: menuForm11
                }
              ]
            }
            Component MenuBlending
            {
              #keys: '[112610.0.804816043]'
              BaseType: 'Menu'
              ViewSecurity: 'Blending'
              Children:
              [
                Component menuForm1 { #keys: '[112610.0.804816613]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormRecipes' Image: 'PALETTE' Text: 'Recipes' ] }
                Component menuForm4 { #keys: '[112610.0.804816689]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormIngredients' Image: 'POTION_BLUE' Text: 'Ingredients' ] }
                Component ComponentMenu349 { #keys: '[134506.0.7290938]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormRecipeWithEffectiveDate' Text: 'Product recipes' ] }
              ]
              Properties:
              [
                Image: 'POTION_GREEN'
                Text: 'Blending'
                ModeledStringList ChildOrdering
                {
                  c: menuForm1
                  c: ComponentMenu349
                  c: menuForm4
                }
              ]
            }
            Component MenuMiscellaneous
            {
              #keys: '[112610.0.804817431]'
              BaseType: 'Menu'
              Children:
              [
                Component menuForm7 { #keys: '[112610.0.804818031]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormUnitPeriods' Image: 'CALENDAR' Text: 'Unit periods' ] }
              ]
              Properties:
              [
                Image: 'CABINET'
                Text: 'Miscellaneous'
              ]
            }
            Component Menu26 { #keys: '[112610.0.804818890]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component menuFormSupplyChainOverview { #keys: '[113694.2.1025111507]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormSupplyChainOverview' Text: '' ] }
            Component menuFormSupplyChainMap { #keys: '[113694.2.1025111699]' BaseType: 'ComponentMenu' ViewSecurity: 'SupplyChainMap' Properties: [ ComponentType: 'FormSupplyChainMap' Text: '' ] }
            Component menuSeparator { #keys: '[113694.2.1025111944]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component menuForm934 { #keys: '[113694.2.1026246733]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormStockingPoints' Text: '' ] }
            Component menuForm471 { #keys: '[113694.2.1026246859]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormUnits' Text: '' ] }
            Component MenuProduct
            {
              #keys: '[127238.0.1432648011]'
              BaseType: 'Menu'
              Children:
              [
                Component ComponentMenuProductInStockingPoint { #keys: '[127238.0.1432649471]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormProductInStockingPoints' Text: 'Product in stocking points' ] }
                Component ComponentMenuFormProducts { #keys: '[127238.0.1432651329]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormProducts' Image: 'PRODUCT2' Text: '&Products' ] }
                Component menuForm8 { #keys: '[127238.0.1827871912]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormProductInStockingPointInPeriods' Image: 'CALENDAR_PREFERENCES' Text: 'Product in stocking point in periods' ] }
                Component ComponentMenuWIPProductInStockingPointInPeriod { #keys: '[134490.0.535291859]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormWIPProductInStockingPointInPeriods' Text: 'WIP product in stocking point in periods' ] }
              ]
              Properties:
              [
                Image: 'PRODUCT2'
                Text: 'Product'
                ModeledStringList ChildOrdering
                {
                  c: ComponentMenuFormProducts
                  c: ComponentMenuProductInStockingPoint
                  c: menuForm8
                  c: ComponentMenuWIPProductInStockingPointInPeriod
                }
              ]
            }
            Component menuForm431 { #keys: '[132894.0.847758737]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormSupplyChainVisualization' Text: '' ] }
          ]
          Properties:
          [
            Image: 'ENVIRONMENT_NETWORK'
            Text: 'Supply chain design'
            ModeledStringList ChildOrdering
            {
              c: menuForm471
              c: menuForm934
              c: MenuProduct
              c: MenuRoutings
              c: MenuLanes1
              c: MenuCapacityDefinitions
              c: MenuSpecificationsAndTargets
              c: MenuBlending
              c: Menu26
              c: menuFormSupplyChainOverview
              c: menuFormSupplyChainMap
              c: menuForm431
              c: menuSeparator
              c: ComponentMenuFormGroups
              c: MenuMiscellaneous
            }
          ]
        }
        Component MenuFinancials
        {
          #keys: '[110704.0.657033280]'
          BaseType: 'Menu'
          Children:
          [
            Component ComponentMenuAccounts_MP { #keys: '[110704.0.657437399]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormAccounts_MP' Image: 'TEXT_RICH' SingleInstance: false Text: 'Accounts' ] }
            Component ComponentMenuAccounts { #keys: '[110704.0.945770828]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormAccounts' Image: 'TEXT_RICH_COLORED' Text: 'Accounts (template)' ] }
            Component ComponentMenuFormPostponedSalesDemandCosts { #keys: '[110704.0.946984012]' BaseType: 'ComponentMenu' ViewSecurity: 'SalesDemandPostponement' Properties: [ ComponentType: 'FormPostponedSalesDemandCosts' Image: 'HISTORY' Text: 'Postponed sales demand costs' ] }
            Component Menu19 { #keys: '[110704.0.946984525]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component menuFormCostManagement1 { #keys: '[124808.1.817958292]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormCostManagement' Image: 'CHEST' Text: 'Cost management' ] }
            Component ComponentMenuAccountTypes { #keys: '[127710.1.754988765]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormAccountTypes' Text: 'Account types' ] }
            Component ComponentMenuActualCosts { #keys: '[132448.0.279941837]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormActualCosts' Text: 'Actual costs' ] }
          ]
          Properties:
          [
            Image: 'MONEY'
            Text: 'Accounts and costs'
            ModeledStringList ChildOrdering
            {
              c: ComponentMenuAccountTypes
              c: ComponentMenuAccounts
              c: ComponentMenuAccounts_MP
              c: Menu19
              c: ComponentMenuActualCosts
              c: menuFormCostManagement1
              c: ComponentMenuFormPostponedSalesDemandCosts
            }
          ]
        }
        Component MenuOptimizer
        {
          #keys: '[110880.3.1515489556]'
          BaseType: 'Menu'
          Children:
          [
            Component menuForm3 { #keys: '[110880.3.1517804416]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormStrategies' Image: 'Gears_VIEW' Text: 'Strategies' ] }
            Component MenuBenchmarking
            {
              #keys: '[110880.4.400856063]'
              BaseType: 'Menu'
              ViewSecurity: 'OptimizerBenchmarking'
              Children:
              [
                Component ComponentMenu4 { #keys: '[110880.4.400856065]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'LibOBT_frmRunTasks' Image: 'DATA_TIME' Text: 'Run tasks' ] }
                Component ComponentMenu6 { #keys: '[110880.4.400856067]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'LibOBT_frmTaskManagerBenchmarker' Image: 'DATA_WARNING' Text: 'Task manager' ] }
              ]
              Properties:
              [
                Image: 'TABLE'
                Text: 'Benchmarking forms'
                Visible: false
                ModeledStringList ChildOrdering
                {
                  c: ComponentMenu4
                  c: ComponentMenu6
                }
              ]
            }
            Component Menu25 { #keys: '[110880.4.400856552]' BaseType: 'Menu' ViewSecurity: 'OptimizerBenchmarking' Properties: [ Separator: true ] }
            Component MenuAnalysis
            {
              #keys: '[110880.4.400982449]'
              BaseType: 'Menu'
              ViewSecurity: 'OptimizerBenchmarking'
              Children:
              [
                Component ComponentMenuFormAlgorithmRuns { #keys: '[110880.4.401210391]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormAlgorithmRuns' Image: 'GEAR_VIEW' Text: 'Algorithm runs' ] }
                Component ComponentMenuFormOptimizerAccountKPIResults { #keys: '[110880.4.401213662]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormOptimizerAccountKPIResults' Image: 'MONEY2' Text: 'Optimizer account KPI results' ] }
                Component ComponentMenuFormOptimizerNonFinancialKPIResults { #keys: '[110880.4.401217263]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormOptimizerNonFinancialKPIResults' Image: 'GEAR_FIND' Text: 'Optimizer non-financial KPI results' ] }
                Component menuFormScalingType { #keys: '[122872.0.1871208966]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormScalingTypes' Image: 'TOOLBOX' Text: 'Optimizer scaling' ] }
                Component ComponentMenuFormReviewInventoryOptimization { #keys: '[122872.1.2014735338]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormReviewInventoryOptimization' Text: 'Review inventory optimization' ] }
                Component menuFormCampaignCombis { #keys: '[152058.0.168867244]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormOptimizerCampaignCombis' Text: 'Campaign combis' ] }
              ]
              Properties:
              [
                Image: 'LINE-CHART'
                Text: 'Analysis'
                ModeledStringList ChildOrdering
                {
                  c: ComponentMenuFormAlgorithmRuns
                  c: ComponentMenuFormReviewInventoryOptimization
                  c: ComponentMenuFormOptimizerAccountKPIResults
                  c: ComponentMenuFormOptimizerNonFinancialKPIResults
                  c: menuFormScalingType
                  c: menuFormCampaignCombis
                }
              ]
            }
            Component ComponentMenuFormSolverSettings { #keys: '[122872.0.65137507]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormSolverSettings' Image: 'GEAR_VIEW' Text: 'Solver settings' ] }
            Component ComponentMenuFormInventoryOptimization { #keys: '[122872.1.2014735338]' BaseType: 'ComponentMenu' ViewSecurity: 'SafetyStockCalculation' Properties: [ ComponentType: 'FormMultiEchelonInventoryOptimization' Text: 'Inventory optimization' ] }
            Component MenuAdvancedMEIOSettings { #keys: '[133336.1.766048414]' BaseType: 'Menu' ViewSecurity: 'SafetyStockCalculation' Properties: [ DataBinding: 'MacroPlan.MEIO_Parameters' Image: 'EYEGLASSES' Text: 'Advanced MEIO Settings' ] }
            Component LibOpt_Menu625
            {
              #keys: '[141320.0.2066914581]'
              BaseType: 'LibOpt_Menu'
              Children:
              [
                Component MenuDetails
                {
                  #keys: '[139164.0.680335341]'
                  BaseType: 'MenuDetails'
                  IsDerived: true
                  Properties:
                  [
                    ModeledStringList ChildOrdering
                    {
                      c: ComponentMenuIteration
                      c: ComponentMenuSnapshots
                      c: ComponentMenuReplannableSnapshot
                      c: menuSeparator_1
                      c: ComponentMenuScope
                      c: ComponentMenuScopeElements
                      c: menuSeparator837
                      c: ComponentMenuIterationSnapshots
                      c: ComponentMenuSnapshotsByComponent
                      c: ComponentMenuIterationSnapshotsThread
                      c: ComponentMenuComponentUtilization
                    }
                  ]
                }
              ]
              Properties:
              [
                ModeledStringList ChildOrdering
                {
                  c: ComponentMenuOptimizer
                  c: ComponentMenuRun
                  c: ComponentMenuComponent
                  c: ComponentMenuComponentGraph
                  c: menuSeparator373
                  c: ComponentMenuComponentPosition
                  c: ComponentMenuBreakpoints
                  c: ComponentMenuDatasetCopy
                  c: menuSeparator408
                  c: MenuDetails
                  c: MenuAnalysis_1
                  c: MenuDebugging
                }
              ]
            }
            Component menuSeparator417 { #keys: '[141320.0.2066914651]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component ComponentMenuFormOptimizerPuzzles { #keys: '[146140.0.1633712572]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormOptimizerPuzzles' Text: 'Optimizer puzzles' ] }
          ]
          Properties:
          [
            Image: 'GEARS'
            Text: 'Optimizer'
            ModeledStringList ChildOrdering
            {
              c: menuForm3
              c: ComponentMenuFormOptimizerPuzzles
              c: ComponentMenuFormSolverSettings
              c: ComponentMenuFormInventoryOptimization
              c: MenuAdvancedMEIOSettings
              c: Menu25
              c: MenuAnalysis
              c: MenuBenchmarking
              c: menuSeparator417
              c: LibOpt_Menu625
            }
          ]
        }
        Component MenuScenarioManager
        {
          #keys: '[110880.4.226650165]'
          BaseType: 'Menu'
          Children:
          [
            Component ComponentMenuFormScenarioManager { #keys: '[110880.4.228115928]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'ScenarioManager_FormScenario' Image: 'EARTH' Text: 'Scenario manager' ] }
            Component ComponentMenuFormAssumptions { #keys: '[110880.4.228318704]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormAssumptions' Image: 'DOCUMENT_NOTEBOOK' Text: 'Assumptions' ] }
            Component ComponentMenuFormScenarioActivities { #keys: '[110880.4.228320880]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormScenarioActivities' Image: 'HOURGLASS' Text: 'Scenario activities' Visible: false ] }
            Component menuScenarioStatus { #keys: '[110880.4.402375588]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'ScenarioManager_FormScenarioStatus' Image: 'EARTH_LOCATION' Text: 'Scenario status' ] }
            Component MenuScenarioComparison
            {
              #keys: '[112610.0.804805309]'
              BaseType: 'Menu'
              Children:
              [
                Component ComponentMenuFormUnitPeriodsForScenarioComparison { #keys: '[127710.1.707627990]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormUnitPeriodsForScenarioComparison' Text: 'Unit periods' ] }
                Component ComponentMenuFormCostForScenarioComparison { #keys: '[127710.1.707733528]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormCostsForScenarioComparison' Text: 'Costs' ] }
                Component ComponentMenuSalesDemandsForScenarioComparison { #keys: '[127710.1.712560825]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormSalesDemandsForScenarioComparison' Text: 'Sales demands' ] }
                Component ComponentMenuPISPIPForScenarioComparison { #keys: '[127710.1.715444615]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormPISPIPForScenarioComparison' Text: 'Product in stocking points' ] }
                Component ComponentMenuNewSuppliesForScenarioComparison { #keys: '[127710.1.716042833]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormNewSuppliesForScenarioComparison' Text: 'New supplies' ] }
                Component ComponentMenu728 { #keys: '[127710.1.717840907]' BaseType: 'ComponentMenu' ViewSecurity: 'TransportationPlanning' Properties: [ ComponentType: 'FormTripsPlanningForScenarioComparison' Text: 'Trips planning' ] }
              ]
              Properties:
              [
                Image: 'TABLES'
                Text: 'Scenario comparison'
                ModeledStringList ChildOrdering
                {
                  c: ComponentMenuSalesDemandsForScenarioComparison
                  c: ComponentMenuFormUnitPeriodsForScenarioComparison
                  c: ComponentMenuPISPIPForScenarioComparison
                  c: ComponentMenuNewSuppliesForScenarioComparison
                  c: ComponentMenu728
                  c: ComponentMenuFormCostForScenarioComparison
                }
              ]
            }
            Component Menu45 { #keys: '[112610.0.804807350]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component MenuKPI
            {
              #keys: '[127710.1.726064800]'
              BaseType: 'Menu'
              Children:
              [
                Component ComponentMenuFormKPIs { #keys: '[127710.1.726066102]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormKPIs' Image: 'CHART' SingleInstance: false Text: 'KPIs' ] }
                Component ComponentMenu8 { #keys: '[127710.1.726066225]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'ScenarioManager_FormKPISettings' Image: 'EDITOR_VISIBILITY_USER' Text: 'KPI settings' ] }
                Component ComponentMenuScenarioManager_FormKPIMatrix { #keys: '[127710.1.726066373]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'ScenarioManager_FormKPIMatrix' Image: 'TABLE' Text: 'KPI matrix' ] }
              ]
              Properties:
              [
                Image: 'CHART'
                Text: 'KPI'
                ModeledStringList ChildOrdering
                {
                  c: ComponentMenuFormKPIs
                  c: ComponentMenu8
                  c: ComponentMenuScenarioManager_FormKPIMatrix
                }
              ]
            }
          ]
          Properties:
          [
            Image: 'EARTH'
            Text: 'Scenario management'
            ModeledStringList ChildOrdering
            {
              c: ComponentMenuFormScenarioManager
              c: MenuKPI
              c: MenuScenarioComparison
              c: Menu45
              c: ComponentMenuFormAssumptions
              c: ComponentMenuFormScenarioActivities
              c: menuScenarioStatus
            }
          ]
        }
        Component ComponentMenuDialogShowSanityCheck { #keys: '[110880.6.1735234251]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'DialogSanityCheck' Image: 'TRAFFICLIGHT_ON' Shortcut: 'Alt+S' Text: '&Sanity check' ] }
        Component MenuDashboards
        {
          #keys: '[112610.0.804820381]'
          BaseType: 'Menu'
          Children:
          [
            Component ComponentMenuFormKPIDashboard { #keys: '[112610.0.804821030]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormKPIDashboard' Image: 'GAUGE' Text: 'KPI dashboard' ] }
            Component ComponentMenuFormDashboard { #keys: '[112610.0.804821062]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormDashboard' Image: 'GAUGE' SingleInstance: false Text: 'Dashboard' ] }
            Component ComponentMenuFormUnitDashboard { #keys: '[112610.0.804821311]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormUnitDashboard' Image: 'FACTORY' Text: 'Unit dashboard' ] }
            Component ComponentMenuFormStockingPointDashboard { #keys: '[112610.0.804821462]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormStockingPointDashboard' Image: 'HOME' Text: 'Stocking point dashboard' ] }
            Component ComponentMenuFormProductDashboard { #keys: '[112610.0.804821631]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormProductDashboard' Image: 'CUBE_BLUE' Text: 'Product dashboard' ] }
            Component Menu15 { #keys: '[112610.0.804821681]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component ComponentMenuFormDashboardBenchmarker { #keys: '[122872.0.1817054337]' BaseType: 'ComponentMenu' ViewSecurity: 'OptimizerBenchmarking' Properties: [ ComponentType: 'FormDashboardBenchmarker' Image: 'GAUGE' Text: 'Benchmarker dashboard' ] }
          ]
          Properties:
          [
            Image: 'GAUGE'
            Text: 'Dashboards'
            ModeledStringList ChildOrdering
            {
              c: ComponentMenuFormKPIDashboard
              c: ComponentMenuFormDashboard
              c: ComponentMenuFormDashboardBenchmarker
              c: Menu15
              c: ComponentMenuFormUnitDashboard
              c: ComponentMenuFormStockingPointDashboard
              c: ComponentMenuFormProductDashboard
            }
          ]
        }
        Component MenuSupplyChainParameters
        {
          #keys: '[122892.0.1506451273]'
          BaseType: 'Menu'
          Children:
          [
            Component menuFormCurrencies { #keys: '[122892.0.1506453015]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormCurrencies' Image: 'CURRENCY_DOLLAR' Text: 'Currencies' ] }
            Component menuFormUnitsOfMeasurement { #keys: '[122892.0.1506453229]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormUnitsOfMeasurement' Image: 'FLASH' Text: 'Units of measurement' ] }
            Component menuFormPriorities { #keys: '[122892.0.1506453386]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormPriorities' Image: 'CONTRACT' Text: 'Priorities' ] }
            Component menuForm9 { #keys: '[112610.0.1185619595]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormPeriods' Image: 'DATE-TIME' Text: 'Periods' ] }
          ]
          Properties:
          [
            Image: 'ENVIRONMENT_PREFERENCES'
            Text: 'Supply chain parameters'
            ModeledStringList ChildOrdering
            {
              c: menuForm9
              c: menuFormUnitsOfMeasurement
              c: menuFormCurrencies
              c: menuFormPriorities
            }
          ]
        }
        Component MenuFormsWorkflow
        {
          #keys: '[113694.2.1146369367]'
          BaseType: 'Menu'
          ViewSecurity: 'Workflow'
          Children:
          [
            Component menuForm475 { #keys: '[113694.2.1146369371]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'SWF_FormStepDueDate' Text: '' ] }
            Component menuForm399 { #keys: '[113694.2.1146369372]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'SWF_FormWorkflowOverview' Text: '' ] }
            Component ComponentMenu262 { #keys: '[113694.2.1146369369]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'SWF_FormStepDefinitionMP' Text: '' ] }
            Component ComponentMenu342 { #keys: '[113694.2.1146369368]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'SWF_FormWorkflow' Text: '' ] }
            Component ComponentMenu641 { #keys: '[113694.2.1146369374]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'SWF_FormStepsInActiveCycle' Text: '' ] }
            Component menuForm284 { #keys: '[113694.2.1146369377]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'SWF_FormUsers' Text: '' ] }
            Component menuForm229 { #keys: '[113694.2.1146369378]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'SWF_FormRole' Text: '' ] }
            Component menuSeparator172 { #keys: '[113694.2.1146369370]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component menuSeparator375 { #keys: '[113694.2.1146369373]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component menuSeparator466 { #keys: '[113694.2.1146369376]' BaseType: 'Menu' Properties: [ Separator: true ] }
            Component ComponentMenu909 { #keys: '[127238.0.1773125265]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'SWF_FormMyActivitiesMP' Text: 'My activities' ] }
            Component ComponentMenu737 { #keys: '[127238.0.1773126516]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'SWF_FormMyCreatedActivityMP' Text: 'My created activities' ] }
          ]
          Properties:
          [
            Image: 'ELBOW_ARROW'
            Text: 'S&&OP Workflow'
            ModeledStringList ChildOrdering
            {
              c: ComponentMenu262
              c: ComponentMenu342
              c: menuSeparator172
              c: menuForm475
              c: menuForm399
              c: menuSeparator375
              c: ComponentMenu909
              c: ComponentMenu737
              c: ComponentMenu641
              c: menuSeparator466
              c: menuForm284
              c: menuForm229
            }
          ]
        }
        Component MenuAnalysis767
        {
          #keys: '[113694.2.1265304078]'
          BaseType: 'Menu'
          Children:
          [
            Component ComponentMenuFormStandardAnalysis { #keys: '[113694.2.1265304258]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormAnalysisMP' Shortcut: 'Alt+A' SingleInstance: false Text: 'Anal&ysis - MacroPlanner' ] }
            Component ComponentMenuAnalysisSWFDatasetUser { #keys: '[113694.2.1265307596]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormAnalysisSWFDataset' Image: 'ganttchart' Text: 'Analysis - SWFDataset' ] }
          ]
          Properties:
          [
            Image: 'TABLE_SQL_VIEW'
            Text: 'Analysis'
            ModeledStringList ChildOrdering
            {
              c: ComponentMenuFormStandardAnalysis
              c: ComponentMenuAnalysisSWFDatasetUser
            }
          ]
        }
        Component MenuAdministration
        {
          #keys: '[132444.0.5332878]'
          BaseType: 'Menu'
          Children:
          [
            Component MenuDataExchangeFramework
            {
              #keys: '[132448.0.609452776]'
              BaseType: 'Menu'
              ViewSecurity: 'Administrator'
              Children:
              [
                Component ComponentMenuIntegrationEvents { #keys: '[132448.0.609452778]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'LibDEF_FormIntegrationEvents' Text: 'Integration events' ] }
                Component ComponentMenuIntegration { #keys: '[132448.0.609452777]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'DerivedLibDEF_FormIntegration' Text: 'Integration' ] }
                Component ComponentMenuDataExchangeDomainInspection { #keys: '[132448.0.609452780]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'LibDEF_FormDataExchangeDomainInspection' Text: 'Data exchange domain inspection' ] }
                Component menuSeparator972 { #keys: '[132448.0.609452779]' BaseType: 'Menu' Properties: [ Separator: true ] }
              ]
              Properties:
              [
                Image: 'DATA_COPY'
                Text: 'Data exchange framework'
                ModeledStringList ChildOrdering
                {
                  c: ComponentMenuIntegration
                  c: ComponentMenuIntegrationEvents
                  c: menuSeparator972
                  c: ComponentMenuDataExchangeDomainInspection
                }
              ]
            }
            Component ComponentMenuFunctionalityAuthorization { #keys: '[127710.1.1811899602]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'DialogFunctionalities' Text: 'Functionality authorization' Tooltip: 'Functionality authorization' ] }
          ]
          Properties:
          [
            Image: 'POLICEMAN_BOBBY'
            Text: 'Administration'
            ModeledStringList ChildOrdering
            {
              c: MenuDataExchangeFramework
              c: ComponentMenuFunctionalityAuthorization
            }
          ]
        }
        Component Menu20 { #keys: '[112884.0.288512981]' BaseType: 'Menu' Properties: [ Separator: true ] }
        Component MenuKPITracker
        {
          #keys: '[151892.0.565183617]'
          BaseType: 'Menu'
          Children:
          [
            Component ComponentMenu426 { #keys: '[151892.0.565183632]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'Kpi_frmKpiSnapshots' Text: 'KPI history' ] }
            Component ComponentMenu735 { #keys: '[151892.0.565183663]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'Kpi_frmKpiMatrix' Text: 'KPI matrix' ] }
            Component ComponentMenu141 { #keys: '[151892.0.565183722]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'Kpi_frmKpiMasterData' Text: 'KPI master data' ] }
            Component ComponentMenu610 { #keys: '[151892.0.565184757]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'Kpi_frmStandardAnalysis' Text: 'KPI analysis' ] }
            Component ComponentMenu563 { #keys: '[151892.0.614627934]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'FormKPITrackerKPIs' Text: 'KPI dashboard' ] }
          ]
          Properties:
          [
            Image: 'Chart'
            Text: 'KPI tracker'
            ModeledStringList ChildOrdering
            {
              c: ComponentMenu426
              c: ComponentMenu735
              c: ComponentMenu141
              c: ComponentMenu563
              c: ComponentMenu610
            }
          ]
        }
      ]
      Properties:
      [
        Text: 'For&ms'
        ModeledStringList ChildOrdering
        {
          c: MenuScenarioManager
          c: MenuOptimizer
          c: MenuFormsWorkflow
          c: Menu21
          c: MenuSupplyChainParameters
          c: MenuSupplyChainDesign
          c: MenuSupplyChainPlanning
          c: MenuFinancials
          c: Menu24
          c: MenuDashboards
          c: ComponentMenuDialogShowSanityCheck
          c: MenuAnalysis767
          c: MenuKPITracker
          c: Menu20
          c: MenuAdministration
        }
      ]
    }
    Component menuViews
    {
      #keys: '[514.0.18851]'
      BaseType: 'Menu'
      Children:
      [
        Component menuManageViews { #keys: '[514.0.18852]' BaseType: 'ComponentMenu' Properties: [ ComponentType: 'dlgManageViews' Image: 'smalllist' Text: '&Manage views...' ] }
      ]
      Properties:
      [
        Text: '&Views'
      ]
    }
    Component menuWindows1
    {
      #keys: '[514.0.55500]'
      BaseType: 'Menu'
      Children:
      [
        Component menuTileHorizontally { #keys: '[514.0.55501]' BaseType: 'Menu' Properties: [ Image: 'tilehoRIZONTALLY' Text: 'Tile &horizontally' ] }
        Component menuTileVertically { #keys: '[514.0.55502]' BaseType: 'Menu' Properties: [ Image: 'tileverTICALLY' Text: 'Tile &vertically' ] }
        Component menuCascade { #keys: '[514.0.55503]' BaseType: 'Menu' Properties: [ Image: 'casCADE' Text: '&Cascade' ] }
        Component menuCloseAll { #keys: '[514.0.298605]' BaseType: 'Menu' Properties: [ Text: 'Close a&ll' ] }
      ]
      Properties:
      [
        Text: '&Window'
        ModeledStringList ChildOrdering
        {
          c: menuTileHorizontally
          c: menuTileVertically
          c: menuCascade
          c: menuCloseAll
        }
      ]
    }
    Component menuHelp
    {
      #keys: '[514.0.2186]'
      BaseType: 'Menu'
      Children:
      [
        Component menuAboutQuintiq { #keys: '[110880.3.1722911520]' BaseType: 'Menu' Properties: [ Image: 'QUINTIQSMALL' Text: 'About &Quintiq' ] }
        Component menuSeparator712 { #keys: '[134490.0.379499825]' BaseType: 'Menu' Properties: [ Separator: true ] }
        Component MenuSupplyChainWizard { #keys: '[134490.0.379500119]' BaseType: 'Menu' Properties: [ Image: 'ADDRESS_BOOK2' Text: 'S&upply chain wizard' ] }
        Component MenuFeatureWizard { #keys: '[134490.0.379500315]' BaseType: 'Menu' Properties: [ Image: 'MAGIC-WAND2' Text: '&Feature wizards' Visible: false ] }
        Component MenuStartupWizard { #keys: '[134490.0.380645510]' BaseType: 'Menu' Properties: [ Image: 'SCROLL_RUN' Text: '&Scenario creation wizard' ] }
        Component MenuTutorial { #keys: '[134490.0.423903519]' BaseType: 'Menu' Properties: [ Image: 'BOOK_OPEN' Text: '&Tutorial' ] }
        Component menuSeparator309 { #keys: '[134490.0.423907850]' BaseType: 'Menu' Properties: [ Separator: true ] }
      ]
      Properties:
      [
        Text: '&Help'
        ModeledStringList ChildOrdering
        {
          c: menuAboutQuintiq
          c: menuSeparator712
          c: MenuTutorial
          c: menuSeparator309
          c: MenuStartupWizard
          c: MenuSupplyChainWizard
          c: MenuFeatureWizard
        }
      ]
    }
  ]
  Properties:
  [
    Priority: -3
    Size: 25
    ModeledStringList ChildOrdering
    {
      c: menuFile
      c: menuEdit
      c: menuForms
      c: menuViews
      c: menuWindows1
      c: menuHelp
    }
  ]
}