forked from scrambldchannel/tm1-model-pony-music-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
all_cubes.json
1344 lines (1344 loc) · 30.6 KB
/
all_cubes.json
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
{
"@type":"Collection(Cube)",
"value":
[
{
"Name":"Allocation Calculation",
"[email protected]":"Allocation Calculation.rules",
"Dimensions":
[
{
"@id":"Dimensions('organization')"
},
{
"@id":"Dimensions('Allocation List')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Month')"
},
{
"@id":"Dimensions('Version')"
},
{
"@id":"Dimensions('Allocation Calculation')"
}
],
[
"Allocation Calculation.views/All.json",
"Allocation Calculation.views/Allocation Calculation.json",
"Allocation Calculation.views/Allocation Summary.json",
"Allocation Calculation.views/Default.json",
"Allocation Calculation.views/Drill_Allocation Receivers.json"
]
},
{
"Name":"Allocation Source Definition",
"[email protected]":"Allocation Source Definition.rules",
"Dimensions":
[
{
"@id":"Dimensions('Allocation List')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Version')"
},
{
"@id":"Dimensions('Allocation Source Definition')"
}
],
[
"Allocation Source Definition.views/All.json",
"Allocation Source Definition.views/Allocation Source Definition.json",
"Allocation Source Definition.views/Default.json",
"Allocation Source Definition.views/Drill_Allocation Senders.json",
"Allocation Source Definition.views/zCopyFrom.json"
]
},
{
"Name":"Asset Life",
"[email protected]":"Asset Life.rules",
"Dimensions":
[
{
"@id":"Dimensions('Asset Types')"
},
{
"@id":"Dimensions('Version')"
},
{
"@id":"Dimensions('Asset Life')"
}
],
[
"Asset Life.views/All.json",
"Asset Life.views/Asset Life.json",
"Asset Life.views/Default.json",
"Asset Life.views/Drill_Asset Life.json",
"Asset Life.views/zCopyFrom.json"
]
},
{
"Name":"Base Sales Forecast",
"[email protected]":"Base Sales Forecast.rules",
"Dimensions":
[
{
"@id":"Dimensions('Country and Region')"
},
{
"@id":"Dimensions('Retailers')"
},
{
"@id":"Dimensions('Existing Stores Revenue')"
},
{
"@id":"Dimensions('Store Type')"
},
{
"@id":"Dimensions('Budget version')"
},
{
"@id":"Dimensions('Month')"
}
],
[
"Base Sales Forecast.views/All.json",
"Base Sales Forecast.views/Base Sales Forecast.json",
"Base Sales Forecast.views/Basisabsatzprognose_DE.json",
"Base Sales Forecast.views/previsiU+00F3n de las ventas base_es.json",
"Base Sales Forecast.views/Previsión de las ventas base_ES.json",
"Base Sales Forecast.views/prU+00E9visions de ventes de base_fr.json",
"Base Sales Forecast.views/Prévisions de ventes de base_FR.json",
"Base Sales Forecast.views/U+57FAU+672CU+8CA9U+58F2U+4E88U+6E2C_ja.json",
"Base Sales Forecast.views/U+57FAU+672CU+9500U+552EU+9884U+6D4B_sc.json",
"Base Sales Forecast.views/基本販売予測_JA.json",
"Base Sales Forecast.views/基本销售预测_SC.json"
]
},
{
"Name":"Benefit Assumptions",
"[email protected]":"Benefit Assumptions.rules",
"Dimensions":
[
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Version')"
},
{
"@id":"Dimensions('Benefit')"
}
],
[
"Benefit Assumptions.views/All.json",
"Benefit Assumptions.views/Benefit Assumptions.json",
"Benefit Assumptions.views/Default.json",
"Benefit Assumptions.views/zCopyFrom.json"
]
},
{
"Name":"Calendar",
"[email protected]":"Calendar.rules",
"Dimensions":
[
{
"@id":"Dimensions('Calendar')"
},
{
"@id":"Dimensions('String')"
}
],
[
"Calendar.views/All.json",
"Calendar.views/Calendar.json",
"Calendar.views/Default.json",
"Calendar.views/Update Forecast Month.json"
]
},
{
"Name":"Capital",
"[email protected]":"Capital.rules",
"[email protected]":"Capital.drillthrough.rules",
"Dimensions":
[
{
"@id":"Dimensions('organization')"
},
{
"@id":"Dimensions('CapitalList')"
},
{
"@id":"Dimensions('Asset Types')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Version')"
},
{
"@id":"Dimensions('Capital')"
}
],
[
"Capital.views/All.json",
"Capital.views/Capital.json",
"Capital.views/Default.json",
"Capital.views/Drill_Capital.json",
"Capital.views/Input.json",
"Capital.views/zCopyFrom.json"
]
},
{
"Name":"Compensation",
"[email protected]":"Compensation.rules",
"Dimensions":
[
{
"@id":"Dimensions('organization')"
},
{
"@id":"Dimensions('EmployeeList')"
},
{
"@id":"Dimensions('Month')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Version')"
},
{
"@id":"Dimensions('Compensation')"
}
],
[
"Compensation.views/All.json",
"Compensation.views/Compensation.json",
"Compensation.views/Default.json",
"Compensation.views/Input.json"
]
},
{
"Name":"Compensation Reporting",
"[email protected]":"Compensation Reporting.rules",
"Dimensions":
[
{
"@id":"Dimensions('Employee Name')"
},
{
"@id":"Dimensions('organization')"
},
{
"@id":"Dimensions('EmployeeList')"
},
{
"@id":"Dimensions('Month')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Version')"
},
{
"@id":"Dimensions('Compensation')"
}
],
[
"Compensation Reporting.views/All.json",
"Compensation Reporting.views/Compensation by Employee.json",
"Compensation Reporting.views/Compensation Review by Employee.json",
"Compensation Reporting.views/Default.json",
"Compensation Reporting.views/FTE by Employee.json"
]
},
{
"Name":"Currency Info",
"[email protected]":"Currency Info.rules",
"Dimensions":
[
{
"@id":"Dimensions('Countries_Currency')"
},
{
"@id":"Dimensions('Currency Info')"
}
],
[
"Currency Info.views/All.json",
"Currency Info.views/Currency Info.json",
"Currency Info.views/informaciU+00F3n de moneda_es.json",
"Currency Info.views/Información de moneda_ES.json",
"Currency Info.views/informations relatives U+00E0 la devise_fr.json",
"Currency Info.views/Informations relatives à la devise_FR.json",
"Currency Info.views/U+8D27U+5E01U+4FE1U+606F_sc.json",
"Currency Info.views/U+901AU+8CA8U+60C5U+5831_ja.json",
"Currency Info.views/wU+00E4hrungsinformationen_de.json",
"Currency Info.views/Währungsinformationen_DE.json",
"Currency Info.views/货币信息_SC.json",
"Currency Info.views/通貨情報_JA.json"
]
},
{
"Name":"Depreciation",
"[email protected]":"Depreciation.rules",
"Dimensions":
[
{
"@id":"Dimensions('organization')"
},
{
"@id":"Dimensions('Asset Types')"
},
{
"@id":"Dimensions('Month')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Version')"
},
{
"@id":"Dimensions('Depreciation')"
}
],
[
"Depreciation.views/All.json",
"Depreciation.views/Capital Depreciation Review.json",
"Depreciation.views/Default.json",
"Depreciation.views/Depreciation.json",
"Depreciation.views/Depreciation by Month.json",
"Depreciation.views/Drill_Depreciation.json"
]
},
{
"Name":"Dimensions by Cubes",
"[email protected]":"Dimensions by Cubes.rules",
"Dimensions":
[
{
"@id":"Dimensions('}Dimensions')"
},
{
"@id":"Dimensions('}Cubes')"
},
{
"@id":"Dimensions('List')"
}
],
"[email protected]":[]
},
{
"Name":"Employee",
"[email protected]":"Employee.rules",
"[email protected]":"Employee.drillthrough.rules",
"Dimensions":
[
{
"@id":"Dimensions('organization')"
},
{
"@id":"Dimensions('EmployeeList')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Version')"
},
{
"@id":"Dimensions('Employee')"
}
],
[
"Employee.views/All.json",
"Employee.views/Default.json",
"Employee.views/Drill_Employee.json",
"Employee.views/Employee.json",
"Employee.views/Input.json",
"Employee.views/Name.json",
"Employee.views/zCopyFrom.json"
]
},
{
"Name":"Exchange Rates",
"[email protected]":"Exchange Rates.rules",
"Dimensions":
[
{
"@id":"Dimensions('Currency')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Month')"
},
{
"@id":"Dimensions('Exchange Rate')"
},
{
"@id":"Dimensions('Exchange Rate Type')"
},
{
"@id":"Dimensions('Version')"
}
],
[
"Exchange Rates.views/All.json",
"Exchange Rates.views/Default.json",
"Exchange Rates.views/Exchange Rates.json",
"Exchange Rates.views/zCopyFrom.json"
]
},
{
"Name":"ExternalFactors",
"[email protected]":"ExternalFactors.rules",
"Dimensions":
[
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Month')"
},
{
"@id":"Dimensions('Version')"
},
{
"@id":"Dimensions('ExternalFactors')"
}
],
[
"ExternalFactors.views/All.json",
"ExternalFactors.views/Default.json",
"ExternalFactors.views/ExportToSPSS.json",
"ExternalFactors.views/ExternalFactors.json"
]
},
{
"Name":"FcstMethod",
"[email protected]":"FcstMethod.rules",
"Dimensions":
[
{
"@id":"Dimensions('Account')"
},
{
"@id":"Dimensions('FcstMethod')"
}
],
[
"FcstMethod.views/All.json"
]
},
{
"Name":"GLTransactions",
"[email protected]":"GLTransactions.rules",
"Dimensions":
[
{
"@id":"Dimensions('TrxID')"
},
{
"@id":"Dimensions('organization')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Month')"
},
{
"@id":"Dimensions('Account')"
},
{
"@id":"Dimensions('TrxMeasures')"
}
],
[
"GLTransactions.views/All.json",
"GLTransactions.views/GLTransactions.json",
"GLTransactions.views/zDelete.json"
]
},
{
"Name":"Gross Margin Calculation",
"[email protected]":"Gross Margin Calculation.rules",
"Dimensions":
[
{
"@id":"Dimensions('Retailers')"
},
{
"@id":"Dimensions('Country and Region')"
},
{
"@id":"Dimensions('Store Type')"
},
{
"@id":"Dimensions('Month')"
},
{
"@id":"Dimensions('Budget version')"
},
{
"@id":"Dimensions('Gross Sales Margin')"
}
],
[
"Gross Margin Calculation.views/All.json",
"Gross Margin Calculation.views/Bruttogewinnspannenberechnung_DE.json",
"Gross Margin Calculation.views/Calcul marge brute_FR.json",
"Gross Margin Calculation.views/cU+00E1lc. margen bruto_es.json",
"Gross Margin Calculation.views/Cálc. margen bruto_ES.json",
"Gross Margin Calculation.views/Gross Margin Calculation.json",
"Gross Margin Calculation.views/U+6BDBU+5229U+7387U+8BA1U+7B97_sc.json",
"Gross Margin Calculation.views/U+7C97U+5229U+76CAU+8A08U+7B97_ja.json",
"Gross Margin Calculation.views/毛利率计算_SC.json",
"Gross Margin Calculation.views/粗利益計算_JA.json"
]
},
{
"Name":"Income Statement",
"[email protected]":"Income Statement.rules",
"[email protected]":"Income Statement.drillthrough.rules",
"Dimensions":
[
{
"@id":"Dimensions('Currency Calc')"
},
{
"@id":"Dimensions('organization')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Month')"
},
{
"@id":"Dimensions('Account')"
},
{
"@id":"Dimensions('Version')"
}
],
[
"Income Statement.views/All.json",
"Income Statement.views/Analysis.json",
"Income Statement.views/BudgetFrom.json",
"Income Statement.views/Budget Variance.json",
"Income Statement.views/Compensation by Quarter.json",
"Income Statement.views/Currency.json",
"Income Statement.views/Currency Change.json",
"Income Statement.views/Default.json",
"Income Statement.views/Deprecation Budget vs Actual.json",
"Income Statement.views/Deprecation Budget vs Target.json",
"Income Statement.views/Expenses.json",
"Income Statement.views/Forecast by Month.json",
"Income Statement.views/FTE by Month IS.json",
"Income Statement.views/Gross Margin Budget vs Target.json",
"Income Statement.views/High Level PL Report.json",
"Income Statement.views/Income Statement.json",
"Income Statement.views/Income Statement by Quarter.json",
"Income Statement.views/Income Statement Currency.json",
"Income Statement.views/OpEx.json",
"Income Statement.views/OPEX Budget vs Target.json",
"Income Statement.views/OpExView.json",
"Income Statement.views/Opex Year Over Year.json",
"Income Statement.views/Payroll Budget vs Target.json",
"Income Statement.views/Phased Costs.json",
"Income Statement.views/Summary.json",
"Income Statement.views/Target.json",
"Income Statement.views/zActualForTrx.json",
"Income Statement.views/zCacheView.json",
"Income Statement.views/zClearComments.json",
"Income Statement.views/zCopyFrom.json",
"Income Statement.views/zMD_IncomeStatement.json"
]
},
{
"Name":"Income Statement Reporting",
"[email protected]":"Income Statement Reporting.rules",
"[email protected]":"Income Statement Reporting.drillthrough.rules",
"Dimensions":
[
{
"@id":"Dimensions('Currency Calc')"
},
{
"@id":"Dimensions('Organization Reporting')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Month')"
},
{
"@id":"Dimensions('Account')"
},
{
"@id":"Dimensions('Version')"
}
],
[
"Income Statement Reporting.views/All.json",
"Income Statement Reporting.views/Default.json",
"Income Statement Reporting.views/Income Statement - Management.json"
]
},
{
"Name":"Job Code Assumptions",
"[email protected]":"Job Code Assumptions.rules",
"Dimensions":
[
{
"@id":"Dimensions('jobcode')"
},
{
"@id":"Dimensions('JobCodeAsmpt')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Version')"
}
],
[
"Job Code Assumptions.views/All.json",
"Job Code Assumptions.views/By Department.json",
"Job Code Assumptions.views/Default.json",
"Job Code Assumptions.views/Drill.json",
"Job Code Assumptions.views/Job Code Assumptions.json",
"Job Code Assumptions.views/zCopyFrom.json"
]
},
{
"Name":"Job Type Assumption",
"[email protected]":"Job Type Assumption.rules",
"Dimensions":
[
{
"@id":"Dimensions('JobType')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Version')"
},
{
"@id":"Dimensions('JobTypeAssumption')"
}
],
[
"Job Type Assumption.views/All.json",
"Job Type Assumption.views/Default.json",
"Job Type Assumption.views/Drill.json",
"Job Type Assumption.views/Job Type Assumption.json",
"Job Type Assumption.views/zCopyFrom.json"
]
},
{
"Name":"Line Item Detail",
"[email protected]":"Line Item Detail.rules",
"Dimensions":
[
{
"@id":"Dimensions('organization')"
},
{
"@id":"Dimensions('Account')"
},
{
"@id":"Dimensions('LineItemList')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Version')"
},
{
"@id":"Dimensions('LineItemDetail')"
},
{
"@id":"Dimensions('Month')"
}
],
[
"Line Item Detail.views/All.json",
"Line Item Detail.views/Default.json",
"Line Item Detail.views/Drill_Line Item Detail.json",
"Line Item Detail.views/Line Item Detail.json",
"Line Item Detail.views/zCopyFrom.json"
]
},
{
"Name":"Metrics",
"[email protected]":"Metrics.rules",
"Dimensions":
[
{
"@id":"Dimensions('Metrics')"
},
{
"@id":"Dimensions('organization')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Month')"
},
{
"@id":"Dimensions('Metrics Indicators')"
}
],
[
"Metrics.views/24Retail Plan.json",
"Metrics.views/All.json",
"Metrics.views/Budget Performance Chart.json",
"Metrics.views/Budget Performance Scorecard.json",
"Metrics.views/Default.json",
"Metrics.views/Forecast Performance Chart.json",
"Metrics.views/Forecast Performance Scorecard.json",
"Metrics.views/Impact Analysis.json",
"Metrics.views/Performance Scorecard.json",
"Metrics.views/Performance Scorecard Chart.json",
"Metrics.views/Review.json",
"Metrics.views/Smartco 2015 Plan.json"
]
},
{
"Name":"New Store Plan",
"[email protected]":"New Store Plan.rules",
"Dimensions":
[
{
"@id":"Dimensions('Country and Region')"
},
{
"@id":"Dimensions('ID numbers')"
},
{
"@id":"Dimensions('Budget version')"
},
{
"@id":"Dimensions('New Stores')"
}
],
[
"New Store Plan.views/All.json",
"New Store Plan.views/neues geschU+00E4ft - plan_de.json",
"New Store Plan.views/Neues Geschäft - Plan_DE.json",
"New Store Plan.views/New Store Plan.json",
"New Store Plan.views/Nouveau plan de magasin_FR.json",
"New Store Plan.views/Nuevo plan de tienda_ES.json",
"New Store Plan.views/U+65B0U+5546U+5E97U+8BA1U+5212_sc.json",
"New Store Plan.views/U+65B0U+898FU+5E97U+8A08U+753B_ja.json",
"New Store Plan.views/新商店计划_SC.json",
"New Store Plan.views/新規店計画_JA.json"
]
},
{
"Name":"Phased Costs",
"[email protected]":"Phased Costs.rules",
"Dimensions":
[
{
"@id":"Dimensions('organization')"
},
{
"@id":"Dimensions('Account')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Version')"
},
{
"@id":"Dimensions('PhasedCosts')"
}
],
[
"Phased Costs.views/All.json",
"Phased Costs.views/Default.json",
"Phased Costs.views/Drill_Phased Costs.json",
"Phased Costs.views/Phased Costs.json",
"Phased Costs.views/zCopyFrom.json"
]
},
{
"Name":"Product",
"[email protected]":"Product.rules",
"Dimensions":
[
{
"@id":"Dimensions('Products')"
},
{
"@id":"Dimensions('Budget version')"
},
{
"@id":"Dimensions('Price and Cost')"
}
],
[
"Product.views/All.json",
"Product.views/Product.json",
"Product.views/Productos_ES.json",
"Product.views/Produits_FR.json",
"Product.views/Produkte_DE.json",
"Product.views/U+4EA7U+54C1_sc.json",
"Product.views/U+88FDU+54C1_ja.json",
"Product.views/产品_SC.json",
"Product.views/製品_JA.json"
]
},
{
"Name":"Promotions Plan",
"[email protected]":"Promotions Plan.rules",
"Dimensions":
[
{
"@id":"Dimensions('Country and Region')"
},
{
"@id":"Dimensions('ID numbers')"
},
{
"@id":"Dimensions('Budget version')"
},
{
"@id":"Dimensions('Promotions')"
}
],
[
"Promotions Plan.views/All.json",
"Promotions Plan.views/Plan de promociones_ES.json",
"Promotions Plan.views/Plan promotions_FR.json",
"Promotions Plan.views/Promotions Plan.json",
"Promotions Plan.views/U+30D7U+30EDU+30E2U+30FCU+30B7U+30E7U+30F3U+8A08U+753B_ja.json",
"Promotions Plan.views/U+4FC3U+9500U+8BA1U+5212_sc.json",
"Promotions Plan.views/Werbeaktionsplan_DE.json",
"Promotions Plan.views/プロモーション計画_JA.json",
"Promotions Plan.views/促销计划_SC.json"
]
},
{
"Name":"Rate BOM",
"[email protected]":"Rate BOM.rules",
"Dimensions":
[
{
"@id":"Dimensions('Month')"
},
{
"@id":"Dimensions('Plant')"
},
{
"@id":"Dimensions('product')"
},
{
"@id":"Dimensions('Rate Measure')"
},
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Version')"
}
],
[
"Rate BOM.views/24Retail BOM.json",
"Rate BOM.views/3G 64Gb BOM.json",
"Rate BOM.views/All.json",
"Rate BOM.views/Average BOM by Product.json",
"Rate BOM.views/Bom By SKU_Plant.json",
"Rate BOM.views/Commodity Example.json",
"Rate BOM.views/Component.json",
"Rate BOM.views/Default.json",
"Rate BOM.views/New SKU Add example.json",
"Rate BOM.views/Rate BOM.json",
"Rate BOM.views/Rate BOM Input.json",
"Rate BOM.views/Smartco BOM.json",
"Rate BOM.views/zCopyFrom.json",
"Rate BOM.views/zCopySKU_BOM.json"
]
},
{
"Name":"Record Price",
"Dimensions":
[
{
"@id":"Dimensions('Period')"
},
{
"@id":"Dimensions('Record')"
},
{
"@id":"Dimensions('Record Price Measure')"
}
],
"[email protected]":[]
},
{
"Name":"Record Rating",
"Dimensions":
[
{
"@id":"Dimensions('Period')"
},
{
"@id":"Dimensions('Chart')"
},
{
"@id":"Dimensions('Record')"
},
{
"@id":"Dimensions('Record Rating Measure')"
}
],
[
"Record Rating.views/Default.json"
]
},
{
"Name":"Record Sales",
"[email protected]":"Record Sales.rules",
"Dimensions":
[
{
"@id":"Dimensions('Period')"
},
{
"@id":"Dimensions('Store')"
},
{
"@id":"Dimensions('Record')"
},
{
"@id":"Dimensions('Record Sales Measure')"
}
],
[
"Record Sales.views/Default.json"
]
},
{
"Name":"Relative Time",
"[email protected]":"Relative Time.rules",
"Dimensions":
[
{
"@id":"Dimensions('Year')"
},
{
"@id":"Dimensions('Month')"
},
{
"@id":"Dimensions('Relative Time')"
}
],
[
"Relative Time.views/All.json",
"Relative Time.views/Default.json",
"Relative Time.views/Forecast Month.json",
"Relative Time.views/Relative Time.json"
]
},
{
"Name":"Revenue",
"[email protected]":"Revenue.rules",
"[email protected]":"Revenue.drillthrough.rules",