-
Notifications
You must be signed in to change notification settings - Fork 168
/
data-access-jmeter.jmx
1704 lines (1704 loc) · 758 KB
/
data-access-jmeter.jmx
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
<?xml version="1.0" encoding="UTF-8"?>
<jmeterTestPlan version="1.2" properties="2.6" jmeter="2.11 r1554548">
<hashTree>
<TestPlan guiclass="TestPlanGui" testclass="TestPlan" testname="BI Server Web Service API Test (extensions)" enabled="true">
<stringProp name="TestPlan.comments"></stringProp>
<boolProp name="TestPlan.functional_mode">false</boolProp>
<boolProp name="TestPlan.serialize_threadgroups">false</boolProp>
<elementProp name="TestPlan.user_defined_variables" elementType="Arguments" guiclass="ArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
<collectionProp name="Arguments.arguments">
<elementProp name="LoginTT" elementType="Argument">
<stringProp name="Argument.name">LoginTT</stringProp>
<stringProp name="Argument.value">10000</stringProp>
<stringProp name="Argument.desc">Login think time in ms</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
<elementProp name="ReportTT" elementType="Argument">
<stringProp name="Argument.name">ReportTT</stringProp>
<stringProp name="Argument.value">30000</stringProp>
<stringProp name="Argument.desc">Report load think time in ms</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
<elementProp name="IterationTT" elementType="Argument">
<stringProp name="Argument.name">IterationTT</stringProp>
<stringProp name="Argument.value">60000</stringProp>
<stringProp name="Argument.desc">Iteration think time in ms</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
<elementProp name="ServerIP" elementType="Argument">
<stringProp name="Argument.name">ServerIP</stringProp>
<stringProp name="Argument.value">localhost</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
<elementProp name="dummyFilename" elementType="Argument">
<stringProp name="Argument.name">dummyFilename</stringProp>
<stringProp name="Argument.value">dummy.xml</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
</collectionProp>
</elementProp>
<stringProp name="TestPlan.user_define_classpath"></stringProp>
</TestPlan>
<hashTree>
<ThreadGroup guiclass="ThreadGroupGui" testclass="ThreadGroup" testname="Standard User Load" enabled="true">
<stringProp name="ThreadGroup.on_sample_error">continue</stringProp>
<elementProp name="ThreadGroup.main_controller" elementType="LoopController" guiclass="LoopControlPanel" testclass="LoopController" testname="Loop Controller" enabled="true">
<boolProp name="LoopController.continue_forever">false</boolProp>
<stringProp name="LoopController.loops">1</stringProp>
</elementProp>
<stringProp name="ThreadGroup.num_threads">1</stringProp>
<stringProp name="ThreadGroup.ramp_time">750</stringProp>
<longProp name="ThreadGroup.start_time">1346870931000</longProp>
<longProp name="ThreadGroup.end_time">1346870931000</longProp>
<boolProp name="ThreadGroup.scheduler">false</boolProp>
<stringProp name="ThreadGroup.duration"></stringProp>
<stringProp name="ThreadGroup.delay"></stringProp>
</ThreadGroup>
<hashTree>
<ConfigTestElement guiclass="HttpDefaultsGui" testclass="ConfigTestElement" testname="HTTP Request Defaults" enabled="true">
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" testname="User Defined Variables" enabled="true">
<collectionProp name="Arguments.arguments"/>
</elementProp>
<stringProp name="HTTPSampler.domain">${__property(run.server,,localhost)}</stringProp>
<stringProp name="HTTPSampler.port">${__property(run.port,,8080)}</stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol"></stringProp>
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
<stringProp name="HTTPSampler.path"></stringProp>
<stringProp name="HTTPSampler.concurrentPool">4</stringProp>
</ConfigTestElement>
<hashTree/>
<CookieManager guiclass="CookiePanel" testclass="CookieManager" testname="HTTP Cookie Manager" enabled="true">
<collectionProp name="CookieManager.cookies"/>
<boolProp name="CookieManager.clearEachIteration">false</boolProp>
</CookieManager>
<hashTree/>
<GenericController guiclass="LogicControllerGui" testclass="GenericController" testname="Metadata" enabled="true"/>
<hashTree>
<TransactionController guiclass="TransactionControllerGui" testclass="TransactionController" testname="Login" enabled="true">
<boolProp name="TransactionController.parent">true</boolProp>
</TransactionController>
<hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="/pentaho/j_spring_security_check" enabled="true">
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" enabled="true">
<collectionProp name="Arguments.arguments">
<elementProp name="j_username" elementType="HTTPArgument">
<boolProp name="HTTPArgument.always_encode">false</boolProp>
<stringProp name="Argument.name">j_username</stringProp>
<stringProp name="Argument.value">admin</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
<boolProp name="HTTPArgument.use_equals">true</boolProp>
</elementProp>
<elementProp name="j_password" elementType="HTTPArgument">
<boolProp name="HTTPArgument.always_encode">false</boolProp>
<stringProp name="Argument.name">j_password</stringProp>
<stringProp name="Argument.value">password</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
<boolProp name="HTTPArgument.use_equals">true</boolProp>
</elementProp>
<elementProp name="locale" elementType="HTTPArgument">
<boolProp name="HTTPArgument.always_encode">false</boolProp>
<stringProp name="Argument.name">locale</stringProp>
<stringProp name="Argument.value">en_US</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
<boolProp name="HTTPArgument.use_equals">true</boolProp>
</elementProp>
</collectionProp>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol">http</stringProp>
<stringProp name="HTTPSampler.contentEncoding">UTF-8</stringProp>
<stringProp name="HTTPSampler.path">/pentaho/j_spring_security_check</stringProp>
<stringProp name="HTTPSampler.method">POST</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<stringProp name="HTTPSampler.implementation">Java</stringProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
</HTTPSamplerProxy>
<hashTree>
<HeaderManager guiclass="HeaderPanel" testclass="HeaderManager" testname="HTTP Header Manager" enabled="true">
<collectionProp name="HeaderManager.headers">
<elementProp name="Content-Type" elementType="Header">
<stringProp name="Header.name">Content-Type</stringProp>
<stringProp name="Header.value">application/x-www-form-urlencoded; charset=UTF-8</stringProp>
</elementProp>
<elementProp name="Accept-Language" elementType="Header">
<stringProp name="Header.name">Accept-Language</stringProp>
<stringProp name="Header.value">en-US,en;q=0.5</stringProp>
</elementProp>
<elementProp name="Accept" elementType="Header">
<stringProp name="Header.name">Accept</stringProp>
<stringProp name="Header.value">text/plain, */*; q=0.01</stringProp>
</elementProp>
<elementProp name="User-Agent" elementType="Header">
<stringProp name="Header.name">User-Agent</stringProp>
<stringProp name="Header.value">Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:22.0) Gecko/20100101 Firefox/22.0</stringProp>
</elementProp>
<elementProp name="DNT" elementType="Header">
<stringProp name="Header.name">DNT</stringProp>
<stringProp name="Header.value">1</stringProp>
</elementProp>
<elementProp name="Pragma" elementType="Header">
<stringProp name="Header.name">Pragma</stringProp>
<stringProp name="Header.value">no-cache</stringProp>
</elementProp>
<elementProp name="Cache-Control" elementType="Header">
<stringProp name="Header.name">Cache-Control</stringProp>
<stringProp name="Header.value">no-cache</stringProp>
</elementProp>
<elementProp name="Accept-Encoding" elementType="Header">
<stringProp name="Header.name">Accept-Encoding</stringProp>
<stringProp name="Header.value">gzip, deflate</stringProp>
</elementProp>
<elementProp name="X-Requested-With" elementType="Header">
<stringProp name="Header.name">X-Requested-With</stringProp>
<stringProp name="Header.value">XMLHttpRequest</stringProp>
</elementProp>
<elementProp name="Referer" elementType="Header">
<stringProp name="Header.name">Referer</stringProp>
<stringProp name="Header.value">http://${ServerIP}:8080/pentaho/Login;jsessionid=259EE5A4A63D0765FE7CB03DDA1CA324</stringProp>
</elementProp>
</collectionProp>
</HeaderManager>
<hashTree/>
</hashTree>
</hashTree>
<TransactionController guiclass="TransactionControllerGui" testclass="TransactionController" testname="MetadataResource" enabled="true">
<boolProp name="TransactionController.includeTimers">false</boolProp>
<boolProp name="TransactionController.parent">false</boolProp>
</TransactionController>
<hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="PUT /plugin/data-access/api/datasource/metadata/domain/{domainId}" enabled="true">
<boolProp name="HTTPSampler.postBodyRaw">true</boolProp>
<elementProp name="HTTPsampler.Arguments" elementType="Arguments">
<collectionProp name="Arguments.arguments">
<elementProp name="" elementType="HTTPArgument">
<boolProp name="HTTPArgument.always_encode">false</boolProp>
<stringProp name="Argument.value">------WebKitFormBoundaryNLNb246RTFIn1elY
Content-Disposition: form-data; name="metadataFile"; filename="SampleData2.xmi"
Content-Type: text/xml

<?xml version = '1.0' encoding = 'UTF-8' ?><XMI xmi.version = '1.2' xmlns:CWM = 'org.omg.xmi.namespace.CWM' xmlns:CWMTFM = 'org.omg.xmi.namespace.CWMTFM' xmlns:CWMMDB = 'org.omg.xmi.namespace.CWMMDB' xmlns:CWMRDB = 'org.omg.xmi.namespace.CWMRDB' xmlns:CWMOLAP = 'org.omg.xmi.namespace.CWMOLAP' timestamp = 'Thu Jul 25 15:04:46 EDT 2013'> <XMI.header> <XMI.documentation> <XMI.exporter>Netbeans XMI Writer</XMI.exporter> <XMI.exporterVersion>1.0</XMI.exporterVersion> </XMI.documentation> </XMI.header> <XMI.content> <CWM:Class xmi.id = 'a1' name = 'Date' isAbstract = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a2' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWM:Class> <CWM:Class xmi.id = 'a3' name = 'US_Currency' isAbstract = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a4' tag = 'CONCEPT_PARENT_NAME' value = 'Number'/> </CWM:ModelElement.taggedValue> </CWM:Class> <CWM:Class xmi.id = 'a5' name = 'SurrogateKey' isAbstract = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a6' tag = 'CONCEPT_PARENT_NAME' value = 'ID'/> </CWM:ModelElement.taggedValue> </CWM:Class> <CWM:Class xmi.id = 'a7' name = 'ID' isAbstract = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a8' tag = 'CONCEPT_PARENT_NAME' value = 'Number'/> </CWM:ModelElement.taggedValue> </CWM:Class> <CWM:Class xmi.id = 'a9' name = 'Number' isAbstract = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a10' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWM:Class> <CWM:Class xmi.id = 'a11' name = 'Base' isAbstract = 'false'/> <CWMOLAP:Schema xmi.id = 'a12' name = 'BV_HUMAN_RESOURCES'/> <CWMOLAP:Schema xmi.id = 'a13' name = 'BV_INVENTORY'/> <CWMOLAP:Schema xmi.id = 'a14' name = 'BV_ORDERS'/> <CWMMDB:Schema xmi.id = 'a15' name = 'BV_HUMAN_RESOURCES'> <CWM:Namespace.ownedElement> <CWM:KeyRelationship xmi.id = 'a16'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a17' tag = 'RELATIONSHIP_TABLENAME_PARENT' value = 'BT_OFFICES_OFFICES'/> <CWM:TaggedValue xmi.id = 'a18' tag = 'RELATIONSHIP_TABLENAME_CHILD' value = 'BT_EMPLOYEES_EMPLOYEES'/> <CWM:TaggedValue xmi.id = 'a19' tag = 'RELATIONSHIP_FIELDNAME_PARENT' value = 'BC_OFFICES_OFFICECODE'/> <CWM:TaggedValue xmi.id = 'a20' tag = 'RELATIONSHIP_FIELDNAME_CHILD' value = 'BC_EMPLOYEES_OFFICECODE'/> <CWM:TaggedValue xmi.id = 'a21' tag = 'RELATIONSHIP_TYPE' value = '1:N'/> <CWM:TaggedValue xmi.id = 'a22' tag = 'RELATIONSHIP_JOIN_ORDER_KEY'/> <CWM:TaggedValue xmi.id = 'a23' tag = 'RELATIONSHIP_DESCRIPTION'/> </CWM:ModelElement.taggedValue> </CWM:KeyRelationship> <CWM:Extent xmi.id = 'a24' name = 'BC_OFFICES_'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a25' tag = 'BUSINESS_CATEGORY_ROOT' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWM:Attribute xmi.id = 'a26' name = 'BC_OFFICES_TERRITORY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a27' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a28' name = 'BC_OFFICES_POSTALCODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a29' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a30' name = 'BC_OFFICES_COUNTRY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a31' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a32' name = 'BC_OFFICES_STATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a33' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a34' name = 'BC_OFFICES_ADDRESSLINE2'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a35' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a36' name = 'BC_OFFICES_ADDRESSLINE1'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a37' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a38' name = 'BC_OFFICES_PHONE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a39' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a40' name = 'BC_OFFICES_CITY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a41' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a42' name = 'BC_OFFICES_OFFICECODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a43' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> </CWM:Namespace.ownedElement> </CWM:Extent> <CWM:Extent xmi.id = 'a44' name = 'BC_EMPLOYEES_'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a45' tag = 'BUSINESS_CATEGORY_ROOT' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWM:Attribute xmi.id = 'a46' name = 'BC_EMPLOYEES_JOBTITLE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a47' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a48' name = 'BC_EMPLOYEES_REPORTSTO'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a49' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a50' name = 'BC_EMPLOYEES_EMAIL'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a51' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a52' name = 'BC_EMPLOYEES_EXTENSION'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a53' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a54' name = 'BC_EMPLOYEES_FIRSTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a55' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a56' name = 'BC_EMPLOYEES_LASTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a57' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a58' name = 'BC_EMPLOYEES_EMPLOYEENUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a59' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> </CWM:Namespace.ownedElement> </CWM:Extent> </CWM:Namespace.ownedElement> <CWMMDB:Schema.dimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a60' name = 'BC_EMPLOYEES_EMPLOYEENUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a61' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'EMPLOYEENUMBER'/> <CWM:TaggedValue xmi.id = 'a62' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_EMPLOYEES_EMPLOYEES'/> <CWM:TaggedValue xmi.id = 'a63' tag = 'CONCEPT_PARENT_NAME' value = 'ID'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a64'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a65' name = 'BC_EMPLOYEES_LASTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a66' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'LASTNAME'/> <CWM:TaggedValue xmi.id = 'a67' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_EMPLOYEES_EMPLOYEES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a64'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a68' name = 'BC_EMPLOYEES_FIRSTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a69' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'FIRSTNAME'/> <CWM:TaggedValue xmi.id = 'a70' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_EMPLOYEES_EMPLOYEES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a64'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a71' name = 'BC_EMPLOYEES_EXTENSION'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a72' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'EXTENSION'/> <CWM:TaggedValue xmi.id = 'a73' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_EMPLOYEES_EMPLOYEES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a64'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a74' name = 'BC_EMPLOYEES_EMAIL'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a75' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'EMAIL'/> <CWM:TaggedValue xmi.id = 'a76' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_EMPLOYEES_EMPLOYEES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a64'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a77' name = 'BC_EMPLOYEES_OFFICECODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a78' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'OFFICECODE'/> <CWM:TaggedValue xmi.id = 'a79' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_EMPLOYEES_EMPLOYEES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a64'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a80' name = 'BC_EMPLOYEES_REPORTSTO'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a81' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'REPORTSTO'/> <CWM:TaggedValue xmi.id = 'a82' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_EMPLOYEES_EMPLOYEES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a64'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a83' name = 'BC_EMPLOYEES_JOBTITLE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a84' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'JOBTITLE'/> <CWM:TaggedValue xmi.id = 'a85' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_EMPLOYEES_EMPLOYEES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a64'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a86' name = 'BC_OFFICES_OFFICECODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a87' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'OFFICECODE'/> <CWM:TaggedValue xmi.id = 'a88' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_OFFICES_OFFICES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a89'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a90' name = 'BC_OFFICES_CITY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a91' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'CITY'/> <CWM:TaggedValue xmi.id = 'a92' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_OFFICES_OFFICES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a89'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a93' name = 'BC_OFFICES_PHONE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a94' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PHONE'/> <CWM:TaggedValue xmi.id = 'a95' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_OFFICES_OFFICES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a89'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a96' name = 'BC_OFFICES_ADDRESSLINE1'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a97' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'ADDRESSLINE1'/> <CWM:TaggedValue xmi.id = 'a98' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_OFFICES_OFFICES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a89'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a99' name = 'BC_OFFICES_ADDRESSLINE2'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a100' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'ADDRESSLINE2'/> <CWM:TaggedValue xmi.id = 'a101' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_OFFICES_OFFICES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a89'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a102' name = 'BC_OFFICES_STATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a103' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'STATE'/> <CWM:TaggedValue xmi.id = 'a104' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_OFFICES_OFFICES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a89'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a105' name = 'BC_OFFICES_COUNTRY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a106' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'COUNTRY'/> <CWM:TaggedValue xmi.id = 'a107' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_OFFICES_OFFICES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a89'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a108' name = 'BC_OFFICES_POSTALCODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a109' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'POSTALCODE'/> <CWM:TaggedValue xmi.id = 'a110' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_OFFICES_OFFICES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a89'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a111' name = 'BC_OFFICES_TERRITORY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a112' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'TERRITORY'/> <CWM:TaggedValue xmi.id = 'a113' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_OFFICES_OFFICES'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a89'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> </CWMMDB:Schema.dimensionedObject> <CWMMDB:Schema.dimension> <CWMMDB:Dimension xmi.id = 'a64' name = 'BT_EMPLOYEES_EMPLOYEES' isAbstract = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a114' tag = 'BUSINESS_TABLE_PHYSICAL_TABLE_NAME' value = 'PT_EMPLOYEES'/> <CWM:TaggedValue xmi.id = 'a115' tag = 'TAG_POSITION_X' value = '213'/> <CWM:TaggedValue xmi.id = 'a116' tag = 'TAG_POSITION_Y' value = '151'/> <CWM:TaggedValue xmi.id = 'a117' tag = 'TABLE_IS_DRAWN' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWMMDB:Dimension.dimensionedObject> <CWMMDB:DimensionedObject xmi.idref = 'a60'/> <CWMMDB:DimensionedObject xmi.idref = 'a65'/> <CWMMDB:DimensionedObject xmi.idref = 'a68'/> <CWMMDB:DimensionedObject xmi.idref = 'a71'/> <CWMMDB:DimensionedObject xmi.idref = 'a74'/> <CWMMDB:DimensionedObject xmi.idref = 'a77'/> <CWMMDB:DimensionedObject xmi.idref = 'a80'/> <CWMMDB:DimensionedObject xmi.idref = 'a83'/> </CWMMDB:Dimension.dimensionedObject> </CWMMDB:Dimension> <CWMMDB:Dimension xmi.id = 'a89' name = 'BT_OFFICES_OFFICES' isAbstract = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a118' tag = 'BUSINESS_TABLE_PHYSICAL_TABLE_NAME' value = 'PT_OFFICES'/> <CWM:TaggedValue xmi.id = 'a119' tag = 'TAG_POSITION_X' value = '114'/> <CWM:TaggedValue xmi.id = 'a120' tag = 'TAG_POSITION_Y' value = '151'/> <CWM:TaggedValue xmi.id = 'a121' tag = 'TABLE_IS_DRAWN' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWMMDB:Dimension.dimensionedObject> <CWMMDB:DimensionedObject xmi.idref = 'a86'/> <CWMMDB:DimensionedObject xmi.idref = 'a90'/> <CWMMDB:DimensionedObject xmi.idref = 'a93'/> <CWMMDB:DimensionedObject xmi.idref = 'a96'/> <CWMMDB:DimensionedObject xmi.idref = 'a99'/> <CWMMDB:DimensionedObject xmi.idref = 'a102'/> <CWMMDB:DimensionedObject xmi.idref = 'a105'/> <CWMMDB:DimensionedObject xmi.idref = 'a108'/> <CWMMDB:DimensionedObject xmi.idref = 'a111'/> </CWMMDB:Dimension.dimensionedObject> </CWMMDB:Dimension> </CWMMDB:Schema.dimension> </CWMMDB:Schema> <CWMMDB:Schema xmi.id = 'a122' name = 'BV_INVENTORY'> <CWM:Namespace.ownedElement> <CWM:Extent xmi.id = 'a123' name = 'CAT_PRODUCTS'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a124' tag = 'BUSINESS_CATEGORY_ROOT' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWM:Attribute xmi.id = 'a125' name = 'BC_PRODUCTS_PRODUCTCODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a126' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a127' name = 'BC_PRODUCTS_PRODUCTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a128' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a129' name = 'BC_PRODUCTS_PRODUCTLINE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a130' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a131' name = 'BC_PRODUCTS_PRODUCTSCALE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a132' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a133' name = 'BC_PRODUCTS_PRODUCTVENDOR'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a134' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a135' name = 'BC_PRODUCTS_PRODUCTDESCRIPTION'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a136' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> </CWM:Namespace.ownedElement> </CWM:Extent> <CWM:Extent xmi.id = 'a137' name = 'CAT_INVENTORY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a138' tag = 'BUSINESS_CATEGORY_ROOT' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWM:Attribute xmi.id = 'a139' name = 'BC_PRODUCTS_QUANTITYINSTOCK'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a140' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a141' name = 'BC_PRODUCTS_BUYPRICE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a142' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a143' name = 'BC_PRODUCTS_MSRP'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a144' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> </CWM:Namespace.ownedElement> </CWM:Extent> </CWM:Namespace.ownedElement> <CWMMDB:Schema.dimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a145' name = 'BC_PRODUCTS_PRODUCTCODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a146' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PRODUCTCODE'/> <CWM:TaggedValue xmi.id = 'a147' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a148'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a149' name = 'BC_PRODUCTS_PRODUCTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a150' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PRODUCTNAME'/> <CWM:TaggedValue xmi.id = 'a151' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a148'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a152' name = 'BC_PRODUCTS_PRODUCTLINE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a153' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PRODUCTLINE'/> <CWM:TaggedValue xmi.id = 'a154' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a148'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a155' name = 'BC_PRODUCTS_PRODUCTSCALE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a156' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PRODUCTSCALE'/> <CWM:TaggedValue xmi.id = 'a157' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a148'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a158' name = 'BC_PRODUCTS_PRODUCTVENDOR'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a159' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PRODUCTVENDOR'/> <CWM:TaggedValue xmi.id = 'a160' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a148'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a161' name = 'BC_PRODUCTS_PRODUCTDESCRIPTION'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a162' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PRODUCTDESCRIPTION'/> <CWM:TaggedValue xmi.id = 'a163' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a148'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a164' name = 'BC_PRODUCTS_QUANTITYINSTOCK'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a165' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'QUANTITYINSTOCK'/> <CWM:TaggedValue xmi.id = 'a166' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> <CWM:TaggedValue xmi.id = 'a167' tag = 'CONCEPT_PARENT_NAME' value = 'Number'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a148'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a168' name = 'BC_PRODUCTS_BUYPRICE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a169' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'BUYPRICE'/> <CWM:TaggedValue xmi.id = 'a170' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> <CWM:TaggedValue xmi.id = 'a171' tag = 'CONCEPT_PARENT_NAME' value = 'US_Currency'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a148'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a172' name = 'BC_PRODUCTS_MSRP'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a173' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'MSRP'/> <CWM:TaggedValue xmi.id = 'a174' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> <CWM:TaggedValue xmi.id = 'a175' tag = 'CONCEPT_PARENT_NAME' value = 'US_Currency'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a148'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> </CWMMDB:Schema.dimensionedObject> <CWMMDB:Schema.dimension> <CWMMDB:Dimension xmi.id = 'a148' name = 'BT_PRODUCTS_PRODUCTS' isAbstract = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a176' tag = 'BUSINESS_TABLE_PHYSICAL_TABLE_NAME' value = 'PT_PRODUCTS'/> <CWM:TaggedValue xmi.id = 'a177' tag = 'TAG_POSITION_X' value = '91'/> <CWM:TaggedValue xmi.id = 'a178' tag = 'TAG_POSITION_Y' value = '125'/> <CWM:TaggedValue xmi.id = 'a179' tag = 'TABLE_IS_DRAWN' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWMMDB:Dimension.dimensionedObject> <CWMMDB:DimensionedObject xmi.idref = 'a145'/> <CWMMDB:DimensionedObject xmi.idref = 'a149'/> <CWMMDB:DimensionedObject xmi.idref = 'a152'/> <CWMMDB:DimensionedObject xmi.idref = 'a155'/> <CWMMDB:DimensionedObject xmi.idref = 'a158'/> <CWMMDB:DimensionedObject xmi.idref = 'a161'/> <CWMMDB:DimensionedObject xmi.idref = 'a164'/> <CWMMDB:DimensionedObject xmi.idref = 'a168'/> <CWMMDB:DimensionedObject xmi.idref = 'a172'/> </CWMMDB:Dimension.dimensionedObject> </CWMMDB:Dimension> </CWMMDB:Schema.dimension> </CWMMDB:Schema> <CWMMDB:Schema xmi.id = 'a180' name = 'BV_ORDERS'> <CWM:Namespace.ownedElement> <CWM:KeyRelationship xmi.id = 'a181'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a182' tag = 'RELATIONSHIP_TABLENAME_PARENT' value = 'BT_ORDERS_ORDERS'/> <CWM:TaggedValue xmi.id = 'a183' tag = 'RELATIONSHIP_TABLENAME_CHILD' value = 'BT_PAYMENTS_PAYMENTS'/> <CWM:TaggedValue xmi.id = 'a184' tag = 'RELATIONSHIP_FIELDNAME_PARENT' value = 'BC_ORDERS_CUSTOMERNUMBER'/> <CWM:TaggedValue xmi.id = 'a185' tag = 'RELATIONSHIP_FIELDNAME_CHILD' value = 'BC_PAYMENTS_CUSTOMERNUMBER'/> <CWM:TaggedValue xmi.id = 'a186' tag = 'RELATIONSHIP_TYPE' value = '1:1'/> <CWM:TaggedValue xmi.id = 'a187' tag = 'RELATIONSHIP_JOIN_ORDER_KEY'/> <CWM:TaggedValue xmi.id = 'a188' tag = 'RELATIONSHIP_DESCRIPTION'/> </CWM:ModelElement.taggedValue> </CWM:KeyRelationship> <CWM:KeyRelationship xmi.id = 'a189'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a190' tag = 'RELATIONSHIP_TABLENAME_PARENT' value = 'BT_ORDERDETAILS_ORDERDETAILS'/> <CWM:TaggedValue xmi.id = 'a191' tag = 'RELATIONSHIP_TABLENAME_CHILD' value = 'BT_PRODUCTS_PRODUCTS'/> <CWM:TaggedValue xmi.id = 'a192' tag = 'RELATIONSHIP_FIELDNAME_PARENT' value = 'BC_ORDERDETAILS_PRODUCTCODE'/> <CWM:TaggedValue xmi.id = 'a193' tag = 'RELATIONSHIP_FIELDNAME_CHILD' value = 'BC_PRODUCTS_PRODUCTCODE'/> <CWM:TaggedValue xmi.id = 'a194' tag = 'RELATIONSHIP_TYPE' value = 'N:N'/> <CWM:TaggedValue xmi.id = 'a195' tag = 'RELATIONSHIP_JOIN_ORDER_KEY'/> <CWM:TaggedValue xmi.id = 'a196' tag = 'RELATIONSHIP_DESCRIPTION'/> </CWM:ModelElement.taggedValue> </CWM:KeyRelationship> <CWM:KeyRelationship xmi.id = 'a197'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a198' tag = 'RELATIONSHIP_TABLENAME_PARENT' value = 'BT_ORDERS_ORDERS'/> <CWM:TaggedValue xmi.id = 'a199' tag = 'RELATIONSHIP_TABLENAME_CHILD' value = 'BT_ORDERDETAILS_ORDERDETAILS'/> <CWM:TaggedValue xmi.id = 'a200' tag = 'RELATIONSHIP_FIELDNAME_PARENT' value = 'BC_ORDERS_ORDERNUMBER'/> <CWM:TaggedValue xmi.id = 'a201' tag = 'RELATIONSHIP_FIELDNAME_CHILD' value = 'BC_ORDERDETAILS_ORDERNUMBER'/> <CWM:TaggedValue xmi.id = 'a202' tag = 'RELATIONSHIP_TYPE' value = '1:N'/> <CWM:TaggedValue xmi.id = 'a203' tag = 'RELATIONSHIP_JOIN_ORDER_KEY'/> <CWM:TaggedValue xmi.id = 'a204' tag = 'RELATIONSHIP_DESCRIPTION'/> </CWM:ModelElement.taggedValue> </CWM:KeyRelationship> <CWM:KeyRelationship xmi.id = 'a205'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a206' tag = 'RELATIONSHIP_TABLENAME_PARENT' value = 'BT_ORDERS_ORDERS'/> <CWM:TaggedValue xmi.id = 'a207' tag = 'RELATIONSHIP_TABLENAME_CHILD' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> <CWM:TaggedValue xmi.id = 'a208' tag = 'RELATIONSHIP_FIELDNAME_PARENT' value = 'BC_ORDERS_CUSTOMERNUMBER'/> <CWM:TaggedValue xmi.id = 'a209' tag = 'RELATIONSHIP_FIELDNAME_CHILD' value = 'BC_CUSTOMER_W_TER_CUSTOMERNUMBER'/> <CWM:TaggedValue xmi.id = 'a210' tag = 'RELATIONSHIP_TYPE' value = '1:N'/> <CWM:TaggedValue xmi.id = 'a211' tag = 'RELATIONSHIP_JOIN_ORDER_KEY'/> <CWM:TaggedValue xmi.id = 'a212' tag = 'RELATIONSHIP_DESCRIPTION'/> </CWM:ModelElement.taggedValue> </CWM:KeyRelationship> <CWM:Extent xmi.id = 'a213' name = 'BC_CUSTOMER_W_TER_'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a214' tag = 'BUSINESS_CATEGORY_ROOT' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWM:Attribute xmi.id = 'a215' name = 'BC_CUSTOMER_W_TER_TERRITORY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a216' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a217' name = 'BC_CUSTOMER_W_TER_CREDITLIMIT'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a218' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a219' name = 'BC_CUSTOMER_W_TER_EMPLOYEENUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a220' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a221' name = 'BC_CUSTOMER_W_TER_COUNTRY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a222' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a223' name = 'BC_CUSTOMER_W_TER_POSTALCODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a224' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a225' name = 'BC_CUSTOMER_W_TER_STATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a226' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a227' name = 'BC_CUSTOMER_W_TER_CITY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a228' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a229' name = 'BC_CUSTOMER_W_TER_ADDRESSLINE2'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a230' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a231' name = 'BC_CUSTOMER_W_TER_ADDRESSLINE1'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a232' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a233' name = 'BC_CUSTOMER_W_TER_PHONE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a234' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a235' name = 'BC_CUSTOMER_W_TER_CUSTOMERNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a236' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a237' name = 'BC_CUSTOMER_W_TER_CUSTOMERNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a238' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a239' name = 'BC_CUSTOMER_W_TER_CONTACT'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a240' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> </CWM:Namespace.ownedElement> </CWM:Extent> <CWM:Extent xmi.id = 'a241' name = 'CAT_ORDERS'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a242' tag = 'BUSINESS_CATEGORY_ROOT' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWM:Attribute xmi.id = 'a243' name = 'BC_ORDERS_ORDERNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a244' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a245' name = 'BC_ORDERS_ORDERDATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a246' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a247' name = 'BC_ORDERS_REQUIREDDATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a248' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a249' name = 'BC_ORDERS_SHIPPEDDATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a250' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a251' name = 'BC_ORDERS_STATUS'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a252' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a253' name = 'BC_ORDERS_COMMENTS'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a254' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a255' name = 'BC_ORDERDETAILS_QUANTITYORDERED'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a256' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a257' name = 'BC_ORDERDETAILS_PRICEEACH'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a258' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a259' name = 'BC_ORDERDETAILS_TOTAL'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a260' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> </CWM:Namespace.ownedElement> </CWM:Extent> <CWM:Extent xmi.id = 'a261' name = 'CAT_PRODUCTS'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a262' tag = 'BUSINESS_CATEGORY_ROOT' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWM:Attribute xmi.id = 'a263' name = 'BC_ORDERS_COMMENTS'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a264' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a265' name = 'BC_PRODUCTS_PRODUCTCODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a266' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a267' name = 'BC_PRODUCTS_PRODUCTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a268' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a269' name = 'BC_PRODUCTS_PRODUCTLINE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a270' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a271' name = 'BC_PRODUCTS_PRODUCTSCALE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a272' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a273' name = 'BC_PRODUCTS_PRODUCTVENDOR'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a274' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a275' name = 'BC_PRODUCTS_PRODUCTDESCRIPTION'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a276' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a277' name = 'BC_PRODUCTS_BUYPRICE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a278' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a279' name = 'BC_PRODUCTS_MSRP'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a280' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> </CWM:Namespace.ownedElement> </CWM:Extent> <CWM:Extent xmi.id = 'a281' name = 'CAT_PAYMENTS'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a282' tag = 'BUSINESS_CATEGORY_ROOT' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWM:Attribute xmi.id = 'a283' name = 'BC_PAYMENTS_CHECKNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a284' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a285' name = 'BC_PAYMENTS_PAYMENTDATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a286' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> <CWM:Attribute xmi.id = 'a287' name = 'BC_PAYMENTS_AMOUNT'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a288' tag = 'BUSINESS_CATEGORY_TYPE' value = 'Column'/> </CWM:ModelElement.taggedValue> </CWM:Attribute> </CWM:Namespace.ownedElement> </CWM:Extent> </CWM:Namespace.ownedElement> <CWMMDB:Schema.dimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a289' name = 'BC_PAYMENTS_CUSTOMERNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a290' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'CUSTOMERNUMBER'/> <CWM:TaggedValue xmi.id = 'a291' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PAYMENTS_PAYMENTS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a292'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a293' name = 'BC_PAYMENTS_CHECKNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a294' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'CHECKNUMBER'/> <CWM:TaggedValue xmi.id = 'a295' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PAYMENTS_PAYMENTS'/> <CWM:TaggedValue xmi.id = 'a296' tag = 'CONCEPT_PARENT_NAME' value = 'Number'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a292'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a297' name = 'BC_PAYMENTS_PAYMENTDATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a298' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PAYMENTDATE'/> <CWM:TaggedValue xmi.id = 'a299' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PAYMENTS_PAYMENTS'/> <CWM:TaggedValue xmi.id = 'a300' tag = 'CONCEPT_PARENT_NAME' value = 'Date'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a292'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a301' name = 'BC_PAYMENTS_AMOUNT'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a302' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'AMOUNT'/> <CWM:TaggedValue xmi.id = 'a303' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PAYMENTS_PAYMENTS'/> <CWM:TaggedValue xmi.id = 'a304' tag = 'CONCEPT_PARENT_NAME' value = 'US_Currency'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a292'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a305' name = 'BC_PRODUCTS_PRODUCTCODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a306' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PRODUCTCODE'/> <CWM:TaggedValue xmi.id = 'a307' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a308'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a309' name = 'BC_PRODUCTS_PRODUCTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a310' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PRODUCTNAME'/> <CWM:TaggedValue xmi.id = 'a311' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a308'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a312' name = 'BC_PRODUCTS_PRODUCTLINE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a313' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PRODUCTLINE'/> <CWM:TaggedValue xmi.id = 'a314' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a308'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a315' name = 'BC_PRODUCTS_PRODUCTSCALE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a316' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PRODUCTSCALE'/> <CWM:TaggedValue xmi.id = 'a317' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a308'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a318' name = 'BC_PRODUCTS_PRODUCTVENDOR'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a319' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PRODUCTVENDOR'/> <CWM:TaggedValue xmi.id = 'a320' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a308'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a321' name = 'BC_PRODUCTS_PRODUCTDESCRIPTION'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a322' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PRODUCTDESCRIPTION'/> <CWM:TaggedValue xmi.id = 'a323' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a308'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a324' name = 'BC_PRODUCTS_QUANTITYINSTOCK'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a325' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'QUANTITYINSTOCK'/> <CWM:TaggedValue xmi.id = 'a326' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a308'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a327' name = 'BC_PRODUCTS_BUYPRICE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a328' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'BUYPRICE'/> <CWM:TaggedValue xmi.id = 'a329' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> <CWM:TaggedValue xmi.id = 'a330' tag = 'CONCEPT_PARENT_NAME' value = 'US_Currency'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a308'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a331' name = 'BC_PRODUCTS_MSRP'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a332' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'MSRP'/> <CWM:TaggedValue xmi.id = 'a333' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_PRODUCTS_PRODUCTS'/> <CWM:TaggedValue xmi.id = 'a334' tag = 'CONCEPT_PARENT_NAME' value = 'US_Currency'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a308'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a335' name = 'BC_ORDERDETAILS_ORDERNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a336' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'ORDERNUMBER'/> <CWM:TaggedValue xmi.id = 'a337' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_ORDERDETAILS_ORDERDETAILS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a338'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a339' name = 'BC_ORDERDETAILS_PRODUCTCODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a340' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PRODUCTCODE'/> <CWM:TaggedValue xmi.id = 'a341' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_ORDERDETAILS_ORDERDETAILS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a338'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a342' name = 'BC_ORDERDETAILS_QUANTITYORDERED'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a343' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'QUANTITYORDERED'/> <CWM:TaggedValue xmi.id = 'a344' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_ORDERDETAILS_ORDERDETAILS'/> <CWM:TaggedValue xmi.id = 'a345' tag = 'CONCEPT_PARENT_NAME' value = 'Number'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a338'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a346' name = 'BC_ORDERDETAILS_PRICEEACH'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a347' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PRICEEACH'/> <CWM:TaggedValue xmi.id = 'a348' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_ORDERDETAILS_ORDERDETAILS'/> <CWM:TaggedValue xmi.id = 'a349' tag = 'CONCEPT_PARENT_NAME' value = 'US_Currency'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a338'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a350' name = 'BC_ORDERDETAILS_ORDERLINENUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a351' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'ORDERLINENUMBER'/> <CWM:TaggedValue xmi.id = 'a352' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_ORDERDETAILS_ORDERDETAILS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a338'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a353' name = 'BC_ORDERDETAILS_TOTAL'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a354' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PC_TOTAL'/> <CWM:TaggedValue xmi.id = 'a355' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_ORDERDETAILS_ORDERDETAILS'/> <CWM:TaggedValue xmi.id = 'a356' tag = 'CONCEPT_PARENT_NAME' value = 'US_Currency'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a338'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a357' name = 'BC_ORDERS_ORDERNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a358' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'ORDERNUMBER'/> <CWM:TaggedValue xmi.id = 'a359' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_ORDERS_ORDERS'/> <CWM:TaggedValue xmi.id = 'a360' tag = 'CONCEPT_PARENT_NAME' value = 'ID'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a361'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a362' name = 'BC_ORDERS_ORDERDATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a363' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'ORDERDATE'/> <CWM:TaggedValue xmi.id = 'a364' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_ORDERS_ORDERS'/> <CWM:TaggedValue xmi.id = 'a365' tag = 'CONCEPT_PARENT_NAME' value = 'Date'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a361'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a366' name = 'BC_ORDERS_REQUIREDDATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a367' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'REQUIREDDATE'/> <CWM:TaggedValue xmi.id = 'a368' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_ORDERS_ORDERS'/> <CWM:TaggedValue xmi.id = 'a369' tag = 'CONCEPT_PARENT_NAME' value = 'Date'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a361'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a370' name = 'BC_ORDERS_SHIPPEDDATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a371' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'SHIPPEDDATE'/> <CWM:TaggedValue xmi.id = 'a372' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_ORDERS_ORDERS'/> <CWM:TaggedValue xmi.id = 'a373' tag = 'CONCEPT_PARENT_NAME' value = 'Date'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a361'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a374' name = 'BC_ORDERS_STATUS'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a375' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'STATUS'/> <CWM:TaggedValue xmi.id = 'a376' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_ORDERS_ORDERS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a361'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a377' name = 'BC_ORDERS_COMMENTS'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a378' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'COMMENTS'/> <CWM:TaggedValue xmi.id = 'a379' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_ORDERS_ORDERS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a361'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a380' name = 'BC_ORDERS_CUSTOMERNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a381' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'CUSTOMERNUMBER'/> <CWM:TaggedValue xmi.id = 'a382' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_ORDERS_ORDERS'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a361'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a383' name = 'BC_CUSTOMER_W_TER_TERRITORY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a384' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'TERRITORY'/> <CWM:TaggedValue xmi.id = 'a385' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> <CWM:TaggedValue xmi.id = 'a386' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a388' name = 'BC_CUSTOMER_W_TER_CREDITLIMIT'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a389' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'CREDITLIMIT'/> <CWM:TaggedValue xmi.id = 'a390' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a391' name = 'BC_CUSTOMER_W_TER_EMPLOYEENUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a392' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'EMPLOYEENUMBER'/> <CWM:TaggedValue xmi.id = 'a393' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> <CWM:TaggedValue xmi.id = 'a394' tag = 'CONCEPT_PARENT_NAME' value = 'ID'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a395' name = 'BC_CUSTOMER_W_TER_COUNTRY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a396' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'COUNTRY'/> <CWM:TaggedValue xmi.id = 'a397' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a398' name = 'BC_CUSTOMER_W_TER_POSTALCODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a399' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'POSTALCODE'/> <CWM:TaggedValue xmi.id = 'a400' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a401' name = 'BC_CUSTOMER_W_TER_STATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a402' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'STATE'/> <CWM:TaggedValue xmi.id = 'a403' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a404' name = 'BC_CUSTOMER_W_TER_CITY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a405' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'CITY'/> <CWM:TaggedValue xmi.id = 'a406' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a407' name = 'BC_CUSTOMER_W_TER_ADDRESSLINE2'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a408' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'ADDRESSLINE2'/> <CWM:TaggedValue xmi.id = 'a409' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a410' name = 'BC_CUSTOMER_W_TER_ADDRESSLINE1'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a411' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'ADDRESSLINE1'/> <CWM:TaggedValue xmi.id = 'a412' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a413' name = 'BC_CUSTOMER_W_TER_PHONE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a414' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PHONE'/> <CWM:TaggedValue xmi.id = 'a415' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a416' name = 'BC_CUSTOMER_W_TER_CONTACTFIRSTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a417' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'CONTACTFIRSTNAME'/> <CWM:TaggedValue xmi.id = 'a418' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a419' name = 'BC_CUSTOMER_W_TER_CONTACTLASTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a420' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'CONTACTLASTNAME'/> <CWM:TaggedValue xmi.id = 'a421' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a422' name = 'BC_CUSTOMER_W_TER_CUSTOMERNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a423' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'CUSTOMERNAME'/> <CWM:TaggedValue xmi.id = 'a424' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a425' name = 'BC_CUSTOMER_W_TER_CUSTOMERNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a426' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'CUSTOMERNUMBER'/> <CWM:TaggedValue xmi.id = 'a427' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> <CWMMDB:DimensionedObject xmi.id = 'a428' name = 'BC_CUSTOMER_W_TER_CONTACT'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a429' tag = 'BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME' value = 'PC_CONTACT'/> <CWM:TaggedValue xmi.id = 'a430' tag = 'BUSINESS_COLUMN_BUSINESS_TABLE' value = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER'/> </CWM:ModelElement.taggedValue> <CWMMDB:DimensionedObject.dimension> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWMMDB:DimensionedObject.dimension> </CWMMDB:DimensionedObject> </CWMMDB:Schema.dimensionedObject> <CWMMDB:Schema.dimension> <CWMMDB:Dimension xmi.id = 'a292' name = 'BT_PAYMENTS_PAYMENTS' isAbstract = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a431' tag = 'BUSINESS_TABLE_PHYSICAL_TABLE_NAME' value = 'PT_PAYMENTS'/> <CWM:TaggedValue xmi.id = 'a432' tag = 'TAG_POSITION_X' value = '188'/> <CWM:TaggedValue xmi.id = 'a433' tag = 'TAG_POSITION_Y' value = '248'/> <CWM:TaggedValue xmi.id = 'a434' tag = 'TABLE_IS_DRAWN' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWMMDB:Dimension.dimensionedObject> <CWMMDB:DimensionedObject xmi.idref = 'a289'/> <CWMMDB:DimensionedObject xmi.idref = 'a293'/> <CWMMDB:DimensionedObject xmi.idref = 'a297'/> <CWMMDB:DimensionedObject xmi.idref = 'a301'/> </CWMMDB:Dimension.dimensionedObject> </CWMMDB:Dimension> <CWMMDB:Dimension xmi.id = 'a308' name = 'BT_PRODUCTS_PRODUCTS' isAbstract = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a435' tag = 'BUSINESS_TABLE_PHYSICAL_TABLE_NAME' value = 'PT_PRODUCTS'/> <CWM:TaggedValue xmi.id = 'a436' tag = 'TAG_POSITION_X' value = '414'/> <CWM:TaggedValue xmi.id = 'a437' tag = 'TAG_POSITION_Y' value = '131'/> <CWM:TaggedValue xmi.id = 'a438' tag = 'TABLE_IS_DRAWN' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWMMDB:Dimension.dimensionedObject> <CWMMDB:DimensionedObject xmi.idref = 'a305'/> <CWMMDB:DimensionedObject xmi.idref = 'a309'/> <CWMMDB:DimensionedObject xmi.idref = 'a312'/> <CWMMDB:DimensionedObject xmi.idref = 'a315'/> <CWMMDB:DimensionedObject xmi.idref = 'a318'/> <CWMMDB:DimensionedObject xmi.idref = 'a321'/> <CWMMDB:DimensionedObject xmi.idref = 'a324'/> <CWMMDB:DimensionedObject xmi.idref = 'a327'/> <CWMMDB:DimensionedObject xmi.idref = 'a331'/> </CWMMDB:Dimension.dimensionedObject> </CWMMDB:Dimension> <CWMMDB:Dimension xmi.id = 'a338' name = 'BT_ORDERDETAILS_ORDERDETAILS' isAbstract = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a439' tag = 'BUSINESS_TABLE_PHYSICAL_TABLE_NAME' value = 'PT_ORDERDETAILS'/> <CWM:TaggedValue xmi.id = 'a440' tag = 'TAG_POSITION_X' value = '301'/> <CWM:TaggedValue xmi.id = 'a441' tag = 'TAG_POSITION_Y' value = '131'/> <CWM:TaggedValue xmi.id = 'a442' tag = 'TABLE_IS_DRAWN' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWMMDB:Dimension.dimensionedObject> <CWMMDB:DimensionedObject xmi.idref = 'a335'/> <CWMMDB:DimensionedObject xmi.idref = 'a339'/> <CWMMDB:DimensionedObject xmi.idref = 'a342'/> <CWMMDB:DimensionedObject xmi.idref = 'a346'/> <CWMMDB:DimensionedObject xmi.idref = 'a350'/> <CWMMDB:DimensionedObject xmi.idref = 'a353'/> </CWMMDB:Dimension.dimensionedObject> </CWMMDB:Dimension> <CWMMDB:Dimension xmi.id = 'a361' name = 'BT_ORDERS_ORDERS' isAbstract = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a443' tag = 'BUSINESS_TABLE_PHYSICAL_TABLE_NAME' value = 'PT_ORDERS'/> <CWM:TaggedValue xmi.id = 'a444' tag = 'TAG_POSITION_X' value = '188'/> <CWM:TaggedValue xmi.id = 'a445' tag = 'TAG_POSITION_Y' value = '131'/> <CWM:TaggedValue xmi.id = 'a446' tag = 'TABLE_IS_DRAWN' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWMMDB:Dimension.dimensionedObject> <CWMMDB:DimensionedObject xmi.idref = 'a357'/> <CWMMDB:DimensionedObject xmi.idref = 'a362'/> <CWMMDB:DimensionedObject xmi.idref = 'a366'/> <CWMMDB:DimensionedObject xmi.idref = 'a370'/> <CWMMDB:DimensionedObject xmi.idref = 'a374'/> <CWMMDB:DimensionedObject xmi.idref = 'a377'/> <CWMMDB:DimensionedObject xmi.idref = 'a380'/> </CWMMDB:Dimension.dimensionedObject> </CWMMDB:Dimension> <CWMMDB:Dimension xmi.id = 'a387' name = 'BT_CUSTOMER_W_TER_CUSTOMER_W_TER' isAbstract = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a447' tag = 'BUSINESS_TABLE_PHYSICAL_TABLE_NAME' value = 'PT_CUSTOMER_W_TER'/> <CWM:TaggedValue xmi.id = 'a448' tag = 'TAG_POSITION_X' value = '75'/> <CWM:TaggedValue xmi.id = 'a449' tag = 'TAG_POSITION_Y' value = '131'/> <CWM:TaggedValue xmi.id = 'a450' tag = 'TABLE_IS_DRAWN' value = 'Y'/> </CWM:ModelElement.taggedValue> <CWMMDB:Dimension.dimensionedObject> <CWMMDB:DimensionedObject xmi.idref = 'a383'/> <CWMMDB:DimensionedObject xmi.idref = 'a388'/> <CWMMDB:DimensionedObject xmi.idref = 'a391'/> <CWMMDB:DimensionedObject xmi.idref = 'a395'/> <CWMMDB:DimensionedObject xmi.idref = 'a398'/> <CWMMDB:DimensionedObject xmi.idref = 'a401'/> <CWMMDB:DimensionedObject xmi.idref = 'a404'/> <CWMMDB:DimensionedObject xmi.idref = 'a407'/> <CWMMDB:DimensionedObject xmi.idref = 'a410'/> <CWMMDB:DimensionedObject xmi.idref = 'a413'/> <CWMMDB:DimensionedObject xmi.idref = 'a416'/> <CWMMDB:DimensionedObject xmi.idref = 'a419'/> <CWMMDB:DimensionedObject xmi.idref = 'a422'/> <CWMMDB:DimensionedObject xmi.idref = 'a425'/> <CWMMDB:DimensionedObject xmi.idref = 'a428'/> </CWMMDB:Dimension.dimensionedObject> </CWMMDB:Dimension> </CWMMDB:Schema.dimension> </CWMMDB:Schema> <CWMRDB:Table xmi.id = 'a451' name = 'PT_TRIAL_BALANCE' isAbstract = 'false' isTemporary = 'false' isSystem = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a452' tag = 'TABLE_TARGET_DATABASE_NAME' value = 'SampleData'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWMRDB:Column xmi.id = 'a453' name = 'Amount'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a454' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a455' name = 'Detail'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a456' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a457' name = 'Category2'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a458' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a459' name = 'Category'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a460' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a461' name = 'Account_Num'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a462' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a463' name = 'Type'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a464' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> </CWM:Namespace.ownedElement> </CWMRDB:Table> <CWMRDB:Table xmi.id = 'a465' name = 'PT_TIME' isAbstract = 'false' isTemporary = 'false' isSystem = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a466' tag = 'TABLE_TARGET_DATABASE_NAME' value = 'SampleData'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWMRDB:Column xmi.id = 'a467' name = 'QTR_DESC'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a468' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a469' name = 'QTR_NAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a470' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a471' name = 'MONTH_DESC'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a472' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a473' name = 'MONTH_NAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a474' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a475' name = 'YEAR_ID'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a476' tag = 'CONCEPT_PARENT_NAME' value = 'ID'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a477' name = 'QTR_ID'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a478' tag = 'CONCEPT_PARENT_NAME' value = 'ID'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a479' name = 'MONTH_ID'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a480' tag = 'CONCEPT_PARENT_NAME' value = 'ID'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a481' name = 'TIME_ID'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a482' tag = 'CONCEPT_PARENT_NAME' value = 'ID'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> </CWM:Namespace.ownedElement> </CWMRDB:Table> <CWMRDB:Table xmi.id = 'a483' name = 'PT_QUADRANT_ACTUALS' isAbstract = 'false' isTemporary = 'false' isSystem = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a484' tag = 'TABLE_TARGET_DATABASE_NAME' value = 'SampleData'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWMRDB:Column xmi.id = 'a485' name = 'VARIANCE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a486' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a487' name = 'BUDGET'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a488' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a489' name = 'ACTUAL'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a490' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a491' name = 'POSITIONTITLE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a492' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a493' name = 'DEPARTMENT'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a494' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a495' name = 'REGION'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a496' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> </CWM:Namespace.ownedElement> </CWMRDB:Table> <CWMRDB:Table xmi.id = 'a497' name = 'PT_PRODUCTS' isAbstract = 'false' isTemporary = 'false' isSystem = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a498' tag = 'TABLE_TARGET_DATABASE_NAME' value = 'SampleData'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWMRDB:Column xmi.id = 'a499' name = 'MSRP'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a500' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a501' name = 'BUYPRICE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a502' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a503' name = 'QUANTITYINSTOCK'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a504' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a505' name = 'PRODUCTDESCRIPTION'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a506' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a507' name = 'PRODUCTVENDOR'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a508' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a509' name = 'PRODUCTSCALE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a510' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a511' name = 'PRODUCTLINE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a512' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a513' name = 'PRODUCTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a514' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a515' name = 'PRODUCTCODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a516' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> </CWM:Namespace.ownedElement> </CWMRDB:Table> <CWMRDB:Table xmi.id = 'a517' name = 'PT_PAYMENTS' isAbstract = 'false' isTemporary = 'false' isSystem = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a518' tag = 'TABLE_TARGET_DATABASE_NAME' value = 'SampleData'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWMRDB:Column xmi.id = 'a519' name = 'AMOUNT'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a520' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a521' name = 'PAYMENTDATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a522' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a523' name = 'CHECKNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a524' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a525' name = 'CUSTOMERNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a526' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> </CWM:Namespace.ownedElement> </CWMRDB:Table> <CWMRDB:Table xmi.id = 'a527' name = 'PT_ORDERS' isAbstract = 'false' isTemporary = 'false' isSystem = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a528' tag = 'TABLE_TARGET_DATABASE_NAME' value = 'SampleData'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWMRDB:Column xmi.id = 'a529' name = 'CUSTOMERNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a530' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a531' name = 'COMMENTS'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a532' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a533' name = 'STATUS'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a534' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a535' name = 'SHIPPEDDATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a536' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a537' name = 'REQUIREDDATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a538' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a539' name = 'ORDERDATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a540' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a541' name = 'ORDERNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a542' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a543' name = 'PC_ORDER_MONTH'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a544' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> </CWM:Namespace.ownedElement> </CWMRDB:Table> <CWMRDB:Table xmi.id = 'a545' name = 'PT_ORDERFACT' isAbstract = 'false' isTemporary = 'false' isSystem = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a546' tag = 'TABLE_TARGET_DATABASE_NAME' value = 'SampleData'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWMRDB:Column xmi.id = 'a547' name = 'YEAR_ID'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a548' tag = 'CONCEPT_PARENT_NAME' value = 'ID'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a549' name = 'MONTH_ID'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a550' tag = 'CONCEPT_PARENT_NAME' value = 'ID'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a551' name = 'QTR_ID'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a552' tag = 'CONCEPT_PARENT_NAME' value = 'ID'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a553' name = 'TIME_ID'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a554' tag = 'CONCEPT_PARENT_NAME' value = 'ID'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a555' name = 'CUSTOMERNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a556' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a557' name = 'COMMENTS'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a558' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a559' name = 'STATUS'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a560' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a561' name = 'SHIPPEDDATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a562' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a563' name = 'REQUIREDDATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a564' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a565' name = 'ORDERDATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a566' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a567' name = 'TOTALPRICE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a568' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a569' name = 'ORDERLINENUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a570' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a571' name = 'PRICEEACH'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a572' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a573' name = 'QUANTITYORDERED'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a574' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a575' name = 'PRODUCTCODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a576' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a577' name = 'ORDERNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a578' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> </CWM:Namespace.ownedElement> </CWMRDB:Table> <CWMRDB:Table xmi.id = 'a579' name = 'PT_ORDERDETAILS' isAbstract = 'false' isTemporary = 'false' isSystem = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a580' tag = 'TABLE_TARGET_DATABASE_NAME' value = 'SampleData'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWMRDB:Column xmi.id = 'a581' name = 'PC_TOTAL'/> <CWMRDB:Column xmi.id = 'a582' name = 'ORDERLINENUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a583' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a584' name = 'PRICEEACH'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a585' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a586' name = 'QUANTITYORDERED'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a587' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a588' name = 'PRODUCTCODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a589' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a590' name = 'ORDERNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a591' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> </CWM:Namespace.ownedElement> </CWMRDB:Table> <CWMRDB:Table xmi.id = 'a592' name = 'PT_OFFICES' isAbstract = 'false' isTemporary = 'false' isSystem = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a593' tag = 'TABLE_TARGET_DATABASE_NAME' value = 'SampleData'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWMRDB:Column xmi.id = 'a594' name = 'TERRITORY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a595' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a596' name = 'POSTALCODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a597' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a598' name = 'COUNTRY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a599' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a600' name = 'STATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a601' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a602' name = 'ADDRESSLINE2'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a603' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a604' name = 'ADDRESSLINE1'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a605' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a606' name = 'PHONE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a607' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a608' name = 'CITY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a609' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a610' name = 'OFFICECODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a611' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> </CWM:Namespace.ownedElement> </CWMRDB:Table> <CWMRDB:Table xmi.id = 'a612' name = 'PT_EMPLOYEES' isAbstract = 'false' isTemporary = 'false' isSystem = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a613' tag = 'TABLE_TARGET_DATABASE_NAME' value = 'SampleData'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWMRDB:Column xmi.id = 'a614' name = 'JOBTITLE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a615' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a616' name = 'REPORTSTO'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a617' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a618' name = 'OFFICECODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a619' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a620' name = 'EMAIL'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a621' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a622' name = 'EXTENSION'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a623' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a624' name = 'FIRSTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a625' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a626' name = 'LASTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a627' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a628' name = 'EMPLOYEENUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a629' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> </CWM:Namespace.ownedElement> </CWMRDB:Table> <CWMRDB:Table xmi.id = 'a630' name = 'PT_DEPARTMENT_MANAGERS' isAbstract = 'false' isTemporary = 'false' isSystem = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a631' tag = 'TABLE_TARGET_DATABASE_NAME' value = 'SampleData'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWMRDB:Column xmi.id = 'a632' name = 'EMAIL'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a633' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a634' name = 'MANAGER_NAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a635' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a636' name = 'REGION'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a637' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> </CWM:Namespace.ownedElement> </CWMRDB:Table> <CWMRDB:Table xmi.id = 'a638' name = 'PT_CUSTOMER_W_TER' isAbstract = 'false' isTemporary = 'false' isSystem = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a639' tag = 'TABLE_TARGET_DATABASE_NAME' value = 'SampleData'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWMRDB:Column xmi.id = 'a640' name = 'TERRITORY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a641' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a642' name = 'CREDITLIMIT'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a643' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a644' name = 'EMPLOYEENUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a645' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a646' name = 'COUNTRY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a647' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a648' name = 'POSTALCODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a649' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a650' name = 'STATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a651' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a652' name = 'CITY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a653' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a654' name = 'ADDRESSLINE2'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a655' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a656' name = 'ADDRESSLINE1'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a657' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a658' name = 'PHONE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a659' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a660' name = 'CONTACTFIRSTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a661' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a662' name = 'CONTACTLASTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a663' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a664' name = 'CUSTOMERNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a665' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a666' name = 'CUSTOMERNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a667' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a668' name = 'PC_CONTACT'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a669' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> </CWM:Namespace.ownedElement> </CWMRDB:Table> <CWMRDB:Table xmi.id = 'a670' name = 'PT_CUSTOMERS' isAbstract = 'false' isTemporary = 'false' isSystem = 'false'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a671' tag = 'TABLE_TARGET_DATABASE_NAME' value = 'SampleData'/> </CWM:ModelElement.taggedValue> <CWM:Namespace.ownedElement> <CWMRDB:Column xmi.id = 'a672' name = 'CREDITLIMIT'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a673' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a674' name = 'SALESREPEMPLOYEENUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a675' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a676' name = 'COUNTRY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a677' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a678' name = 'POSTALCODE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a679' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a680' name = 'STATE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a681' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a682' name = 'CITY'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a683' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a684' name = 'ADDRESSLINE2'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a685' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a686' name = 'ADDRESSLINE1'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a687' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a688' name = 'PHONE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a689' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a690' name = 'CONTACTFIRSTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a691' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a692' name = 'CONTACTLASTNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a693' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a694' name = 'CUSTOMERNAME'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a695' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> <CWMRDB:Column xmi.id = 'a696' name = 'CUSTOMERNUMBER'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a697' tag = 'CONCEPT_PARENT_NAME' value = 'Base'/> </CWM:ModelElement.taggedValue> </CWMRDB:Column> </CWM:Namespace.ownedElement> </CWMRDB:Table> <CWMRDB:Catalog xmi.id = 'a698' name = 'SampleData'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a699' tag = 'DATABASE_SERVER' value = 'localhost'/> <CWM:TaggedValue xmi.id = 'a700' tag = 'DATABASE_TYPE' value = 'HYPERSONIC'/> <CWM:TaggedValue xmi.id = 'a701' tag = 'DATABASE_ACCESS' value = 'JNDI'/> <CWM:TaggedValue xmi.id = 'a702' tag = 'DATABASE_DATABASE' value = 'SampleData'/> <CWM:TaggedValue xmi.id = 'a703' tag = 'DATABASE_PORT' value = ''/> <CWM:TaggedValue xmi.id = 'a704' tag = 'DATABASE_USERNAME' value = ''/> <CWM:TaggedValue xmi.id = 'a705' tag = 'DATABASE_PASSWORD' value = ''/> <CWM:TaggedValue xmi.id = 'a706' tag = 'DATABASE_SERVERNAME' value = ''/> <CWM:TaggedValue xmi.id = 'a707' tag = 'DATABASE_DATA_TABLESPACE' value = ''/> <CWM:TaggedValue xmi.id = 'a708' tag = 'DATABASE_INDEX_TABLESPACE' value = ''/> <CWM:TaggedValue xmi.id = 'a709' tag = 'DATABASE_ATTRIBUTE_PREFIX_EXTRA_OPTION_MYSQL.defaultFetchSize' value = '500'/> <CWM:TaggedValue xmi.id = 'a710' tag = 'DATABASE_ATTRIBUTE_PREFIX_EXTRA_OPTION_MYSQL.useCursorFetch' value = 'true'/> <CWM:TaggedValue xmi.id = 'a711' tag = 'DATABASE_ATTRIBUTE_PREFIX_STREAM_RESULTS' value = 'Y'/> <CWM:TaggedValue xmi.id = 'a712' tag = 'DATABASE_ATTRIBUTE_PREFIX_USE_POOLING' value = 'N'/> <CWM:TaggedValue xmi.id = 'a713' tag = 'DATABASE_ATTRIBUTE_PREFIX_IS_CLUSTERED' value = 'N'/> <CWM:TaggedValue xmi.id = 'a714' tag = 'DATABASE_ATTRIBUTE_PREFIX_MAXIMUM_POOL_SIZE' value = '10'/> <CWM:TaggedValue xmi.id = 'a715' tag = 'DATABASE_JDBC_URL' value = 'jdbc:hsqldb:hsql://localhost:/SampleData'/> </CWM:ModelElement.taggedValue> </CWMRDB:Catalog> <CWM:Description xmi.id = 'a716' name = 'mask' body = 'MM-dd-yyyy' type = 'String'> <CWM:Description.modelElement> <CWM:Class xmi.idref = 'a1'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a717' name = 'mask' body = '$#,##0.00;($#,##0.00)' type = 'String'> <CWM:Description.modelElement> <CWM:Class xmi.idref = 'a3'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a718' name = 'hidden' body = 'Y' type = 'Boolean'> <CWM:Description.modelElement> <CWM:Class xmi.idref = 'a5'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a719' name = 'mask' body = '#' type = 'String'> <CWM:Description.modelElement> <CWM:Class xmi.idref = 'a7'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a720' name = 'mask' body = '#,###.##' type = 'String'> <CWM:Description.modelElement> <CWM:Class xmi.idref = 'a9'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a721' name = 'font' body = 'Arial-10' type = 'Font'> <CWM:Description.modelElement> <CWM:Class xmi.idref = 'a11'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a722' name = 'name' body = 'Trial Balance' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a451'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a723' name = 'tabletype' body = 'Other' type = 'TableType'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a451'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a724' name = 'target_table' body = 'TRIAL_BALANCE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a451'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a725' name = 'name' body = 'Amount' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a453'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a726' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a453'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a727' name = 'formula' body = 'Amount' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a453'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a728' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a453'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a729' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a453'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a730' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a453'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a731' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a453'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a732' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a453'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a733' name = 'name' body = 'Detail' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a455'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a734' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a455'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a735' name = 'formula' body = 'Detail' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a455'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a736' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a455'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a737' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a455'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a738' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a455'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a739' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a455'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a740' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a455'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a741' name = 'name' body = 'Category2' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a457'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a742' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a457'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a743' name = 'formula' body = 'Category2' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a457'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a744' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a457'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a745' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a457'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a746' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a457'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a747' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a457'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a748' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a457'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a749' name = 'name' body = 'Category' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a459'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a750' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a459'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a751' name = 'formula' body = 'Category' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a459'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a752' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a459'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a753' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a459'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a754' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a459'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a755' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a459'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a756' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a459'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a757' name = 'name' body = 'Account Num' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a461'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a758' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a461'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a759' name = 'formula' body = 'Account_Num' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a461'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a760' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a461'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a761' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a461'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a762' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a461'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a763' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a461'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a764' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a461'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a765' name = 'name' body = 'Type' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a463'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a766' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a463'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a767' name = 'formula' body = 'Type' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a463'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a768' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a463'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a769' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a463'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a770' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a463'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a771' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a463'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a772' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a463'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a773' name = 'name' body = 'Time' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a465'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a774' name = 'tabletype' body = 'Other' type = 'TableType'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a465'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a775' name = 'target_table' body = 'DIM_TIME' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a465'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a776' name = 'name' body = 'Qtr Desc' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a467'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a777' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a467'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a778' name = 'formula' body = 'QTR_DESC' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a467'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a779' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a467'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a780' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a467'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a781' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a467'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a782' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a467'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a783' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a467'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a784' name = 'name' body = 'Qtr Name' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a469'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a785' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a469'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a786' name = 'formula' body = 'QTR_NAME' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a469'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a787' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a469'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a788' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a469'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a789' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a469'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a790' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a469'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a791' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a469'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a792' name = 'name' body = 'Month Desc' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a471'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a793' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a471'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a794' name = 'formula' body = 'MONTH_DESC' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a471'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a795' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a471'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a796' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a471'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a797' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a471'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a798' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a471'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a799' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a471'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a800' name = 'name' body = 'Month Name' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a473'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a801' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a473'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a802' name = 'formula' body = 'MONTH_NAME' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a473'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a803' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a473'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a804' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a473'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a805' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a473'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a806' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a473'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a807' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a473'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a808' name = 'name' body = 'Year Id' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a475'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a809' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a475'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a810' name = 'formula' body = 'YEAR_ID' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a475'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a811' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a475'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a812' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a475'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a813' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a475'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a814' name = 'fieldtype' body = 'Key' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a475'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a815' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a475'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a816' name = 'name' body = 'Qtr Id' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a477'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a817' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a477'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a818' name = 'formula' body = 'QTR_ID' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a477'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a819' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a477'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a820' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a477'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a821' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a477'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a822' name = 'fieldtype' body = 'Key' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a477'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a823' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a477'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a824' name = 'name' body = 'Month Id' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a479'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a825' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a479'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a826' name = 'formula' body = 'MONTH_ID' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a479'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a827' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a479'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a828' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a479'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a829' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a479'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a830' name = 'fieldtype' body = 'Key' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a479'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a831' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a479'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a832' name = 'name' body = 'Time Id' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a481'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a833' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a481'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a834' name = 'formula' body = 'TIME_ID' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a481'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a835' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a481'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a836' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a481'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a837' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a481'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a838' name = 'fieldtype' body = 'Key' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a481'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a839' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a481'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a840' name = 'name' body = 'Quadrant Actuals' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a483'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a841' name = 'tabletype' body = 'Other' type = 'TableType'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a483'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a842' name = 'target_table' body = 'QUADRANT_ACTUALS' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a483'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a843' name = 'name' body = 'Variance' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a485'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a844' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a485'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a845' name = 'formula' body = 'VARIANCE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a485'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a846' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a485'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a847' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a485'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a848' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a485'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a849' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a485'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a850' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a485'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a851' name = 'name' body = 'Budget' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a487'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a852' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a487'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a853' name = 'formula' body = 'BUDGET' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a487'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a854' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a487'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a855' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a487'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a856' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a487'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a857' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a487'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a858' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a487'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a859' name = 'name' body = 'Actual' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a489'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a860' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a489'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a861' name = 'formula' body = 'ACTUAL' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a489'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a862' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a489'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a863' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a489'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a864' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a489'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a865' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a489'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a866' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a489'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a867' name = 'name' body = 'Positiontitle' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a491'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a868' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a491'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a869' name = 'formula' body = 'POSITIONTITLE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a491'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a870' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a491'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a871' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a491'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a872' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a491'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a873' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a491'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a874' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a491'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a875' name = 'name' body = 'Department' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a493'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a876' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a493'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a877' name = 'formula' body = 'DEPARTMENT' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a493'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a878' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a493'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a879' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a493'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a880' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a493'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a881' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a493'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a882' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a493'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a883' name = 'name' body = 'Region' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a495'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a884' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a495'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a885' name = 'formula' body = 'REGION' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a495'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a886' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a495'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a887' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a495'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a888' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a495'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a889' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a495'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a890' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a495'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a891' name = 'name' body = 'Products' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a497'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a892' name = 'tabletype' body = 'Other' type = 'TableType'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a497'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a893' name = 'target_table' body = 'PRODUCTS' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a497'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a894' name = 'name' body = 'MSRP' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a499'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a895' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a499'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a896' name = 'formula' body = 'MSRP' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a499'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a897' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a499'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a898' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a499'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a899' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a499'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a900' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a499'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a901' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a499'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a902' name = 'name' body = 'Buy Price' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a501'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a903' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a501'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a904' name = 'formula' body = 'BUYPRICE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a501'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a905' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a501'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a906' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a501'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a907' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a501'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a908' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a501'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a909' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a501'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a910' name = 'name' body = 'Quantity In Stock' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a503'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a911' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a503'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a912' name = 'formula' body = 'QUANTITYINSTOCK' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a503'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a913' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a503'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a914' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a503'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a915' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a503'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a916' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a503'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a917' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a503'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a918' name = 'name' body = 'Product Description' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a505'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a919' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a505'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a920' name = 'formula' body = 'PRODUCTDESCRIPTION' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a505'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a921' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a505'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a922' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a505'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a923' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a505'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a924' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a505'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a925' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a505'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a926' name = 'name' body = 'Product Vendor' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a507'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a927' name = 'aggregation' body = 'none' type = 'Aggregation'><CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a507'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a928' name = 'formula' body = 'PRODUCTVENDOR' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a507'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a929' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a507'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a930' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a507'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a931' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a507'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a932' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a507'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a933' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a507'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a934' name = 'name' body = 'Product Scale' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a509'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a935' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a509'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a936' name = 'formula' body = 'PRODUCTSCALE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a509'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a937' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a509'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a938' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a509'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a939' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a509'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a940' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a509'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a941' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a509'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a942' name = 'name' body = 'Product Line' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a511'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a943' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a511'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a944' name = 'formula' body = 'PRODUCTLINE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a511'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a945' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a511'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a946' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a511'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a947' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a511'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a948' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a511'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a949' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a511'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a950' name = 'name' body = 'Product Name' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a513'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a951' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a513'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a952' name = 'formula' body = 'PRODUCTNAME' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a513'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a953' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a513'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a954' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a513'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a955' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a513'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a956' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a513'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a957' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a513'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a958' name = 'name' body = 'Product Code' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a515'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a959' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a515'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a960' name = 'formula' body = 'PRODUCTCODE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a515'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a961' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a515'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a962' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a515'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a963' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a515'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a964' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a515'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a965' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a515'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a966' name = 'name' body = 'Payments' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a517'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a967' name = 'tabletype' body = 'Other' type = 'TableType'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a517'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a968' name = 'target_table' body = 'PAYMENTS' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a517'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a969' name = 'name' body = 'Amount' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a519'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a970' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a519'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a971' name = 'formula' body = 'AMOUNT' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a519'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a972' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a519'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a973' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a519'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a974' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a519'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a975' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a519'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a976' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a519'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a977' name = 'name' body = 'Payment Date' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a521'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a978' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a521'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a979' name = 'formula' body = 'PAYMENTDATE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a521'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a980' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a521'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a981' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a521'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a982' name = 'datatype' body = 'Date,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a521'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a983' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a521'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a984' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a521'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a985' name = 'name' body = 'Check Number' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a523'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a986' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a523'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a987' name = 'formula' body = 'CHECKNUMBER' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a523'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a988' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a523'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a989' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a523'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a990' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a523'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a991' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a523'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a992' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a523'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a993' name = 'name' body = 'Customernumber' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a525'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a994' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a525'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a995' name = 'formula' body = 'CUSTOMERNUMBER' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a525'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a996' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a525'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a997' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a525'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a998' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a525'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a999' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a525'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1000' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a525'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1001' name = 'name' body = 'Orders' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a527'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1002' name = 'tabletype' body = 'Other' type = 'TableType'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a527'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1003' name = 'target_table' body = 'ORDERS' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a527'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1004' name = 'name' body = 'Customernumber' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a529'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1005' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a529'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1006' name = 'formula' body = 'CUSTOMERNUMBER' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a529'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1007' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a529'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1008' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a529'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1009' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a529'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1010' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a529'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1011' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a529'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1012' name = 'name' body = 'Comments' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a531'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1013' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a531'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1014' name = 'formula' body = 'COMMENTS' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a531'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1015' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a531'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1016' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a531'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1017' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a531'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1018' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a531'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1019' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a531'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1020' name = 'name' body = 'Status' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a533'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1021' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a533'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1022' name = 'formula' body = 'STATUS' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a533'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1023' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a533'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1024' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a533'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1025' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a533'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1026' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a533'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1027' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a533'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1028' name = 'name' body = 'Shipped Date' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a535'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1029' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a535'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1030' name = 'formula' body = 'SHIPPEDDATE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a535'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1031' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a535'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1032' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a535'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1033' name = 'datatype' body = 'Date,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a535'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1034' name = 'fieldtype' body = 'Key' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a535'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1035' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a535'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1036' name = 'name' body = 'Required Date' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a537'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1037' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a537'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1038' name = 'formula' body = 'REQUIREDDATE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a537'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1039' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a537'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1040' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a537'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1041' name = 'datatype' body = 'Date,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a537'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1042' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a537'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1043' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a537'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1044' name = 'name' body = 'Order Date' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a539'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1045' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a539'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1046' name = 'formula' body = 'ORDERDATE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a539'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1047' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a539'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1048' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a539'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1049' name = 'datatype' body = 'Date,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a539'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1050' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a539'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1051' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a539'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1052' name = 'name' body = 'Order Number' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a541'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1053' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a541'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1054' name = 'formula' body = 'ORDERNUMBER' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a541'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1055' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a541'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1056' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a541'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1057' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a541'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1058' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a541'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1059' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10; &lt;aggregation&gt;count&lt;/aggregation&gt;&#10; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a541'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1060' name = 'name' body = 'Order Month' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a543'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1061' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a543'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1062' name = 'formula' body = 'MONTH([ORDERDATE])&amp;&quot;-&quot;&amp;YEAR([ORDERDATE])' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a543'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1063' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a543'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1064' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a543'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1065' name = 'datatype' body = 'Date,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a543'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1066' name = 'fieldtype' body = 'Other' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a543'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1067' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a543'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1068' name = 'name' body = 'Orderfact' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a545'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1069' name = 'tabletype' body = 'Fact' type = 'TableType'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a545'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1070' name = 'target_table' body = 'ORDERFACT' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a545'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1071' name = 'name' body = 'Year Id' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a547'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1072' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a547'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1073' name = 'formula' body = 'YEAR_ID' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a547'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1074' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a547'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1075' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a547'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1076' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a547'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1077' name = 'fieldtype' body = 'Key' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a547'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1078' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a547'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1079' name = 'name' body = 'Month Id' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a549'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1080' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a549'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1081' name = 'formula' body = 'MONTH_ID' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a549'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1082' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a549'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1083' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a549'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1084' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a549'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1085' name = 'fieldtype' body = 'Key' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a549'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1086' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a549'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1087' name = 'name' body = 'Qtr Id' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a551'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1088' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a551'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1089' name = 'formula' body = 'QTR_ID' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a551'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1090' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a551'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1091' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a551'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1092' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a551'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1093' name = 'fieldtype' body = 'Key' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a551'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1094' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a551'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1095' name = 'name' body = 'Time Id' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a553'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1096' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a553'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1097' name = 'formula' body = 'TIME_ID' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a553'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1098' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a553'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1099' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a553'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1100' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a553'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1101' name = 'fieldtype' body = 'Key' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a553'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1102' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a553'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1103' name = 'name' body = 'Customernumber' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a555'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1104' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a555'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1105' name = 'formula' body = 'CUSTOMERNUMBER' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a555'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1106' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a555'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1107' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a555'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1108' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a555'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1109' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a555'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1110' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a555'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1111' name = 'name' body = 'Comments' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a557'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1112' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a557'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1113' name = 'formula' body = 'COMMENTS' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a557'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1114' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a557'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1115' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a557'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1116' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a557'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1117' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a557'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1118' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a557'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1119' name = 'name' body = 'Status' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a559'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1120' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a559'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1121' name = 'formula' body = 'STATUS' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a559'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1122' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a559'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1123' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a559'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1124' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a559'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1125' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a559'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1126' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a559'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1127' name = 'name' body = 'Shippeddate' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a561'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1128' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a561'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1129' name = 'formula' body = 'SHIPPEDDATE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a561'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1130' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a561'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1131' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a561'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1132' name = 'datatype' body = 'Date,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a561'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1133' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a561'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1134' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a561'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1135' name = 'name' body = 'Requireddate' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a563'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1136' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a563'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1137' name = 'formula' body = 'REQUIREDDATE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a563'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1138' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a563'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1139' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a563'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1140' name = 'datatype' body = 'Date,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a563'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1141' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a563'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1142' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a563'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1143' name = 'name' body = 'Orderdate' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a565'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1144' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a565'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1145' name = 'formula' body = 'ORDERDATE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a565'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1146' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a565'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1147' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a565'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1148' name = 'datatype' body = 'Date,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a565'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1149' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a565'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1150' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a565'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1151' name = 'name' body = 'Totalprice' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a567'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1152' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a567'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1153' name = 'formula' body = 'TOTALPRICE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a567'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1154' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a567'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1155' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a567'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1156' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a567'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1157' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a567'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1158' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a567'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1159' name = 'name' body = 'Orderlinenumber' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a569'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1160' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a569'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1161' name = 'formula' body = 'ORDERLINENUMBER' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a569'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1162' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a569'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1163' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a569'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1164' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a569'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1165' name = 'fieldtype' body = 'Key' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a569'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1166' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a569'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1167' name = 'name' body = 'Priceeach' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a571'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1168' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a571'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1169' name = 'formula' body = 'PRICEEACH' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a571'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1170' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a571'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1171' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a571'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1172' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a571'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1173' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a571'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1174' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a571'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1175' name = 'name' body = 'Quantityordered' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a573'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1176' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a573'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1177' name = 'formula' body = 'QUANTITYORDERED' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a573'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1178' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a573'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1179' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a573'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1180' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a573'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1181' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a573'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1182' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a573'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1183' name = 'name' body = 'Productcode' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a575'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1184' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a575'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1185' name = 'formula' body = 'PRODUCTCODE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a575'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1186' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a575'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1187' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a575'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1188' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a575'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1189' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a575'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1190' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a575'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1191' name = 'name' body = 'Ordernumber' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a577'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1192' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a577'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1193' name = 'formula' body = 'ORDERNUMBER' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a577'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1194' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a577'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1195' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a577'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1196' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a577'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1197' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a577'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1198' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a577'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1199' name = 'name' body = 'Orderdetails' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a579'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1200' name = 'tabletype' body = 'Other' type = 'TableType'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a579'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1201' name = 'target_table' body = 'ORDERDETAILS' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a579'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1202' name = 'name' body = 'Total' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a581'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1203' name = 'aggregation' body = 'sum' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a581'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1204' name = 'formula' body = '[QUANTITYORDERED]*[PRICEEACH]' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a581'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1205' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a581'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1206' name = 'exact' body = 'Y' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a581'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1207' name = 'datatype' body = 'Unknown,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a581'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1208' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a581'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1209' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10; &lt;aggregation&gt;sum&lt;/aggregation&gt;&#10; &lt;aggregation&gt;average&lt;/aggregation&gt;&#10; &lt;aggregation&gt;minimum&lt;/aggregation&gt;&#10; &lt;aggregation&gt;maximum&lt;/aggregation&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a581'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1210' name = 'name' body = 'Orderlinenumber' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a582'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1211' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a582'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1212' name = 'formula' body = 'ORDERLINENUMBER' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a582'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1213' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a582'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1214' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a582'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1215' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a582'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1216' name = 'fieldtype' body = 'Key' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a582'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1217' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a582'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1218' name = 'name' body = 'Price Each' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a584'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1219' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a584'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1220' name = 'formula' body = 'PRICEEACH' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a584'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1221' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a584'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1222' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a584'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1223' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a584'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1224' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a584'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1225' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a584'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1226' name = 'name' body = 'Quantity Ordered' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a586'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1227' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a586'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1228' name = 'formula' body = 'QUANTITYORDERED' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a586'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1229' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a586'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1230' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a586'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1231' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a586'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1232' name = 'fieldtype' body = 'Fact' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a586'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1233' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a586'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1234' name = 'name' body = 'Productcode' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a588'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1235' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a588'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1236' name = 'formula' body = 'PRODUCTCODE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a588'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1237' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a588'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1238' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a588'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1239' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a588'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1240' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a588'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1241' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a588'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1242' name = 'name' body = 'Ordernumber' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a590'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1243' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a590'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1244' name = 'formula' body = 'ORDERNUMBER' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a590'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1245' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a590'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1246' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a590'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1247' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a590'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1248' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a590'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1249' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10; &lt;aggregation&gt;count&lt;/aggregation&gt;&#10; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a590'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1250' name = 'name' body = 'Offices' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a592'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1251' name = 'tabletype' body = 'Other' type = 'TableType'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a592'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1252' name = 'target_table' body = 'OFFICES' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a592'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1253' name = 'name' body = 'Territory' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a594'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1254' name = 'name' body = 'Territorio' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a594'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1255' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a594'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1256' name = 'formula' body = 'TERRITORY' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a594'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1257' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a594'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1258' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a594'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1259' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a594'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1260' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a594'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1261' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a594'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1262' name = 'name' body = 'Postal code' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a596'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1263' name = 'name' body = 'Código postal' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a596'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1264' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a596'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1265' name = 'formula' body = 'POSTALCODE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a596'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1266' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a596'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1267' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a596'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1268' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a596'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1269' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a596'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1270' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a596'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1271' name = 'name' body = 'Country' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a598'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1272' name = 'name' body = 'País' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a598'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1273' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a598'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1274' name = 'formula' body = 'COUNTRY' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a598'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1275' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a598'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1276' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a598'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1277' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a598'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1278' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a598'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1279' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a598'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1280' name = 'name' body = 'State' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a600'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1281' name = 'name' body = 'Estado' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a600'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1282' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a600'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1283' name = 'formula' body = 'STATE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a600'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1284' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a600'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1285' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a600'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1286' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a600'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1287' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a600'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1288' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a600'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1289' name = 'name' body = 'Address Line 2' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a602'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1290' name = 'name' body = 'Dirección 2' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a602'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1291' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a602'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1292' name = 'formula' body = 'ADDRESSLINE2' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a602'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1293' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a602'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1294' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a602'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1295' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a602'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1296' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a602'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1297' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a602'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1298' name = 'name' body = 'Address Line 1' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a604'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1299' name = 'name' body = 'Dirección 1' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a604'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1300' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a604'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1301' name = 'formula' body = 'ADDRESSLINE1' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a604'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1302' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a604'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1303' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a604'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1304' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a604'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1305' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a604'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1306' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a604'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1307' name = 'name' body = 'Phone Number' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a606'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1308' name = 'name' body = 'Número De Teléfono' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a606'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1309' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a606'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1310' name = 'formula' body = 'PHONE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a606'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1311' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a606'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1312' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a606'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1313' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a606'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1314' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a606'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1315' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a606'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1316' name = 'name' body = 'City' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a608'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1317' name = 'name' body = 'Ciudad' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a608'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1318' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a608'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1319' name = 'formula' body = 'CITY' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a608'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1320' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a608'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1321' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a608'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1322' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a608'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1323' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a608'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1324' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a608'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1325' name = 'name' body = 'Office Code' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a610'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1326' name = 'name' body = 'Código De la Oficina' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a610'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1327' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a610'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1328' name = 'formula' body = 'OFFICECODE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a610'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1329' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a610'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1330' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a610'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1331' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a610'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1332' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a610'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1333' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a610'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1334' name = 'name' body = 'Employees' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a612'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1335' name = 'tabletype' body = 'Other' type = 'TableType'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a612'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1336' name = 'target_table' body = 'EMPLOYEES' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a612'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1337' name = 'name' body = 'Job Title' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a614'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1338' name = 'name' body = 'Título Del Trabajo' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a614'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1339' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a614'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1340' name = 'formula' body = 'JOBTITLE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a614'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1341' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a614'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1342' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a614'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1343' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a614'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1344' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a614'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1345' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a614'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1346' name = 'name' body = 'Manager' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a616'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1347' name = 'name' body = 'Encargado' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a616'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1348' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a616'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1349' name = 'formula' body = 'REPORTSTO' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a616'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1350' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a616'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1351' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a616'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1352' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a616'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1353' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a616'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1354' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a616'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1355' name = 'name' body = 'Officecode' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a618'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1356' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a618'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1357' name = 'formula' body = 'OFFICECODE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a618'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1358' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a618'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1359' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a618'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1360' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a618'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1361' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a618'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1362' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a618'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1363' name = 'name' body = 'Email' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a620'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1364' name = 'name' body = 'Email' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a620'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1365' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a620'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1366' name = 'formula' body = 'EMAIL' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a620'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1367' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a620'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1368' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a620'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1369' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a620'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1370' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a620'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1371' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a620'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1372' name = 'name' body = 'Extension' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a622'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1373' name = 'name' body = 'Extensión' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a622'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1374' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a622'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1375' name = 'formula' body = 'EXTENSION' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a622'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1376' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a622'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1377' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a622'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1378' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a622'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1379' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a622'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1380' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a622'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1381' name = 'name' body = 'First Name' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a624'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1382' name = 'name' body = 'Nombre' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a624'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1383' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a624'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1384' name = 'formula' body = 'FIRSTNAME' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a624'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1385' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a624'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1386' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a624'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1387' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a624'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1388' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a624'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1389' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a624'/> </CWM:Description.modelElement></CWM:Description> <CWM:Description xmi.id = 'a1390' name = 'name' body = 'Last Name' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a626'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1391' name = 'name' body = 'Nombre Pasado' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a626'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1392' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a626'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1393' name = 'formula' body = 'LASTNAME' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a626'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1394' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a626'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1395' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a626'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1396' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a626'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1397' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a626'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1398' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a626'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1399' name = 'name' body = 'Employee ID' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a628'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1400' name = 'name' body = 'Identificación Del Empleado' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a628'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1401' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a628'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1402' name = 'formula' body = 'EMPLOYEENUMBER' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a628'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1403' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a628'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1404' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a628'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1405' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a628'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1406' name = 'fieldtype' body = 'Key' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a628'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1407' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a628'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1408' name = 'name' body = 'Department Managers' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a630'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1409' name = 'tabletype' body = 'Other' type = 'TableType'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a630'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1410' name = 'target_table' body = 'DEPARTMENT_MANAGERS' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a630'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1411' name = 'name' body = 'Email' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a632'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1412' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a632'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1413' name = 'formula' body = 'EMAIL' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a632'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1414' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a632'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1415' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a632'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1416' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a632'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1417' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a632'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1418' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a632'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1419' name = 'name' body = 'Manager Name' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a634'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1420' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a634'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1421' name = 'formula' body = 'MANAGER_NAME' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a634'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1422' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a634'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1423' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a634'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1424' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a634'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1425' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a634'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1426' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a634'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1427' name = 'name' body = 'Region' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a636'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1428' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a636'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1429' name = 'formula' body = 'REGION' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a636'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1430' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a636'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1431' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a636'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1432' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a636'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1433' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a636'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1434' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a636'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1435' name = 'name' body = 'Customer W Ter' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a638'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1436' name = 'tabletype' body = 'Other' type = 'TableType'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a638'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1437' name = 'target_table' body = 'CUSTOMER_W_TER' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a638'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1438' name = 'name' body = 'Territory' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a640'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1439' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a640'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1440' name = 'formula' body = 'TERRITORY' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a640'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1441' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a640'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1442' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a640'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1443' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a640'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1444' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a640'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1445' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a640'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1446' name = 'name' body = 'Credit Limit' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a642'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1447' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a642'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1448' name = 'formula' body = 'CREDITLIMIT' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a642'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1449' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a642'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1450' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a642'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1451' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a642'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1452' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a642'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1453' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a642'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1454' name = 'name' body = 'Employee Number' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a644'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1455' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a644'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1456' name = 'formula' body = 'EMPLOYEENUMBER' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a644'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1457' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a644'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1458' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a644'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1459' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a644'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1460' name = 'fieldtype' body = 'Key' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a644'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1461' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a644'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1462' name = 'name' body = 'Country' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a646'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1463' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a646'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1464' name = 'formula' body = 'COUNTRY' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a646'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1465' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a646'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1466' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a646'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1467' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a646'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1468' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a646'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1469' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a646'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1470' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a646'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1471' name = 'name' body = 'Postalcode' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a648'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1472' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a648'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1473' name = 'formula' body = 'POSTALCODE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a648'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1474' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a648'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1475' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a648'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1476' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a648'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1477' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a648'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1478' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a648'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1479' name = 'name' body = 'State' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a650'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1480' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a650'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1481' name = 'formula' body = 'STATE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a650'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1482' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a650'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1483' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a650'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1484' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a650'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1485' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a650'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1486' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a650'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1487' name = 'name' body = 'City' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a652'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1488' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a652'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1489' name = 'formula' body = 'CITY' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a652'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1490' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a652'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1491' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a652'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1492' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a652'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1493' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a652'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1494' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a652'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1495' name = 'name' body = 'Addressline2' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a654'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1496' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a654'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1497' name = 'formula' body = 'ADDRESSLINE2' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a654'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1498' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a654'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1499' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a654'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1500' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a654'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1501' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a654'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1502' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a654'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1503' name = 'name' body = 'Addressline1' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a656'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1504' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a656'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1505' name = 'formula' body = 'ADDRESSLINE1' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a656'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1506' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a656'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1507' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a656'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1508' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a656'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1509' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a656'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1510' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a656'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1511' name = 'name' body = 'Phone' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a658'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1512' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a658'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1513' name = 'formula' body = 'PHONE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a658'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1514' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a658'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1515' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a658'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1516' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a658'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1517' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a658'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1518' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a658'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1519' name = 'name' body = 'Contact First Name' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a660'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1520' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a660'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1521' name = 'formula' body = 'CONTACTFIRSTNAME' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a660'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1522' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a660'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1523' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a660'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1524' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a660'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1525' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a660'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1526' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a660'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1527' name = 'name' body = 'Contact Last Name' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a662'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1528' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a662'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1529' name = 'formula' body = 'CONTACTLASTNAME' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a662'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1530' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a662'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1531' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a662'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1532' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a662'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1533' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a662'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1534' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a662'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1535' name = 'name' body = 'Customer Name' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a664'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1536' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a664'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1537' name = 'formula' body = 'CUSTOMERNAME' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a664'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1538' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a664'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1539' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a664'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1540' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a664'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1541' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a664'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1542' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a664'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1543' name = 'name' body = 'Customer Number' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a666'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1544' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a666'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1545' name = 'formula' body = 'CUSTOMERNUMBER' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a666'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1546' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a666'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1547' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a666'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1548' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a666'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1549' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a666'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1550' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a666'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1551' name = 'name' body = 'Contact Name' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a668'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1552' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a668'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1553' name = 'formula' body = '[CONTACTLASTNAME]+&quot;, &quot;+[CONTACTFIRSTNAME]' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a668'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1554' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a668'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1555' name = 'exact' body = 'Y' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a668'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1556' name = 'datatype' body = 'Unknown,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a668'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1557' name = 'fieldtype' body = 'Other' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a668'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1558' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a668'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1559' name = 'name' body = 'Customers' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a670'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1560' name = 'tabletype' body = 'Other' type = 'TableType'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a670'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1561' name = 'target_table' body = 'CUSTOMERS' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Table xmi.idref = 'a670'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1562' name = 'name' body = 'Creditlimit' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a672'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1563' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a672'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1564' name = 'formula' body = 'CREDITLIMIT' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a672'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1565' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a672'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1566' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a672'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1567' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a672'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1568' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a672'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1569' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a672'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1570' name = 'name' body = 'Salesrepemployeenumber' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a674'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1571' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a674'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1572' name = 'formula' body = 'SALESREPEMPLOYEENUMBER' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a674'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1573' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a674'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1574' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a674'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1575' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a674'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1576' name = 'fieldtype' body = 'Key' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a674'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1577' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a674'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1578' name = 'name' body = 'Country' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a676'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1579' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a676'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1580' name = 'formula' body = 'COUNTRY' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a676'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1581' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a676'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1582' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a676'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1583' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a676'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1584' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a676'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1585' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a676'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1586' name = 'name' body = 'Zip' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a678'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1587' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a678'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1588' name = 'formula' body = 'POSTALCODE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a678'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1589' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a678'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1590' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a678'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1591' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a678'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1592' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a678'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1593' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a678'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1594' name = 'name' body = 'State' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a680'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1595' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a680'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1596' name = 'formula' body = 'STATE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a680'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1597' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a680'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1598' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a680'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1599' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a680'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1600' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a680'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1601' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a680'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1602' name = 'name' body = 'City' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a682'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1603' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a682'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1604' name = 'formula' body = 'CITY' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a682'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1605' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a682'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1606' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a682'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1607' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a682'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1608' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a682'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1609' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a682'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1610' name = 'name' body = 'Address Line 2' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a684'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1611' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a684'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1612' name = 'formula' body = 'ADDRESSLINE2' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a684'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1613' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a684'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1614' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a684'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1615' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a684'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1616' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a684'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1617' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a684'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1618' name = 'name' body = 'Address Line 1' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a686'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1619' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a686'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1620' name = 'formula' body = 'ADDRESSLINE1' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a686'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1621' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a686'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1622' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a686'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1623' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a686'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1624' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a686'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1625' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a686'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1626' name = 'name' body = 'Phone' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a688'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1627' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a688'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1628' name = 'formula' body = 'PHONE' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a688'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1629' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a688'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1630' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a688'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1631' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a688'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1632' name = 'fieldtype' body = 'Attribute' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a688'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1633' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a688'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1634' name = 'name' body = 'Contactfirstname' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a690'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1635' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a690'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1636' name = 'formula' body = 'CONTACTFIRSTNAME' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a690'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1637' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a690'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1638' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a690'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1639' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a690'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1640' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a690'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1641' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a690'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1642' name = 'name' body = 'Contactlastname' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a692'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1643' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a692'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1644' name = 'formula' body = 'CONTACTLASTNAME' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a692'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1645' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a692'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1646' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a692'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1647' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a692'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1648' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a692'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1649' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a692'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1650' name = 'name' body = 'Customer Name' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a694'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1651' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a694'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1652' name = 'formula' body = 'CUSTOMERNAME' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a694'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1653' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a694'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1654' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a694'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1655' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a694'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1656' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a694'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1657' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a694'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1658' name = 'name' body = 'Customer Number' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a696'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1659' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a696'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1660' name = 'formula' body = 'CUSTOMERNUMBER' type = 'String'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a696'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1661' name = 'hidden' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a696'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1662' name = 'exact' body = 'N' type = 'Boolean'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a696'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1663' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a696'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1664' name = 'fieldtype' body = 'Dimension' type = 'FieldType'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a696'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1665' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMRDB:Column xmi.idref = 'a696'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1666' name = 'name' body = 'Human Resources' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Schema xmi.idref = 'a15'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1667' name = 'name' body = 'Recursos Humanos' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Schema xmi.idref = 'a15'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1668' name = 'description' body = 'This model contains information about Employees.' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Schema xmi.idref = 'a15'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1669' name = 'description' body = 'Este modelo contiene la información sobre empleados.' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Schema xmi.idref = 'a15'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1670' name = 'security' body = '&lt;security&gt;&#10; &lt;owner-rights&gt;&#10; &lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Administrator&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;31&lt;/rights&gt;&#10; &lt;/owner-rights&gt;&#10;&lt;/security&gt;&#10;' type = 'Security'> <CWM:Description.modelElement> <CWMMDB:Schema xmi.idref = 'a15'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1671' name = 'row_level_security' body = '&lt;row-level-security type=&quot;none&quot;&gt;&lt;formula&gt;&lt;![CDATA[]]&gt;&lt;/formula&gt;&lt;entries&gt;&lt;/entries&gt;&lt;/row-level-security&gt;' type = 'RowLevelSecurity'> <CWM:Description.modelElement> <CWMMDB:Schema xmi.idref = 'a15'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1672' name = 'name' body = 'Employees' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Dimension xmi.idref = 'a64'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1673' name = 'name' body = 'Offices' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Dimension xmi.idref = 'a89'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1674' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a105'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1675' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a108'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1676' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a111'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1677' name = 'name' body = 'Offices' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a24'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1678' name = 'name' body = 'Oficinas' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a24'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1679' name = 'security' body = '&lt;security&gt;&#10; &lt;owner-rights&gt;&#10; &lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Administrator&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;31&lt;/rights&gt;&#10; &lt;/owner-rights&gt;&#10; &lt;owner-rights&gt;&#10; &lt;owner&gt;&lt;type&gt;user&lt;/type&gt;&lt;name&gt;suzy&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;31&lt;/rights&gt;&#10; &lt;/owner-rights&gt;&#10;&lt;/security&gt;&#10;' type = 'Security'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a24'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1680' name = 'name' body = 'Employees' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a44'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1681' name = 'name' body = 'Empleados' language = 'es' type = 'LocString'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a44'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1682' name = 'security' body = '&lt;security&gt;&#10; &lt;owner-rights&gt;&#10; &lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Administrator&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;31&lt;/rights&gt;&#10; &lt;/owner-rights&gt;&#10; &lt;owner-rights&gt;&#10; &lt;owner&gt;&lt;type&gt;user&lt;/type&gt;&lt;name&gt;suzy&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;31&lt;/rights&gt;&#10; &lt;/owner-rights&gt;&#10;&lt;/security&gt;&#10;' type = 'Security'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a44'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1683' name = 'name' body = 'Inventory' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Schema xmi.idref = 'a122'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1684' name = 'description' body = 'This model contains information about products and product inventory.' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Schema xmi.idref = 'a122'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1685' name = 'security' body = '&lt;security&gt;&#10; &lt;owner-rights&gt;&#10; &lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Administrator&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;31&lt;/rights&gt;&#10; &lt;/owner-rights&gt;&#10; &lt;owner-rights&gt;&#10; &lt;owner&gt;&lt;type&gt;user&lt;/type&gt;&lt;name&gt;suzy&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;31&lt;/rights&gt;&#10; &lt;/owner-rights&gt;&#10;&lt;/security&gt;&#10;' type = 'Security'> <CWM:Description.modelElement> <CWMMDB:Schema xmi.idref = 'a122'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1686' name = 'row_level_security' body = '&lt;row-level-security type=&quot;none&quot;&gt;&lt;formula&gt;&lt;![CDATA[]]&gt;&lt;/formula&gt;&lt;entries&gt;&lt;/entries&gt;&lt;/row-level-security&gt;' type = 'RowLevelSecurity'> <CWM:Description.modelElement> <CWMMDB:Schema xmi.idref = 'a122'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1687' name = 'name' body = 'Products' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Dimension xmi.idref = 'a148'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1688' name = 'name' body = 'Products' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a123'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1689' name = 'description' body = 'This category contains information about current products.' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a123'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1690' name = 'security' body = '&lt;security&gt;&#10; &lt;owner-rights&gt;&#10; &lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Administrator&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;31&lt;/rights&gt;&#10; &lt;/owner-rights&gt;&#10; &lt;owner-rights&gt;&#10; &lt;owner&gt;&lt;type&gt;user&lt;/type&gt;&lt;name&gt;suzy&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;31&lt;/rights&gt;&#10; &lt;/owner-rights&gt;&#10;&lt;/security&gt;&#10;' type = 'Security'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a123'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1691' name = 'name' body = 'Inventory and Cost' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a137'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1692' name = 'description' body = 'This category contains details on product costs, MSRP and quantity in stock.' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a137'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1693' name = 'security' body = '&lt;security&gt;&#10; &lt;owner-rights&gt;&#10; &lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Administrator&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;31&lt;/rights&gt;&#10; &lt;/owner-rights&gt;&#10; &lt;owner-rights&gt;&#10; &lt;owner&gt;&lt;type&gt;user&lt;/type&gt;&lt;name&gt;suzy&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;31&lt;/rights&gt;&#10; &lt;/owner-rights&gt;&#10;&lt;/security&gt;&#10;' type = 'Security'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a137'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1694' name = 'name' body = 'Orders' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Schema xmi.idref = 'a180'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1695' name = 'description' body = 'This model contains information about customers and their orders.' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Schema xmi.idref = 'a180'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1696' name = 'security' body = '&lt;security&gt;&#10; &lt;owner-rights&gt;&#10; &lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Power User&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;1&lt;/rights&gt;&#10; &lt;/owner-rights&gt;&#10; &lt;owner-rights&gt;&#10; &lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Administrator&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;31&lt;/rights&gt;&#10; &lt;/owner-rights&gt;&#10; &lt;owner-rights&gt;&#10; &lt;owner&gt;&lt;type&gt;user&lt;/type&gt;&lt;name&gt;suzy&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;31&lt;/rights&gt;&#10; &lt;/owner-rights&gt;&#10;&lt;/security&gt;&#10;' type = 'Security'> <CWM:Description.modelElement> <CWMMDB:Schema xmi.idref = 'a180'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1697' name = 'row_level_security' body = '&lt;row-level-security type=&quot;role-based&quot;&gt;&lt;formula&gt;&lt;![CDATA[]]&gt;&lt;/formula&gt;&lt;entries&gt;&lt;entry&gt;&lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Viewer&lt;/name&gt;&lt;/owner&gt;&lt;formula&gt;&lt;![CDATA[TRUE()]]&gt;&lt;/formula&gt;&lt;/entry&gt;&lt;entry&gt;&lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Anonymous&lt;/name&gt;&lt;/owner&gt;&lt;formula&gt;&lt;![CDATA[TRUE()]]&gt;&lt;/formula&gt;&lt;/entry&gt;&lt;entry&gt;&lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Administrator&lt;/name&gt;&lt;/owner&gt;&lt;formula&gt;&lt;![CDATA[TRUE()]]&gt;&lt;/formula&gt;&lt;/entry&gt;&lt;entry&gt;&lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Report Author&lt;/name&gt;&lt;/owner&gt;&lt;formula&gt;&lt;![CDATA[TRUE()]]&gt;&lt;/formula&gt;&lt;/entry&gt;&lt;entry&gt;&lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Business Analyst&lt;/name&gt;&lt;/owner&gt;&lt;formula&gt;&lt;![CDATA[TRUE()]]&gt;&lt;/formula&gt;&lt;/entry&gt;&lt;entry&gt;&lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Power User&lt;/name&gt;&lt;/owner&gt;&lt;formula&gt;&lt;![CDATA[[BT_CUSTOMER_W_TER_CUSTOMER_W_TER.BC_CUSTOMER_W_TER_TERRITORY]=&quot;NA&quot;]]&gt;&lt;/formula&gt;&lt;/entry&gt;&lt;/entries&gt;&lt;/row-level-security&gt;' type = 'RowLevelSecurity'> <CWM:Description.modelElement> <CWMMDB:Schema xmi.idref = 'a180'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1698' name = 'name' body = 'Payments' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Dimension xmi.idref = 'a292'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1699' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a293'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1700' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a297'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1701' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a301'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1702' name = 'name' body = 'Products' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Dimension xmi.idref = 'a308'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1703' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a305'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1704' name = 'column_width' body = '1,12' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a312'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1705' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a315'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1706' name = 'column_width' body = '1,18' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a318'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1707' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a324'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1708' name = 'aggregation' body = 'sum' type = 'Aggregation'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a327'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1709' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a327'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1710' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10; &lt;aggregation&gt;sum&lt;/aggregation&gt;&#10; &lt;aggregation&gt;average&lt;/aggregation&gt;&#10; &lt;aggregation&gt;minimum&lt;/aggregation&gt;&#10; &lt;aggregation&gt;maximum&lt;/aggregation&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a327'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1711' name = 'aggregation' body = 'average' type = 'Aggregation'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a331'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1712' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a331'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1713' name = 'name' body = 'Orderdetails' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Dimension xmi.idref = 'a338'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1714' name = 'datatype' body = 'String,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a335'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1715' name = 'alignment' body = 'left' type = 'Alignment'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a335'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1716' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a335'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1717' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a339'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1718' name = 'aggregation' body = 'sum' type = 'Aggregation'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a342'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1719' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a342'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1720' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10; &lt;aggregation&gt;sum&lt;/aggregation&gt;&#10; &lt;aggregation&gt;average&lt;/aggregation&gt;&#10; &lt;aggregation&gt;minimum&lt;/aggregation&gt;&#10; &lt;aggregation&gt;maximum&lt;/aggregation&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a342'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1721' name = 'name' body = 'Price Sold' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a346'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1722' name = 'aggregation' body = 'sum' type = 'Aggregation'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a346'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1723' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a346'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1724' name = 'aggregation_list' body = '&lt;aggregationlist&gt;&#10; &lt;aggregation&gt;sum&lt;/aggregation&gt;&#10; &lt;aggregation&gt;average&lt;/aggregation&gt;&#10; &lt;aggregation&gt;minimum&lt;/aggregation&gt;&#10; &lt;aggregation&gt;maximum&lt;/aggregation&gt;&#10;&lt;/aggregationlist&gt;&#10;' type = 'AggregationList'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a346'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1725' name = 'comments' body = 'This field is computed as Quantity Ordered times Price Sold' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a353'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1726' name = 'aggregation' body = 'sum' type = 'Aggregation'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a353'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1727' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a353'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1728' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a353'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1729' name = 'name' body = 'Orders' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Dimension xmi.idref = 'a361'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1730' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a357'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1731' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a362'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1732' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a362'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1733' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a366'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1734' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a370'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1735' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a377'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1736' name = 'foreground_color' body = '0,0,160' type = 'Color'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a377'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1737' name = 'font' body = 'Arial-10-italic' type = 'Font'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a377'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1738' name = 'column_width' body = '1,35' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a377'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1739' name = 'datatype' body = 'Numeric,-1,-1' type = 'DataType'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a380'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1740' name = 'column_width' body = '1,12' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a380'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1741' name = 'name' body = 'Customer W Ter' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWMMDB:Dimension xmi.idref = 'a387'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1742' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a383'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1743' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a383'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1744' name = 'foreground_color' body = '255,0,0' type = 'Color'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a388'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1745' name = 'column_width' body = '1,8' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a388'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1746' name = 'column_width' body = '1,12' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a391'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1747' name = 'column_width' body = '1,12' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a395'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1748' name = 'column_width' body = '1,12' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a401'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1749' name = 'column_width' body = '1,12' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a404'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1750' name = 'column_width' body = '1,10' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a413'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1751' name = 'column_width' body = '1,12' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a416'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1752' name = 'column_width' body = '1,12' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a419'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1753' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a422'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1754' name = 'column_width' body = '1,22' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a422'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1755' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a425'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1756' name = 'column_width' body = '1,12' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a425'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1757' name = 'aggregation' body = 'none' type = 'Aggregation'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a428'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1758' name = 'column_width' body = '1,20' type = 'ColumnWidth'> <CWM:Description.modelElement> <CWMMDB:DimensionedObject xmi.idref = 'a428'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1759' name = 'name' body = 'Customer' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a213'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1760' name = 'name' body = 'Orders' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a241'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1761' name = 'description' body = 'This category contains information about orders including ordernumber, order date, required date, shipping status, etc.' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a241'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1762' name = 'name' body = 'Products' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a261'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1763' name = 'description' body = 'This category contains inforamtion about products.' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a261'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1764' name = 'name' body = 'Payments' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a281'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Description xmi.id = 'a1765' name = 'description' body = 'This category contains details about customer payments.' language = 'en_US' type = 'LocString'> <CWM:Description.modelElement> <CWM:Extent xmi.idref = 'a281'/> </CWM:Description.modelElement> </CWM:Description> <CWM:Event xmi.id = 'a1766' name = 'SECURITY_SERVICE'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a1767' tag = 'SECURITY_SERVICE_URL' value = 'http://localhost:8080/pentaho/ServiceAction'/> <CWM:TaggedValue xmi.id = 'a1768' tag = 'SECURITY_DETAILS_NAME' value = 'SecurityDetails'/> <CWM:TaggedValue xmi.id = 'a1769' tag = 'SECURITY_DETAIL_NAME' value = 'details'/> <CWM:TaggedValue xmi.id = 'a1770' tag = 'SECURITY_DETAIL_TYPE' value = 'All'/> <CWM:TaggedValue xmi.id = 'a1771' tag = 'SECURITY_USERNAME' value = 'admin'/> <CWM:TaggedValue xmi.id = 'a1772' tag = 'SECURITY_PASSWORD' value = 'password'/> <CWM:TaggedValue xmi.id = 'a1773' tag = 'SECURITY_PROXY_HOST' value = ''/> <CWM:TaggedValue xmi.id = 'a1774' tag = 'SECURITY_PROXY_PORT' value = ''/> <CWM:TaggedValue xmi.id = 'a1775' tag = 'SECURITY_NON_PROXY_HOSTS'/> <CWM:TaggedValue xmi.id = 'a1776' tag = 'SECURITY_FILENAME' value = ''/> <CWM:TaggedValue xmi.id = 'a1777' tag = 'SECURITY_URL' value = 'http://localhost:8080/pentaho/ServiceAction?action=SecurityDetails&amp;details=all'/> </CWM:ModelElement.taggedValue> </CWM:Event> <CWM:Parameter xmi.id = 'a1778' name = 'en_US'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a1779' tag = 'LOCALE_DESCRIPTION' value = 'English (American)'/> <CWM:TaggedValue xmi.id = 'a1780' tag = 'LOCALE_ORDER' value = '1'/> <CWM:TaggedValue xmi.id = 'a1781' tag = 'LOCALE_IS_DEFAULT' value = 'Y'/> </CWM:ModelElement.taggedValue> </CWM:Parameter> <CWM:Parameter xmi.id = 'a1782' name = 'es'> <CWM:ModelElement.taggedValue> <CWM:TaggedValue xmi.id = 'a1783' tag = 'LOCALE_DESCRIPTION' value = 'Spanish'/> <CWM:TaggedValue xmi.id = 'a1784' tag = 'LOCALE_ORDER' value = '2'/> <CWM:TaggedValue xmi.id = 'a1785' tag = 'LOCALE_IS_DEFAULT' value = 'N'/> </CWM:ModelElement.taggedValue> </CWM:Parameter> </XMI.content></XMI>

------WebKitFormBoundaryNLNb246RTFIn1elY
Content-Disposition: form-data; name="domainId"

SampleData2
------WebKitFormBoundaryNLNb246RTFIn1elY
Content-Disposition: form-data; name="overwrite"

true
------WebKitFormBoundaryNLNb246RTFIn1elY--</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
</collectionProp>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol"></stringProp>
<stringProp name="HTTPSampler.contentEncoding">utf-8</stringProp>
<stringProp name="HTTPSampler.path">/pentaho/plugin/data-access/api/datasource/metadata/domain/SampleData2</stringProp>
<stringProp name="HTTPSampler.method">PUT</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<boolProp name="HTTPSampler.BROWSER_COMPATIBLE_MULTIPART">true</boolProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
</HTTPSamplerProxy>
<hashTree>
<HeaderManager guiclass="HeaderPanel" testclass="HeaderManager" testname="HTTP Header Manager" enabled="true">
<collectionProp name="HeaderManager.headers">
<elementProp name="" elementType="Header">
<stringProp name="Header.name">Content-Type</stringProp>
<stringProp name="Header.value">multipart/form-data; boundary=----WebKitFormBoundaryNLNb246RTFIn1elY</stringProp>
</elementProp>
</collectionProp>
</HeaderManager>
<hashTree/>
<ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true">
<collectionProp name="Asserion.test_strings">
<stringProp name="49587">201</stringProp>
</collectionProp>
<stringProp name="Assertion.test_field">Assertion.response_code</stringProp>
<boolProp name="Assertion.assume_success">false</boolProp>
<intProp name="Assertion.test_type">16</intProp>
</ResponseAssertion>
<hashTree/>
</hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="GET /plugin/data-access/api/datasource/metadata/domain" enabled="true">
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" enabled="true">
<collectionProp name="Arguments.arguments"/>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol"></stringProp>
<stringProp name="HTTPSampler.contentEncoding">utf-8</stringProp>
<stringProp name="HTTPSampler.path">/pentaho/plugin/data-access/api/datasource/metadata/domain</stringProp>
<stringProp name="HTTPSampler.method">GET</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
</HTTPSamplerProxy>
<hashTree>
<HeaderManager guiclass="HeaderPanel" testclass="HeaderManager" testname="HTTP Header Manager" enabled="true">
<collectionProp name="HeaderManager.headers">
<elementProp name="" elementType="Header">
<stringProp name="Header.name">Accept</stringProp>
<stringProp name="Header.value">application/json</stringProp>
</elementProp>
</collectionProp>
</HeaderManager>
<hashTree/>
<ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true">
<collectionProp name="Asserion.test_strings">
<stringProp name="1795637790">SampleData2</stringProp>
</collectionProp>
<stringProp name="Assertion.test_field">Assertion.response_data</stringProp>
<boolProp name="Assertion.assume_success">false</boolProp>
<intProp name="Assertion.test_type">2</intProp>
</ResponseAssertion>
<hashTree/>
</hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="GET /plugin/data-access/api/datasource/metadata/domain/{domainId}" enabled="true">
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" enabled="true">
<collectionProp name="Arguments.arguments"/>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol"></stringProp>
<stringProp name="HTTPSampler.contentEncoding">utf-8</stringProp>
<stringProp name="HTTPSampler.path">/pentaho/plugin/data-access/api/datasource/metadata/domain/SampleData2</stringProp>
<stringProp name="HTTPSampler.method">GET</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
</HTTPSamplerProxy>
<hashTree>
<XMLAssertion guiclass="XMLAssertionGui" testclass="XMLAssertion" testname="XML Assertion" enabled="true"/>
<hashTree/>
<ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true">
<collectionProp name="Asserion.test_strings">
<stringProp name="-1015103095">CONCEPT_PARENT_NAME</stringProp>
</collectionProp>
<stringProp name="Assertion.test_field">Assertion.response_data</stringProp>
<boolProp name="Assertion.assume_success">false</boolProp>
<intProp name="Assertion.test_type">2</intProp>
</ResponseAssertion>
<hashTree/>
</hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="DELETE /plugin/data-access/api/datasource/metadata/domain/{domainId}" enabled="true">
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" enabled="true">
<collectionProp name="Arguments.arguments"/>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol"></stringProp>
<stringProp name="HTTPSampler.contentEncoding">utf-8</stringProp>
<stringProp name="HTTPSampler.path">/pentaho/plugin/data-access/api/datasource/metadata/domain/SampleData2</stringProp>
<stringProp name="HTTPSampler.method">DELETE</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
</HTTPSamplerProxy>
<hashTree>
<ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true">
<collectionProp name="Asserion.test_strings">
<stringProp name="49586">200</stringProp>
</collectionProp>
<stringProp name="Assertion.test_field">Assertion.response_code</stringProp>
<boolProp name="Assertion.assume_success">false</boolProp>
<intProp name="Assertion.test_type">8</intProp>
</ResponseAssertion>
<hashTree/>
</hashTree>
</hashTree>
<TransactionController guiclass="TransactionControllerGui" testclass="TransactionController" testname="Logout" enabled="true">
<boolProp name="TransactionController.parent">true</boolProp>
</TransactionController>
<hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="/pentaho/Logout" enabled="true">
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" enabled="true">
<collectionProp name="Arguments.arguments"/>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol">http</stringProp>
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
<stringProp name="HTTPSampler.path">/pentaho/Logout</stringProp>
<stringProp name="HTTPSampler.method">GET</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<stringProp name="HTTPSampler.implementation">Java</stringProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
</HTTPSamplerProxy>
<hashTree>
<HeaderManager guiclass="HeaderPanel" testclass="HeaderManager" testname="HTTP Header Manager" enabled="true">
<collectionProp name="HeaderManager.headers">
<elementProp name="Accept-Language" elementType="Header">
<stringProp name="Header.name">Accept-Language</stringProp>
<stringProp name="Header.value">en-US,en;q=0.5</stringProp>
</elementProp>
<elementProp name="Accept" elementType="Header">
<stringProp name="Header.name">Accept</stringProp>
<stringProp name="Header.value">text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8</stringProp>
</elementProp>
<elementProp name="User-Agent" elementType="Header">
<stringProp name="Header.name">User-Agent</stringProp>
<stringProp name="Header.value">Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:22.0) Gecko/20100101 Firefox/22.0</stringProp>
</elementProp>
<elementProp name="Referer" elementType="Header">
<stringProp name="Header.name">Referer</stringProp>
<stringProp name="Header.value">http://${ServerIP}:8080/pentaho/mantle/8DA60CE9A40DB87C7445325A3C971371.cache.html</stringProp>
</elementProp>
<elementProp name="DNT" elementType="Header">
<stringProp name="Header.name">DNT</stringProp>
<stringProp name="Header.value">1</stringProp>
</elementProp>
<elementProp name="Accept-Encoding" elementType="Header">
<stringProp name="Header.name">Accept-Encoding</stringProp>
<stringProp name="Header.value">gzip, deflate</stringProp>
</elementProp>
</collectionProp>
</HeaderManager>
<hashTree/>
</hashTree>
</hashTree>
</hashTree>
<GenericController guiclass="LogicControllerGui" testclass="GenericController" testname="Mondrian" enabled="true"/>
<hashTree>
<TransactionController guiclass="TransactionControllerGui" testclass="TransactionController" testname="Login" enabled="true">
<boolProp name="TransactionController.parent">true</boolProp>
</TransactionController>
<hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="/pentaho/j_spring_security_check" enabled="true">
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" enabled="true">
<collectionProp name="Arguments.arguments">
<elementProp name="j_username" elementType="HTTPArgument">
<boolProp name="HTTPArgument.always_encode">false</boolProp>
<stringProp name="Argument.name">j_username</stringProp>
<stringProp name="Argument.value">admin</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
<boolProp name="HTTPArgument.use_equals">true</boolProp>
</elementProp>
<elementProp name="j_password" elementType="HTTPArgument">
<boolProp name="HTTPArgument.always_encode">false</boolProp>
<stringProp name="Argument.name">j_password</stringProp>
<stringProp name="Argument.value">password</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
<boolProp name="HTTPArgument.use_equals">true</boolProp>
</elementProp>
<elementProp name="locale" elementType="HTTPArgument">
<boolProp name="HTTPArgument.always_encode">false</boolProp>
<stringProp name="Argument.name">locale</stringProp>
<stringProp name="Argument.value">en_US</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
<boolProp name="HTTPArgument.use_equals">true</boolProp>
</elementProp>
</collectionProp>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol">http</stringProp>
<stringProp name="HTTPSampler.contentEncoding">UTF-8</stringProp>
<stringProp name="HTTPSampler.path">/pentaho/j_spring_security_check</stringProp>
<stringProp name="HTTPSampler.method">POST</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<stringProp name="HTTPSampler.implementation">Java</stringProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
</HTTPSamplerProxy>
<hashTree>
<HeaderManager guiclass="HeaderPanel" testclass="HeaderManager" testname="HTTP Header Manager" enabled="true">
<collectionProp name="HeaderManager.headers">
<elementProp name="Content-Type" elementType="Header">
<stringProp name="Header.name">Content-Type</stringProp>
<stringProp name="Header.value">application/x-www-form-urlencoded; charset=UTF-8</stringProp>
</elementProp>
<elementProp name="Accept-Language" elementType="Header">
<stringProp name="Header.name">Accept-Language</stringProp>
<stringProp name="Header.value">en-US,en;q=0.5</stringProp>
</elementProp>
<elementProp name="Accept" elementType="Header">
<stringProp name="Header.name">Accept</stringProp>
<stringProp name="Header.value">text/plain, */*; q=0.01</stringProp>
</elementProp>
<elementProp name="User-Agent" elementType="Header">
<stringProp name="Header.name">User-Agent</stringProp>
<stringProp name="Header.value">Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:22.0) Gecko/20100101 Firefox/22.0</stringProp>
</elementProp>
<elementProp name="DNT" elementType="Header">
<stringProp name="Header.name">DNT</stringProp>
<stringProp name="Header.value">1</stringProp>
</elementProp>
<elementProp name="Pragma" elementType="Header">
<stringProp name="Header.name">Pragma</stringProp>
<stringProp name="Header.value">no-cache</stringProp>
</elementProp>
<elementProp name="Cache-Control" elementType="Header">
<stringProp name="Header.name">Cache-Control</stringProp>
<stringProp name="Header.value">no-cache</stringProp>
</elementProp>
<elementProp name="Accept-Encoding" elementType="Header">
<stringProp name="Header.name">Accept-Encoding</stringProp>
<stringProp name="Header.value">gzip, deflate</stringProp>
</elementProp>
<elementProp name="X-Requested-With" elementType="Header">
<stringProp name="Header.name">X-Requested-With</stringProp>
<stringProp name="Header.value">XMLHttpRequest</stringProp>
</elementProp>
<elementProp name="Referer" elementType="Header">
<stringProp name="Header.name">Referer</stringProp>
<stringProp name="Header.value">http://${ServerIP}:8080/pentaho/Login;jsessionid=259EE5A4A63D0765FE7CB03DDA1CA324</stringProp>
</elementProp>
</collectionProp>
</HeaderManager>
<hashTree/>
</hashTree>
</hashTree>
<TransactionController guiclass="TransactionControllerGui" testclass="TransactionController" testname="AnalysisResource" enabled="true">
<boolProp name="TransactionController.includeTimers">false</boolProp>
<boolProp name="TransactionController.parent">false</boolProp>
</TransactionController>
<hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="PUT /plugin/data-access/api/datasource/analysis/catalog/{catalog}" enabled="true">
<boolProp name="HTTPSampler.postBodyRaw">true</boolProp>
<elementProp name="HTTPsampler.Arguments" elementType="Arguments">
<collectionProp name="Arguments.arguments">
<elementProp name="" elementType="HTTPArgument">
<boolProp name="HTTPArgument.always_encode">false</boolProp>
<stringProp name="Argument.value">------WebKitFormBoundaryNLNb246RTFIn1elY
Content-Disposition: form-data; name="uploadInput"; filename="SampleData2.mondrian.xml"
Content-Type: text/xml

