-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSharedProject_AAX_EnumDictionary.xpo
2375 lines (2006 loc) · 65.8 KB
/
SharedProject_AAX_EnumDictionary.xpo
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
Exportfile for AOT version 1.0 or later
Formatversion: 1
***Element: DBT
; Microsoft Dynamics AX Table : AAX_EnumDictionary unloaded
; --------------------------------------------------------------------------------
TABLEVERSION 1
TABLE #AAX_EnumDictionary
EnforceFKRelation 1
PROPERTIES
Name #AAX_EnumDictionary
TitleField1 #enum
TitleField2 #enumValue
TableContents #Default data
CreateRecIdIndex #Yes
SaveDataPerCompany #No
PrimaryIndex #SurrogateKey
ClusterIndex #SurrogateKey
Origin #{A785B4E7-8D3F-472E-AB68-B747F51D6E5F}
ENDPROPERTIES
FIELDS
FIELD #enum
STRING
PROPERTIES
Name #enum
Table #AAX_EnumDictionary
Origin #{443D6878-3F37-423C-905A-20A3E31DEFB4}
ExtendedDataType #Str60
StringSize #60
ENDPROPERTIES
FIELD #enumValue
INT
PROPERTIES
Name #enumValue
Table #AAX_EnumDictionary
Origin #{02C9630B-593C-467A-91BA-8BD21ECBCCFE}
ExtendedDataType #EnumId
ENDPROPERTIES
FIELD #label
STRING
PROPERTIES
Name #label
Table #AAX_EnumDictionary
Origin #{8DD460D7-2C70-4A84-BC59-0E2F54AAA716}
ExtendedDataType #String255
StringSize #255
ENDPROPERTIES
FIELD #LanguageId
STRING
PROPERTIES
Name #LanguageId
Table #AAX_EnumDictionary
Origin #{2D8D33FA-D9AA-4939-91E6-3660437BFC9D}
ExtendedDataType #LanguageIdAll
StringSize #7
ENDPROPERTIES
FIELD #name
STRING
PROPERTIES
Name #name
Table #AAX_EnumDictionary
Origin #{0CB3722B-C8B7-4A57-BFBF-E76AAF91C920}
ExtendedDataType #Str60
StringSize #60
ENDPROPERTIES
ENDFIELDS
GROUPS
ENDGROUPS
INDICES
#enumValue
PROPERTIES
Name #enumValue
Origin #{C3E5312B-4200-43B4-8EB7-C86CE9F1054B}
ENDPROPERTIES
INDEXFIELDS
#enumValue
ENDINDEXFIELDS
#idxLabel
PROPERTIES
Name #idxLabel
Origin #{0C74C2A5-17ED-4184-8D9C-B975FD6DD9EF}
ENDPROPERTIES
INDEXFIELDS
#label
ENDINDEXFIELDS
#idxName
PROPERTIES
Name #idxName
Origin #{A7E24F8A-3EF2-4C42-ADA4-1B97C1314396}
ENDPROPERTIES
INDEXFIELDS
#name
ENDINDEXFIELDS
#idxEnum
PROPERTIES
Name #idxEnum
Origin #{12DD5904-93F8-458D-ADEC-93A40DDB3C33}
ENDPROPERTIES
INDEXFIELDS
#enum
ENDINDEXFIELDS
#enumEnumValueName
PROPERTIES
Name #enumEnumValueName
AllowDuplicates #No
Origin #{2DCB4AAA-289A-4617-83E9-5D70D1CBE7CC}
ENDPROPERTIES
INDEXFIELDS
#LanguageId
#name
#enumValue
#enum
ENDINDEXFIELDS
ENDINDICES
FULLTEXTINDICES
ENDFULLTEXTINDICES
REFERENCES
REFERENCE #LanguageTable
PROPERTIES
Name #LanguageTable
Table #LanguageTable
UseDefaultRoleNames #Yes
ENDPROPERTIES
FIELDREFERENCES
REFERENCETYPE PKFK
PROPERTIES
Field #LanguageId
RelatedField #LanguageId
ENDPROPERTIES
ENDFIELDREFERENCES
ENDREFERENCE
ENDREFERENCES
DELETEACTIONS
ENDDELETEACTIONS
METHODS
SOURCE #initFromdictEnum
#public void initFromdictEnum(dictEnum dictEnum, int counter, languageIdAll LanguageId)
#{
# this.enum = DictEnum.name();
# this.name = DictEnum.index2Name(counter);
# this.label = DictEnum.index2Label(counter);
# this.label = SysLabel::labelId2String2(dictEnum.index2LabelId(counter), LanguageId);
# this.enumValue = DictEnum.index2Value(counter);
# this.LanguageId = LanguageId;
#}
ENDSOURCE
ENDMETHODS
ENDTABLE
***Element: CLS
; Microsoft Dynamics AX Class: AAX_EnumDictionaryDump unloaded
; --------------------------------------------------------------------------------
CLSVERSION 1
CLASS #AAX_EnumDictionaryDump
PROPERTIES
Name #AAX_EnumDictionaryDump
Extends #RunBaseBatch
Origin #{89BEF0AA-CD2A-43DD-BE54-23D576889836}
ENDPROPERTIES
METHODS
SOURCE #classDeclaration
#public class AAX_EnumDictionaryDump extends RunBaseBatch
#{
# NoYes additive;
# NoYes allLanguages;
#
# DialogField DialogAdditive;
# DialogField dialogAllLanguages;
#
# #define.CurrentVersion(1)
# #localmacro.CurrentList
# additive
# #endmacro
#}
ENDSOURCE
SOURCE #dialog
#protected Object dialog()
#{
# Object ret;
# DialogRunBase DialogRunBase;
#
# DialogRunBase = super();
#
# DialogAdditive = DialogRunBase.addFieldValue(enumStr(NoYes), "Additive", "Only Scan for changes", "Uncheck this to delete all enums and rebuild from scratch");
# DialogAllLanguages = DialogRunbase.addFieldValue(enumStr(NoYes),"All Languages", "Include all languages rather than just system default","Check to include all languages licensed");
#
# return DialogRunBase;
#}
ENDSOURCE
SOURCE #getFromDialog
#public boolean getFromDialog()
#{
# boolean ret;
#
# ret = super();
# Additive = DialogAdditive.value();
# allLanguages = dialogAllLanguages.value();
#
# return ret;
#}
ENDSOURCE
SOURCE #pack
#public container pack()
#{
# return [#CurrentVersion,#CurrentList];
#}
ENDSOURCE
SOURCE #parmAdditive
#public NoYes parmAdditive(NoYes _additive = additive)
#{
# additive = _additive;
# return(additive);
#}
ENDSOURCE
SOURCE #parmallLanguages
#public NoYes parmallLanguages(NoYes _allLanguages = allLanguages)
#{
# allLanguages = _allLanguages;
# return(allLanguages);
#}
ENDSOURCE
SOURCE #run
#public void run()
#{
# #AOT
# #Properties
# str localenumName;
# AAX_enumDictionary AAX_enumDictionary;
# UtilElements utilElements;
# int i, cnt;
#
# LanguageTable languageTable;
#
# void dumpEnum(str enumName, LanguageIdAll LanguageId = SystemParameters::find().SystemLanguageId)
# {
# int localEnumNum = Global::enumName2Id(enumName);
# DictEnum dictEnum = new DictEnum(localEnumNum);
# int elements = dictEnum.values();
# int counter;
# ;
#
# for(counter=0; counter<elements; counter++)
# {
# select forupdate * from AAX_EnumDictionary where AAX_EnumDictionary.enum == DictEnum.name()
# && AAX_enumDictionary.name == DictEnum.index2Name(counter)
# && AAX_enumDictionary.label == DictEnum.index2Label(counter)
# && AAX_enumDictionary.enumValue == DictEnum.index2Value(counter)
# && AAX_EnumDictionary.LanguageId == LanguageId;
# ttsBegin;
# if(AAX_EnumDictionary)
# {
# AAX_EnumDictionary.initFromdictEnum(DictEnum, counter, LanguageId);
# AAX_EnumDictionary.update();
# }
# else
# {
# AAX_EnumDictionary.initValue();
# AAX_EnumDictionary.initFromdictEnum(DictEnum, counter, LanguageId);
# AAX_enumDictionary.insert();
# }
# ttscommit;
# }
# }
#
# //clear the table, rebuild everything
# if(!this.parmAdditive())
# {
# delete_from AAX_enumDictionary;
# }
#
# while select utilElements
# where UtilElements.recordType == UtilElementType::Enum
# {
# if(allLanguages)
# {
# cnt = xlanguage::languageCount();
# // 0 is unknown, 1 is user, 2 is system default
# for (i = 3; i<=cnt; i++)
# {
# dumpEnum(UtilElements.name, xLanguage::index2languageID(i));
#
# }
# }
# else
# {
# dumpEnum(UtilElements.name);
# }
# }
#}
ENDSOURCE
SOURCE #unpack
#public boolean unpack(container packedClass)
#{
# Version version = runbase::getVersion(packedClass);
#
# switch (version)
# {
# case #CurrentVersion:
# [version,#CurrentList] = packedClass;
# break;
# default:
# return false;
# }
# return true;
#
#}
ENDSOURCE
SOURCE #main
#public static void main(Args args)
#{
# AAX_EnumDictionaryDump this = new AAX_EnumDictionaryDump();
#
#
# if(this.prompt())
# {
# this.run();
# }
#}
ENDSOURCE
ENDMETHODS
ENDCLASS
***Element: MNU
; Microsoft Dynamics AX Menu : SystemAdministration unloaded
; --------------------------------------------------------------------------------
MNUVERSION 5
MENU #SystemAdministration
PROPERTIES
Name #SystemAdministration
Label #@SYS334405
SetCompany #Yes
NormalImage #3467
ImageLocation #EmbeddedResource
Origin #{FACC2DF0-3622-42E9-B6B1-0EE0606E9541}
ENDPROPERTIES
MENU #@SYS333846
PROPERTIES
Name #Common
Label #@SYS333846
NormalImage #3495
ImageLocation #EmbeddedResource
ENDPROPERTIES
MENU #@SYS334407
PROPERTIES
Name #Users
Label #@SYS334407
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Users
MenuItemName #SysUserInfoPage
IsDisplayedInContentArea #Yes
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Online users
MenuItemName #SysUsersOnline
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #External web users
MenuItemName #SysEPParameters
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #User relations
MenuItemName #DirPersonUser
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #User groups
MenuItemName #SysUserGroupInfo
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #User profiles
MenuItemName #Profiles
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #User requests
MenuItemName #UserRequestListPage
IsDisplayedInContentArea #Yes
ENDPROPERTIES
ENDMENUITEM
ENDMENU
MENU #@SYS334408
PROPERTIES
Name #DataExport/import
Label #@SYS334408
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Definition groups
MenuItemName #SysExpImpGroup
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Export to
MenuItemType #Action
MenuItemName #SysDataExport
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Import
MenuItemType #Action
MenuItemName #SysDataImport
ENDPROPERTIES
ENDMENUITEM
ENDMENU
MENUITEM
PROPERTIES
Name #File archive
MenuItemName #BankFileArchTable
ENDPROPERTIES
ENDMENUITEM
ENDMENU
MENU #@SYS333856
PROPERTIES
Name #Inquiries
Label #@SYS333856
NormalImage #3474
ImageLocation #EmbeddedResource
ENDPROPERTIES
MENU #@SYS334411
PROPERTIES
Name #BatchJobs
Label #@SYS334411
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Batch job history
MenuItemName #BatchJobHistory
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Batch jobs
MenuItemName #BatchJob
ENDPROPERTIES
ENDMENUITEM
ENDMENU
MENU #@SYS334412
PROPERTIES
Name #Database
Label #@SYS334412
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Database information
MenuItemName #SysSqlStatus
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Database log
MenuItemName #SysDatabaseLog
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #SQL statement trace log
MenuItemName #SysTraceSQL
ENDPROPERTIES
ENDMENUITEM
ENDMENU
MENU #@SYS334413
PROPERTIES
Name #SynchronizationService
Label #@SYS334413
ConfigurationKey #ProjServerIntegration
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Integration log
MenuItemName #SyncCompoundTrans
ENDPROPERTIES
ENDMENUITEM
ENDMENU
MENU #@SYS334414
PROPERTIES
Name #System
Label #@SYS334414
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Element usage log
MenuItemName #SysUtilElementsLog
ENDPROPERTIES
ENDMENUITEM
ENDMENU
MENU #@SYS334415
PROPERTIES
Name #Users
Label #@SYS334415
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #User log
MenuItemName #SysUserLog
ENDPROPERTIES
ENDMENUITEM
ENDMENU
ENDMENU
MENU #@SYS333860
PROPERTIES
Name #Reports
Label #@SYS333860
NormalImage #3477
ImageLocation #EmbeddedResource
ENDPROPERTIES
MENU #@SYS334426
PROPERTIES
Name #Licensing
Label #@SYS334426
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Named User License Counts
MenuItemType #Output
MenuItemName #SysUserLicenseCountReport
ENDPROPERTIES
ENDMENUITEM
ENDMENU
MENU #@SYS334416
PROPERTIES
Name #Database
Label #@SYS334416
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Database log
MenuItemType #Output
MenuItemName #SysDatabaseLog
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Tables
MenuItemType #Output
MenuItemName #SysDataAreaPrintCollections
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Size of company accounts
MenuItemType #Output
MenuItemName #SysCompanySize
ENDPROPERTIES
ENDMENUITEM
ENDMENU
MENU #@SYS334417
PROPERTIES
Name #Security
Label #@SYS334417
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Online time
MenuItemType #Output
MenuItemName #SysUsersOnlineReport
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Record level security
MenuItemType #Output
MenuItemName #SysRecordLevelSecurity
ENDPROPERTIES
ENDMENUITEM
ENDMENU
ENDMENU
MENU #@SYS333865
PROPERTIES
Name #Periodic
Label #@SYS333865
NormalImage #3476
ImageLocation #EmbeddedResource
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Notification clean up
MenuItemType #Action
MenuItemName #EventAlertCleanup
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Compile application
MenuItemType #Action
MenuItemName #SysCompileAll
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Compile into .NET Framework CIL
MenuItemType #Action
MenuItemName #syscheckListitem_ciLGenerations
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Populate Enum Dictionary
MenuItemType #Action
MenuItemName #AAX_EnumDictionaryDump
ENDPROPERTIES
ENDMENUITEM
MENU #@SYS334418
PROPERTIES
Name #Database
Label #@SYS334418
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Consistency check
MenuItemType #Action
MenuItemName #SysConsistencyCheckBase
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #SQL administration
MenuItemName #SysSqlAdmin
ENDPROPERTIES
ENDMENUITEM
ENDMENU
MENU #@SYS334419
PROPERTIES
Name #MenuAIF
Label #@SYS334419
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Queue manager
MenuItemName #AifQueueManager
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #History
MenuItemName #AifDocumentHistory
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Exceptions
MenuItemName #Exceptions
ENDPROPERTIES
ENDMENUITEM
ENDMENU
MENU #@SYS333867
PROPERTIES
Name #Alerts
Label #@SYS333867
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Change based alerts
MenuItemType #Action
MenuItemName #EventCUD
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Due date alerts
MenuItemType #Action
MenuItemName #EventDueDate
ENDPROPERTIES
ENDMENUITEM
ENDMENU
MENU #@SYS334420
PROPERTIES
Name #E-mailProcessing
Label #@SYS334420
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #E-mail broadcast
MenuItemType #Action
MenuItemName #SysEmailBroadcast
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #E-mail sending status
MenuItemName #SysOutgoingEmailTable
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Batch
MenuItemType #Action
MenuItemName #SysEmailDistributor
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Retry schedule
MenuItemName #SysEmailRetrySchedule
ENDPROPERTIES
ENDMENUITEM
ENDMENU
ENDMENU
MENU #@SYS333869
PROPERTIES
Name #Setup
Label #@SYS333869
NormalImage #3478
ImageLocation #EmbeddedResource
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #System parameters
MenuItemName #SystemParameters
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Batch group
MenuItemName #BatchGroup
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Virtual company accounts
MenuItemName #SysDataAreaVirtual
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Partitions
MenuItemName #PartitionAdministration
ENDPROPERTIES
ENDMENUITEM
MENU #@SYS334421
PROPERTIES
Name #CopyOfSecurity
Label #@SYS334421
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Assign users to roles
MenuItemName #SysSecRolesEditUsers
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Security roles
MenuItemName #SysSecRolesEditTasks
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Security privileges
MenuItemName #SysSecTasksEditPS
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Record level security
MenuItemName #SysRecordLevelSecurity
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #External roles
MenuItemName #DirExternalRoles
ENDPROPERTIES
ENDMENUITEM
MENU #@SYS334422
PROPERTIES
Name #SegregationOfDuties
Label #@SYS334422
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Segregation of duties rules
MenuItemName #SysSecSegregationOfDutiesRule
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Segregation of duties conflicts
MenuItemName #SysSecSegregationOfDutiesConflictsAll
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Segregation of duties unresolved conflicts
MenuItemName #SysSecSegregationOfDutiesConflictsNew
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Verify compliance of user-role assignments
MenuItemType #Action
MenuItemName #SECuritysegregationOfDuties
ENDPROPERTIES
ENDMENUITEM
ENDMENU
ENDMENU
MENU #@SYS334423
PROPERTIES
Name #CopyOfSystem
Label #@SYS334423
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Client performance options
MenuItemName #SysClientPerf
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #System service accounts
MenuItemName #SysBusinessConnectorProxy
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Server configuration
MenuItemName #SysServerConfig
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Cluster configuration
MenuItemName #SysClusterConfig
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Customer feedback options
MenuItemName #SysSQMSettings
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #E-mail parameters
MenuItemName #SysEmailParameters
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #E-mail client constraints
MenuItemName #SysEmailPopClientConstraints
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Help system parameters
MenuItemName #SysHelpSystemParameters
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Modify data types
MenuItemName #SysEDTSetup
ENDPROPERTIES
ENDMENUITEM
MENUITEM
PROPERTIES
Name #Modify invalid conditions
MenuItemName #ExpressionUpgradeInvalidExpressions
ENDPROPERTIES
ENDMENUITEM
ENDMENU
MENU #@SYS334424
PROPERTIES
Name #CopyOfWorkflow
Label #@SYS334424
ENDPROPERTIES
MENUITEM
PROPERTIES
Name #Workflow parameters
MenuItemName #WorkflowParametersAdmin