S_Offene_Auftraege.json 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108
  1. {
  2. "Model": {
  3. "Type": "ModelName",
  4. "Name": "Neues Modell",
  5. "ModelCodePage": "ibm-5348_P100-1997",
  6. "AutoAccess": "False",
  7. "UpdateCycle": "9",
  8. "ModelStamp": "1218210240",
  9. "Version": "10.2.6109.304",
  10. "ModelCategoryOrderDefault": "OrderUsePreference",
  11. "ModelOrderedByDefault": "False",
  12. "ModelNonRollupHierarchies": "False"
  13. },
  14. "Connections": [
  15. {
  16. "Type": "CognosSource",
  17. "Name": "GC",
  18. "SourceType": "Package",
  19. "SourcePath": "/content/folder[@name='Package']/package[@name='GC']",
  20. "PackageTimeStamp": "/content/folder[@name='Package']/package[@name='GC']/model[@name='2020-09-23T14:57:28.424Z']"
  21. },
  22. {
  23. "Type": "CognosPackageDatasourceConnection",
  24. "Name": "3H_AUTOMOBILE",
  25. "PackageReportSource": {
  26. "Name": "GC"
  27. },
  28. "CognosPackageConnection": "3H_AUTOMOBILE",
  29. "CognosPackageConnectionSignon": "3H_AUTOMOBILE",
  30. "CognosPackageAlwaysUseTransformerSignon": "False",
  31. "CognosPackagePowercubeSource": "False"
  32. },
  33. {
  34. "Type": "CognosPackageDatasourceConnection",
  35. "Name": "LOCOSOFT",
  36. "PackageReportSource": {
  37. "Name": "GC"
  38. },
  39. "CognosPackageConnection": "LOCOSOFT",
  40. "CognosPackageConnectionSignon": "LOCOSOFT",
  41. "CognosPackageAlwaysUseTransformerSignon": "False",
  42. "CognosPackagePowercubeSource": "False"
  43. },
  44. {
  45. "Type": "CognosPackageDatasourceConnection",
  46. "Name": "GC_CARLO",
  47. "PackageReportSource": {
  48. "Name": "GC"
  49. },
  50. "CognosPackageConnection": "GC_CARLO",
  51. "CognosPackageConnectionSignon": "gaps",
  52. "Database": {
  53. "Name": "GC_CARLO"
  54. },
  55. "CognosPackageAlwaysUseTransformerSignon": "True",
  56. "CognosPackagePowercubeSource": "False"
  57. },
  58. {
  59. "Type": "CognosPackageDatasourceConnection",
  60. "Name": "GC",
  61. "PackageReportSource": {
  62. "Name": "GC"
  63. },
  64. "CognosPackageConnection": "GC",
  65. "CognosPackageConnectionSignon": "GC",
  66. "Database": {
  67. "Name": "GC_CARLO"
  68. },
  69. "CognosPackageAlwaysUseTransformerSignon": "True",
  70. "CognosPackagePowercubeSource": "False"
  71. }
  72. ],
  73. "DataSources": [
  74. {
  75. "Type": "DataSource",
  76. "Name": "current_date_Prognose_operativ",
  77. "Separator": ";",
  78. "SourceType": "CognosSourceQuery",
  79. "CharacterSet": "Default",
  80. "DecimalSep": ",",
  81. "Thousandsep": ".",
  82. "Columns": [
  83. {
  84. "Type": "OrgName",
  85. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Bundeslaender Id]",
  86. "Origin": "Source",
  87. "Offset": "0",
  88. "Column": "Bundeslaender Id",
  89. "Storage": "Text",
  90. "Scale": "0",
  91. "Size": "512",
  92. "Decimals": "0",
  93. "Class": "Description",
  94. "InputScale": "0",
  95. "TimeArray": "Off",
  96. "ColSrcType": "None",
  97. "Associations": []
  98. },
  99. {
  100. "Type": "OrgName",
  101. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Invoice Date]",
  102. "Origin": "Source",
  103. "Offset": "1",
  104. "Column": "Order Date",
  105. "Storage": "Int32",
  106. "Scale": "0",
  107. "Size": "12",
  108. "Decimals": "0",
  109. "Class": "Date",
  110. "InputScale": "0",
  111. "TimeArray": "Off",
  112. "ColSrcType": "None",
  113. "Associations": [
  114. {
  115. "Type": "Associations",
  116. "Name": "Order Date",
  117. "AssociationType": "Type_Query",
  118. "AssociationRole": "Role_Source",
  119. "AssociationReferenced": "Order Date",
  120. "Parent": "undefined"
  121. },
  122. {
  123. "Type": "Associations",
  124. "Name": "Order Date",
  125. "AssociationType": "Type_Query",
  126. "AssociationRole": "Role_OrderBy",
  127. "AssociationReferenced": "Order Date",
  128. "SortOrder": "Default",
  129. "SortAs": "Ascending",
  130. "Parent": "undefined"
  131. },
  132. {
  133. "Type": "Associations",
  134. "Name": "Order Date",
  135. "AssociationType": "Type_Query",
  136. "AssociationRole": "Role_Source",
  137. "AssociationReferenced": "Order Date",
  138. "Parent": "undefined"
  139. },
  140. {
  141. "Type": "Associations",
  142. "Name": "Order Date",
  143. "AssociationType": "Type_Query",
  144. "AssociationRole": "Role_OrderBy",
  145. "AssociationReferenced": "Order Date",
  146. "SortOrder": "Default",
  147. "SortAs": "Ascending",
  148. "Parent": "undefined"
  149. },
  150. {
  151. "Type": "Associations",
  152. "Name": "Order Date",
  153. "AssociationType": "Type_Query",
  154. "AssociationRole": "Role_Source",
  155. "AssociationReferenced": "Order Date",
  156. "Parent": "undefined"
  157. },
  158. {
  159. "Type": "Associations",
  160. "Name": "Order Date",
  161. "AssociationType": "Type_Query",
  162. "AssociationRole": "Role_OrderBy",
  163. "AssociationReferenced": "Order Date",
  164. "SortOrder": "Default",
  165. "SortAs": "Ascending",
  166. "Parent": "undefined"
  167. },
  168. {
  169. "Type": "Associations",
  170. "Name": "Order Date",
  171. "AssociationType": "Type_Query",
  172. "AssociationRole": "Role_Source",
  173. "AssociationReferenced": "Order Date",
  174. "Parent": "undefined"
  175. },
  176. {
  177. "Type": "Associations",
  178. "Name": "Order Date",
  179. "AssociationType": "Type_Query",
  180. "AssociationRole": "Role_OrderBy",
  181. "AssociationReferenced": "Order Date",
  182. "SortOrder": "Default",
  183. "SortAs": "Ascending",
  184. "Parent": "undefined"
  185. }
  186. ]
  187. },
  188. {
  189. "Type": "OrgName",
  190. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Wochentage Id]",
  191. "Origin": "Source",
  192. "Offset": "2",
  193. "Column": "Wochentage Id",
  194. "Storage": "Text",
  195. "Scale": "0",
  196. "Size": "512",
  197. "Decimals": "0",
  198. "Class": "Description",
  199. "InputScale": "0",
  200. "TimeArray": "Off",
  201. "ColSrcType": "None",
  202. "Associations": []
  203. },
  204. {
  205. "Type": "OrgName",
  206. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Arbeitstag Mofr]",
  207. "Origin": "Source",
  208. "Offset": "3",
  209. "Column": "Arbeitstag Mofr",
  210. "Storage": "Float64",
  211. "Scale": "0",
  212. "Size": "4",
  213. "Decimals": "0",
  214. "Class": "Quantity",
  215. "InputScale": "0",
  216. "TimeArray": "Off",
  217. "Rollup": "Sum",
  218. "ColSrcType": "None",
  219. "Associations": []
  220. },
  221. {
  222. "Type": "OrgName",
  223. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Zaehler Mofr]",
  224. "Origin": "Source",
  225. "Offset": "4",
  226. "Column": "Zaehler Mofr",
  227. "Storage": "Float64",
  228. "Scale": "0",
  229. "Size": "4",
  230. "Decimals": "0",
  231. "Class": "Quantity",
  232. "InputScale": "0",
  233. "TimeArray": "Off",
  234. "Rollup": "Sum",
  235. "ColSrcType": "None",
  236. "Associations": []
  237. },
  238. {
  239. "Type": "OrgName",
  240. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Summe Mofr]",
  241. "Origin": "Source",
  242. "Offset": "5",
  243. "Column": "Summe Mofr",
  244. "Storage": "Float64",
  245. "Scale": "0",
  246. "Size": "4",
  247. "Decimals": "0",
  248. "Class": "Quantity",
  249. "InputScale": "0",
  250. "TimeArray": "Off",
  251. "Rollup": "Sum",
  252. "ColSrcType": "None",
  253. "Associations": []
  254. },
  255. {
  256. "Type": "OrgName",
  257. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Arbeitstag Mosa]",
  258. "Origin": "Source",
  259. "Offset": "6",
  260. "Column": "Arbeitstag Mosa",
  261. "Storage": "Float64",
  262. "Scale": "0",
  263. "Size": "4",
  264. "Decimals": "0",
  265. "Class": "Quantity",
  266. "InputScale": "0",
  267. "TimeArray": "Off",
  268. "Rollup": "Sum",
  269. "ColSrcType": "None",
  270. "Associations": []
  271. },
  272. {
  273. "Type": "OrgName",
  274. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Zaehler Mosa]",
  275. "Origin": "Source",
  276. "Offset": "7",
  277. "Column": "Zaehler Mosa",
  278. "Storage": "Float64",
  279. "Scale": "0",
  280. "Size": "4",
  281. "Decimals": "0",
  282. "Class": "Quantity",
  283. "InputScale": "0",
  284. "TimeArray": "Off",
  285. "Rollup": "Sum",
  286. "ColSrcType": "None",
  287. "Associations": []
  288. },
  289. {
  290. "Type": "OrgName",
  291. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Summe Mosa]",
  292. "Origin": "Source",
  293. "Offset": "8",
  294. "Column": "Summe Mosa",
  295. "Storage": "Float64",
  296. "Scale": "0",
  297. "Size": "4",
  298. "Decimals": "0",
  299. "Class": "Quantity",
  300. "InputScale": "0",
  301. "TimeArray": "Off",
  302. "Rollup": "Sum",
  303. "ColSrcType": "None",
  304. "Associations": []
  305. },
  306. {
  307. "Type": "OrgName",
  308. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Feiertage Id]",
  309. "Origin": "Source",
  310. "Offset": "9",
  311. "Column": "Feiertage Id",
  312. "Storage": "Float64",
  313. "Scale": "0",
  314. "Size": "4",
  315. "Decimals": "0",
  316. "Class": "Quantity",
  317. "InputScale": "0",
  318. "TimeArray": "Off",
  319. "Rollup": "Sum",
  320. "ColSrcType": "None",
  321. "Associations": []
  322. },
  323. {
  324. "Type": "OrgName",
  325. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Jahr]",
  326. "Origin": "Source",
  327. "Offset": "10",
  328. "Column": "Jahr",
  329. "Storage": "Float64",
  330. "Scale": "0",
  331. "Size": "4",
  332. "Decimals": "0",
  333. "Class": "Quantity",
  334. "InputScale": "0",
  335. "TimeArray": "Off",
  336. "Rollup": "Sum",
  337. "ColSrcType": "None",
  338. "Associations": []
  339. },
  340. {
  341. "Type": "OrgName",
  342. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Arbeitstag Nr Jahr]",
  343. "Origin": "Source",
  344. "Offset": "11",
  345. "Column": "Arbeitstag Nr Jahr",
  346. "Storage": "Float64",
  347. "Scale": "0",
  348. "Size": "4",
  349. "Decimals": "0",
  350. "Class": "Quantity",
  351. "InputScale": "0",
  352. "TimeArray": "Off",
  353. "Rollup": "Sum",
  354. "ColSrcType": "None",
  355. "Associations": []
  356. },
  357. {
  358. "Type": "OrgName",
  359. "Name": "[Schnittstelle].[current_date_Prognose_operativ].[Gesamt Arbeitstage]",
  360. "Origin": "Source",
  361. "Offset": "12",
  362. "Column": "Gesamt Arbeitstage",
  363. "Storage": "Float64",
  364. "Scale": "0",
  365. "Size": "4",
  366. "Decimals": "0",
  367. "Class": "Quantity",
  368. "InputScale": "0",
  369. "TimeArray": "Off",
  370. "Rollup": "Sum",
  371. "ColSrcType": "None",
  372. "Associations": []
  373. }
  374. ],
  375. "Timing": "PopYesCreateDefault",
  376. "PackageReportSource": {
  377. "Name": "GC"
  378. },
  379. "AutoSummary": "False",
  380. "SetCurrent": "True",
  381. "ServerSource": "False",
  382. "Speed": "False",
  383. "Presummarized": "False",
  384. "StreamExtractSize": "0"
  385. },
  386. {
  387. "Type": "DataSource",
  388. "Name": "Offene_Auftraege",
  389. "Separator": ";",
  390. "SourceType": "CognosSourceQuery",
  391. "CharacterSet": "Default",
  392. "DecimalSep": ",",
  393. "Thousandsep": ".",
  394. "Columns": [
  395. {
  396. "Type": "OrgName",
  397. "Name": "[Schnittstelle].[Offene_Auftraege].[Hauptbetrieb_ID]",
  398. "Origin": "Source",
  399. "Offset": "0",
  400. "Column": "Hauptbetrieb_ID",
  401. "Storage": "Text",
  402. "Scale": "0",
  403. "Size": "22",
  404. "Decimals": "0",
  405. "Class": "Description",
  406. "InputScale": "0",
  407. "TimeArray": "Off",
  408. "ColSrcType": "None",
  409. "Associations": [
  410. {
  411. "Type": "Associations",
  412. "Name": "Hauptbetrieb_ID",
  413. "AssociationType": "Type_Query",
  414. "AssociationRole": "Role_Source",
  415. "AssociationReferenced": "Hauptbetrieb_ID",
  416. "Parent": "undefined"
  417. },
  418. {
  419. "Type": "Associations",
  420. "Name": "Hauptbetrieb_ID",
  421. "AssociationType": "Type_Query",
  422. "AssociationRole": "Role_OrderBy",
  423. "AssociationReferenced": "Hauptbetrieb_ID",
  424. "SortOrder": "Text",
  425. "SortAs": "Ascending",
  426. "Parent": "undefined"
  427. }
  428. ]
  429. },
  430. {
  431. "Type": "OrgName",
  432. "Name": "[Schnittstelle].[Offene_Auftraege].[Hauptbetrieb_Name]",
  433. "Origin": "Source",
  434. "Offset": "1",
  435. "Column": "Hauptbetrieb_Name",
  436. "Storage": "Text",
  437. "Scale": "0",
  438. "Size": "102",
  439. "Decimals": "0",
  440. "Class": "Description",
  441. "InputScale": "0",
  442. "TimeArray": "Off",
  443. "ColSrcType": "None",
  444. "Associations": [
  445. {
  446. "Type": "Associations",
  447. "Name": "Hauptbetrieb_Name",
  448. "AssociationType": "Type_Query",
  449. "AssociationRole": "Role_Label",
  450. "AssociationReferenced": "Hauptbetrieb_Name",
  451. "Parent": "undefined"
  452. }
  453. ]
  454. },
  455. {
  456. "Type": "OrgName",
  457. "Name": "[Schnittstelle].[Offene_Auftraege].[Standort_ID]",
  458. "Origin": "Source",
  459. "Offset": "2",
  460. "Column": "Standort_ID",
  461. "Storage": "Text",
  462. "Scale": "0",
  463. "Size": "22",
  464. "Decimals": "0",
  465. "Class": "Description",
  466. "InputScale": "0",
  467. "TimeArray": "Off",
  468. "ColSrcType": "None",
  469. "Associations": [
  470. {
  471. "Type": "Associations",
  472. "Name": "Standort_ID",
  473. "AssociationType": "Type_Query",
  474. "AssociationRole": "Role_Source",
  475. "AssociationReferenced": "Standort_ID",
  476. "Parent": "undefined"
  477. },
  478. {
  479. "Type": "Associations",
  480. "Name": "Standort_ID",
  481. "AssociationType": "Type_Query",
  482. "AssociationRole": "Role_OrderBy",
  483. "AssociationReferenced": "Standort_ID",
  484. "SortOrder": "Text",
  485. "SortAs": "Ascending",
  486. "Parent": "undefined"
  487. }
  488. ]
  489. },
  490. {
  491. "Type": "OrgName",
  492. "Name": "[Schnittstelle].[Offene_Auftraege].[Standort_Name]",
  493. "Origin": "Source",
  494. "Offset": "3",
  495. "Column": "Standort_Name",
  496. "Storage": "Text",
  497. "Scale": "0",
  498. "Size": "102",
  499. "Decimals": "0",
  500. "Class": "Description",
  501. "InputScale": "0",
  502. "TimeArray": "Off",
  503. "ColSrcType": "None",
  504. "Associations": [
  505. {
  506. "Type": "Associations",
  507. "Name": "Standort_Name",
  508. "AssociationType": "Type_Query",
  509. "AssociationRole": "Role_Label",
  510. "AssociationReferenced": "Standort_Name",
  511. "Parent": "undefined"
  512. }
  513. ]
  514. },
  515. {
  516. "Type": "OrgName",
  517. "Name": "[Schnittstelle].[Offene_Auftraege].[Serviceberater]",
  518. "Origin": "Source",
  519. "Offset": "4",
  520. "Column": "Serviceberater",
  521. "Storage": "Text",
  522. "Scale": "0",
  523. "Size": "202",
  524. "Decimals": "0",
  525. "Class": "Description",
  526. "InputScale": "0",
  527. "TimeArray": "Off",
  528. "ColSrcType": "None",
  529. "Associations": [
  530. {
  531. "Type": "Associations",
  532. "Name": "Serviceberater",
  533. "AssociationType": "Type_Query",
  534. "AssociationRole": "Role_Source",
  535. "AssociationReferenced": "Serviceberater",
  536. "Parent": "undefined"
  537. },
  538. {
  539. "Type": "Associations",
  540. "Name": "Serviceberater",
  541. "AssociationType": "Type_Query",
  542. "AssociationRole": "Role_Source",
  543. "AssociationReferenced": "Serviceberater",
  544. "Parent": "undefined"
  545. },
  546. {
  547. "Type": "Associations",
  548. "Name": "Serviceberater",
  549. "AssociationType": "Type_Query",
  550. "AssociationRole": "Role_Source",
  551. "AssociationReferenced": "Serviceberater",
  552. "Parent": "undefined"
  553. }
  554. ]
  555. },
  556. {
  557. "Type": "OrgName",
  558. "Name": "[Schnittstelle].[Offene_Auftraege].[Order Number]",
  559. "Origin": "Source",
  560. "Offset": "5",
  561. "Column": "Order Number",
  562. "Storage": "Text",
  563. "Scale": "0",
  564. "Size": "202",
  565. "Decimals": "0",
  566. "Class": "Description",
  567. "InputScale": "0",
  568. "TimeArray": "Off",
  569. "ColSrcType": "None",
  570. "Associations": [
  571. {
  572. "Type": "Associations",
  573. "Name": "Order Number",
  574. "AssociationType": "Type_Query",
  575. "AssociationRole": "Role_Source",
  576. "AssociationReferenced": "Order Number",
  577. "Parent": "undefined"
  578. },
  579. {
  580. "Type": "Associations",
  581. "Name": "Order Number",
  582. "AssociationType": "Type_Query",
  583. "AssociationRole": "Role_Source",
  584. "AssociationReferenced": "Order Number",
  585. "Parent": "undefined"
  586. },
  587. {
  588. "Type": "Associations",
  589. "Name": "Order Number",
  590. "AssociationType": "Type_Query",
  591. "AssociationRole": "Role_Source",
  592. "AssociationReferenced": "Order Number",
  593. "Parent": "undefined"
  594. }
  595. ]
  596. },
  597. {
  598. "Type": "OrgName",
  599. "Name": "[Schnittstelle].[Offene_Auftraege].[Fabrikat]",
  600. "Origin": "Source",
  601. "Offset": "6",
  602. "Column": "Fabrikat",
  603. "Storage": "Text",
  604. "Scale": "0",
  605. "Size": "202",
  606. "Decimals": "0",
  607. "Class": "Description",
  608. "InputScale": "0",
  609. "TimeArray": "Off",
  610. "ColSrcType": "None",
  611. "Associations": [
  612. {
  613. "Type": "Associations",
  614. "Name": "Fabrikat",
  615. "AssociationType": "Type_Query",
  616. "AssociationRole": "Role_Source",
  617. "AssociationReferenced": "Fabrikat",
  618. "Parent": "undefined"
  619. },
  620. {
  621. "Type": "Associations",
  622. "Name": "Fabrikat",
  623. "AssociationType": "Type_Query",
  624. "AssociationRole": "Role_Source",
  625. "AssociationReferenced": "Fabrikat",
  626. "Parent": "undefined"
  627. }
  628. ]
  629. },
  630. {
  631. "Type": "OrgName",
  632. "Name": "[Schnittstelle].[Offene_Auftraege].[Model]",
  633. "Origin": "Source",
  634. "Offset": "7",
  635. "Column": "Model",
  636. "Storage": "Text",
  637. "Scale": "0",
  638. "Size": "202",
  639. "Decimals": "0",
  640. "Class": "Description",
  641. "InputScale": "0",
  642. "TimeArray": "Off",
  643. "ColSrcType": "None",
  644. "Associations": [
  645. {
  646. "Type": "Associations",
  647. "Name": "Model",
  648. "AssociationType": "Type_Query",
  649. "AssociationRole": "Role_Source",
  650. "AssociationReferenced": "Model",
  651. "Parent": "undefined"
  652. }
  653. ]
  654. },
  655. {
  656. "Type": "OrgName",
  657. "Name": "[Schnittstelle].[Offene_Auftraege].[Fahrzeug]",
  658. "Origin": "Source",
  659. "Offset": "8",
  660. "Column": "Fahrzeug",
  661. "Storage": "Text",
  662. "Scale": "0",
  663. "Size": "202",
  664. "Decimals": "0",
  665. "Class": "Description",
  666. "InputScale": "0",
  667. "TimeArray": "Off",
  668. "ColSrcType": "None",
  669. "Associations": [
  670. {
  671. "Type": "Associations",
  672. "Name": "Fahrzeug",
  673. "AssociationType": "Type_Query",
  674. "AssociationRole": "Role_Source",
  675. "AssociationReferenced": "Fahrzeug",
  676. "Parent": "undefined"
  677. }
  678. ]
  679. },
  680. {
  681. "Type": "OrgName",
  682. "Name": "[Schnittstelle].[Offene_Auftraege].[Kostenstelle]",
  683. "Origin": "Source",
  684. "Offset": "9",
  685. "Column": "Kostenstelle",
  686. "Storage": "Text",
  687. "Scale": "0",
  688. "Size": "202",
  689. "Decimals": "0",
  690. "Class": "Description",
  691. "InputScale": "0",
  692. "TimeArray": "Off",
  693. "ColSrcType": "None",
  694. "Associations": [
  695. {
  696. "Type": "Associations",
  697. "Name": "Kostenstelle",
  698. "AssociationType": "Type_Query",
  699. "AssociationRole": "Role_Source",
  700. "AssociationReferenced": "Kostenstelle",
  701. "Parent": "undefined"
  702. }
  703. ]
  704. },
  705. {
  706. "Type": "OrgName",
  707. "Name": "[Schnittstelle].[Offene_Auftraege].[Marke]",
  708. "Origin": "Source",
  709. "Offset": "10",
  710. "Column": "Marke",
  711. "Storage": "Text",
  712. "Scale": "0",
  713. "Size": "202",
  714. "Decimals": "0",
  715. "Class": "Description",
  716. "InputScale": "0",
  717. "TimeArray": "Off",
  718. "ColSrcType": "None",
  719. "Associations": []
  720. },
  721. {
  722. "Type": "OrgName",
  723. "Name": "[Schnittstelle].[Offene_Auftraege].[Kunde]",
  724. "Origin": "Source",
  725. "Offset": "11",
  726. "Column": "Kunde",
  727. "Storage": "Text",
  728. "Scale": "0",
  729. "Size": "202",
  730. "Decimals": "0",
  731. "Class": "Description",
  732. "InputScale": "0",
  733. "TimeArray": "Off",
  734. "ColSrcType": "None",
  735. "Associations": [
  736. {
  737. "Type": "Associations",
  738. "Name": "Kunde",
  739. "AssociationType": "Type_Query",
  740. "AssociationRole": "Role_Source",
  741. "AssociationReferenced": "Kunde",
  742. "Parent": "undefined"
  743. }
  744. ]
  745. },
  746. {
  747. "Type": "OrgName",
  748. "Name": "[Schnittstelle].[Offene_Auftraege].[Turnover_Type_Desc]",
  749. "Origin": "Source",
  750. "Offset": "12",
  751. "Column": "Turnover_Type_Desc",
  752. "Storage": "Text",
  753. "Scale": "0",
  754. "Size": "202",
  755. "Decimals": "0",
  756. "Class": "Description",
  757. "InputScale": "0",
  758. "TimeArray": "Off",
  759. "ColSrcType": "None",
  760. "Associations": []
  761. },
  762. {
  763. "Type": "OrgName",
  764. "Name": "[Schnittstelle].[Offene_Auftraege].[Tage offen]",
  765. "Origin": "Source",
  766. "Offset": "13",
  767. "Column": "Tage offen",
  768. "Storage": "Text",
  769. "Scale": "0",
  770. "Size": "202",
  771. "Decimals": "0",
  772. "Class": "Description",
  773. "InputScale": "0",
  774. "TimeArray": "Off",
  775. "ColSrcType": "None",
  776. "Associations": [
  777. {
  778. "Type": "Associations",
  779. "Name": "Tage offen",
  780. "AssociationType": "Type_Query",
  781. "AssociationRole": "Role_OrderBy",
  782. "AssociationReferenced": "Tage offen",
  783. "SortOrder": "Int16",
  784. "SortAs": "Descending",
  785. "Parent": "undefined"
  786. },
  787. {
  788. "Type": "Associations",
  789. "Name": "Tage offen",
  790. "AssociationType": "Type_Query",
  791. "AssociationRole": "Role_OrderBy",
  792. "AssociationReferenced": "Tage offen",
  793. "SortOrder": "Int16",
  794. "SortAs": "Descending",
  795. "Parent": "undefined"
  796. },
  797. {
  798. "Type": "Associations",
  799. "Name": "Tage offen",
  800. "AssociationType": "Type_Query",
  801. "AssociationRole": "Role_OrderBy",
  802. "AssociationReferenced": "Tage offen",
  803. "SortOrder": "Int16",
  804. "SortAs": "Descending",
  805. "Parent": "undefined"
  806. },
  807. {
  808. "Type": "Associations",
  809. "Name": "Tage offen",
  810. "AssociationType": "Type_Query",
  811. "AssociationRole": "Role_Source",
  812. "AssociationReferenced": "Tage offen",
  813. "Parent": "undefined"
  814. }
  815. ]
  816. },
  817. {
  818. "Type": "OrgName",
  819. "Name": "[Schnittstelle].[Offene_Auftraege].[DG]",
  820. "Origin": "Source",
  821. "Offset": "14",
  822. "Column": "DG",
  823. "Storage": "Text",
  824. "Scale": "0",
  825. "Size": "202",
  826. "Decimals": "0",
  827. "Class": "Description",
  828. "InputScale": "0",
  829. "TimeArray": "Off",
  830. "ColSrcType": "None",
  831. "Associations": [
  832. {
  833. "Type": "Associations",
  834. "Name": "DG",
  835. "AssociationType": "Type_Query",
  836. "AssociationRole": "Role_Source",
  837. "AssociationReferenced": "DG",
  838. "Parent": "undefined"
  839. }
  840. ]
  841. },
  842. {
  843. "Type": "OrgName",
  844. "Name": "[Schnittstelle].[Offene_Auftraege].[Lohn]",
  845. "Origin": "Source",
  846. "Offset": "15",
  847. "Column": "Lohn",
  848. "Storage": "Float64",
  849. "Scale": "8",
  850. "Size": "15",
  851. "Decimals": "8",
  852. "Class": "Quantity",
  853. "InputScale": "0",
  854. "TimeArray": "Off",
  855. "Rollup": "Sum",
  856. "ColSrcType": "None",
  857. "Associations": [
  858. {
  859. "Type": "Associations",
  860. "Name": "Lohn",
  861. "AssociationType": "Type_Query",
  862. "AssociationRole": "Role_Source",
  863. "AssociationReferenced": "Lohn",
  864. "Parent": "undefined"
  865. }
  866. ]
  867. },
  868. {
  869. "Type": "OrgName",
  870. "Name": "[Schnittstelle].[Offene_Auftraege].[Teile]",
  871. "Origin": "Source",
  872. "Offset": "16",
  873. "Column": "Teile",
  874. "Storage": "Default",
  875. "Scale": "0",
  876. "Size": "1",
  877. "Decimals": "0",
  878. "InputScale": "0",
  879. "TimeArray": "Off",
  880. "ColSrcType": "None",
  881. "Associations": [
  882. {
  883. "Type": "Associations",
  884. "Name": "Teile",
  885. "AssociationType": "Type_Query",
  886. "AssociationRole": "Role_Source",
  887. "AssociationReferenced": "Teile",
  888. "Parent": "undefined"
  889. }
  890. ]
  891. },
  892. {
  893. "Type": "OrgName",
  894. "Name": "[Schnittstelle].[Offene_Auftraege].[Sonst.]",
  895. "Origin": "Source",
  896. "Offset": "17",
  897. "Column": "Sonst.",
  898. "Storage": "Float64",
  899. "Scale": "8",
  900. "Size": "15",
  901. "Decimals": "8",
  902. "Class": "Quantity",
  903. "InputScale": "0",
  904. "TimeArray": "Off",
  905. "Rollup": "Sum",
  906. "ColSrcType": "None",
  907. "Associations": [
  908. {
  909. "Type": "Associations",
  910. "Name": "Sonst.",
  911. "AssociationType": "Type_Query",
  912. "AssociationRole": "Role_Source",
  913. "AssociationReferenced": "Sonst.",
  914. "Parent": "undefined"
  915. }
  916. ]
  917. },
  918. {
  919. "Type": "OrgName",
  920. "Name": "[Schnittstelle].[Offene_Auftraege].[Auftragsart]",
  921. "Origin": "Source",
  922. "Offset": "18",
  923. "Column": "Auftragsart",
  924. "Storage": "Text",
  925. "Scale": "0",
  926. "Size": "202",
  927. "Decimals": "0",
  928. "Class": "Description",
  929. "InputScale": "0",
  930. "TimeArray": "Off",
  931. "ColSrcType": "None",
  932. "Associations": [
  933. {
  934. "Type": "Associations",
  935. "Name": "Auftragsart",
  936. "AssociationType": "Type_Query",
  937. "AssociationRole": "Role_Source",
  938. "AssociationReferenced": "Auftragsart",
  939. "Parent": "undefined"
  940. },
  941. {
  942. "Type": "Associations",
  943. "Name": "Auftragsart",
  944. "AssociationType": "Type_Query",
  945. "AssociationRole": "Role_OrderBy",
  946. "AssociationReferenced": "Auftragsart",
  947. "SortOrder": "Text",
  948. "SortAs": "Ascending",
  949. "Parent": "undefined"
  950. }
  951. ]
  952. },
  953. {
  954. "Type": "OrgName",
  955. "Name": "[Schnittstelle].[Offene_Auftraege].[Order Date]",
  956. "Origin": "Source",
  957. "Offset": "19",
  958. "Column": "Order Date",
  959. "Storage": "Int32",
  960. "Scale": "0",
  961. "Size": "12",
  962. "Decimals": "0",
  963. "Class": "Date",
  964. "InputScale": "0",
  965. "TimeArray": "Off",
  966. "ColSrcType": "None",
  967. "Associations": [
  968. {
  969. "Type": "Associations",
  970. "Name": "Order Date",
  971. "AssociationType": "Type_Query",
  972. "AssociationRole": "Role_Source",
  973. "AssociationReferenced": "Order Date",
  974. "Parent": "undefined"
  975. },
  976. {
  977. "Type": "Associations",
  978. "Name": "Order Date",
  979. "AssociationType": "Type_Query",
  980. "AssociationRole": "Role_OrderBy",
  981. "AssociationReferenced": "Order Date",
  982. "SortOrder": "Default",
  983. "SortAs": "Ascending",
  984. "Parent": "undefined"
  985. },
  986. {
  987. "Type": "Associations",
  988. "Name": "Order Date",
  989. "AssociationType": "Type_Query",
  990. "AssociationRole": "Role_Source",
  991. "AssociationReferenced": "Order Date",
  992. "Parent": "undefined"
  993. },
  994. {
  995. "Type": "Associations",
  996. "Name": "Order Date",
  997. "AssociationType": "Type_Query",
  998. "AssociationRole": "Role_OrderBy",
  999. "AssociationReferenced": "Order Date",
  1000. "SortOrder": "Default",
  1001. "SortAs": "Ascending",
  1002. "Parent": "undefined"
  1003. },
  1004. {
  1005. "Type": "Associations",
  1006. "Name": "Order Date",
  1007. "AssociationType": "Type_Query",
  1008. "AssociationRole": "Role_Source",
  1009. "AssociationReferenced": "Order Date",
  1010. "Parent": "undefined"
  1011. },
  1012. {
  1013. "Type": "Associations",
  1014. "Name": "Order Date",
  1015. "AssociationType": "Type_Query",
  1016. "AssociationRole": "Role_OrderBy",
  1017. "AssociationReferenced": "Order Date",
  1018. "SortOrder": "Default",
  1019. "SortAs": "Ascending",
  1020. "Parent": "undefined"
  1021. },
  1022. {
  1023. "Type": "Associations",
  1024. "Name": "Order Date",
  1025. "AssociationType": "Type_Query",
  1026. "AssociationRole": "Role_Source",
  1027. "AssociationReferenced": "Order Date",
  1028. "Parent": "undefined"
  1029. },
  1030. {
  1031. "Type": "Associations",
  1032. "Name": "Order Date",
  1033. "AssociationType": "Type_Query",
  1034. "AssociationRole": "Role_OrderBy",
  1035. "AssociationReferenced": "Order Date",
  1036. "SortOrder": "Default",
  1037. "SortAs": "Ascending",
  1038. "Parent": "undefined"
  1039. }
  1040. ]
  1041. },
  1042. {
  1043. "Type": "OrgName",
  1044. "Name": "[Schnittstelle].[Offene_Auftraege].[Tage seit letzt. Stemp.]",
  1045. "Origin": "Source",
  1046. "Offset": "20",
  1047. "Column": "Tage seit letzt. Stemp.",
  1048. "Storage": "Text",
  1049. "Scale": "0",
  1050. "Size": "202",
  1051. "Decimals": "0",
  1052. "Class": "Description",
  1053. "InputScale": "0",
  1054. "TimeArray": "Off",
  1055. "ColSrcType": "None",
  1056. "Associations": [
  1057. {
  1058. "Type": "Associations",
  1059. "Name": "Tage seit letzt. Stemp.",
  1060. "AssociationType": "Type_Query",
  1061. "AssociationRole": "Role_Source",
  1062. "AssociationReferenced": "Tage seit letzt. Stemp.",
  1063. "Parent": "undefined"
  1064. }
  1065. ]
  1066. }
  1067. ],
  1068. "Timing": "PopYesCreateDefault",
  1069. "PackageReportSource": {
  1070. "Name": "GC"
  1071. },
  1072. "AutoSummary": "False",
  1073. "SetCurrent": "False",
  1074. "ServerSource": "False",
  1075. "Speed": "False",
  1076. "Presummarized": "False",
  1077. "StreamExtractSize": "0"
  1078. }
  1079. ],
  1080. "Dimensions": [
  1081. {
  1082. "Type": "Dimension",
  1083. "Name": "Zeit",
  1084. "DimType": "Date",
  1085. "EarliestDate": "19010101",
  1086. "LatestDate": "21001231",
  1087. "ManualPeriods": "False",
  1088. "DaysInWeek": "127",
  1089. "NewCatsLock": "False",
  1090. "ExcludeAutoPartitioning": "False",
  1091. "DimDefaultCategory": "0",
  1092. "Root": {
  1093. "Type": "Root",
  1094. "Name": "Zeit",
  1095. "Inclusion": "Generate",
  1096. "Date": "0",
  1097. "Filtered": "False",
  1098. "Suppressed": "False",
  1099. "Sign": "False",
  1100. "HideValue": "False",
  1101. "IsKeyOrphanage": "False",
  1102. "IsTruncated": "False",
  1103. "Blanks": "False",
  1104. "Drill": {
  1105. "Type": "Drill",
  1106. "Name": "Nach Zeit",
  1107. "Label": "Nach Zeit",
  1108. "Inclusion": "Suppress",
  1109. "Filtered": "False",
  1110. "Suppressed": "True",
  1111. "PrimaryDrill": "True",
  1112. "HideValue": "False",
  1113. "YearBegins": "20080101",
  1114. "PartialWeek": "Split",
  1115. "ExtraWeek": "None",
  1116. "WeekBegins": "Sunday"
  1117. }
  1118. },
  1119. "Levels": [
  1120. {
  1121. "Type": "Levels",
  1122. "Name": "Jahr",
  1123. "Blanks": "( Leerstelle )",
  1124. "Inclusion": "Generate",
  1125. "DateFunction": "Year",
  1126. "Generate": "Need",
  1127. "RefreshLabel": "False",
  1128. "RefreshDescription": "False",
  1129. "RefreshShortName": "False",
  1130. "NewCatsLock": "False",
  1131. "CatLabFormat": "YYYY",
  1132. "Timerank": "10",
  1133. "UniqueCategories": "True",
  1134. "UniqueMove": "False",
  1135. "Associations": [
  1136. {
  1137. "Type": "Associations",
  1138. "Name": "Order Date",
  1139. "AssociationType": "Type_Query",
  1140. "AssociationRole": "Role_Source",
  1141. "AssociationReferenced": "Order Date",
  1142. "Parent": "undefined"
  1143. },
  1144. {
  1145. "Type": "Associations",
  1146. "Name": "Order Date",
  1147. "AssociationType": "Type_Query",
  1148. "AssociationRole": "Role_OrderBy",
  1149. "AssociationReferenced": "Order Date",
  1150. "SortOrder": "Default",
  1151. "SortAs": "Ascending",
  1152. "Parent": "undefined"
  1153. }
  1154. ]
  1155. },
  1156. {
  1157. "Type": "Levels",
  1158. "Name": "Quartal",
  1159. "Blanks": "( Leerstelle )",
  1160. "Inclusion": "Generate",
  1161. "DateFunction": "Quarter",
  1162. "Generate": "All",
  1163. "RefreshLabel": "False",
  1164. "RefreshDescription": "False",
  1165. "RefreshShortName": "False",
  1166. "NewCatsLock": "False",
  1167. "CatLabFormat": "Q'. Q.' YYYY",
  1168. "Timerank": "20",
  1169. "UniqueCategories": "True",
  1170. "UniqueMove": "False",
  1171. "Associations": [
  1172. {
  1173. "Type": "Associations",
  1174. "Name": "Order Date",
  1175. "AssociationType": "Type_Query",
  1176. "AssociationRole": "Role_Source",
  1177. "AssociationReferenced": "Order Date",
  1178. "Parent": "undefined"
  1179. },
  1180. {
  1181. "Type": "Associations",
  1182. "Name": "Order Date",
  1183. "AssociationType": "Type_Query",
  1184. "AssociationRole": "Role_OrderBy",
  1185. "AssociationReferenced": "Order Date",
  1186. "SortOrder": "Default",
  1187. "SortAs": "Ascending",
  1188. "Parent": "undefined"
  1189. }
  1190. ]
  1191. },
  1192. {
  1193. "Type": "Levels",
  1194. "Name": "Monat",
  1195. "Blanks": "( Leerstelle )",
  1196. "Inclusion": "Generate",
  1197. "DateFunction": "Month",
  1198. "Generate": "All",
  1199. "RefreshLabel": "False",
  1200. "RefreshDescription": "False",
  1201. "RefreshShortName": "False",
  1202. "NewCatsLock": "False",
  1203. "CatLabFormat": "MMM/YYYY",
  1204. "Timerank": "30",
  1205. "UniqueCategories": "True",
  1206. "UniqueMove": "False",
  1207. "Associations": [
  1208. {
  1209. "Type": "Associations",
  1210. "Name": "Order Date",
  1211. "AssociationType": "Type_Query",
  1212. "AssociationRole": "Role_Source",
  1213. "AssociationReferenced": "Order Date",
  1214. "Parent": "undefined"
  1215. },
  1216. {
  1217. "Type": "Associations",
  1218. "Name": "Order Date",
  1219. "AssociationType": "Type_Query",
  1220. "AssociationRole": "Role_OrderBy",
  1221. "AssociationReferenced": "Order Date",
  1222. "SortOrder": "Default",
  1223. "SortAs": "Ascending",
  1224. "Parent": "undefined"
  1225. }
  1226. ]
  1227. },
  1228. {
  1229. "Type": "Levels",
  1230. "Name": "Tag",
  1231. "Blanks": "( Leerstelle )",
  1232. "Inclusion": "Generate",
  1233. "DateFunction": "Day",
  1234. "Generate": "All",
  1235. "RefreshLabel": "False",
  1236. "RefreshDescription": "False",
  1237. "RefreshShortName": "False",
  1238. "NewCatsLock": "False",
  1239. "CatLabFormat": "DD/MM/YYYY",
  1240. "Timerank": "50",
  1241. "UniqueCategories": "True",
  1242. "UniqueMove": "False",
  1243. "Associations": [
  1244. {
  1245. "Type": "Associations",
  1246. "Name": "Order Date",
  1247. "AssociationType": "Type_Query",
  1248. "AssociationRole": "Role_Source",
  1249. "AssociationReferenced": "Order Date",
  1250. "Parent": "undefined"
  1251. },
  1252. {
  1253. "Type": "Associations",
  1254. "Name": "Order Date",
  1255. "AssociationType": "Type_Query",
  1256. "AssociationRole": "Role_OrderBy",
  1257. "AssociationReferenced": "Order Date",
  1258. "SortOrder": "Default",
  1259. "SortAs": "Ascending",
  1260. "Parent": "undefined"
  1261. }
  1262. ]
  1263. }
  1264. ],
  1265. "Categories": [],
  1266. "SpecialCategories": [
  1267. {
  1268. "Type": "SpecialCategory",
  1269. "Name": "Aktueller Tag",
  1270. "Parent": "Zeit",
  1271. "Levels": "0",
  1272. "Rollup": "True",
  1273. "TimeAggregate": "Single",
  1274. "RunningPeriods": "0",
  1275. "TargetOffset": "0",
  1276. "TargetLevel": "Tag",
  1277. "ContextOffset": "0",
  1278. "Sign": "False"
  1279. },
  1280. {
  1281. "Type": "SpecialCategory",
  1282. "Name": "Gestern",
  1283. "Parent": "Zeit",
  1284. "Levels": "0",
  1285. "Rollup": "True",
  1286. "TimeAggregate": "Single",
  1287. "RunningPeriods": "0",
  1288. "TargetOffset": "1",
  1289. "TargetLevel": "Tag",
  1290. "ContextOffset": "0",
  1291. "Sign": "False"
  1292. },
  1293. {
  1294. "Type": "SpecialCategory",
  1295. "Name": "M bisher",
  1296. "Parent": "Zeit",
  1297. "Levels": "0",
  1298. "Rollup": "True",
  1299. "TimeAggregate": "ToDate",
  1300. "RunningPeriods": "0",
  1301. "ToDateLevel": "Monat",
  1302. "TargetOffset": "0",
  1303. "TargetLevel": "Tag",
  1304. "ContextOffset": "0",
  1305. "Sign": "False"
  1306. },
  1307. {
  1308. "Type": "SpecialCategory",
  1309. "Name": "Voriger M bisher",
  1310. "Parent": "Zeit",
  1311. "Levels": "0",
  1312. "Rollup": "True",
  1313. "TimeAggregate": "ToDate",
  1314. "RunningPeriods": "0",
  1315. "ToDateLevel": "Monat",
  1316. "TargetOffset": "0",
  1317. "TargetLevel": "Tag",
  1318. "ContextOffset": "1",
  1319. "ContextLevel": "Monat",
  1320. "Sign": "False"
  1321. },
  1322. {
  1323. "Type": "SpecialCategory",
  1324. "Name": "M bisher gruppiert",
  1325. "Parent": "Zeit",
  1326. "Levels": "0",
  1327. "Rollup": "True",
  1328. "TimeAggregate": "ToDate_Grp",
  1329. "RunningPeriods": "0",
  1330. "ToDateLevel": "Monat",
  1331. "TargetOffset": "0",
  1332. "TargetLevel": "Tag",
  1333. "ContextOffset": "1",
  1334. "ContextLevel": "Monat",
  1335. "TransientLevelList": "13831 For 1507",
  1336. "Sign": "False"
  1337. },
  1338. {
  1339. "Type": "SpecialCategory",
  1340. "Name": "M bisher gruppiert~Voriger M bisher",
  1341. "Parent": "M bisher gruppiert",
  1342. "Levels": "0",
  1343. "Label": "Voriger M bisher",
  1344. "Rollup": "False",
  1345. "TimeAggregate": "ToDate",
  1346. "RunningPeriods": "0",
  1347. "ToDateLevel": "Monat",
  1348. "TargetOffset": "0",
  1349. "TargetLevel": "Tag",
  1350. "ContextOffset": "1",
  1351. "ContextLevel": "Monat",
  1352. "Sign": "False"
  1353. },
  1354. {
  1355. "Type": "SpecialCategory",
  1356. "Name": "M bisher gruppiert~M bisher",
  1357. "Parent": "M bisher gruppiert",
  1358. "Levels": "0",
  1359. "Label": "M bisher",
  1360. "Rollup": "False",
  1361. "TimeAggregate": "ToDate",
  1362. "RunningPeriods": "0",
  1363. "ToDateLevel": "Monat",
  1364. "TargetOffset": "0",
  1365. "TargetLevel": "Tag",
  1366. "ContextOffset": "0",
  1367. "Sign": "False"
  1368. },
  1369. {
  1370. "Type": "SpecialCategory",
  1371. "Name": "M bisher gruppiert~\u00c4NDERUNG ( 'Voriger M bisher' , 'M bisher' )",
  1372. "Parent": "M bisher gruppiert",
  1373. "Levels": "0",
  1374. "Label": "M bisher \u00c4nderung",
  1375. "Rollup": "False",
  1376. "TimeAggregate": "None",
  1377. "Calc": "change ( \"M bisher gruppiert~Voriger M bisher@13825\" , \"M bisher gruppiert~M bisher@13823\" )"
  1378. },
  1379. {
  1380. "Type": "SpecialCategory",
  1381. "Name": "M bisher gruppiert~PROZENTZUWACHS ( 'Voriger M bisher' , 'M bisher' )",
  1382. "Parent": "M bisher gruppiert",
  1383. "Levels": "0",
  1384. "Label": "M bisher Zuwachs",
  1385. "Rollup": "False",
  1386. "TimeAggregate": "None",
  1387. "Calc": "percent-growth ( \"M bisher gruppiert~Voriger M bisher@13825\" , \"M bisher gruppiert~M bisher@13823\" )"
  1388. },
  1389. {
  1390. "Type": "SpecialCategory",
  1391. "Name": "Q bisher",
  1392. "Parent": "Zeit",
  1393. "Levels": "0",
  1394. "Rollup": "True",
  1395. "TimeAggregate": "ToDate",
  1396. "RunningPeriods": "0",
  1397. "ToDateLevel": "Quartal",
  1398. "TargetOffset": "0",
  1399. "TargetLevel": "Tag",
  1400. "ContextOffset": "0",
  1401. "TransientLevelList": "13835 For 1487",
  1402. "Sign": "False"
  1403. },
  1404. {
  1405. "Type": "SpecialCategory",
  1406. "Name": "Q bisher~Monat1",
  1407. "Parent": "Q bisher",
  1408. "Levels": "0",
  1409. "Inclusion": "Generate",
  1410. "Rollup": "True",
  1411. "TimeAggregate": "None",
  1412. "Sign": "False"
  1413. },
  1414. {
  1415. "Type": "SpecialCategory",
  1416. "Name": "Voriges Q bisher",
  1417. "Parent": "Zeit",
  1418. "Levels": "0",
  1419. "Rollup": "True",
  1420. "TimeAggregate": "ToDate",
  1421. "RunningPeriods": "0",
  1422. "ToDateLevel": "Quartal",
  1423. "TargetOffset": "0",
  1424. "TargetLevel": "Tag",
  1425. "ContextOffset": "1",
  1426. "ContextLevel": "Quartal",
  1427. "TransientLevelList": "13839 For 1487",
  1428. "Sign": "False"
  1429. },
  1430. {
  1431. "Type": "SpecialCategory",
  1432. "Name": "Voriges Q bisher~Monat1",
  1433. "Parent": "Voriges Q bisher",
  1434. "Levels": "0",
  1435. "Inclusion": "Generate",
  1436. "Rollup": "True",
  1437. "TimeAggregate": "None",
  1438. "Sign": "False"
  1439. },
  1440. {
  1441. "Type": "SpecialCategory",
  1442. "Name": "Q bisher gruppiert",
  1443. "Parent": "Zeit",
  1444. "Levels": "0",
  1445. "Rollup": "True",
  1446. "TimeAggregate": "ToDate_Grp",
  1447. "RunningPeriods": "0",
  1448. "ToDateLevel": "Quartal",
  1449. "TargetOffset": "0",
  1450. "TargetLevel": "Tag",
  1451. "ContextOffset": "1",
  1452. "ContextLevel": "Quartal",
  1453. "TransientLevelList": "13845 For 1487 13855 For 1513",
  1454. "Sign": "False"
  1455. },
  1456. {
  1457. "Type": "SpecialCategory",
  1458. "Name": "Q bisher gruppiert~Voriges Q bisher",
  1459. "Parent": "Q bisher gruppiert",
  1460. "Levels": "0",
  1461. "Label": "Voriges Q bisher",
  1462. "Rollup": "False",
  1463. "TimeAggregate": "ToDate",
  1464. "RunningPeriods": "0",
  1465. "ToDateLevel": "Quartal",
  1466. "TargetOffset": "0",
  1467. "TargetLevel": "Tag",
  1468. "ContextOffset": "1",
  1469. "ContextLevel": "Quartal",
  1470. "Sign": "False"
  1471. },
  1472. {
  1473. "Type": "SpecialCategory",
  1474. "Name": "Q bisher gruppiert~Voriges Q bisher~Monat1",
  1475. "Parent": "Q bisher gruppiert~Voriges Q bisher",
  1476. "Levels": "0",
  1477. "Inclusion": "Generate",
  1478. "Rollup": "True",
  1479. "TimeAggregate": "None",
  1480. "Sign": "False"
  1481. },
  1482. {
  1483. "Type": "SpecialCategory",
  1484. "Name": "Q bisher gruppiert~Q bisher",
  1485. "Parent": "Q bisher gruppiert",
  1486. "Levels": "0",
  1487. "Label": "Q bisher",
  1488. "Rollup": "False",
  1489. "TimeAggregate": "ToDate",
  1490. "RunningPeriods": "0",
  1491. "ToDateLevel": "Quartal",
  1492. "TargetOffset": "0",
  1493. "TargetLevel": "Tag",
  1494. "ContextOffset": "0",
  1495. "Sign": "False"
  1496. },
  1497. {
  1498. "Type": "SpecialCategory",
  1499. "Name": "Q bisher gruppiert~Q bisher~Monat1",
  1500. "Parent": "Q bisher gruppiert~Q bisher",
  1501. "Levels": "0",
  1502. "Inclusion": "Generate",
  1503. "Rollup": "True",
  1504. "TimeAggregate": "None",
  1505. "Sign": "False"
  1506. },
  1507. {
  1508. "Type": "SpecialCategory",
  1509. "Name": "Q bisher gruppiert~\u00c4NDERUNG ( 'Voriges Q bisher' , 'Q bisher' )",
  1510. "Parent": "Q bisher gruppiert",
  1511. "Levels": "0",
  1512. "Label": "Q bisher \u00c4nderung",
  1513. "Rollup": "False",
  1514. "TimeAggregate": "None",
  1515. "Calc": "change ( \"Q bisher gruppiert~Voriges Q bisher@13847\" , \"Q bisher gruppiert~Q bisher@13841\" )"
  1516. },
  1517. {
  1518. "Type": "SpecialCategory",
  1519. "Name": "Q bisher gruppiert~PROZENTZUWACHS ( 'Voriges Q bisher' , 'Q bisher' )",
  1520. "Parent": "Q bisher gruppiert",
  1521. "Levels": "0",
  1522. "Label": "Q bisher Zuwachs",
  1523. "Rollup": "False",
  1524. "TimeAggregate": "None",
  1525. "Calc": "percent-growth ( \"Q bisher gruppiert~Voriges Q bisher@13847\" , \"Q bisher gruppiert~Q bisher@13841\" )"
  1526. },
  1527. {
  1528. "Type": "SpecialCategory",
  1529. "Name": "J bisher",
  1530. "Parent": "Zeit",
  1531. "Levels": "0",
  1532. "Rollup": "True",
  1533. "TimeAggregate": "ToDate",
  1534. "RunningPeriods": "0",
  1535. "ToDateLevel": "Jahr",
  1536. "TargetOffset": "0",
  1537. "TargetLevel": "Tag",
  1538. "ContextOffset": "0",
  1539. "TransientLevelList": "13859 For 1481 13863 For 1487",
  1540. "Sign": "False"
  1541. },
  1542. {
  1543. "Type": "SpecialCategory",
  1544. "Name": "J bisher~Quartal1",
  1545. "Parent": "J bisher",
  1546. "Levels": "0",
  1547. "Inclusion": "Generate",
  1548. "Rollup": "True",
  1549. "TimeAggregate": "None",
  1550. "Sign": "False"
  1551. },
  1552. {
  1553. "Type": "SpecialCategory",
  1554. "Name": "J bisher~Quartal1~Monat1",
  1555. "Parent": "J bisher~Quartal1",
  1556. "Levels": "0",
  1557. "Inclusion": "Generate",
  1558. "Rollup": "True",
  1559. "TimeAggregate": "None",
  1560. "Sign": "False"
  1561. },
  1562. {
  1563. "Type": "SpecialCategory",
  1564. "Name": "J bisher~Quartal1~Monat2",
  1565. "Parent": "J bisher~Quartal1",
  1566. "Levels": "0",
  1567. "Inclusion": "Generate",
  1568. "Rollup": "True",
  1569. "TimeAggregate": "None",
  1570. "Sign": "False"
  1571. },
  1572. {
  1573. "Type": "SpecialCategory",
  1574. "Name": "J bisher~Quartal1~Monat3",
  1575. "Parent": "J bisher~Quartal1",
  1576. "Levels": "0",
  1577. "Inclusion": "Generate",
  1578. "Rollup": "True",
  1579. "TimeAggregate": "None",
  1580. "Sign": "False"
  1581. },
  1582. {
  1583. "Type": "SpecialCategory",
  1584. "Name": "J bisher~Quartal2",
  1585. "Parent": "J bisher",
  1586. "Levels": "0",
  1587. "Inclusion": "Generate",
  1588. "Rollup": "True",
  1589. "TimeAggregate": "None",
  1590. "Sign": "False"
  1591. },
  1592. {
  1593. "Type": "SpecialCategory",
  1594. "Name": "J bisher~Quartal2~Monat1",
  1595. "Parent": "J bisher~Quartal2",
  1596. "Levels": "0",
  1597. "Inclusion": "Generate",
  1598. "Rollup": "True",
  1599. "TimeAggregate": "None",
  1600. "Sign": "False"
  1601. },
  1602. {
  1603. "Type": "SpecialCategory",
  1604. "Name": "J bisher~Quartal2~Monat2",
  1605. "Parent": "J bisher~Quartal2",
  1606. "Levels": "0",
  1607. "Inclusion": "Generate",
  1608. "Rollup": "True",
  1609. "TimeAggregate": "None",
  1610. "Sign": "False"
  1611. },
  1612. {
  1613. "Type": "SpecialCategory",
  1614. "Name": "J bisher~Quartal2~Monat3",
  1615. "Parent": "J bisher~Quartal2",
  1616. "Levels": "0",
  1617. "Inclusion": "Generate",
  1618. "Rollup": "True",
  1619. "TimeAggregate": "None",
  1620. "Sign": "False"
  1621. },
  1622. {
  1623. "Type": "SpecialCategory",
  1624. "Name": "J bisher~Quartal3",
  1625. "Parent": "J bisher",
  1626. "Levels": "0",
  1627. "Inclusion": "Generate",
  1628. "Rollup": "True",
  1629. "TimeAggregate": "None",
  1630. "Sign": "False"
  1631. },
  1632. {
  1633. "Type": "SpecialCategory",
  1634. "Name": "J bisher~Quartal3~Monat1",
  1635. "Parent": "J bisher~Quartal3",
  1636. "Levels": "0",
  1637. "Inclusion": "Generate",
  1638. "Rollup": "True",
  1639. "TimeAggregate": "None",
  1640. "Sign": "False"
  1641. },
  1642. {
  1643. "Type": "SpecialCategory",
  1644. "Name": "Voriges J bisher",
  1645. "Parent": "Zeit",
  1646. "Levels": "0",
  1647. "Rollup": "True",
  1648. "TimeAggregate": "ToDate",
  1649. "RunningPeriods": "0",
  1650. "ToDateLevel": "Jahr",
  1651. "TargetOffset": "0",
  1652. "TargetLevel": "Tag",
  1653. "ContextOffset": "1",
  1654. "ContextLevel": "Jahr",
  1655. "TransientLevelList": "13883 For 1481 13887 For 1487",
  1656. "Sign": "False"
  1657. },
  1658. {
  1659. "Type": "SpecialCategory",
  1660. "Name": "Voriges J bisher~Quartal1",
  1661. "Parent": "Voriges J bisher",
  1662. "Levels": "0",
  1663. "Inclusion": "Generate",
  1664. "Rollup": "True",
  1665. "TimeAggregate": "None",
  1666. "Sign": "False"
  1667. },
  1668. {
  1669. "Type": "SpecialCategory",
  1670. "Name": "Voriges J bisher~Quartal1~Monat1",
  1671. "Parent": "Voriges J bisher~Quartal1",
  1672. "Levels": "0",
  1673. "Inclusion": "Generate",
  1674. "Rollup": "True",
  1675. "TimeAggregate": "None",
  1676. "Sign": "False"
  1677. },
  1678. {
  1679. "Type": "SpecialCategory",
  1680. "Name": "Voriges J bisher~Quartal1~Monat2",
  1681. "Parent": "Voriges J bisher~Quartal1",
  1682. "Levels": "0",
  1683. "Inclusion": "Generate",
  1684. "Rollup": "True",
  1685. "TimeAggregate": "None",
  1686. "Sign": "False"
  1687. },
  1688. {
  1689. "Type": "SpecialCategory",
  1690. "Name": "Voriges J bisher~Quartal1~Monat3",
  1691. "Parent": "Voriges J bisher~Quartal1",
  1692. "Levels": "0",
  1693. "Inclusion": "Generate",
  1694. "Rollup": "True",
  1695. "TimeAggregate": "None",
  1696. "Sign": "False"
  1697. },
  1698. {
  1699. "Type": "SpecialCategory",
  1700. "Name": "Voriges J bisher~Quartal2",
  1701. "Parent": "Voriges J bisher",
  1702. "Levels": "0",
  1703. "Inclusion": "Generate",
  1704. "Rollup": "True",
  1705. "TimeAggregate": "None",
  1706. "Sign": "False"
  1707. },
  1708. {
  1709. "Type": "SpecialCategory",
  1710. "Name": "Voriges J bisher~Quartal2~Monat1",
  1711. "Parent": "Voriges J bisher~Quartal2",
  1712. "Levels": "0",
  1713. "Inclusion": "Generate",
  1714. "Rollup": "True",
  1715. "TimeAggregate": "None",
  1716. "Sign": "False"
  1717. },
  1718. {
  1719. "Type": "SpecialCategory",
  1720. "Name": "Voriges J bisher~Quartal2~Monat2",
  1721. "Parent": "Voriges J bisher~Quartal2",
  1722. "Levels": "0",
  1723. "Inclusion": "Generate",
  1724. "Rollup": "True",
  1725. "TimeAggregate": "None",
  1726. "Sign": "False"
  1727. },
  1728. {
  1729. "Type": "SpecialCategory",
  1730. "Name": "Voriges J bisher~Quartal2~Monat3",
  1731. "Parent": "Voriges J bisher~Quartal2",
  1732. "Levels": "0",
  1733. "Inclusion": "Generate",
  1734. "Rollup": "True",
  1735. "TimeAggregate": "None",
  1736. "Sign": "False"
  1737. },
  1738. {
  1739. "Type": "SpecialCategory",
  1740. "Name": "Voriges J bisher~Quartal3",
  1741. "Parent": "Voriges J bisher",
  1742. "Levels": "0",
  1743. "Inclusion": "Generate",
  1744. "Rollup": "True",
  1745. "TimeAggregate": "None",
  1746. "Sign": "False"
  1747. },
  1748. {
  1749. "Type": "SpecialCategory",
  1750. "Name": "Voriges J bisher~Quartal3~Monat1",
  1751. "Parent": "Voriges J bisher~Quartal3",
  1752. "Levels": "0",
  1753. "Inclusion": "Generate",
  1754. "Rollup": "True",
  1755. "TimeAggregate": "None",
  1756. "Sign": "False"
  1757. },
  1758. {
  1759. "Type": "SpecialCategory",
  1760. "Name": "J bisher gruppiert",
  1761. "Parent": "Zeit",
  1762. "Levels": "0",
  1763. "Rollup": "True",
  1764. "TimeAggregate": "ToDate_Grp",
  1765. "RunningPeriods": "0",
  1766. "ToDateLevel": "Jahr",
  1767. "TargetOffset": "0",
  1768. "TargetLevel": "Tag",
  1769. "ContextOffset": "1",
  1770. "ContextLevel": "Jahr",
  1771. "TransientLevelList": "13909 For 1481 13913 For 1487 13957 For 1519",
  1772. "Sign": "False"
  1773. },
  1774. {
  1775. "Type": "SpecialCategory",
  1776. "Name": "J bisher gruppiert~Voriges J bisher",
  1777. "Parent": "J bisher gruppiert",
  1778. "Levels": "0",
  1779. "Label": "Voriges J bisher",
  1780. "Rollup": "False",
  1781. "TimeAggregate": "ToDate",
  1782. "RunningPeriods": "0",
  1783. "ToDateLevel": "Jahr",
  1784. "TargetOffset": "0",
  1785. "TargetLevel": "Tag",
  1786. "ContextOffset": "1",
  1787. "ContextLevel": "Jahr",
  1788. "Sign": "False"
  1789. },
  1790. {
  1791. "Type": "SpecialCategory",
  1792. "Name": "J bisher gruppiert~Voriges J bisher~Quartal1",
  1793. "Parent": "J bisher gruppiert~Voriges J bisher",
  1794. "Levels": "0",
  1795. "Inclusion": "Generate",
  1796. "Rollup": "True",
  1797. "TimeAggregate": "None",
  1798. "Sign": "False"
  1799. },
  1800. {
  1801. "Type": "SpecialCategory",
  1802. "Name": "J bisher gruppiert~Voriges J bisher~Quartal1~Monat1",
  1803. "Parent": "J bisher gruppiert~Voriges J bisher~Quartal1",
  1804. "Levels": "0",
  1805. "Inclusion": "Generate",
  1806. "Rollup": "True",
  1807. "TimeAggregate": "None",
  1808. "Sign": "False"
  1809. },
  1810. {
  1811. "Type": "SpecialCategory",
  1812. "Name": "J bisher gruppiert~Voriges J bisher~Quartal1~Monat2",
  1813. "Parent": "J bisher gruppiert~Voriges J bisher~Quartal1",
  1814. "Levels": "0",
  1815. "Inclusion": "Generate",
  1816. "Rollup": "True",
  1817. "TimeAggregate": "None",
  1818. "Sign": "False"
  1819. },
  1820. {
  1821. "Type": "SpecialCategory",
  1822. "Name": "J bisher gruppiert~Voriges J bisher~Quartal1~Monat3",
  1823. "Parent": "J bisher gruppiert~Voriges J bisher~Quartal1",
  1824. "Levels": "0",
  1825. "Inclusion": "Generate",
  1826. "Rollup": "True",
  1827. "TimeAggregate": "None",
  1828. "Sign": "False"
  1829. },
  1830. {
  1831. "Type": "SpecialCategory",
  1832. "Name": "J bisher gruppiert~Voriges J bisher~Quartal2",
  1833. "Parent": "J bisher gruppiert~Voriges J bisher",
  1834. "Levels": "0",
  1835. "Inclusion": "Generate",
  1836. "Rollup": "True",
  1837. "TimeAggregate": "None",
  1838. "Sign": "False"
  1839. },
  1840. {
  1841. "Type": "SpecialCategory",
  1842. "Name": "J bisher gruppiert~Voriges J bisher~Quartal2~Monat1",
  1843. "Parent": "J bisher gruppiert~Voriges J bisher~Quartal2",
  1844. "Levels": "0",
  1845. "Inclusion": "Generate",
  1846. "Rollup": "True",
  1847. "TimeAggregate": "None",
  1848. "Sign": "False"
  1849. },
  1850. {
  1851. "Type": "SpecialCategory",
  1852. "Name": "J bisher gruppiert~Voriges J bisher~Quartal2~Monat2",
  1853. "Parent": "J bisher gruppiert~Voriges J bisher~Quartal2",
  1854. "Levels": "0",
  1855. "Inclusion": "Generate",
  1856. "Rollup": "True",
  1857. "TimeAggregate": "None",
  1858. "Sign": "False"
  1859. },
  1860. {
  1861. "Type": "SpecialCategory",
  1862. "Name": "J bisher gruppiert~Voriges J bisher~Quartal2~Monat3",
  1863. "Parent": "J bisher gruppiert~Voriges J bisher~Quartal2",
  1864. "Levels": "0",
  1865. "Inclusion": "Generate",
  1866. "Rollup": "True",
  1867. "TimeAggregate": "None",
  1868. "Sign": "False"
  1869. },
  1870. {
  1871. "Type": "SpecialCategory",
  1872. "Name": "J bisher gruppiert~Voriges J bisher~Quartal3",
  1873. "Parent": "J bisher gruppiert~Voriges J bisher",
  1874. "Levels": "0",
  1875. "Inclusion": "Generate",
  1876. "Rollup": "True",
  1877. "TimeAggregate": "None",
  1878. "Sign": "False"
  1879. },
  1880. {
  1881. "Type": "SpecialCategory",
  1882. "Name": "J bisher gruppiert~Voriges J bisher~Quartal3~Monat1",
  1883. "Parent": "J bisher gruppiert~Voriges J bisher~Quartal3",
  1884. "Levels": "0",
  1885. "Inclusion": "Generate",
  1886. "Rollup": "True",
  1887. "TimeAggregate": "None",
  1888. "Sign": "False"
  1889. },
  1890. {
  1891. "Type": "SpecialCategory",
  1892. "Name": "J bisher gruppiert~J bisher",
  1893. "Parent": "J bisher gruppiert",
  1894. "Levels": "0",
  1895. "Label": "J bisher",
  1896. "Rollup": "False",
  1897. "TimeAggregate": "ToDate",
  1898. "RunningPeriods": "0",
  1899. "ToDateLevel": "Jahr",
  1900. "TargetOffset": "0",
  1901. "TargetLevel": "Tag",
  1902. "ContextOffset": "0",
  1903. "Sign": "False"
  1904. },
  1905. {
  1906. "Type": "SpecialCategory",
  1907. "Name": "J bisher gruppiert~J bisher~Quartal1",
  1908. "Parent": "J bisher gruppiert~J bisher",
  1909. "Levels": "0",
  1910. "Inclusion": "Generate",
  1911. "Rollup": "True",
  1912. "TimeAggregate": "None",
  1913. "Sign": "False"
  1914. },
  1915. {
  1916. "Type": "SpecialCategory",
  1917. "Name": "J bisher gruppiert~J bisher~Quartal1~Monat1",
  1918. "Parent": "J bisher gruppiert~J bisher~Quartal1",
  1919. "Levels": "0",
  1920. "Inclusion": "Generate",
  1921. "Rollup": "True",
  1922. "TimeAggregate": "None",
  1923. "Sign": "False"
  1924. },
  1925. {
  1926. "Type": "SpecialCategory",
  1927. "Name": "J bisher gruppiert~J bisher~Quartal1~Monat2",
  1928. "Parent": "J bisher gruppiert~J bisher~Quartal1",
  1929. "Levels": "0",
  1930. "Inclusion": "Generate",
  1931. "Rollup": "True",
  1932. "TimeAggregate": "None",
  1933. "Sign": "False"
  1934. },
  1935. {
  1936. "Type": "SpecialCategory",
  1937. "Name": "J bisher gruppiert~J bisher~Quartal1~Monat3",
  1938. "Parent": "J bisher gruppiert~J bisher~Quartal1",
  1939. "Levels": "0",
  1940. "Inclusion": "Generate",
  1941. "Rollup": "True",
  1942. "TimeAggregate": "None",
  1943. "Sign": "False"
  1944. },
  1945. {
  1946. "Type": "SpecialCategory",
  1947. "Name": "J bisher gruppiert~J bisher~Quartal2",
  1948. "Parent": "J bisher gruppiert~J bisher",
  1949. "Levels": "0",
  1950. "Inclusion": "Generate",
  1951. "Rollup": "True",
  1952. "TimeAggregate": "None",
  1953. "Sign": "False"
  1954. },
  1955. {
  1956. "Type": "SpecialCategory",
  1957. "Name": "J bisher gruppiert~J bisher~Quartal2~Monat1",
  1958. "Parent": "J bisher gruppiert~J bisher~Quartal2",
  1959. "Levels": "0",
  1960. "Inclusion": "Generate",
  1961. "Rollup": "True",
  1962. "TimeAggregate": "None",
  1963. "Sign": "False"
  1964. },
  1965. {
  1966. "Type": "SpecialCategory",
  1967. "Name": "J bisher gruppiert~J bisher~Quartal2~Monat2",
  1968. "Parent": "J bisher gruppiert~J bisher~Quartal2",
  1969. "Levels": "0",
  1970. "Inclusion": "Generate",
  1971. "Rollup": "True",
  1972. "TimeAggregate": "None",
  1973. "Sign": "False"
  1974. },
  1975. {
  1976. "Type": "SpecialCategory",
  1977. "Name": "J bisher gruppiert~J bisher~Quartal2~Monat3",
  1978. "Parent": "J bisher gruppiert~J bisher~Quartal2",
  1979. "Levels": "0",
  1980. "Inclusion": "Generate",
  1981. "Rollup": "True",
  1982. "TimeAggregate": "None",
  1983. "Sign": "False"
  1984. },
  1985. {
  1986. "Type": "SpecialCategory",
  1987. "Name": "J bisher gruppiert~J bisher~Quartal3",
  1988. "Parent": "J bisher gruppiert~J bisher",
  1989. "Levels": "0",
  1990. "Inclusion": "Generate",
  1991. "Rollup": "True",
  1992. "TimeAggregate": "None",
  1993. "Sign": "False"
  1994. },
  1995. {
  1996. "Type": "SpecialCategory",
  1997. "Name": "J bisher gruppiert~J bisher~Quartal3~Monat1",
  1998. "Parent": "J bisher gruppiert~J bisher~Quartal3",
  1999. "Levels": "0",
  2000. "Inclusion": "Generate",
  2001. "Rollup": "True",
  2002. "TimeAggregate": "None",
  2003. "Sign": "False"
  2004. },
  2005. {
  2006. "Type": "SpecialCategory",
  2007. "Name": "J bisher gruppiert~\u00c4NDERUNG ( 'Voriges J bisher' , 'J bisher' )",
  2008. "Parent": "J bisher gruppiert",
  2009. "Levels": "0",
  2010. "Label": "J bisher \u00c4nderung",
  2011. "Rollup": "False",
  2012. "TimeAggregate": "None",
  2013. "Calc": "change ( \"J bisher gruppiert~Voriges J bisher@13931\" , \"J bisher gruppiert~J bisher@13905\" )"
  2014. },
  2015. {
  2016. "Type": "SpecialCategory",
  2017. "Name": "J bisher gruppiert~PROZENTZUWACHS ( 'Voriges J bisher' , 'J bisher' )",
  2018. "Parent": "J bisher gruppiert",
  2019. "Levels": "0",
  2020. "Label": "J bisher Zuwachs",
  2021. "Rollup": "False",
  2022. "TimeAggregate": "None",
  2023. "Calc": "percent-growth ( \"J bisher gruppiert~Voriges J bisher@13931\" , \"J bisher gruppiert~J bisher@13905\" )"
  2024. }
  2025. ]
  2026. },
  2027. {
  2028. "Type": "Dimension",
  2029. "Name": "AH-Gruppe",
  2030. "DimType": "Regular",
  2031. "NewCatsLock": "False",
  2032. "ExcludeAutoPartitioning": "False",
  2033. "DimDefaultCategory": "0",
  2034. "Root": {
  2035. "Type": "Root",
  2036. "Name": "Hauptbetrieb",
  2037. "Inclusion": "Generate",
  2038. "Filtered": "False",
  2039. "Suppressed": "False",
  2040. "Sign": "False",
  2041. "HideValue": "False",
  2042. "IsKeyOrphanage": "False",
  2043. "IsTruncated": "False",
  2044. "Blanks": "False",
  2045. "Drill": {
  2046. "Type": "Drill",
  2047. "Name": "Nach Hauptbetrieb",
  2048. "Inclusion": "Suppress",
  2049. "Filtered": "False",
  2050. "Suppressed": "True",
  2051. "PrimaryDrill": "True",
  2052. "HideValue": "False"
  2053. }
  2054. },
  2055. "Levels": [
  2056. {
  2057. "Type": "Levels",
  2058. "Name": "Hauptbetrieb",
  2059. "Blanks": "( Leerstelle )",
  2060. "DateFunction": "None",
  2061. "Generate": "None",
  2062. "RefreshLabel": "False",
  2063. "RefreshDescription": "False",
  2064. "RefreshShortName": "False",
  2065. "NewCatsLock": "False",
  2066. "Timerank": "0",
  2067. "UniqueCategories": "False",
  2068. "UniqueMove": "False",
  2069. "Associations": [
  2070. {
  2071. "Type": "Associations",
  2072. "Name": "Hauptbetrieb_ID",
  2073. "AssociationType": "Type_Query",
  2074. "AssociationRole": "Role_Source",
  2075. "AssociationReferenced": "Hauptbetrieb_ID",
  2076. "Parent": "undefined"
  2077. },
  2078. {
  2079. "Type": "Associations",
  2080. "Name": "Hauptbetrieb_Name",
  2081. "AssociationType": "Type_Query",
  2082. "AssociationRole": "Role_Label",
  2083. "AssociationReferenced": "Hauptbetrieb_Name",
  2084. "Parent": "undefined"
  2085. },
  2086. {
  2087. "Type": "Associations",
  2088. "Name": "Hauptbetrieb_ID",
  2089. "AssociationType": "Type_Query",
  2090. "AssociationRole": "Role_OrderBy",
  2091. "AssociationReferenced": "Hauptbetrieb_ID",
  2092. "SortOrder": "Text",
  2093. "SortAs": "Ascending",
  2094. "Parent": "undefined"
  2095. }
  2096. ]
  2097. },
  2098. {
  2099. "Type": "Levels",
  2100. "Name": "Standort",
  2101. "Blanks": "( Leerstelle )",
  2102. "DateFunction": "None",
  2103. "Generate": "None",
  2104. "RefreshLabel": "False",
  2105. "RefreshDescription": "False",
  2106. "RefreshShortName": "False",
  2107. "NewCatsLock": "False",
  2108. "Timerank": "0",
  2109. "UniqueCategories": "False",
  2110. "UniqueMove": "False",
  2111. "Associations": [
  2112. {
  2113. "Type": "Associations",
  2114. "Name": "Standort_ID",
  2115. "AssociationType": "Type_Query",
  2116. "AssociationRole": "Role_Source",
  2117. "AssociationReferenced": "Standort_ID",
  2118. "Parent": "undefined"
  2119. },
  2120. {
  2121. "Type": "Associations",
  2122. "Name": "Standort_Name",
  2123. "AssociationType": "Type_Query",
  2124. "AssociationRole": "Role_Label",
  2125. "AssociationReferenced": "Standort_Name",
  2126. "Parent": "undefined"
  2127. },
  2128. {
  2129. "Type": "Associations",
  2130. "Name": "Standort_ID",
  2131. "AssociationType": "Type_Query",
  2132. "AssociationRole": "Role_OrderBy",
  2133. "AssociationReferenced": "Standort_ID",
  2134. "SortOrder": "Text",
  2135. "SortAs": "Ascending",
  2136. "Parent": "undefined"
  2137. }
  2138. ]
  2139. },
  2140. {
  2141. "Type": "Levels",
  2142. "Name": "Serviceberater",
  2143. "Blanks": "( Leerstelle )",
  2144. "DateFunction": "None",
  2145. "Generate": "None",
  2146. "RefreshLabel": "False",
  2147. "RefreshDescription": "False",
  2148. "RefreshShortName": "False",
  2149. "NewCatsLock": "False",
  2150. "Timerank": "0",
  2151. "UniqueCategories": "False",
  2152. "UniqueMove": "False",
  2153. "Associations": [
  2154. {
  2155. "Type": "Associations",
  2156. "Name": "Serviceberater",
  2157. "AssociationType": "Type_Query",
  2158. "AssociationRole": "Role_Source",
  2159. "AssociationReferenced": "Serviceberater",
  2160. "Parent": "undefined"
  2161. }
  2162. ]
  2163. },
  2164. {
  2165. "Type": "Levels",
  2166. "Name": "Order Number",
  2167. "Blanks": "( Leerstelle )",
  2168. "DateFunction": "None",
  2169. "Generate": "None",
  2170. "RefreshLabel": "False",
  2171. "RefreshDescription": "False",
  2172. "RefreshShortName": "False",
  2173. "NewCatsLock": "False",
  2174. "Timerank": "0",
  2175. "UniqueCategories": "False",
  2176. "UniqueMove": "False",
  2177. "Associations": [
  2178. {
  2179. "Type": "Associations",
  2180. "Name": "Order Number",
  2181. "AssociationType": "Type_Query",
  2182. "AssociationRole": "Role_Source",
  2183. "AssociationReferenced": "Order Number",
  2184. "Parent": "undefined"
  2185. },
  2186. {
  2187. "Type": "Associations",
  2188. "Name": "Tage offen",
  2189. "AssociationType": "Type_Query",
  2190. "AssociationRole": "Role_OrderBy",
  2191. "AssociationReferenced": "Tage offen",
  2192. "SortOrder": "Int16",
  2193. "SortAs": "Descending",
  2194. "Parent": "undefined"
  2195. }
  2196. ]
  2197. }
  2198. ],
  2199. "Categories": [],
  2200. "SpecialCategories": []
  2201. },
  2202. {
  2203. "Type": "Dimension",
  2204. "Name": "Fabrikat",
  2205. "DimType": "Regular",
  2206. "NewCatsLock": "False",
  2207. "ExcludeAutoPartitioning": "False",
  2208. "DimDefaultCategory": "0",
  2209. "Root": {
  2210. "Type": "Root",
  2211. "Name": "Fabrikat",
  2212. "Inclusion": "Generate",
  2213. "Filtered": "False",
  2214. "Suppressed": "False",
  2215. "Sign": "False",
  2216. "HideValue": "False",
  2217. "IsKeyOrphanage": "False",
  2218. "IsTruncated": "False",
  2219. "Blanks": "False",
  2220. "Drill": {
  2221. "Type": "Drill",
  2222. "Name": "Nach Fabrikat",
  2223. "Inclusion": "Suppress",
  2224. "Filtered": "False",
  2225. "Suppressed": "True",
  2226. "PrimaryDrill": "True",
  2227. "HideValue": "False"
  2228. }
  2229. },
  2230. "Levels": [
  2231. {
  2232. "Type": "Levels",
  2233. "Name": "Fabrikat",
  2234. "Blanks": "( Leerstelle )",
  2235. "DateFunction": "None",
  2236. "Generate": "None",
  2237. "RefreshLabel": "False",
  2238. "RefreshDescription": "False",
  2239. "RefreshShortName": "False",
  2240. "NewCatsLock": "False",
  2241. "Timerank": "0",
  2242. "UniqueCategories": "False",
  2243. "UniqueMove": "False",
  2244. "Associations": [
  2245. {
  2246. "Type": "Associations",
  2247. "Name": "Fabrikat",
  2248. "AssociationType": "Type_Query",
  2249. "AssociationRole": "Role_Source",
  2250. "AssociationReferenced": "Fabrikat",
  2251. "Parent": "undefined"
  2252. }
  2253. ]
  2254. },
  2255. {
  2256. "Type": "Levels",
  2257. "Name": "Model",
  2258. "Blanks": "( Leerstelle )",
  2259. "DateFunction": "None",
  2260. "Generate": "None",
  2261. "RefreshLabel": "False",
  2262. "RefreshDescription": "False",
  2263. "RefreshShortName": "False",
  2264. "NewCatsLock": "False",
  2265. "Timerank": "0",
  2266. "UniqueCategories": "False",
  2267. "UniqueMove": "False",
  2268. "Associations": [
  2269. {
  2270. "Type": "Associations",
  2271. "Name": "Model",
  2272. "AssociationType": "Type_Query",
  2273. "AssociationRole": "Role_Source",
  2274. "AssociationReferenced": "Model",
  2275. "Parent": "undefined"
  2276. }
  2277. ]
  2278. },
  2279. {
  2280. "Type": "Levels",
  2281. "Name": "Fahrzeug",
  2282. "Blanks": "( Leerstelle )",
  2283. "DateFunction": "None",
  2284. "Generate": "None",
  2285. "RefreshLabel": "False",
  2286. "RefreshDescription": "False",
  2287. "RefreshShortName": "False",
  2288. "NewCatsLock": "False",
  2289. "Timerank": "0",
  2290. "UniqueCategories": "False",
  2291. "UniqueMove": "False",
  2292. "Associations": [
  2293. {
  2294. "Type": "Associations",
  2295. "Name": "Fahrzeug",
  2296. "AssociationType": "Type_Query",
  2297. "AssociationRole": "Role_Source",
  2298. "AssociationReferenced": "Fahrzeug",
  2299. "Parent": "undefined"
  2300. }
  2301. ]
  2302. }
  2303. ],
  2304. "Categories": [
  2305. {
  2306. "Type": "Category",
  2307. "Name": "Ford",
  2308. "Parent": "Nach Fabrikat",
  2309. "Levels": "Fabrikat",
  2310. "SourceValue": "Ford",
  2311. "Filtered": "False",
  2312. "Suppressed": "False",
  2313. "Sign": "False",
  2314. "HideValue": "False",
  2315. "IsKeyOrphanage": "False",
  2316. "IsTruncated": "False",
  2317. "Blanks": "False"
  2318. },
  2319. {
  2320. "Type": "Category",
  2321. "Name": "KIA",
  2322. "Parent": "Nach Fabrikat",
  2323. "Levels": "Fabrikat",
  2324. "SourceValue": "KIA",
  2325. "Filtered": "False",
  2326. "Suppressed": "False",
  2327. "Sign": "False",
  2328. "HideValue": "False",
  2329. "IsKeyOrphanage": "False",
  2330. "IsTruncated": "False",
  2331. "Blanks": "False"
  2332. },
  2333. {
  2334. "Type": "Category",
  2335. "Name": "Mitsubishi",
  2336. "Parent": "Nach Fabrikat",
  2337. "Levels": "Fabrikat",
  2338. "SourceValue": "Mitsubishi",
  2339. "Filtered": "False",
  2340. "Suppressed": "False",
  2341. "Sign": "False",
  2342. "HideValue": "False",
  2343. "IsKeyOrphanage": "False",
  2344. "IsTruncated": "False",
  2345. "Blanks": "False"
  2346. }
  2347. ],
  2348. "SpecialCategories": []
  2349. },
  2350. {
  2351. "Type": "Dimension",
  2352. "Name": "Kostenstelle",
  2353. "DimType": "Regular",
  2354. "NewCatsLock": "False",
  2355. "ExcludeAutoPartitioning": "False",
  2356. "DimDefaultCategory": "0",
  2357. "Root": {
  2358. "Type": "Root",
  2359. "Name": "Kostenstelle",
  2360. "Inclusion": "Generate",
  2361. "Filtered": "False",
  2362. "Suppressed": "False",
  2363. "Sign": "False",
  2364. "HideValue": "False",
  2365. "IsKeyOrphanage": "False",
  2366. "IsTruncated": "False",
  2367. "Blanks": "False",
  2368. "Drill": {
  2369. "Type": "Drill",
  2370. "Name": "Nach Kostenstelle",
  2371. "Inclusion": "Suppress",
  2372. "Filtered": "False",
  2373. "Suppressed": "True",
  2374. "PrimaryDrill": "True",
  2375. "HideValue": "False"
  2376. }
  2377. },
  2378. "Levels": [
  2379. {
  2380. "Type": "Levels",
  2381. "Name": "Kostenstelle",
  2382. "Blanks": "( Leerstelle )",
  2383. "DateFunction": "None",
  2384. "Generate": "None",
  2385. "RefreshLabel": "False",
  2386. "RefreshDescription": "False",
  2387. "RefreshShortName": "False",
  2388. "NewCatsLock": "False",
  2389. "Timerank": "0",
  2390. "UniqueCategories": "False",
  2391. "UniqueMove": "False",
  2392. "Associations": [
  2393. {
  2394. "Type": "Associations",
  2395. "Name": "Kostenstelle",
  2396. "AssociationType": "Type_Query",
  2397. "AssociationRole": "Role_Source",
  2398. "AssociationReferenced": "Kostenstelle",
  2399. "Parent": "undefined"
  2400. }
  2401. ]
  2402. }
  2403. ],
  2404. "Categories": [
  2405. {
  2406. "Type": "Category",
  2407. "Name": "3",
  2408. "Parent": "Nach Kostenstelle",
  2409. "Levels": "Kostenstelle",
  2410. "Label": "3 - Mechanik",
  2411. "SourceValue": "3",
  2412. "Filtered": "False",
  2413. "Suppressed": "False",
  2414. "Sign": "False",
  2415. "HideValue": "False",
  2416. "IsKeyOrphanage": "False",
  2417. "IsTruncated": "False",
  2418. "Blanks": "False"
  2419. },
  2420. {
  2421. "Type": "Category",
  2422. "Name": "6",
  2423. "Parent": "Nach Kostenstelle",
  2424. "Levels": "Kostenstelle",
  2425. "Label": "6 - Teile",
  2426. "Inclusion": "Generate",
  2427. "SourceValue": "6",
  2428. "Filtered": "False",
  2429. "Suppressed": "False",
  2430. "Sign": "False",
  2431. "HideValue": "False",
  2432. "IsKeyOrphanage": "False",
  2433. "IsTruncated": "False",
  2434. "Blanks": "False"
  2435. }
  2436. ],
  2437. "SpecialCategories": []
  2438. },
  2439. {
  2440. "Type": "Dimension",
  2441. "Name": "Marke",
  2442. "DimType": "Regular",
  2443. "NewCatsLock": "False",
  2444. "ExcludeAutoPartitioning": "False",
  2445. "DimDefaultCategory": "0",
  2446. "Root": {
  2447. "Type": "Root",
  2448. "Name": "Marke",
  2449. "Inclusion": "Generate",
  2450. "Filtered": "False",
  2451. "Suppressed": "False",
  2452. "Sign": "False",
  2453. "HideValue": "False",
  2454. "IsKeyOrphanage": "False",
  2455. "IsTruncated": "False",
  2456. "Blanks": "False",
  2457. "Drill": {
  2458. "Type": "Drill",
  2459. "Name": "Nach Marke",
  2460. "Inclusion": "Suppress",
  2461. "Filtered": "False",
  2462. "Suppressed": "True",
  2463. "PrimaryDrill": "True",
  2464. "HideValue": "False"
  2465. }
  2466. },
  2467. "Levels": [
  2468. {
  2469. "Type": "Levels",
  2470. "Name": "Marke",
  2471. "Blanks": "( Leerstelle )",
  2472. "DateFunction": "None",
  2473. "Generate": "None",
  2474. "RefreshLabel": "False",
  2475. "RefreshDescription": "False",
  2476. "RefreshShortName": "False",
  2477. "NewCatsLock": "False",
  2478. "Timerank": "0",
  2479. "UniqueCategories": "False",
  2480. "UniqueMove": "False",
  2481. "Associations": [
  2482. {
  2483. "Type": "Associations",
  2484. "Name": "Fabrikat",
  2485. "AssociationType": "Type_Query",
  2486. "AssociationRole": "Role_Source",
  2487. "AssociationReferenced": "Fabrikat",
  2488. "Parent": "undefined"
  2489. }
  2490. ]
  2491. }
  2492. ],
  2493. "Categories": [
  2494. {
  2495. "Type": "Category",
  2496. "Name": "Ford",
  2497. "Parent": "Nach Marke",
  2498. "Levels": "Marke",
  2499. "SourceValue": "Ford",
  2500. "Filtered": "False",
  2501. "Suppressed": "False",
  2502. "Sign": "False",
  2503. "HideValue": "False",
  2504. "IsKeyOrphanage": "False",
  2505. "IsTruncated": "False",
  2506. "Blanks": "False"
  2507. },
  2508. {
  2509. "Type": "Category",
  2510. "Name": "KIA",
  2511. "Parent": "Nach Marke",
  2512. "Levels": "Marke",
  2513. "SourceValue": "KIA",
  2514. "Filtered": "False",
  2515. "Suppressed": "False",
  2516. "Sign": "False",
  2517. "HideValue": "False",
  2518. "IsKeyOrphanage": "False",
  2519. "IsTruncated": "False",
  2520. "Blanks": "False"
  2521. },
  2522. {
  2523. "Type": "Category",
  2524. "Name": "Mitsubishi",
  2525. "Parent": "Nach Marke",
  2526. "Levels": "Marke",
  2527. "SourceValue": "Mitsubishi",
  2528. "Filtered": "False",
  2529. "Suppressed": "False",
  2530. "Sign": "False",
  2531. "HideValue": "False",
  2532. "IsKeyOrphanage": "False",
  2533. "IsTruncated": "False",
  2534. "Blanks": "False"
  2535. }
  2536. ],
  2537. "SpecialCategories": []
  2538. },
  2539. {
  2540. "Type": "Dimension",
  2541. "Name": "Kunde",
  2542. "DimType": "Regular",
  2543. "NewCatsLock": "False",
  2544. "ExcludeAutoPartitioning": "False",
  2545. "DimDefaultCategory": "0",
  2546. "Root": {
  2547. "Type": "Root",
  2548. "Name": "Kunde",
  2549. "Inclusion": "Generate",
  2550. "Filtered": "False",
  2551. "Suppressed": "False",
  2552. "Sign": "False",
  2553. "HideValue": "False",
  2554. "IsKeyOrphanage": "False",
  2555. "IsTruncated": "False",
  2556. "Blanks": "False",
  2557. "Drill": {
  2558. "Type": "Drill",
  2559. "Name": "Nach Kunde",
  2560. "Inclusion": "Suppress",
  2561. "Filtered": "False",
  2562. "Suppressed": "True",
  2563. "PrimaryDrill": "True",
  2564. "HideValue": "False"
  2565. }
  2566. },
  2567. "Levels": [
  2568. {
  2569. "Type": "Levels",
  2570. "Name": "Kunde",
  2571. "Blanks": "( Leerstelle )",
  2572. "DateFunction": "None",
  2573. "Generate": "None",
  2574. "RefreshLabel": "False",
  2575. "RefreshDescription": "False",
  2576. "RefreshShortName": "False",
  2577. "NewCatsLock": "False",
  2578. "Timerank": "0",
  2579. "UniqueCategories": "False",
  2580. "UniqueMove": "False",
  2581. "Associations": [
  2582. {
  2583. "Type": "Associations",
  2584. "Name": "Kunde",
  2585. "AssociationType": "Type_Query",
  2586. "AssociationRole": "Role_Source",
  2587. "AssociationReferenced": "Kunde",
  2588. "Parent": "undefined"
  2589. }
  2590. ]
  2591. }
  2592. ],
  2593. "Categories": [],
  2594. "SpecialCategories": []
  2595. },
  2596. {
  2597. "Type": "Dimension",
  2598. "Name": "Auftrag Detail",
  2599. "DimType": "Regular",
  2600. "NewCatsLock": "False",
  2601. "ExcludeAutoPartitioning": "False",
  2602. "DimDefaultCategory": "0",
  2603. "Root": {
  2604. "Type": "Root",
  2605. "Name": "verk. AW",
  2606. "Inclusion": "Generate",
  2607. "Filtered": "False",
  2608. "Suppressed": "False",
  2609. "Sign": "False",
  2610. "HideValue": "False",
  2611. "IsKeyOrphanage": "False",
  2612. "IsTruncated": "False",
  2613. "Blanks": "False",
  2614. "Drill": {
  2615. "Type": "Drill",
  2616. "Name": "Nach verk. AW",
  2617. "Inclusion": "Suppress",
  2618. "Filtered": "False",
  2619. "Suppressed": "True",
  2620. "PrimaryDrill": "True",
  2621. "HideValue": "False"
  2622. }
  2623. },
  2624. "Levels": [
  2625. {
  2626. "Type": "Levels",
  2627. "Name": "Serviceberater",
  2628. "Blanks": "( Leerstelle )",
  2629. "DateFunction": "None",
  2630. "Generate": "None",
  2631. "RefreshLabel": "False",
  2632. "RefreshDescription": "False",
  2633. "RefreshShortName": "False",
  2634. "NewCatsLock": "False",
  2635. "Timerank": "0",
  2636. "UniqueCategories": "False",
  2637. "UniqueMove": "False",
  2638. "Associations": [
  2639. {
  2640. "Type": "Associations",
  2641. "Name": "Serviceberater",
  2642. "AssociationType": "Type_Query",
  2643. "AssociationRole": "Role_Source",
  2644. "AssociationReferenced": "Serviceberater",
  2645. "Parent": "undefined"
  2646. }
  2647. ]
  2648. },
  2649. {
  2650. "Type": "Levels",
  2651. "Name": "Order Number",
  2652. "Blanks": "( Leerstelle )",
  2653. "DateFunction": "None",
  2654. "Generate": "None",
  2655. "RefreshLabel": "False",
  2656. "RefreshDescription": "False",
  2657. "RefreshShortName": "False",
  2658. "NewCatsLock": "False",
  2659. "Timerank": "0",
  2660. "UniqueCategories": "False",
  2661. "UniqueMove": "False",
  2662. "Associations": [
  2663. {
  2664. "Type": "Associations",
  2665. "Name": "Order Number",
  2666. "AssociationType": "Type_Query",
  2667. "AssociationRole": "Role_Source",
  2668. "AssociationReferenced": "Order Number",
  2669. "Parent": "undefined"
  2670. },
  2671. {
  2672. "Type": "Associations",
  2673. "Name": "Tage offen",
  2674. "AssociationType": "Type_Query",
  2675. "AssociationRole": "Role_OrderBy",
  2676. "AssociationReferenced": "Tage offen",
  2677. "SortOrder": "Int16",
  2678. "SortAs": "Descending",
  2679. "Parent": "undefined"
  2680. }
  2681. ]
  2682. }
  2683. ],
  2684. "Categories": [],
  2685. "SpecialCategories": []
  2686. },
  2687. {
  2688. "Type": "Dimension",
  2689. "Name": "Serviceberater",
  2690. "DimType": "Regular",
  2691. "NewCatsLock": "False",
  2692. "ExcludeAutoPartitioning": "False",
  2693. "DimDefaultCategory": "0",
  2694. "Root": {
  2695. "Type": "Root",
  2696. "Name": "Serviceberater",
  2697. "Inclusion": "Generate",
  2698. "Filtered": "False",
  2699. "Suppressed": "False",
  2700. "Sign": "False",
  2701. "HideValue": "False",
  2702. "IsKeyOrphanage": "False",
  2703. "IsTruncated": "False",
  2704. "Blanks": "False",
  2705. "Drill": {
  2706. "Type": "Drill",
  2707. "Name": "Nach Serviceberater",
  2708. "Inclusion": "Suppress",
  2709. "Filtered": "False",
  2710. "Suppressed": "True",
  2711. "PrimaryDrill": "True",
  2712. "HideValue": "False"
  2713. }
  2714. },
  2715. "Levels": [
  2716. {
  2717. "Type": "Levels",
  2718. "Name": "Serviceberater",
  2719. "Blanks": "( Leerstelle )",
  2720. "DateFunction": "None",
  2721. "Generate": "None",
  2722. "RefreshLabel": "False",
  2723. "RefreshDescription": "False",
  2724. "RefreshShortName": "False",
  2725. "NewCatsLock": "False",
  2726. "Timerank": "0",
  2727. "UniqueCategories": "False",
  2728. "UniqueMove": "False",
  2729. "Associations": [
  2730. {
  2731. "Type": "Associations",
  2732. "Name": "Serviceberater",
  2733. "AssociationType": "Type_Query",
  2734. "AssociationRole": "Role_Source",
  2735. "AssociationReferenced": "Serviceberater",
  2736. "Parent": "undefined"
  2737. }
  2738. ]
  2739. },
  2740. {
  2741. "Type": "Levels",
  2742. "Name": "Order Number",
  2743. "Blanks": "( Leer )",
  2744. "DateFunction": "None",
  2745. "Generate": "None",
  2746. "RefreshLabel": "False",
  2747. "RefreshDescription": "False",
  2748. "RefreshShortName": "False",
  2749. "NewCatsLock": "False",
  2750. "Timerank": "0",
  2751. "UniqueCategories": "False",
  2752. "UniqueMove": "False",
  2753. "Associations": [
  2754. {
  2755. "Type": "Associations",
  2756. "Name": "Order Number",
  2757. "AssociationType": "Type_Query",
  2758. "AssociationRole": "Role_Source",
  2759. "AssociationReferenced": "Order Number",
  2760. "Parent": "undefined"
  2761. },
  2762. {
  2763. "Type": "Associations",
  2764. "Name": "Tage offen",
  2765. "AssociationType": "Type_Query",
  2766. "AssociationRole": "Role_OrderBy",
  2767. "AssociationReferenced": "Tage offen",
  2768. "SortOrder": "Int16",
  2769. "SortAs": "Descending",
  2770. "Parent": "undefined"
  2771. }
  2772. ]
  2773. }
  2774. ],
  2775. "Categories": [],
  2776. "SpecialCategories": []
  2777. },
  2778. {
  2779. "Type": "Dimension",
  2780. "Name": "Auftragsart",
  2781. "DimType": "Regular",
  2782. "NewCatsLock": "False",
  2783. "ExcludeAutoPartitioning": "False",
  2784. "DimDefaultCategory": "0",
  2785. "Root": {
  2786. "Type": "Root",
  2787. "Name": "Auftragsart",
  2788. "Inclusion": "Generate",
  2789. "Filtered": "False",
  2790. "Suppressed": "False",
  2791. "Sign": "False",
  2792. "HideValue": "False",
  2793. "IsKeyOrphanage": "False",
  2794. "IsTruncated": "False",
  2795. "Blanks": "False",
  2796. "Drill": {
  2797. "Type": "Drill",
  2798. "Name": "Nach Auftragsart",
  2799. "Inclusion": "Suppress",
  2800. "Filtered": "False",
  2801. "Suppressed": "True",
  2802. "PrimaryDrill": "True",
  2803. "HideValue": "False"
  2804. }
  2805. },
  2806. "Levels": [
  2807. {
  2808. "Type": "Levels",
  2809. "Name": "Auftragsart",
  2810. "Blanks": "( Leer )",
  2811. "DateFunction": "None",
  2812. "Generate": "None",
  2813. "RefreshLabel": "False",
  2814. "RefreshDescription": "False",
  2815. "RefreshShortName": "False",
  2816. "NewCatsLock": "False",
  2817. "Timerank": "0",
  2818. "UniqueCategories": "False",
  2819. "UniqueMove": "False",
  2820. "Associations": [
  2821. {
  2822. "Type": "Associations",
  2823. "Name": "Auftragsart",
  2824. "AssociationType": "Type_Query",
  2825. "AssociationRole": "Role_Source",
  2826. "AssociationReferenced": "Auftragsart",
  2827. "Parent": "undefined"
  2828. },
  2829. {
  2830. "Type": "Associations",
  2831. "Name": "Auftragsart",
  2832. "AssociationType": "Type_Query",
  2833. "AssociationRole": "Role_OrderBy",
  2834. "AssociationReferenced": "Auftragsart",
  2835. "SortOrder": "Text",
  2836. "SortAs": "Ascending",
  2837. "Parent": "undefined"
  2838. }
  2839. ]
  2840. }
  2841. ],
  2842. "Categories": [],
  2843. "SpecialCategories": []
  2844. }
  2845. ],
  2846. "Measures": [
  2847. {
  2848. "Type": "Measure",
  2849. "Name": "Tage offen",
  2850. "Missing": "Zero",
  2851. "IgnoreMissingValue": "False",
  2852. "Storage": "Float64",
  2853. "OutPutScale": "0",
  2854. "Decimals": "5",
  2855. "ReverseSign": "False",
  2856. "IsCurrency": "False",
  2857. "IsFolder": "False",
  2858. "Format": "#,##0~0",
  2859. "DrillThrough": "False",
  2860. "Associations": [
  2861. {
  2862. "Type": "Associations",
  2863. "Name": "Tage offen",
  2864. "AssociationType": "Type_Query",
  2865. "AssociationRole": "Role_Source",
  2866. "AssociationReferenced": "Tage offen",
  2867. "Parent": "undefined"
  2868. }
  2869. ]
  2870. },
  2871. {
  2872. "Type": "Measure",
  2873. "Name": "DG",
  2874. "Missing": "Zero",
  2875. "IgnoreMissingValue": "False",
  2876. "Storage": "Float64",
  2877. "OutPutScale": "0",
  2878. "Decimals": "8",
  2879. "ReverseSign": "False",
  2880. "IsCurrency": "False",
  2881. "IsFolder": "False",
  2882. "Format": "#,##0~0",
  2883. "DrillThrough": "False",
  2884. "Associations": [
  2885. {
  2886. "Type": "Associations",
  2887. "Name": "DG",
  2888. "AssociationType": "Type_Query",
  2889. "AssociationRole": "Role_Source",
  2890. "AssociationReferenced": "DG",
  2891. "Parent": "undefined"
  2892. }
  2893. ]
  2894. },
  2895. {
  2896. "Type": "Measure",
  2897. "Name": "Lohn",
  2898. "Missing": "Zero",
  2899. "IgnoreMissingValue": "False",
  2900. "Storage": "Float64",
  2901. "OutPutScale": "8",
  2902. "Decimals": "3",
  2903. "ReverseSign": "False",
  2904. "IsCurrency": "False",
  2905. "IsFolder": "False",
  2906. "Format": "#,##0~0",
  2907. "DrillThrough": "False",
  2908. "Associations": [
  2909. {
  2910. "Type": "Associations",
  2911. "Name": "Lohn",
  2912. "AssociationType": "Type_Query",
  2913. "AssociationRole": "Role_Source",
  2914. "AssociationReferenced": "Lohn",
  2915. "Parent": "undefined"
  2916. }
  2917. ]
  2918. },
  2919. {
  2920. "Type": "Measure",
  2921. "Name": "Teile",
  2922. "Missing": "Zero",
  2923. "IgnoreMissingValue": "False",
  2924. "Storage": "Float64",
  2925. "OutPutScale": "0",
  2926. "Decimals": "3",
  2927. "ReverseSign": "False",
  2928. "IsCurrency": "False",
  2929. "IsFolder": "False",
  2930. "Format": "#,##0~0",
  2931. "DrillThrough": "False",
  2932. "Associations": [
  2933. {
  2934. "Type": "Associations",
  2935. "Name": "Teile",
  2936. "AssociationType": "Type_Query",
  2937. "AssociationRole": "Role_Source",
  2938. "AssociationReferenced": "Teile",
  2939. "Parent": "undefined"
  2940. }
  2941. ]
  2942. },
  2943. {
  2944. "Type": "Measure",
  2945. "Name": "Sonst.",
  2946. "Missing": "Zero",
  2947. "IgnoreMissingValue": "False",
  2948. "Storage": "Float64",
  2949. "OutPutScale": "8",
  2950. "Decimals": "3",
  2951. "ReverseSign": "False",
  2952. "IsCurrency": "False",
  2953. "IsFolder": "False",
  2954. "Format": "#,##0~0",
  2955. "DrillThrough": "False",
  2956. "Associations": [
  2957. {
  2958. "Type": "Associations",
  2959. "Name": "Sonst.",
  2960. "AssociationType": "Type_Query",
  2961. "AssociationRole": "Role_Source",
  2962. "AssociationReferenced": "Sonst.",
  2963. "Parent": "undefined"
  2964. }
  2965. ]
  2966. },
  2967. {
  2968. "Type": "Measure",
  2969. "Name": "Tage seit letzt. Stemp.",
  2970. "IgnoreMissingValue": "False",
  2971. "Storage": "Float64",
  2972. "OutPutScale": "0",
  2973. "Decimals": "0",
  2974. "ReverseSign": "False",
  2975. "IsCurrency": "False",
  2976. "IsFolder": "False",
  2977. "Format": "#,##0~0",
  2978. "DrillThrough": "False",
  2979. "Associations": [
  2980. {
  2981. "Type": "Associations",
  2982. "Name": "Tage seit letzt. Stemp.",
  2983. "AssociationType": "Type_Query",
  2984. "AssociationRole": "Role_Source",
  2985. "AssociationReferenced": "Tage seit letzt. Stemp.",
  2986. "Parent": "undefined"
  2987. }
  2988. ]
  2989. }
  2990. ],
  2991. "Signons": [
  2992. {
  2993. "Type": "Signon",
  2994. "Name": "GC_CARLO",
  2995. "UserId": "gaps",
  2996. "PromptForPassword": "False",
  2997. "EncryptedPW": "*1*0154377D72534C4B5F384F556F5B7970286A59373F70255D63D4EDE5BC9A7FD45994",
  2998. "Salt": "AC2C0B8CE18548",
  2999. "AutoLogon": "False",
  3000. "SignonType": "DataSource"
  3001. },
  3002. {
  3003. "Type": "Signon",
  3004. "Name": "Global1",
  3005. "UserId": "Global1",
  3006. "PromptForPassword": "False",
  3007. "EncryptedPW": "*1*013B396846296D72232C62274C312B48432B464B52705B2147BC0680EA66C628A0FE",
  3008. "Salt": "A70FDB4177ACBA",
  3009. "AutoLogon": "True",
  3010. "SignOnNamespace": "CognosEx",
  3011. "SignonType": "Cognos"
  3012. },
  3013. {
  3014. "Type": "Signon",
  3015. "Name": "Test",
  3016. "UserId": "Global1",
  3017. "FullDb": "PromptForPassword",
  3018. "False": "EncryptedPW",
  3019. "\"*1*014D364B683C32432B543A6D2E6C475E207A526D2C3B325F74382B1B5F1C5B4C31AB\"": "678035C7648969",
  3020. "AutoLogon": "False",
  3021. "SignonType": "DataSource"
  3022. }
  3023. ],
  3024. "CustomViews": [],
  3025. "Security": [],
  3026. "Cubes": [
  3027. {
  3028. "Type": "Cube",
  3029. "Name": "S_Offene_Auftraege",
  3030. "MdcFile": "c:\\globalcube\\system\\audev_carit\\cube_out\\s_offene_auftraege.mdc",
  3031. "EncryptedPW": "Status",
  3032. "Salt": "OK",
  3033. "CubeCreation": "On",
  3034. "Optimize": "Default",
  3035. "ConsolidatedRecords": "10000000",
  3036. "PartitionSize": "500000",
  3037. "PassesNumber": "5",
  3038. "Compress": "False",
  3039. "IncrementalUpdate": "False",
  3040. "ServerCube": "False",
  3041. "CubeStamp": "1534758561",
  3042. "CubeCycle": "8",
  3043. "BlockParentTotals": "False",
  3044. "Caching": "False",
  3045. "UseAlternateFileName": "False",
  3046. "DeployType": "DeployToAvailableLocationsAutomatic",
  3047. "DeployLocations": "\"c:\\globalcube\\cubes\"",
  3048. "DeployCleanupEnabled": "True",
  3049. "DeployCleanupNumberOfCubes": "2",
  3050. "DrillThrough": "False",
  3051. "DataSourceSignon": "False",
  3052. "PublishEnable": "True",
  3053. "PublishStatus": "None",
  3054. "PublishAllowNullSuppression": "True",
  3055. "PublishAllowMultiEdgeSuppression": "True",
  3056. "PublishAllowAccessToSuppressionOptions": "True",
  3057. "DimensionViews": [
  3058. {
  3059. "Name": "All Categories"
  3060. },
  3061. {
  3062. "Name": "All Categories"
  3063. },
  3064. {
  3065. "Name": "All Categories"
  3066. },
  3067. {
  3068. "Name": "All Categories"
  3069. },
  3070. {
  3071. "Name": "All Categories"
  3072. },
  3073. {
  3074. "Name": "All Categories"
  3075. },
  3076. {
  3077. "Name": "All Categories"
  3078. },
  3079. {
  3080. "Name": "All Categories"
  3081. },
  3082. {
  3083. "Name": "All Categories"
  3084. }
  3085. ],
  3086. "MeasureIncludes": [
  3087. {
  3088. "Include": "Yes"
  3089. },
  3090. {
  3091. "Include": "Yes"
  3092. },
  3093. {
  3094. "Include": "Yes"
  3095. },
  3096. {
  3097. "Include": "Yes"
  3098. },
  3099. {
  3100. "Include": "Yes"
  3101. },
  3102. {
  3103. "Include": "Yes"
  3104. }
  3105. ]
  3106. }
  3107. ]
  3108. }