<?xml version="1.0"?>
<Schema name="SampleData2">
<!-- Shared dimensions -->

<Dimension name="Region">
<Hierarchy hasAll="true" allMemberName="All Regions">
<Table name="QUADRANT_ACTUALS"/>
<Level name="Region" column="REGION" uniqueMembers="true"/>
</Hierarchy>
</Dimension>
<Dimension name="Department">
<Hierarchy hasAll="true" allMemberName="All Departments">
<Table name="QUADRANT_ACTUALS"/>
<Level name="Department" column="DEPARTMENT" uniqueMembers="true"/>
</Hierarchy>
</Dimension>

<Dimension name="Positions">
<Hierarchy hasAll="true" allMemberName="All Positions">
<Table name="QUADRANT_ACTUALS"/>
<Level name="Positions" column="POSITIONTITLE" uniqueMembers="true"/>
</Hierarchy>
</Dimension>

<Cube name="Quadrant Analysis">
<Table name="QUADRANT_ACTUALS"/>
<DimensionUsage name="Region" source="Region"/>
<DimensionUsage name="Department" source="Department" />
<DimensionUsage name="Positions" source="Positions" />
<Measure name="Actual" column="ACTUAL" aggregator="sum" formatString="#,###.00"/>
<Measure name="Budget" column="BUDGET" aggregator="sum" formatString="#,###.00"/>
<Measure name="Variance" column="VARIANCE" aggregator="sum" formatString="#,###.00"/>
<!-- <CalculatedMember name="Variance Percent" dimension="Measures" formula="([Measures].[Variance]/[Measures].[Budget])*100" /> -->
</Cube>

</Schema>

------WebKitFormBoundaryNLNb246RTFIn1elY
Content-Disposition: form-data; name="parameters"

DataSource=SampleData2;overwrite=true
------WebKitFormBoundaryNLNb246RTFIn1elY
Content-Disposition: form-data; name="schemaFileInfo"

test.xml
------WebKitFormBoundaryNLNb246RTFIn1elY
Content-Disposition: form-data; name="catalogName"

Catalog Name
------WebKitFormBoundaryNLNb246RTFIn1elY
Content-Disposition: form-data; name="xmlaEnabledFlag"

true
------WebKitFormBoundaryNLNb246RTFIn1elY
Content-Disposition: form-data; name="overwrite"

true
------WebKitFormBoundaryNLNb246RTFIn1elY--</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
</collectionProp>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol"></stringProp>
<stringProp name="HTTPSampler.contentEncoding">utf-8</stringProp>
<stringProp name="HTTPSampler.path">/pentaho/plugin/data-access/api/datasource/analysis/catalog/SampleData2</stringProp>
<stringProp name="HTTPSampler.method">PUT</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<boolProp name="HTTPSampler.BROWSER_COMPATIBLE_MULTIPART">true</boolProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
</HTTPSamplerProxy>
<hashTree>
<HeaderManager guiclass="HeaderPanel" testclass="HeaderManager" testname="HTTP Header Manager" enabled="true">
<collectionProp name="HeaderManager.headers">
<elementProp name="" elementType="Header">
<stringProp name="Header.name">Content-Type</stringProp>
<stringProp name="Header.value">multipart/form-data; boundary=----WebKitFormBoundaryNLNb246RTFIn1elY</stringProp>
</elementProp>
</collectionProp>
</HeaderManager>
<hashTree/>
<ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true">
<collectionProp name="Asserion.test_strings">
<stringProp name="49587">201</stringProp>
</collectionProp>
<stringProp name="Assertion.test_field">Assertion.response_code</stringProp>
<boolProp name="Assertion.assume_success">false</boolProp>
<intProp name="Assertion.test_type">16</intProp>
</ResponseAssertion>
<hashTree/>
</hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="GET /plugin/data-access/api/datasource/analysis/catalog" enabled="true">
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" enabled="true">
<collectionProp name="Arguments.arguments"/>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol"></stringProp>
<stringProp name="HTTPSampler.contentEncoding">utf-8</stringProp>
<stringProp name="HTTPSampler.path">/pentaho/plugin/data-access/api/datasource/analysis/catalog</stringProp>
<stringProp name="HTTPSampler.method">GET</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
</HTTPSamplerProxy>
<hashTree>
<HeaderManager guiclass="HeaderPanel" testclass="HeaderManager" testname="HTTP Header Manager" enabled="true">
<collectionProp name="HeaderManager.headers">
<elementProp name="" elementType="Header">
<stringProp name="Header.name">Accept</stringProp>
<stringProp name="Header.value">application/json</stringProp>
</elementProp>
</collectionProp>
</HeaderManager>
<hashTree/>
<ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true">
<collectionProp name="Asserion.test_strings">
<stringProp name="1795637790">SampleData2</stringProp>
</collectionProp>
<stringProp name="Assertion.test_field">Assertion.response_data</stringProp>
<boolProp name="Assertion.assume_success">false</boolProp>
<intProp name="Assertion.test_type">2</intProp>
</ResponseAssertion>
<hashTree/>
</hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="GET /plugin/data-access/api/datasource/analysis/catalog/{catalog}" enabled="true">
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" enabled="true">
<collectionProp name="Arguments.arguments"/>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol"></stringProp>
<stringProp name="HTTPSampler.contentEncoding">utf-8</stringProp>
<stringProp name="HTTPSampler.path">/pentaho/plugin/data-access/api/datasource/analysis/catalog/SampleData2</stringProp>
<stringProp name="HTTPSampler.method">GET</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
</HTTPSamplerProxy>
<hashTree>
<XMLAssertion guiclass="XMLAssertionGui" testclass="XMLAssertion" testname="XML Assertion" enabled="true"/>
<hashTree/>
<ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true">
<collectionProp name="Asserion.test_strings">
<stringProp name="1795637790">SampleData2</stringProp>
</collectionProp>
<stringProp name="Assertion.test_field">Assertion.response_data</stringProp>
<boolProp name="Assertion.assume_success">false</boolProp>
<intProp name="Assertion.test_type">2</intProp>
</ResponseAssertion>
<hashTree/>
</hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="DELETE /plugin/data-access/api/datasource/analysis/catalog/{catalog}" enabled="true">
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" enabled="true">
<collectionProp name="Arguments.arguments"/>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol"></stringProp>
<stringProp name="HTTPSampler.contentEncoding">utf-8</stringProp>
<stringProp name="HTTPSampler.path">/pentaho/plugin/data-access/api/datasource/analysis/catalog/SampleData2</stringProp>
<stringProp name="HTTPSampler.method">DELETE</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
</HTTPSamplerProxy>
<hashTree>
<ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true">
<collectionProp name="Asserion.test_strings">
<stringProp name="49586">200</stringProp>
</collectionProp>
<stringProp name="Assertion.test_field">Assertion.response_code</stringProp>
<boolProp name="Assertion.assume_success">false</boolProp>
<intProp name="Assertion.test_type">8</intProp>
</ResponseAssertion>
<hashTree/>
</hashTree>
</hashTree>
<TransactionController guiclass="TransactionControllerGui" testclass="TransactionController" testname="Logout" enabled="true">
<boolProp name="TransactionController.parent">true</boolProp>
</TransactionController>
<hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="/pentaho/Logout" enabled="true">
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" enabled="true">
<collectionProp name="Arguments.arguments"/>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol">http</stringProp>
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
<stringProp name="HTTPSampler.path">/pentaho/Logout</stringProp>
<stringProp name="HTTPSampler.method">GET</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<stringProp name="HTTPSampler.implementation">Java</stringProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
</HTTPSamplerProxy>
<hashTree>
<HeaderManager guiclass="HeaderPanel" testclass="HeaderManager" testname="HTTP Header Manager" enabled="true">
<collectionProp name="HeaderManager.headers">
<elementProp name="Accept-Language" elementType="Header">
<stringProp name="Header.name">Accept-Language</stringProp>
<stringProp name="Header.value">en-US,en;q=0.5</stringProp>
</elementProp>
<elementProp name="Accept" elementType="Header">
<stringProp name="Header.name">Accept</stringProp>
<stringProp name="Header.value">text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8</stringProp>
</elementProp>
<elementProp name="User-Agent" elementType="Header">
<stringProp name="Header.name">User-Agent</stringProp>
<stringProp name="Header.value">Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:22.0) Gecko/20100101 Firefox/22.0</stringProp>
</elementProp>
<elementProp name="Referer" elementType="Header">
<stringProp name="Header.name">Referer</stringProp>
<stringProp name="Header.value">http://${ServerIP}:8080/pentaho/mantle/8DA60CE9A40DB87C7445325A3C971371.cache.html</stringProp>
</elementProp>
<elementProp name="DNT" elementType="Header">
<stringProp name="Header.name">DNT</stringProp>
<stringProp name="Header.value">1</stringProp>
</elementProp>
<elementProp name="Accept-Encoding" elementType="Header">
<stringProp name="Header.name">Accept-Encoding</stringProp>
<stringProp name="Header.value">gzip, deflate</stringProp>
</elementProp>
</collectionProp>
</HeaderManager>
<hashTree/>
</hashTree>
</hashTree>
</hashTree>
<GenericController guiclass="LogicControllerGui" testclass="GenericController" testname="DSW" enabled="true"/>
<hashTree>
<TransactionController guiclass="TransactionControllerGui" testclass="TransactionController" testname="Login" enabled="true">
<boolProp name="TransactionController.parent">true</boolProp>
</TransactionController>
<hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="/pentaho/j_spring_security_check" enabled="true">
<elementProp name="HTTPsampler.Arguments" elementType="Arguments" guiclass="HTTPArgumentsPanel" testclass="Arguments" enabled="true">
<collectionProp name="Arguments.arguments">
<elementProp name="j_username" elementType="HTTPArgument">
<boolProp name="HTTPArgument.always_encode">false</boolProp>
<stringProp name="Argument.name">j_username</stringProp>
<stringProp name="Argument.value">admin</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
<boolProp name="HTTPArgument.use_equals">true</boolProp>
</elementProp>
<elementProp name="j_password" elementType="HTTPArgument">
<boolProp name="HTTPArgument.always_encode">false</boolProp>
<stringProp name="Argument.name">j_password</stringProp>
<stringProp name="Argument.value">password</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
<boolProp name="HTTPArgument.use_equals">true</boolProp>
</elementProp>
<elementProp name="locale" elementType="HTTPArgument">
<boolProp name="HTTPArgument.always_encode">false</boolProp>
<stringProp name="Argument.name">locale</stringProp>
<stringProp name="Argument.value">en_US</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
<boolProp name="HTTPArgument.use_equals">true</boolProp>
</elementProp>
</collectionProp>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol">http</stringProp>
<stringProp name="HTTPSampler.contentEncoding">UTF-8</stringProp>
<stringProp name="HTTPSampler.path">/pentaho/j_spring_security_check</stringProp>
<stringProp name="HTTPSampler.method">POST</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<stringProp name="HTTPSampler.implementation">Java</stringProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
</HTTPSamplerProxy>
<hashTree>
<HeaderManager guiclass="HeaderPanel" testclass="HeaderManager" testname="HTTP Header Manager" enabled="true">
<collectionProp name="HeaderManager.headers">
<elementProp name="Content-Type" elementType="Header">
<stringProp name="Header.name">Content-Type</stringProp>
<stringProp name="Header.value">application/x-www-form-urlencoded; charset=UTF-8</stringProp>
</elementProp>
<elementProp name="Accept-Language" elementType="Header">
<stringProp name="Header.name">Accept-Language</stringProp>
<stringProp name="Header.value">en-US,en;q=0.5</stringProp>
</elementProp>
<elementProp name="Accept" elementType="Header">
<stringProp name="Header.name">Accept</stringProp>
<stringProp name="Header.value">text/plain, */*; q=0.01</stringProp>
</elementProp>
<elementProp name="User-Agent" elementType="Header">
<stringProp name="Header.name">User-Agent</stringProp>
<stringProp name="Header.value">Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:22.0) Gecko/20100101 Firefox/22.0</stringProp>
</elementProp>
<elementProp name="DNT" elementType="Header">
<stringProp name="Header.name">DNT</stringProp>
<stringProp name="Header.value">1</stringProp>
</elementProp>
<elementProp name="Pragma" elementType="Header">
<stringProp name="Header.name">Pragma</stringProp>
<stringProp name="Header.value">no-cache</stringProp>
</elementProp>
<elementProp name="Cache-Control" elementType="Header">
<stringProp name="Header.name">Cache-Control</stringProp>
<stringProp name="Header.value">no-cache</stringProp>
</elementProp>
<elementProp name="Accept-Encoding" elementType="Header">
<stringProp name="Header.name">Accept-Encoding</stringProp>
<stringProp name="Header.value">gzip, deflate</stringProp>
</elementProp>
<elementProp name="X-Requested-With" elementType="Header">
<stringProp name="Header.name">X-Requested-With</stringProp>
<stringProp name="Header.value">XMLHttpRequest</stringProp>
</elementProp>
<elementProp name="Referer" elementType="Header">
<stringProp name="Header.name">Referer</stringProp>
<stringProp name="Header.value">http://${ServerIP}:8080/pentaho/Login;jsessionid=259EE5A4A63D0765FE7CB03DDA1CA324</stringProp>
</elementProp>
</collectionProp>
</HeaderManager>
<hashTree/>
</hashTree>
</hashTree>
<TransactionController guiclass="TransactionControllerGui" testclass="TransactionController" testname="DataSourceWizardResource" enabled="true">
<boolProp name="TransactionController.includeTimers">false</boolProp>
<boolProp name="TransactionController.parent">false</boolProp>
</TransactionController>
<hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="PUT /plugin/data-access/api/datasource/dsw/import" enabled="true">
<boolProp name="HTTPSampler.postBodyRaw">true</boolProp>
<elementProp name="HTTPsampler.Arguments" elementType="Arguments">
<collectionProp name="Arguments.arguments">
<elementProp name="" elementType="HTTPArgument">
<boolProp name="HTTPArgument.always_encode">false</boolProp>
<stringProp name="Argument.value">------WebKitFormBoundaryNLNb246RTFIn1elY
Content-Disposition: form-data; name="domainId"

Testing.xmi
------WebKitFormBoundaryNLNb246RTFIn1elY
Content-Disposition: form-data; filename="Testing.xmi"; name="metadataFile"
Content-Type: application/xml

<?xml version="1.0" encoding="UTF-8"?><XMI xmlns:CWMMDB="org.omg.xmi.namespace.CWMMDB" xmlns:CWM="org.omg.xmi.namespace.CWM" xmlns:CWMRDB="org.omg.xmi.namespace.CWMRDB" xmlns:CWMTFM="org.omg.xmi.namespace.CWMTFM" xmlns:CWMOLAP="org.omg.xmi.namespace.CWMOLAP" timestamp="Tue Sep 16 14:11:26 WEST 2014" xmi.version="1.2"><XMI.header><XMI.documentation><XMI.exporter>Pentaho XMI Generator</XMI.exporter><XMI.exporterVersion>1.0</XMI.exporterVersion></XMI.documentation></XMI.header><XMI.content><CWM:Description body="PUBLIC" name="target_schema" type="String" xmi.id="a188"><CWM:Description.modelElement><CWMRDB:Table xmi.idref="a187"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERFACT" language="en_US" name="name" type="LocString" xmi.id="a189"><CWM:Description.modelElement><CWMRDB:Table xmi.idref="a187"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Fact" name="tabletype" type="TableType" xmi.id="a190"><CWM:Description.modelElement><CWMRDB:Table xmi.idref="a187"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERFACT" name="target_table" type="String" xmi.id="a191"><CWM:Description.modelElement><CWMRDB:Table xmi.idref="a187"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a194"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a193"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Dimension" name="fieldtype" type="FieldType" xmi.id="a195"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a193"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERNUMBER" name="formula" type="String" xmi.id="a196"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a193"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERNUMBER" language="en_US" name="name" type="LocString" xmi.id="a197"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a193"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a198"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a193"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a199"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a193"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a201"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a200"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Dimension" name="fieldtype" type="FieldType" xmi.id="a202"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a200"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="PRODUCTCODE" name="formula" type="String" xmi.id="a203"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a200"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="PRODUCTCODE" language="en_US" name="name" type="LocString" xmi.id="a204"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a200"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="String" name="datatype" type="DataType" xmi.id="a205"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a200"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a206"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a200"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a208"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a207"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Dimension" name="fieldtype" type="FieldType" xmi.id="a209"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a207"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="QUANTITYORDERED" name="formula" type="String" xmi.id="a210"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a207"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="QUANTITYORDERED" language="en_US" name="name" type="LocString" xmi.id="a211"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a207"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a212"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a207"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a213"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a207"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a215"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a214"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Dimension" name="fieldtype" type="FieldType" xmi.id="a216"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a214"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="PRICEEACH" name="formula" type="String" xmi.id="a217"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a214"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="PRICEEACH" language="en_US" name="name" type="LocString" xmi.id="a218"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a214"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a219"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a214"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a220"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a214"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a222"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a221"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Dimension" name="fieldtype" type="FieldType" xmi.id="a223"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a221"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERLINENUMBER" name="formula" type="String" xmi.id="a224"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a221"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERLINENUMBER" language="en_US" name="name" type="LocString" xmi.id="a225"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a221"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a226"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a221"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a227"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a221"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a229"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a228"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Dimension" name="fieldtype" type="FieldType" xmi.id="a230"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a228"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="TOTALPRICE" name="formula" type="String" xmi.id="a231"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a228"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="TOTALPRICE" language="en_US" name="name" type="LocString" xmi.id="a232"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a228"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a233"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a228"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a234"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a228"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a236"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a235"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Dimension" name="fieldtype" type="FieldType" xmi.id="a237"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a235"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERDATE" name="formula" type="String" xmi.id="a238"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a235"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERDATE" language="en_US" name="name" type="LocString" xmi.id="a239"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a235"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Unknown" name="datatype" type="DataType" xmi.id="a240"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a235"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a241"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a235"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a243"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a242"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Dimension" name="fieldtype" type="FieldType" xmi.id="a244"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a242"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="REQUIREDDATE" name="formula" type="String" xmi.id="a245"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a242"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="REQUIREDDATE" language="en_US" name="name" type="LocString" xmi.id="a246"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a242"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Unknown" name="datatype" type="DataType" xmi.id="a247"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a242"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a248"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a242"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a250"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a249"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Dimension" name="fieldtype" type="FieldType" xmi.id="a251"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a249"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="SHIPPEDDATE" name="formula" type="String" xmi.id="a252"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a249"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="SHIPPEDDATE" language="en_US" name="name" type="LocString" xmi.id="a253"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a249"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Unknown" name="datatype" type="DataType" xmi.id="a254"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a249"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a255"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a249"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a257"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a256"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Dimension" name="fieldtype" type="FieldType" xmi.id="a258"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a256"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="STATUS" name="formula" type="String" xmi.id="a259"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a256"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="STATUS" language="en_US" name="name" type="LocString" xmi.id="a260"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a256"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="String" name="datatype" type="DataType" xmi.id="a261"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a256"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a262"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a256"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a264"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a263"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Dimension" name="fieldtype" type="FieldType" xmi.id="a265"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a263"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="COMMENTS" name="formula" type="String" xmi.id="a266"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a263"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="COMMENTS" language="en_US" name="name" type="LocString" xmi.id="a267"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a263"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="String" name="datatype" type="DataType" xmi.id="a268"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a263"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a269"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a263"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a271"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a270"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Dimension" name="fieldtype" type="FieldType" xmi.id="a272"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a270"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="CUSTOMERNUMBER" name="formula" type="String" xmi.id="a273"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a270"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="CUSTOMERNUMBER" language="en_US" name="name" type="LocString" xmi.id="a274"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a270"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a275"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a270"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a276"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a270"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a278"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a277"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Key" name="fieldtype" type="FieldType" xmi.id="a279"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a277"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="TIME_ID" name="formula" type="String" xmi.id="a280"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a277"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="TIME ID" language="en_US" name="name" type="LocString" xmi.id="a281"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a277"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="String" name="datatype" type="DataType" xmi.id="a282"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a277"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a283"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a277"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a285"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a284"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Key" name="fieldtype" type="FieldType" xmi.id="a286"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a284"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="QTR_ID" name="formula" type="String" xmi.id="a287"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a284"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="QTR ID" language="en_US" name="name" type="LocString" xmi.id="a288"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a284"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a289"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a284"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a290"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a284"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a292"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a291"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Key" name="fieldtype" type="FieldType" xmi.id="a293"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a291"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="MONTH_ID" name="formula" type="String" xmi.id="a294"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a291"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="MONTH ID" language="en_US" name="name" type="LocString" xmi.id="a295"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a291"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a296"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a291"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a297"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a291"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a299"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a298"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Key" name="fieldtype" type="FieldType" xmi.id="a300"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a298"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="YEAR_ID" name="formula" type="String" xmi.id="a301"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a298"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="YEAR ID" language="en_US" name="name" type="LocString" xmi.id="a302"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a298"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a303"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a298"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="N" name="exact" type="Boolean" xmi.id="a304"><CWM:Description.modelElement><CWMRDB:Column xmi.idref="a298"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="TRUE" name="AGILE_BI_GENERATED_SCHEMA" type="String" xmi.id="a306"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a305"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="3.0" name="AGILE_BI_VERSION" type="String" xmi.id="a307"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a305"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="This is the data model for ORDERFACT" language="en_US" name="description" type="LocString" xmi.id="a308"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a305"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Testing" language="en_US" name="name" type="LocString" xmi.id="a309"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a305"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="TableModelerSource" name="source_type" type="String" xmi.id="a310"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a305"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="true" name="DUAL_MODELING_SCHEMA" type="String" xmi.id="a311"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a305"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;security&gt;&#xA; &lt;owner-rights&gt;&#xA; &lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Authenticated&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;31&lt;/rights&gt;&#xA; &lt;/owner-rights&gt;&#xA;&lt;/security&gt;&#xA;" name="security" type="Security" xmi.id="a312"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a305"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Testing" language="en_US" name="name" type="LocString" xmi.id="a314"><CWM:Description.modelElement><CWM:Extent xmi.idref="a313"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERFACT" language="en_US" name="name" type="LocString" xmi.id="a349"><CWM:Description.modelElement><CWMMDB:Dimension xmi.idref="a348"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a352"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a351"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="COMMENTS" language="en_US" name="name" type="LocString" xmi.id="a353"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a351"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="String" name="datatype" type="DataType" xmi.id="a354"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a351"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a355"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a351"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a359"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a358"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="CUSTOMERNUMBER" language="en_US" name="name" type="LocString" xmi.id="a360"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a358"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a361"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a358"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a362"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a358"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;maximum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;sum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;minimum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;average&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a363"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a358"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a367"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a366"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="MONTH ID" language="en_US" name="name" type="LocString" xmi.id="a368"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a366"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a369"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a366"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a370"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a366"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;maximum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;sum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;minimum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;average&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a371"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a366"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a375"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a374"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERDATE" language="en_US" name="name" type="LocString" xmi.id="a376"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a374"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Unknown" name="datatype" type="DataType" xmi.id="a377"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a374"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a378"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a374"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a382"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a381"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERLINENUMBER" language="en_US" name="name" type="LocString" xmi.id="a383"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a381"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a384"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a381"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a385"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a381"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;maximum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;sum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;minimum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;average&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a386"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a381"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a390"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a389"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERNUMBER" language="en_US" name="name" type="LocString" xmi.id="a391"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a389"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a392"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a389"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a393"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a389"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;maximum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;sum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;minimum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;average&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a394"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a389"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a398"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a397"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="PRICEEACH" language="en_US" name="name" type="LocString" xmi.id="a399"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a397"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a400"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a397"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a401"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a397"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;maximum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;sum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;minimum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;average&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a402"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a397"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a406"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a405"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="PRODUCTCODE" language="en_US" name="name" type="LocString" xmi.id="a407"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a405"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="String" name="datatype" type="DataType" xmi.id="a408"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a405"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a409"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a405"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a413"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a412"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="QTR ID" language="en_US" name="name" type="LocString" xmi.id="a414"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a412"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a415"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a412"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a416"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a412"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;maximum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;sum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;minimum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;average&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a417"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a412"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a421"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a420"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="QUANTITYORDERED" language="en_US" name="name" type="LocString" xmi.id="a422"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a420"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a423"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a420"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a424"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a420"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;maximum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;sum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;minimum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;average&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a425"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a420"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a429"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a428"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="REQUIREDDATE" language="en_US" name="name" type="LocString" xmi.id="a430"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a428"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Unknown" name="datatype" type="DataType" xmi.id="a431"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a428"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a432"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a428"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a436"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a435"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="SHIPPEDDATE" language="en_US" name="name" type="LocString" xmi.id="a437"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a435"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Unknown" name="datatype" type="DataType" xmi.id="a438"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a435"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a439"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a435"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a443"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a442"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="STATUS" language="en_US" name="name" type="LocString" xmi.id="a444"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a442"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="String" name="datatype" type="DataType" xmi.id="a445"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a442"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a446"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a442"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a450"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a449"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="TIME ID" language="en_US" name="name" type="LocString" xmi.id="a451"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a449"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="String" name="datatype" type="DataType" xmi.id="a452"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a449"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a453"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a449"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a457"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a456"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="TOTALPRICE" language="en_US" name="name" type="LocString" xmi.id="a458"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a456"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a459"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a456"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a460"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a456"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;maximum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;sum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;minimum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;average&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a461"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a456"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a465"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a464"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="YEAR ID" language="en_US" name="name" type="LocString" xmi.id="a466"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a464"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a467"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a464"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a468"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a464"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;aggregationlist&gt;&#xA; &lt;aggregation&gt;none&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count_distinct&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;count&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;maximum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;sum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;minimum&lt;/aggregation&gt;&#xA; &lt;aggregation&gt;average&lt;/aggregation&gt;&#xA;&lt;/aggregationlist&gt;&#xA;" name="aggregation_list" type="AggregationList" xmi.id="a469"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a464"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="false" name="visible" type="String" xmi.id="a473"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a472"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="TRUE" name="AGILE_BI_GENERATED_SCHEMA" type="String" xmi.id="a474"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a472"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="3.0" name="AGILE_BI_VERSION" type="String" xmi.id="a475"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a472"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERFACT_OLAP" language="en_US" name="description" type="LocString" xmi.id="a476"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a472"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Testing_OLAP" language="en_US" name="name" type="LocString" xmi.id="a477"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a472"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Testing" name="MondrianCatalogRef" type="String" xmi.id="a478"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a472"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="true" name="DUAL_MODELING_SCHEMA" type="String" xmi.id="a479"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a472"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="&lt;security&gt;&#xA; &lt;owner-rights&gt;&#xA; &lt;owner&gt;&lt;type&gt;role&lt;/type&gt;&lt;name&gt;Authenticated&lt;/name&gt;&lt;/owner&gt; &lt;rights&gt;31&lt;/rights&gt;&#xA; &lt;/owner-rights&gt;&#xA;&lt;/security&gt;&#xA;" name="security" type="Security" xmi.id="a480"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a472"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="TRUE" name="WIZARD_GENERATED_SCHEMA" type="String" xmi.id="a481"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a472"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="OLAP" name="MODELING_SCHEMA" type="String" xmi.id="a482"><CWM:Description.modelElement><CWMMDB:Schema xmi.idref="a472"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERFACT" language="en_US" name="name" type="LocString" xmi.id="a484"><CWM:Description.modelElement><CWMMDB:Dimension xmi.idref="a483"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a487"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a486"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="COMMENTS" language="en_US" name="name" type="LocString" xmi.id="a488"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a486"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="String" name="datatype" type="DataType" xmi.id="a489"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a486"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="sum" name="aggregation" type="Aggregation" xmi.id="a493"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a492"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="CUSTOMERNUMBER" language="en_US" name="name" type="LocString" xmi.id="a494"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a492"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a495"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a492"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a496"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a492"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a500"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a499"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="CUSTOMERNUMBER" language="en_US" name="name" type="LocString" xmi.id="a501"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a499"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a502"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a499"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="sum" name="aggregation" type="Aggregation" xmi.id="a506"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a505"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="MONTH ID" language="en_US" name="name" type="LocString" xmi.id="a507"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a505"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a508"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a505"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a509"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a505"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a513"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a512"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="MONTH ID" language="en_US" name="name" type="LocString" xmi.id="a514"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a512"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a515"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a512"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a519"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a518"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERDATE" language="en_US" name="name" type="LocString" xmi.id="a520"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a518"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Unknown" name="datatype" type="DataType" xmi.id="a521"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a518"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="sum" name="aggregation" type="Aggregation" xmi.id="a525"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a524"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERLINENUMBER" language="en_US" name="name" type="LocString" xmi.id="a526"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a524"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a527"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a524"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a528"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a524"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a532"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a531"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERLINENUMBER" language="en_US" name="name" type="LocString" xmi.id="a533"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a531"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a534"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a531"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="sum" name="aggregation" type="Aggregation" xmi.id="a538"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a537"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERNUMBER" language="en_US" name="name" type="LocString" xmi.id="a539"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a537"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a540"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a537"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a541"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a537"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a545"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a544"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="ORDERNUMBER" language="en_US" name="name" type="LocString" xmi.id="a546"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a544"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a547"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a544"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="sum" name="aggregation" type="Aggregation" xmi.id="a551"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a550"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="PRICEEACH" language="en_US" name="name" type="LocString" xmi.id="a552"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a550"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a553"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a550"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a554"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a550"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a558"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a557"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="PRICEEACH" language="en_US" name="name" type="LocString" xmi.id="a559"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a557"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a560"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a557"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a564"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a563"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="PRODUCTCODE" language="en_US" name="name" type="LocString" xmi.id="a565"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a563"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="String" name="datatype" type="DataType" xmi.id="a566"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a563"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="sum" name="aggregation" type="Aggregation" xmi.id="a570"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a569"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="QTR ID" language="en_US" name="name" type="LocString" xmi.id="a571"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a569"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a572"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a569"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a573"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a569"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a577"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a576"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="QTR ID" language="en_US" name="name" type="LocString" xmi.id="a578"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a576"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a579"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a576"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="sum" name="aggregation" type="Aggregation" xmi.id="a583"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a582"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="QUANTITYORDERED" language="en_US" name="name" type="LocString" xmi.id="a584"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a582"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a585"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a582"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a586"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a582"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a590"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a589"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="QUANTITYORDERED" language="en_US" name="name" type="LocString" xmi.id="a591"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a589"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a592"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a589"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a596"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a595"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="REQUIREDDATE" language="en_US" name="name" type="LocString" xmi.id="a597"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a595"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Unknown" name="datatype" type="DataType" xmi.id="a598"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a595"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a602"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a601"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="SHIPPEDDATE" language="en_US" name="name" type="LocString" xmi.id="a603"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a601"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Unknown" name="datatype" type="DataType" xmi.id="a604"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a601"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a608"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a607"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="STATUS" language="en_US" name="name" type="LocString" xmi.id="a609"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a607"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="String" name="datatype" type="DataType" xmi.id="a610"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a607"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a614"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a613"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="TIME ID" language="en_US" name="name" type="LocString" xmi.id="a615"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a613"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="String" name="datatype" type="DataType" xmi.id="a616"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a613"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="sum" name="aggregation" type="Aggregation" xmi.id="a620"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a619"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="TOTALPRICE" language="en_US" name="name" type="LocString" xmi.id="a621"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a619"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a622"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a619"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a623"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a619"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a627"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a626"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="TOTALPRICE" language="en_US" name="name" type="LocString" xmi.id="a628"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a626"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a629"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a626"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="sum" name="aggregation" type="Aggregation" xmi.id="a633"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a632"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="YEAR ID" language="en_US" name="name" type="LocString" xmi.id="a634"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a632"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="#" name="mask" type="String" xmi.id="a635"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a632"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a636"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a632"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="none" name="aggregation" type="Aggregation" xmi.id="a640"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a639"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="YEAR ID" language="en_US" name="name" type="LocString" xmi.id="a641"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a639"/></CWM:Description.modelElement></CWM:Description><CWM:Description body="Numeric" name="datatype" type="DataType" xmi.id="a642"><CWM:Description.modelElement><CWMMDB:DimensionedObject xmi.idref="a639"/></CWM:Description.modelElement></CWM:Description><CWM:Parameter name="en_US" xmi.id="a1"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="LOCALE_IS_DEFAULT" value="Y" xmi.id="a2"/><CWM:TaggedValue tag="LOCALE_ORDER" value="1" xmi.id="a3"/><CWM:TaggedValue tag="LOCALE_DESCRIPTION" value="English (US)" xmi.id="a4"/></CWM:ModelElement.taggedValue></CWM:Parameter><CWMOLAP:Schema name="MODEL_1_OLAP" xmi.id="a5"><CWMOLAP:Schema.cube><CWMOLAP:Cube isAbstract="false" isVirtual="false" name="Testing" xmi.id="a6"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="CUBE_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a7"/></CWM:ModelElement.taggedValue><CWM:Namespace.ownedElement><CWMOLAP:Measure name="CUSTOMERNUMBER" xmi.id="a8"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="MEASURE_BUSINESS_COLUMN" value="LC_ORDERFACT_CUSTOMERNUMBER_OLAP" xmi.id="a9"/></CWM:ModelElement.taggedValue></CWMOLAP:Measure><CWMOLAP:Measure name="MONTH ID" xmi.id="a10"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="MEASURE_BUSINESS_COLUMN" value="LC_ORDERFACT_MONTH_ID_OLAP" xmi.id="a11"/></CWM:ModelElement.taggedValue></CWMOLAP:Measure><CWMOLAP:Measure name="ORDERLINENUMBER" xmi.id="a12"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="MEASURE_BUSINESS_COLUMN" value="LC_ORDERFACT_ORDERLINENUMBER_OLAP" xmi.id="a13"/></CWM:ModelElement.taggedValue></CWMOLAP:Measure><CWMOLAP:Measure name="ORDERNUMBER" xmi.id="a14"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="MEASURE_BUSINESS_COLUMN" value="LC_ORDERFACT_ORDERNUMBER_OLAP" xmi.id="a15"/></CWM:ModelElement.taggedValue></CWMOLAP:Measure><CWMOLAP:Measure name="PRICEEACH" xmi.id="a16"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="MEASURE_BUSINESS_COLUMN" value="LC_ORDERFACT_PRICEEACH_OLAP" xmi.id="a17"/></CWM:ModelElement.taggedValue></CWMOLAP:Measure><CWMOLAP:Measure name="QTR ID" xmi.id="a18"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="MEASURE_BUSINESS_COLUMN" value="LC_ORDERFACT_QTR_ID_OLAP" xmi.id="a19"/></CWM:ModelElement.taggedValue></CWMOLAP:Measure><CWMOLAP:Measure name="QUANTITYORDERED" xmi.id="a20"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="MEASURE_BUSINESS_COLUMN" value="LC_ORDERFACT_QUANTITYORDERED_OLAP" xmi.id="a21"/></CWM:ModelElement.taggedValue></CWMOLAP:Measure><CWMOLAP:Measure name="TOTALPRICE" xmi.id="a22"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="MEASURE_BUSINESS_COLUMN" value="LC_ORDERFACT_TOTALPRICE_OLAP" xmi.id="a23"/></CWM:ModelElement.taggedValue></CWMOLAP:Measure><CWMOLAP:Measure name="YEAR ID" xmi.id="a24"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="MEASURE_BUSINESS_COLUMN" value="LC_ORDERFACT_YEAR_ID_OLAP" xmi.id="a25"/></CWM:ModelElement.taggedValue></CWMOLAP:Measure></CWM:Namespace.ownedElement><CWMOLAP:Cube.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="COMMENTS" xmi.id="a26"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a27"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="CUSTOMERNUMBER" xmi.id="a28"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a29"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="MONTH ID" xmi.id="a30"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a31"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="ORDERDATE" xmi.id="a32"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a33"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="ORDERLINENUMBER" xmi.id="a34"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a35"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="ORDERNUMBER" xmi.id="a36"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a37"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="PRICEEACH" xmi.id="a38"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a39"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="PRODUCTCODE" xmi.id="a40"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a41"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="QTR ID" xmi.id="a42"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a43"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="QUANTITYORDERED" xmi.id="a44"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a45"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="REQUIREDDATE" xmi.id="a46"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a47"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="SHIPPEDDATE" xmi.id="a48"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a49"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="STATUS" xmi.id="a50"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a51"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="TIME ID" xmi.id="a52"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a53"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="TOTALPRICE" xmi.id="a54"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a55"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation isAbstract="false" name="YEAR ID" xmi.id="a56"><CWMOLAP:CubeDimensionAssociation.dimension><CWMOLAP:Dimension xmi.idref="a57"/></CWMOLAP:CubeDimensionAssociation.dimension></CWMOLAP:CubeDimensionAssociation></CWMOLAP:Cube.cubeDimensionAssociation></CWMOLAP:Cube></CWMOLAP:Schema.cube><CWMOLAP:Schema.dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="COMMENTS" xmi.id="a27"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a26"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="COMMENTS" xmi.id="a58"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a59"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a60"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="COMMENTS" xmi.id="a61"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a62"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="COMMENTS" xmi.id="a62"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a63"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_COMMENTS_OLAP" xmi.id="a64"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a61"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="CUSTOMERNUMBER" xmi.id="a29"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a28"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="CUSTOMERNUMBER" xmi.id="a65"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a66"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a67"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="CUSTOMERNUMBER" xmi.id="a68"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a69"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="CUSTOMERNUMBER" xmi.id="a69"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a70"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_CUSTOMERNUMBER_OLAP_2" xmi.id="a71"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a68"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="MONTH ID" xmi.id="a31"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a30"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="MONTH ID" xmi.id="a72"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a73"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a74"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="MONTH ID" xmi.id="a75"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a76"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="MONTH ID" xmi.id="a76"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a77"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_MONTH_ID_OLAP_2" xmi.id="a78"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a75"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="ORDERDATE" xmi.id="a33"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a32"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="ORDERDATE" xmi.id="a79"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a80"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a81"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="ORDERDATE" xmi.id="a82"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a83"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="ORDERDATE" xmi.id="a83"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a84"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_ORDERDATE_OLAP" xmi.id="a85"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a82"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="ORDERLINENUMBER" xmi.id="a35"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a34"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="ORDERLINENUMBER" xmi.id="a86"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a87"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a88"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="ORDERLINENUMBER" xmi.id="a89"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a90"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="ORDERLINENUMBER" xmi.id="a90"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a91"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_ORDERLINENUMBER_OLAP_2" xmi.id="a92"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a89"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="ORDERNUMBER" xmi.id="a37"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a36"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="ORDERNUMBER" xmi.id="a93"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a94"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a95"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="ORDERNUMBER" xmi.id="a96"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a97"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="ORDERNUMBER" xmi.id="a97"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a98"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_ORDERNUMBER_OLAP_2" xmi.id="a99"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a96"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="PRICEEACH" xmi.id="a39"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a38"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="PRICEEACH" xmi.id="a100"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a101"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a102"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="PRICEEACH" xmi.id="a103"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a104"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="PRICEEACH" xmi.id="a104"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a105"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_PRICEEACH_OLAP_2" xmi.id="a106"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a103"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="PRODUCTCODE" xmi.id="a41"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a40"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="PRODUCTCODE" xmi.id="a107"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a108"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a109"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="PRODUCTCODE" xmi.id="a110"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a111"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="PRODUCTCODE" xmi.id="a111"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a112"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_PRODUCTCODE_OLAP" xmi.id="a113"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a110"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="QTR ID" xmi.id="a43"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a42"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="QTR ID" xmi.id="a114"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a115"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a116"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="QTR ID" xmi.id="a117"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a118"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="QTR ID" xmi.id="a118"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a119"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_QTR_ID_OLAP_2" xmi.id="a120"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a117"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="QUANTITYORDERED" xmi.id="a45"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a44"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="QUANTITYORDERED" xmi.id="a121"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a122"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a123"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="QUANTITYORDERED" xmi.id="a124"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a125"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="QUANTITYORDERED" xmi.id="a125"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a126"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_QUANTITYORDERED_OLAP_2" xmi.id="a127"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a124"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="REQUIREDDATE" xmi.id="a47"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a46"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="REQUIREDDATE" xmi.id="a128"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a129"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a130"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="REQUIREDDATE" xmi.id="a131"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a132"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="REQUIREDDATE" xmi.id="a132"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a133"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_REQUIREDDATE_OLAP" xmi.id="a134"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a131"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="SHIPPEDDATE" xmi.id="a49"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a48"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="SHIPPEDDATE" xmi.id="a135"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a136"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a137"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="SHIPPEDDATE" xmi.id="a138"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a139"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="SHIPPEDDATE" xmi.id="a139"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a140"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_SHIPPEDDATE_OLAP" xmi.id="a141"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a138"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="STATUS" xmi.id="a51"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a50"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="STATUS" xmi.id="a142"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a143"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a144"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="STATUS" xmi.id="a145"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a146"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="STATUS" xmi.id="a146"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a147"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_STATUS_OLAP" xmi.id="a148"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a145"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="TIME ID" xmi.id="a53"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a52"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="TIME ID" xmi.id="a149"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a150"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a151"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="TIME ID" xmi.id="a152"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a153"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="TIME ID" xmi.id="a153"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a154"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_TIME_ID_OLAP" xmi.id="a155"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a152"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="TOTALPRICE" xmi.id="a55"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a54"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="TOTALPRICE" xmi.id="a156"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a157"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a158"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="TOTALPRICE" xmi.id="a159"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a160"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="TOTALPRICE" xmi.id="a160"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a161"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_TOTALPRICE_OLAP_2" xmi.id="a162"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a159"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension><CWMOLAP:Dimension isAbstract="false" isMeasure="false" isTime="false" name="YEAR ID" xmi.id="a57"><CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:CubeDimensionAssociation xmi.idref="a56"/></CWMOLAP:Dimension.cubeDimensionAssociation><CWMOLAP:Dimension.hierarchy><CWMOLAP:LevelBasedHierarchy isAbstract="false" name="YEAR ID" xmi.id="a163"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a164"/><CWM:TaggedValue tag="HIERARCHY_HAVING_ALL" value="Y" xmi.id="a165"/></CWM:ModelElement.taggedValue><CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation isAbstract="false" name="YEAR ID" xmi.id="a166"><CWMOLAP:HierarchyLevelAssociation.currentLevel><CWMOLAP:Level xmi.idref="a167"/></CWMOLAP:HierarchyLevelAssociation.currentLevel></CWMOLAP:HierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy.hierarchyLevelAssociation></CWMOLAP:LevelBasedHierarchy></CWMOLAP:Dimension.hierarchy><CWMOLAP:Dimension.memberSelection><CWMOLAP:Level isAbstract="false" name="YEAR ID" xmi.id="a167"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="HIERARCHY_LEVEL_UNIQUE_MEMBERS" value="N" xmi.id="a168"/><CWM:TaggedValue tag="HIERARCHY_LEVEL_REFERENCE_COLUMN" value="LC_ORDERFACT_YEAR_ID_OLAP_2" xmi.id="a169"/></CWM:ModelElement.taggedValue><CWMOLAP:Level.hierarchyLevelAssociation><CWMOLAP:HierarchyLevelAssociation xmi.idref="a166"/></CWMOLAP:Level.hierarchyLevelAssociation></CWMOLAP:Level></CWMOLAP:Dimension.memberSelection></CWMOLAP:Dimension></CWMOLAP:Schema.dimension></CWMOLAP:Schema><CWMRDB:Catalog name="SampleData" xmi.id="a170"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="DATABASE_TYPE" value="HYPERSONIC" xmi.id="a171"/><CWM:TaggedValue tag="DATABASE_ACCESS" value="NATIVE" xmi.id="a172"/><CWM:TaggedValue tag="DATABASE_DATABASE" value="SampleData" xmi.id="a173"/><CWM:TaggedValue tag="DATABASE_SERVER" value="localhost" xmi.id="a174"/><CWM:TaggedValue tag="DATABASE_PORT" value="9001" xmi.id="a175"/><CWM:TaggedValue tag="DATABASE_USERNAME" value="pentaho_user" xmi.id="a176"/><CWM:TaggedValue tag="DATABASE_PASSWORD" value="password" xmi.id="a177"/><CWM:TaggedValue tag="DATABASE_ATTRIBUTE_PREFIX_SUPPORTS_BOOLEAN_DATA_TYPE" value="Y" xmi.id="a178"/><CWM:TaggedValue tag="DATABASE_ATTRIBUTE_PREFIX_FORCE_IDENTIFIERS_TO_LOWERCASE" value="N" xmi.id="a179"/><CWM:TaggedValue tag="DATABASE_ATTRIBUTE_PREFIX_IS_CLUSTERED" value="N" xmi.id="a180"/><CWM:TaggedValue tag="DATABASE_ATTRIBUTE_PREFIX_FORCE_IDENTIFIERS_TO_UPPERCASE" value="N" xmi.id="a181"/><CWM:TaggedValue tag="DATABASE_ATTRIBUTE_PREFIX_QUOTE_ALL_FIELDS" value="N" xmi.id="a182"/><CWM:TaggedValue tag="DATABASE_ATTRIBUTE_PREFIX_USE_POOLING" value="N" xmi.id="a183"/><CWM:TaggedValue tag="DATABASE_ATTRIBUTE_PREFIX_SUPPORTS_TIMESTAMP_DATA_TYPE" value="Y" xmi.id="a184"/><CWM:TaggedValue tag="DATABASE_ATTRIBUTE_PREFIX_PORT_NUMBER" value="9001" xmi.id="a185"/><CWM:TaggedValue tag="DATABASE_ATTRIBUTE_PREFIX_PRESERVE_RESERVED_WORD_CASE" value="N" xmi.id="a186"/></CWM:ModelElement.taggedValue></CWMRDB:Catalog><CWMRDB:Table isAbstract="false" isSystem="false" isTemporary="false" name="PT_ORDERFACT" xmi.id="a187"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="TABLE_TARGET_DATABASE_NAME" value="SampleData" xmi.id="a192"/></CWM:ModelElement.taggedValue><CWM:Namespace.ownedElement><CWMRDB:Column name="ORDERNUMBER" xmi.id="a193"/><CWMRDB:Column name="PRODUCTCODE" xmi.id="a200"/><CWMRDB:Column name="QUANTITYORDERED" xmi.id="a207"/><CWMRDB:Column name="PRICEEACH" xmi.id="a214"/><CWMRDB:Column name="ORDERLINENUMBER" xmi.id="a221"/><CWMRDB:Column name="TOTALPRICE" xmi.id="a228"/><CWMRDB:Column name="ORDERDATE" xmi.id="a235"/><CWMRDB:Column name="REQUIREDDATE" xmi.id="a242"/><CWMRDB:Column name="SHIPPEDDATE" xmi.id="a249"/><CWMRDB:Column name="STATUS" xmi.id="a256"/><CWMRDB:Column name="COMMENTS" xmi.id="a263"/><CWMRDB:Column name="CUSTOMERNUMBER" xmi.id="a270"/><CWMRDB:Column name="TIME_ID" xmi.id="a277"/><CWMRDB:Column name="QTR_ID" xmi.id="a284"/><CWMRDB:Column name="MONTH_ID" xmi.id="a291"/><CWMRDB:Column name="YEAR_ID" xmi.id="a298"/></CWM:Namespace.ownedElement></CWMRDB:Table><CWMMDB:Schema name="MODEL_1" xmi.id="a305"><CWM:Namespace.ownedElement><CWM:Extent name="ORDERFACT" xmi.id="a313"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_ROOT" value="Y" xmi.id="a315"/></CWM:ModelElement.taggedValue><CWM:Namespace.ownedElement><CWM:Attribute name="LC_ORDERFACT_COMMENTS" xmi.id="a316"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a317"/></CWM:ModelElement.taggedValue></CWM:Attribute><CWM:Attribute name="LC_ORDERFACT_CUSTOMERNUMBER" xmi.id="a318"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a319"/></CWM:ModelElement.taggedValue></CWM:Attribute><CWM:Attribute name="LC_ORDERFACT_MONTH_ID" xmi.id="a320"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a321"/></CWM:ModelElement.taggedValue></CWM:Attribute><CWM:Attribute name="LC_ORDERFACT_ORDERDATE" xmi.id="a322"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a323"/></CWM:ModelElement.taggedValue></CWM:Attribute><CWM:Attribute name="LC_ORDERFACT_ORDERLINENUMBER" xmi.id="a324"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a325"/></CWM:ModelElement.taggedValue></CWM:Attribute><CWM:Attribute name="LC_ORDERFACT_ORDERNUMBER" xmi.id="a326"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a327"/></CWM:ModelElement.taggedValue></CWM:Attribute><CWM:Attribute name="LC_ORDERFACT_PRICEEACH" xmi.id="a328"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a329"/></CWM:ModelElement.taggedValue></CWM:Attribute><CWM:Attribute name="LC_ORDERFACT_PRODUCTCODE" xmi.id="a330"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a331"/></CWM:ModelElement.taggedValue></CWM:Attribute><CWM:Attribute name="LC_ORDERFACT_QTR_ID" xmi.id="a332"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a333"/></CWM:ModelElement.taggedValue></CWM:Attribute><CWM:Attribute name="LC_ORDERFACT_QUANTITYORDERED" xmi.id="a334"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a335"/></CWM:ModelElement.taggedValue></CWM:Attribute><CWM:Attribute name="LC_ORDERFACT_REQUIREDDATE" xmi.id="a336"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a337"/></CWM:ModelElement.taggedValue></CWM:Attribute><CWM:Attribute name="LC_ORDERFACT_SHIPPEDDATE" xmi.id="a338"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a339"/></CWM:ModelElement.taggedValue></CWM:Attribute><CWM:Attribute name="LC_ORDERFACT_STATUS" xmi.id="a340"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a341"/></CWM:ModelElement.taggedValue></CWM:Attribute><CWM:Attribute name="LC_ORDERFACT_TIME_ID" xmi.id="a342"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a343"/></CWM:ModelElement.taggedValue></CWM:Attribute><CWM:Attribute name="LC_ORDERFACT_TOTALPRICE" xmi.id="a344"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a345"/></CWM:ModelElement.taggedValue></CWM:Attribute><CWM:Attribute name="LC_ORDERFACT_YEAR_ID" xmi.id="a346"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_CATEGORY_TYPE" value="Column" xmi.id="a347"/></CWM:ModelElement.taggedValue></CWM:Attribute></CWM:Namespace.ownedElement></CWM:Extent></CWM:Namespace.ownedElement><CWMMDB:Schema.dimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_COMMENTS" xmi.id="a351"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a356"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="COMMENTS" xmi.id="a357"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_CUSTOMERNUMBER" xmi.id="a358"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a364"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="CUSTOMERNUMBER" xmi.id="a365"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_MONTH_ID" xmi.id="a366"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a372"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="MONTH_ID" xmi.id="a373"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_ORDERDATE" xmi.id="a374"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a379"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="ORDERDATE" xmi.id="a380"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_ORDERLINENUMBER" xmi.id="a381"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a387"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="ORDERLINENUMBER" xmi.id="a388"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_ORDERNUMBER" xmi.id="a389"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a395"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="ORDERNUMBER" xmi.id="a396"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_PRICEEACH" xmi.id="a397"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a403"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="PRICEEACH" xmi.id="a404"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_PRODUCTCODE" xmi.id="a405"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a410"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="PRODUCTCODE" xmi.id="a411"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_QTR_ID" xmi.id="a412"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a418"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="QTR_ID" xmi.id="a419"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_QUANTITYORDERED" xmi.id="a420"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a426"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="QUANTITYORDERED" xmi.id="a427"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_REQUIREDDATE" xmi.id="a428"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a433"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="REQUIREDDATE" xmi.id="a434"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_SHIPPEDDATE" xmi.id="a435"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a440"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="SHIPPEDDATE" xmi.id="a441"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_STATUS" xmi.id="a442"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a447"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="STATUS" xmi.id="a448"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_TIME_ID" xmi.id="a449"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a454"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="TIME_ID" xmi.id="a455"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_TOTALPRICE" xmi.id="a456"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a462"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="TOTALPRICE" xmi.id="a463"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_YEAR_ID" xmi.id="a464"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT" xmi.id="a470"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="YEAR_ID" xmi.id="a471"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a348"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject></CWMMDB:Schema.dimensionedObject><CWMMDB:Schema.dimension><CWMMDB:Dimension isAbstract="false" name="BT_ORDERFACT_ORDERFACT" xmi.id="a348"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_TABLE_PHYSICAL_TABLE_NAME" value="PT_ORDERFACT" xmi.id="a350"/></CWM:ModelElement.taggedValue><CWMMDB:Dimension.dimensionedObject><CWMMDB:DimensionedObject xmi.idref="a351"/><CWMMDB:DimensionedObject xmi.idref="a358"/><CWMMDB:DimensionedObject xmi.idref="a366"/><CWMMDB:DimensionedObject xmi.idref="a374"/><CWMMDB:DimensionedObject xmi.idref="a381"/><CWMMDB:DimensionedObject xmi.idref="a389"/><CWMMDB:DimensionedObject xmi.idref="a397"/><CWMMDB:DimensionedObject xmi.idref="a405"/><CWMMDB:DimensionedObject xmi.idref="a412"/><CWMMDB:DimensionedObject xmi.idref="a420"/><CWMMDB:DimensionedObject xmi.idref="a428"/><CWMMDB:DimensionedObject xmi.idref="a435"/><CWMMDB:DimensionedObject xmi.idref="a442"/><CWMMDB:DimensionedObject xmi.idref="a449"/><CWMMDB:DimensionedObject xmi.idref="a456"/><CWMMDB:DimensionedObject xmi.idref="a464"/></CWMMDB:Dimension.dimensionedObject></CWMMDB:Dimension></CWMMDB:Schema.dimension></CWMMDB:Schema><CWMMDB:Schema name="MODEL_1_OLAP" xmi.id="a472"><CWM:Namespace.ownedElement/><CWMMDB:Schema.dimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_COMMENTS_OLAP" xmi.id="a486"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a490"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="COMMENTS" xmi.id="a491"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_CUSTOMERNUMBER_OLAP" xmi.id="a492"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a497"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="CUSTOMERNUMBER" xmi.id="a498"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_CUSTOMERNUMBER_OLAP_2" xmi.id="a499"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a503"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="CUSTOMERNUMBER" xmi.id="a504"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_MONTH_ID_OLAP" xmi.id="a505"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a510"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="MONTH_ID" xmi.id="a511"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_MONTH_ID_OLAP_2" xmi.id="a512"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a516"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="MONTH_ID" xmi.id="a517"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_ORDERDATE_OLAP" xmi.id="a518"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a522"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="ORDERDATE" xmi.id="a523"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_ORDERLINENUMBER_OLAP" xmi.id="a524"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a529"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="ORDERLINENUMBER" xmi.id="a530"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_ORDERLINENUMBER_OLAP_2" xmi.id="a531"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a535"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="ORDERLINENUMBER" xmi.id="a536"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_ORDERNUMBER_OLAP" xmi.id="a537"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a542"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="ORDERNUMBER" xmi.id="a543"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_ORDERNUMBER_OLAP_2" xmi.id="a544"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a548"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="ORDERNUMBER" xmi.id="a549"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_PRICEEACH_OLAP" xmi.id="a550"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a555"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="PRICEEACH" xmi.id="a556"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_PRICEEACH_OLAP_2" xmi.id="a557"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a561"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="PRICEEACH" xmi.id="a562"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_PRODUCTCODE_OLAP" xmi.id="a563"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a567"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="PRODUCTCODE" xmi.id="a568"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_QTR_ID_OLAP" xmi.id="a569"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a574"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="QTR_ID" xmi.id="a575"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_QTR_ID_OLAP_2" xmi.id="a576"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a580"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="QTR_ID" xmi.id="a581"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_QUANTITYORDERED_OLAP" xmi.id="a582"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a587"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="QUANTITYORDERED" xmi.id="a588"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_QUANTITYORDERED_OLAP_2" xmi.id="a589"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a593"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="QUANTITYORDERED" xmi.id="a594"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_REQUIREDDATE_OLAP" xmi.id="a595"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a599"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="REQUIREDDATE" xmi.id="a600"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_SHIPPEDDATE_OLAP" xmi.id="a601"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a605"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="SHIPPEDDATE" xmi.id="a606"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_STATUS_OLAP" xmi.id="a607"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a611"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="STATUS" xmi.id="a612"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_TIME_ID_OLAP" xmi.id="a613"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a617"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="TIME_ID" xmi.id="a618"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_TOTALPRICE_OLAP" xmi.id="a619"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a624"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="TOTALPRICE" xmi.id="a625"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_TOTALPRICE_OLAP_2" xmi.id="a626"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a630"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="TOTALPRICE" xmi.id="a631"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_YEAR_ID_OLAP" xmi.id="a632"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a637"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="YEAR_ID" xmi.id="a638"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject><CWMMDB:DimensionedObject name="LC_ORDERFACT_YEAR_ID_OLAP_2" xmi.id="a639"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_COLUMN_BUSINESS_TABLE" value="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a643"/><CWM:TaggedValue tag="BUSINESS_COLUMN_PHYSICAL_COLUMN_NAME" value="YEAR_ID" xmi.id="a644"/></CWM:ModelElement.taggedValue><CWMMDB:DimensionedObject.dimension><CWMMDB:Dimension xmi.idref="a483"/></CWMMDB:DimensionedObject.dimension></CWMMDB:DimensionedObject></CWMMDB:Schema.dimensionedObject><CWMMDB:Schema.dimension><CWMMDB:Dimension isAbstract="false" name="BT_ORDERFACT_ORDERFACT_OLAP" xmi.id="a483"><CWM:ModelElement.taggedValue><CWM:TaggedValue tag="BUSINESS_TABLE_PHYSICAL_TABLE_NAME" value="PT_ORDERFACT" xmi.id="a485"/></CWM:ModelElement.taggedValue><CWMMDB:Dimension.dimensionedObject><CWMMDB:DimensionedObject xmi.idref="a486"/><CWMMDB:DimensionedObject xmi.idref="a492"/><CWMMDB:DimensionedObject xmi.idref="a499"/><CWMMDB:DimensionedObject xmi.idref="a505"/><CWMMDB:DimensionedObject xmi.idref="a512"/><CWMMDB:DimensionedObject xmi.idref="a518"/><CWMMDB:DimensionedObject xmi.idref="a524"/><CWMMDB:DimensionedObject xmi.idref="a531"/><CWMMDB:DimensionedObject xmi.idref="a537"/><CWMMDB:DimensionedObject xmi.idref="a544"/><CWMMDB:DimensionedObject xmi.idref="a550"/><CWMMDB:DimensionedObject xmi.idref="a557"/><CWMMDB:DimensionedObject xmi.idref="a563"/><CWMMDB:DimensionedObject xmi.idref="a569"/><CWMMDB:DimensionedObject xmi.idref="a576"/><CWMMDB:DimensionedObject xmi.idref="a582"/><CWMMDB:DimensionedObject xmi.idref="a589"/><CWMMDB:DimensionedObject xmi.idref="a595"/><CWMMDB:DimensionedObject xmi.idref="a601"/><CWMMDB:DimensionedObject xmi.idref="a607"/><CWMMDB:DimensionedObject xmi.idref="a613"/><CWMMDB:DimensionedObject xmi.idref="a619"/><CWMMDB:DimensionedObject xmi.idref="a626"/><CWMMDB:DimensionedObject xmi.idref="a632"/><CWMMDB:DimensionedObject xmi.idref="a639"/></CWMMDB:Dimension.dimensionedObject></CWMMDB:Dimension></CWMMDB:Schema.dimension></CWMMDB:Schema></XMI.content></XMI>
------WebKitFormBoundaryNLNb246RTFIn1elY
Content-Disposition: form-data; name="overwrite"

true
------WebKitFormBoundaryNLNb246RTFIn1elY
Content-Disposition: form-data; name="checkConnection"

true
------WebKitFormBoundaryNLNb246RTFIn1elY--</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
</collectionProp>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol"></stringProp>
<stringProp name="HTTPSampler.contentEncoding">utf-8</stringProp>
<stringProp name="HTTPSampler.path">/pentaho/plugin/data-access/api/datasource/dsw/import</stringProp>
<stringProp name="HTTPSampler.method">PUT</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<boolProp name="HTTPSampler.BROWSER_COMPATIBLE_MULTIPART">true</boolProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
</HTTPSamplerProxy>
<hashTree>
<HeaderManager guiclass="HeaderPanel" testclass="HeaderManager" testname="HTTP Header Manager" enabled="true">
<collectionProp name="HeaderManager.headers">
<elementProp name="" elementType="Header">
<stringProp name="Header.name">Content-Type</stringProp>
<stringProp name="Header.value">multipart/form-data; boundary=----WebKitFormBoundaryNLNb246RTFIn1elY</stringProp>
</elementProp>
</collectionProp>
</HeaderManager>
<hashTree/>
<ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true">
<collectionProp name="Asserion.test_strings">
<stringProp name="1555041046">Testing.xmi</stringProp>
</collectionProp>
<stringProp name="Assertion.test_field">Assertion.response_data</stringProp>
<boolProp name="Assertion.assume_success">false</boolProp>
<intProp name="Assertion.test_type">2</intProp>
</ResponseAssertion>
<hashTree/>
</hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="POST /gwtrpc/DatasourceService" enabled="true">
<boolProp name="HTTPSampler.postBodyRaw">true</boolProp>
<elementProp name="HTTPsampler.Arguments" elementType="Arguments">
<collectionProp name="Arguments.arguments">
<elementProp name="" elementType="HTTPArgument">
<boolProp name="HTTPArgument.always_encode">false</boolProp>
<stringProp name="Argument.value">7|0|32|http://localhost:8080/pentaho/content/data-access/resources/gwt/|40A177A665EC72082B8DFDC39792500C|org.pentaho.platform.dataaccess.datasource.wizard.service.gwt.IGwtDSWDatasourceService|generateQueryDomain|java.lang.String/2004016611|org.pentaho.database.model.DatabaseConnection/1884744373|org.pentaho.platform.dataaccess.datasource.wizard.models.DatasourceDTO/294976755|jmeter-dsw-pentaho-test|select * from ORDERS|org.pentaho.database.model.DatabaseAccessType/4183445440|NATIVE|java.util.HashMap/1797211028|PORT_NUMBER|9001||SampleData|org.pentaho.database.model.DatabaseType/3902018248|http://hsqldb.sourceforge.net/doc/guide/ch04.html#N109DA|Hypersonic|HYPERSONIC|java.util.ArrayList/4159755760|localhost|0af3bbee-2b7f-4ffd-90e5-a3dad41405f6|pentaho_user|org.pentaho.platform.dataaccess.datasource.wizard.models.ModelInfo/3004652543|org.pentaho.platform.dataaccess.datasource.wizard.models.CsvFileInfo/1900537812|.|,|"|---|jmeter-dsw-pentaho-test|org.pentaho.platform.dataaccess.datasource.DatasourceType/4126357895|1|2|3|4|4|5|5|6|7|8|9|6|10|0|11|12|1|5|13|5|14|0|15|12|0|15|16|14|17|9001|18|19|20|21|3|-2|10|1|10|4|12|0|0|0|22|23|15|15|0|20|16|0|0|0|0|0|24|1|0|7|16|25|0|21|0|0|26|0|15|27|28|29|15|0|0|28|1|30|15|0|0|0|31|21|0|0|8|32|0|9|2|</stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
</collectionProp>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol"></stringProp>
<stringProp name="HTTPSampler.contentEncoding"></stringProp>
<stringProp name="HTTPSampler.path">/pentaho/gwtrpc/DatasourceService</stringProp>
<stringProp name="HTTPSampler.method">POST</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>
<stringProp name="HTTPSampler.embedded_url_re"></stringProp>
</HTTPSamplerProxy>
<hashTree>
<HeaderManager guiclass="HeaderPanel" testclass="HeaderManager" testname="HTTP Header Manager" enabled="true">
<collectionProp name="HeaderManager.headers">
<elementProp name="" elementType="Header">
<stringProp name="Header.name">Content-Type</stringProp>
<stringProp name="Header.value">text/x-gwt-rpc</stringProp>
</elementProp>
</collectionProp>
</HeaderManager>
<hashTree/>
<ResponseAssertion guiclass="AssertionGui" testclass="ResponseAssertion" testname="Response Assertion" enabled="true">
<collectionProp name="Asserion.test_strings">
<stringProp name="2524">OK</stringProp>
</collectionProp>
<stringProp name="Assertion.test_field">Assertion.response_data</stringProp>
<boolProp name="Assertion.assume_success">false</boolProp>
<intProp name="Assertion.test_type">2</intProp>
</ResponseAssertion>
<hashTree/>
</hashTree>
<HTTPSamplerProxy guiclass="HttpTestSampleGui" testclass="HTTPSamplerProxy" testname="GET /plugin/data-access/api/data-access/api/datasource/dsw/domain" enabled="true">
<boolProp name="HTTPSampler.postBodyRaw">true</boolProp>
<elementProp name="HTTPsampler.Arguments" elementType="Arguments">
<collectionProp name="Arguments.arguments">
<elementProp name="" elementType="HTTPArgument">
<boolProp name="HTTPArgument.always_encode">false</boolProp>
<stringProp name="Argument.value"></stringProp>
<stringProp name="Argument.metadata">=</stringProp>
</elementProp>
</collectionProp>
</elementProp>
<stringProp name="HTTPSampler.domain"></stringProp>
<stringProp name="HTTPSampler.port"></stringProp>
<stringProp name="HTTPSampler.connect_timeout"></stringProp>
<stringProp name="HTTPSampler.response_timeout"></stringProp>
<stringProp name="HTTPSampler.protocol"></stringProp>
<stringProp name="HTTPSampler.contentEncoding">utf-8</stringProp>
<stringProp name="HTTPSampler.path">/pentaho/plugin/data-access/api/datasource/dsw/domain</stringProp>
<stringProp name="HTTPSampler.method">GET</stringProp>
<boolProp name="HTTPSampler.follow_redirects">true</boolProp>
<boolProp name="HTTPSampler.auto_redirects">false</boolProp>
<boolProp name="HTTPSampler.use_keepalive">true</boolProp>
<boolProp name="HTTPSampler.DO_MULTIPART_POST">false</boolProp>
<boolProp name="HTTPSampler.monitor">false</boolProp>