S_Offene_Auftraege.json 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111
  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": "growth \"M bisher gruppiert~Voriger M bisher@13825\" \"M bisher gruppiert~M bisher@13823\"",
  1388. "\"0%~2\"": "Sign"
  1389. },
  1390. {
  1391. "Type": "SpecialCategory",
  1392. "Name": "Q bisher",
  1393. "Parent": "Zeit",
  1394. "Levels": "0",
  1395. "Rollup": "True",
  1396. "TimeAggregate": "ToDate",
  1397. "RunningPeriods": "0",
  1398. "ToDateLevel": "Quartal",
  1399. "TargetOffset": "0",
  1400. "TargetLevel": "Tag",
  1401. "ContextOffset": "0",
  1402. "TransientLevelList": "13835 For 1487",
  1403. "Sign": "False"
  1404. },
  1405. {
  1406. "Type": "SpecialCategory",
  1407. "Name": "Q bisher~Monat1",
  1408. "Parent": "Q bisher",
  1409. "Levels": "0",
  1410. "Inclusion": "Generate",
  1411. "Rollup": "True",
  1412. "TimeAggregate": "None",
  1413. "Sign": "False"
  1414. },
  1415. {
  1416. "Type": "SpecialCategory",
  1417. "Name": "Voriges Q bisher",
  1418. "Parent": "Zeit",
  1419. "Levels": "0",
  1420. "Rollup": "True",
  1421. "TimeAggregate": "ToDate",
  1422. "RunningPeriods": "0",
  1423. "ToDateLevel": "Quartal",
  1424. "TargetOffset": "0",
  1425. "TargetLevel": "Tag",
  1426. "ContextOffset": "1",
  1427. "ContextLevel": "Quartal",
  1428. "TransientLevelList": "13839 For 1487",
  1429. "Sign": "False"
  1430. },
  1431. {
  1432. "Type": "SpecialCategory",
  1433. "Name": "Voriges Q bisher~Monat1",
  1434. "Parent": "Voriges Q bisher",
  1435. "Levels": "0",
  1436. "Inclusion": "Generate",
  1437. "Rollup": "True",
  1438. "TimeAggregate": "None",
  1439. "Sign": "False"
  1440. },
  1441. {
  1442. "Type": "SpecialCategory",
  1443. "Name": "Q bisher gruppiert",
  1444. "Parent": "Zeit",
  1445. "Levels": "0",
  1446. "Rollup": "True",
  1447. "TimeAggregate": "ToDate_Grp",
  1448. "RunningPeriods": "0",
  1449. "ToDateLevel": "Quartal",
  1450. "TargetOffset": "0",
  1451. "TargetLevel": "Tag",
  1452. "ContextOffset": "1",
  1453. "ContextLevel": "Quartal",
  1454. "TransientLevelList": "13845 For 1487 13855 For 1513",
  1455. "Sign": "False"
  1456. },
  1457. {
  1458. "Type": "SpecialCategory",
  1459. "Name": "Q bisher gruppiert~Voriges Q bisher",
  1460. "Parent": "Q bisher gruppiert",
  1461. "Levels": "0",
  1462. "Label": "Voriges Q bisher",
  1463. "Rollup": "False",
  1464. "TimeAggregate": "ToDate",
  1465. "RunningPeriods": "0",
  1466. "ToDateLevel": "Quartal",
  1467. "TargetOffset": "0",
  1468. "TargetLevel": "Tag",
  1469. "ContextOffset": "1",
  1470. "ContextLevel": "Quartal",
  1471. "Sign": "False"
  1472. },
  1473. {
  1474. "Type": "SpecialCategory",
  1475. "Name": "Q bisher gruppiert~Voriges Q bisher~Monat1",
  1476. "Parent": "Q bisher gruppiert~Voriges Q bisher",
  1477. "Levels": "0",
  1478. "Inclusion": "Generate",
  1479. "Rollup": "True",
  1480. "TimeAggregate": "None",
  1481. "Sign": "False"
  1482. },
  1483. {
  1484. "Type": "SpecialCategory",
  1485. "Name": "Q bisher gruppiert~Q bisher",
  1486. "Parent": "Q bisher gruppiert",
  1487. "Levels": "0",
  1488. "Label": "Q bisher",
  1489. "Rollup": "False",
  1490. "TimeAggregate": "ToDate",
  1491. "RunningPeriods": "0",
  1492. "ToDateLevel": "Quartal",
  1493. "TargetOffset": "0",
  1494. "TargetLevel": "Tag",
  1495. "ContextOffset": "0",
  1496. "Sign": "False"
  1497. },
  1498. {
  1499. "Type": "SpecialCategory",
  1500. "Name": "Q bisher gruppiert~Q bisher~Monat1",
  1501. "Parent": "Q bisher gruppiert~Q bisher",
  1502. "Levels": "0",
  1503. "Inclusion": "Generate",
  1504. "Rollup": "True",
  1505. "TimeAggregate": "None",
  1506. "Sign": "False"
  1507. },
  1508. {
  1509. "Type": "SpecialCategory",
  1510. "Name": "Q bisher gruppiert~\u00c4NDERUNG ( 'Voriges Q bisher' , 'Q bisher' )",
  1511. "Parent": "Q bisher gruppiert",
  1512. "Levels": "0",
  1513. "Label": "Q bisher \u00c4nderung",
  1514. "Rollup": "False",
  1515. "TimeAggregate": "None",
  1516. "Calc": "change \"Q bisher gruppiert~Voriges Q bisher@13847\" \"Q bisher gruppiert~Q bisher@13841\""
  1517. },
  1518. {
  1519. "Type": "SpecialCategory",
  1520. "Name": "Q bisher gruppiert~PROZENTZUWACHS ( 'Voriges Q bisher' , 'Q bisher' )",
  1521. "Parent": "Q bisher gruppiert",
  1522. "Levels": "0",
  1523. "Label": "Q bisher Zuwachs",
  1524. "Rollup": "False",
  1525. "TimeAggregate": "None",
  1526. "Calc": "growth \"Q bisher gruppiert~Voriges Q bisher@13847\" \"Q bisher gruppiert~Q bisher@13841\"",
  1527. "\"0%~2\"": "Sign"
  1528. },
  1529. {
  1530. "Type": "SpecialCategory",
  1531. "Name": "J bisher",
  1532. "Parent": "Zeit",
  1533. "Levels": "0",
  1534. "Rollup": "True",
  1535. "TimeAggregate": "ToDate",
  1536. "RunningPeriods": "0",
  1537. "ToDateLevel": "Jahr",
  1538. "TargetOffset": "0",
  1539. "TargetLevel": "Tag",
  1540. "ContextOffset": "0",
  1541. "TransientLevelList": "13859 For 1481 13863 For 1487",
  1542. "Sign": "False"
  1543. },
  1544. {
  1545. "Type": "SpecialCategory",
  1546. "Name": "J bisher~Quartal1",
  1547. "Parent": "J bisher",
  1548. "Levels": "0",
  1549. "Inclusion": "Generate",
  1550. "Rollup": "True",
  1551. "TimeAggregate": "None",
  1552. "Sign": "False"
  1553. },
  1554. {
  1555. "Type": "SpecialCategory",
  1556. "Name": "J bisher~Quartal1~Monat1",
  1557. "Parent": "J bisher~Quartal1",
  1558. "Levels": "0",
  1559. "Inclusion": "Generate",
  1560. "Rollup": "True",
  1561. "TimeAggregate": "None",
  1562. "Sign": "False"
  1563. },
  1564. {
  1565. "Type": "SpecialCategory",
  1566. "Name": "J bisher~Quartal1~Monat2",
  1567. "Parent": "J bisher~Quartal1",
  1568. "Levels": "0",
  1569. "Inclusion": "Generate",
  1570. "Rollup": "True",
  1571. "TimeAggregate": "None",
  1572. "Sign": "False"
  1573. },
  1574. {
  1575. "Type": "SpecialCategory",
  1576. "Name": "J bisher~Quartal1~Monat3",
  1577. "Parent": "J bisher~Quartal1",
  1578. "Levels": "0",
  1579. "Inclusion": "Generate",
  1580. "Rollup": "True",
  1581. "TimeAggregate": "None",
  1582. "Sign": "False"
  1583. },
  1584. {
  1585. "Type": "SpecialCategory",
  1586. "Name": "J bisher~Quartal2",
  1587. "Parent": "J bisher",
  1588. "Levels": "0",
  1589. "Inclusion": "Generate",
  1590. "Rollup": "True",
  1591. "TimeAggregate": "None",
  1592. "Sign": "False"
  1593. },
  1594. {
  1595. "Type": "SpecialCategory",
  1596. "Name": "J bisher~Quartal2~Monat1",
  1597. "Parent": "J bisher~Quartal2",
  1598. "Levels": "0",
  1599. "Inclusion": "Generate",
  1600. "Rollup": "True",
  1601. "TimeAggregate": "None",
  1602. "Sign": "False"
  1603. },
  1604. {
  1605. "Type": "SpecialCategory",
  1606. "Name": "J bisher~Quartal2~Monat2",
  1607. "Parent": "J bisher~Quartal2",
  1608. "Levels": "0",
  1609. "Inclusion": "Generate",
  1610. "Rollup": "True",
  1611. "TimeAggregate": "None",
  1612. "Sign": "False"
  1613. },
  1614. {
  1615. "Type": "SpecialCategory",
  1616. "Name": "J bisher~Quartal2~Monat3",
  1617. "Parent": "J bisher~Quartal2",
  1618. "Levels": "0",
  1619. "Inclusion": "Generate",
  1620. "Rollup": "True",
  1621. "TimeAggregate": "None",
  1622. "Sign": "False"
  1623. },
  1624. {
  1625. "Type": "SpecialCategory",
  1626. "Name": "J bisher~Quartal3",
  1627. "Parent": "J bisher",
  1628. "Levels": "0",
  1629. "Inclusion": "Generate",
  1630. "Rollup": "True",
  1631. "TimeAggregate": "None",
  1632. "Sign": "False"
  1633. },
  1634. {
  1635. "Type": "SpecialCategory",
  1636. "Name": "J bisher~Quartal3~Monat1",
  1637. "Parent": "J bisher~Quartal3",
  1638. "Levels": "0",
  1639. "Inclusion": "Generate",
  1640. "Rollup": "True",
  1641. "TimeAggregate": "None",
  1642. "Sign": "False"
  1643. },
  1644. {
  1645. "Type": "SpecialCategory",
  1646. "Name": "Voriges J bisher",
  1647. "Parent": "Zeit",
  1648. "Levels": "0",
  1649. "Rollup": "True",
  1650. "TimeAggregate": "ToDate",
  1651. "RunningPeriods": "0",
  1652. "ToDateLevel": "Jahr",
  1653. "TargetOffset": "0",
  1654. "TargetLevel": "Tag",
  1655. "ContextOffset": "1",
  1656. "ContextLevel": "Jahr",
  1657. "TransientLevelList": "13883 For 1481 13887 For 1487",
  1658. "Sign": "False"
  1659. },
  1660. {
  1661. "Type": "SpecialCategory",
  1662. "Name": "Voriges J bisher~Quartal1",
  1663. "Parent": "Voriges J bisher",
  1664. "Levels": "0",
  1665. "Inclusion": "Generate",
  1666. "Rollup": "True",
  1667. "TimeAggregate": "None",
  1668. "Sign": "False"
  1669. },
  1670. {
  1671. "Type": "SpecialCategory",
  1672. "Name": "Voriges J bisher~Quartal1~Monat1",
  1673. "Parent": "Voriges J bisher~Quartal1",
  1674. "Levels": "0",
  1675. "Inclusion": "Generate",
  1676. "Rollup": "True",
  1677. "TimeAggregate": "None",
  1678. "Sign": "False"
  1679. },
  1680. {
  1681. "Type": "SpecialCategory",
  1682. "Name": "Voriges J bisher~Quartal1~Monat2",
  1683. "Parent": "Voriges J bisher~Quartal1",
  1684. "Levels": "0",
  1685. "Inclusion": "Generate",
  1686. "Rollup": "True",
  1687. "TimeAggregate": "None",
  1688. "Sign": "False"
  1689. },
  1690. {
  1691. "Type": "SpecialCategory",
  1692. "Name": "Voriges J bisher~Quartal1~Monat3",
  1693. "Parent": "Voriges J bisher~Quartal1",
  1694. "Levels": "0",
  1695. "Inclusion": "Generate",
  1696. "Rollup": "True",
  1697. "TimeAggregate": "None",
  1698. "Sign": "False"
  1699. },
  1700. {
  1701. "Type": "SpecialCategory",
  1702. "Name": "Voriges J bisher~Quartal2",
  1703. "Parent": "Voriges J bisher",
  1704. "Levels": "0",
  1705. "Inclusion": "Generate",
  1706. "Rollup": "True",
  1707. "TimeAggregate": "None",
  1708. "Sign": "False"
  1709. },
  1710. {
  1711. "Type": "SpecialCategory",
  1712. "Name": "Voriges J bisher~Quartal2~Monat1",
  1713. "Parent": "Voriges J bisher~Quartal2",
  1714. "Levels": "0",
  1715. "Inclusion": "Generate",
  1716. "Rollup": "True",
  1717. "TimeAggregate": "None",
  1718. "Sign": "False"
  1719. },
  1720. {
  1721. "Type": "SpecialCategory",
  1722. "Name": "Voriges J bisher~Quartal2~Monat2",
  1723. "Parent": "Voriges J bisher~Quartal2",
  1724. "Levels": "0",
  1725. "Inclusion": "Generate",
  1726. "Rollup": "True",
  1727. "TimeAggregate": "None",
  1728. "Sign": "False"
  1729. },
  1730. {
  1731. "Type": "SpecialCategory",
  1732. "Name": "Voriges J bisher~Quartal2~Monat3",
  1733. "Parent": "Voriges J bisher~Quartal2",
  1734. "Levels": "0",
  1735. "Inclusion": "Generate",
  1736. "Rollup": "True",
  1737. "TimeAggregate": "None",
  1738. "Sign": "False"
  1739. },
  1740. {
  1741. "Type": "SpecialCategory",
  1742. "Name": "Voriges J bisher~Quartal3",
  1743. "Parent": "Voriges J bisher",
  1744. "Levels": "0",
  1745. "Inclusion": "Generate",
  1746. "Rollup": "True",
  1747. "TimeAggregate": "None",
  1748. "Sign": "False"
  1749. },
  1750. {
  1751. "Type": "SpecialCategory",
  1752. "Name": "Voriges J bisher~Quartal3~Monat1",
  1753. "Parent": "Voriges J bisher~Quartal3",
  1754. "Levels": "0",
  1755. "Inclusion": "Generate",
  1756. "Rollup": "True",
  1757. "TimeAggregate": "None",
  1758. "Sign": "False"
  1759. },
  1760. {
  1761. "Type": "SpecialCategory",
  1762. "Name": "J bisher gruppiert",
  1763. "Parent": "Zeit",
  1764. "Levels": "0",
  1765. "Rollup": "True",
  1766. "TimeAggregate": "ToDate_Grp",
  1767. "RunningPeriods": "0",
  1768. "ToDateLevel": "Jahr",
  1769. "TargetOffset": "0",
  1770. "TargetLevel": "Tag",
  1771. "ContextOffset": "1",
  1772. "ContextLevel": "Jahr",
  1773. "TransientLevelList": "13909 For 1481 13913 For 1487 13957 For 1519",
  1774. "Sign": "False"
  1775. },
  1776. {
  1777. "Type": "SpecialCategory",
  1778. "Name": "J bisher gruppiert~Voriges J bisher",
  1779. "Parent": "J bisher gruppiert",
  1780. "Levels": "0",
  1781. "Label": "Voriges J bisher",
  1782. "Rollup": "False",
  1783. "TimeAggregate": "ToDate",
  1784. "RunningPeriods": "0",
  1785. "ToDateLevel": "Jahr",
  1786. "TargetOffset": "0",
  1787. "TargetLevel": "Tag",
  1788. "ContextOffset": "1",
  1789. "ContextLevel": "Jahr",
  1790. "Sign": "False"
  1791. },
  1792. {
  1793. "Type": "SpecialCategory",
  1794. "Name": "J bisher gruppiert~Voriges J bisher~Quartal1",
  1795. "Parent": "J bisher gruppiert~Voriges J bisher",
  1796. "Levels": "0",
  1797. "Inclusion": "Generate",
  1798. "Rollup": "True",
  1799. "TimeAggregate": "None",
  1800. "Sign": "False"
  1801. },
  1802. {
  1803. "Type": "SpecialCategory",
  1804. "Name": "J bisher gruppiert~Voriges J bisher~Quartal1~Monat1",
  1805. "Parent": "J bisher gruppiert~Voriges J bisher~Quartal1",
  1806. "Levels": "0",
  1807. "Inclusion": "Generate",
  1808. "Rollup": "True",
  1809. "TimeAggregate": "None",
  1810. "Sign": "False"
  1811. },
  1812. {
  1813. "Type": "SpecialCategory",
  1814. "Name": "J bisher gruppiert~Voriges J bisher~Quartal1~Monat2",
  1815. "Parent": "J bisher gruppiert~Voriges J bisher~Quartal1",
  1816. "Levels": "0",
  1817. "Inclusion": "Generate",
  1818. "Rollup": "True",
  1819. "TimeAggregate": "None",
  1820. "Sign": "False"
  1821. },
  1822. {
  1823. "Type": "SpecialCategory",
  1824. "Name": "J bisher gruppiert~Voriges J bisher~Quartal1~Monat3",
  1825. "Parent": "J bisher gruppiert~Voriges J bisher~Quartal1",
  1826. "Levels": "0",
  1827. "Inclusion": "Generate",
  1828. "Rollup": "True",
  1829. "TimeAggregate": "None",
  1830. "Sign": "False"
  1831. },
  1832. {
  1833. "Type": "SpecialCategory",
  1834. "Name": "J bisher gruppiert~Voriges J bisher~Quartal2",
  1835. "Parent": "J bisher gruppiert~Voriges J bisher",
  1836. "Levels": "0",
  1837. "Inclusion": "Generate",
  1838. "Rollup": "True",
  1839. "TimeAggregate": "None",
  1840. "Sign": "False"
  1841. },
  1842. {
  1843. "Type": "SpecialCategory",
  1844. "Name": "J bisher gruppiert~Voriges J bisher~Quartal2~Monat1",
  1845. "Parent": "J bisher gruppiert~Voriges J bisher~Quartal2",
  1846. "Levels": "0",
  1847. "Inclusion": "Generate",
  1848. "Rollup": "True",
  1849. "TimeAggregate": "None",
  1850. "Sign": "False"
  1851. },
  1852. {
  1853. "Type": "SpecialCategory",
  1854. "Name": "J bisher gruppiert~Voriges J bisher~Quartal2~Monat2",
  1855. "Parent": "J bisher gruppiert~Voriges J bisher~Quartal2",
  1856. "Levels": "0",
  1857. "Inclusion": "Generate",
  1858. "Rollup": "True",
  1859. "TimeAggregate": "None",
  1860. "Sign": "False"
  1861. },
  1862. {
  1863. "Type": "SpecialCategory",
  1864. "Name": "J bisher gruppiert~Voriges J bisher~Quartal2~Monat3",
  1865. "Parent": "J bisher gruppiert~Voriges J bisher~Quartal2",
  1866. "Levels": "0",
  1867. "Inclusion": "Generate",
  1868. "Rollup": "True",
  1869. "TimeAggregate": "None",
  1870. "Sign": "False"
  1871. },
  1872. {
  1873. "Type": "SpecialCategory",
  1874. "Name": "J bisher gruppiert~Voriges J bisher~Quartal3",
  1875. "Parent": "J bisher gruppiert~Voriges J bisher",
  1876. "Levels": "0",
  1877. "Inclusion": "Generate",
  1878. "Rollup": "True",
  1879. "TimeAggregate": "None",
  1880. "Sign": "False"
  1881. },
  1882. {
  1883. "Type": "SpecialCategory",
  1884. "Name": "J bisher gruppiert~Voriges J bisher~Quartal3~Monat1",
  1885. "Parent": "J bisher gruppiert~Voriges J bisher~Quartal3",
  1886. "Levels": "0",
  1887. "Inclusion": "Generate",
  1888. "Rollup": "True",
  1889. "TimeAggregate": "None",
  1890. "Sign": "False"
  1891. },
  1892. {
  1893. "Type": "SpecialCategory",
  1894. "Name": "J bisher gruppiert~J bisher",
  1895. "Parent": "J bisher gruppiert",
  1896. "Levels": "0",
  1897. "Label": "J bisher",
  1898. "Rollup": "False",
  1899. "TimeAggregate": "ToDate",
  1900. "RunningPeriods": "0",
  1901. "ToDateLevel": "Jahr",
  1902. "TargetOffset": "0",
  1903. "TargetLevel": "Tag",
  1904. "ContextOffset": "0",
  1905. "Sign": "False"
  1906. },
  1907. {
  1908. "Type": "SpecialCategory",
  1909. "Name": "J bisher gruppiert~J bisher~Quartal1",
  1910. "Parent": "J bisher gruppiert~J bisher",
  1911. "Levels": "0",
  1912. "Inclusion": "Generate",
  1913. "Rollup": "True",
  1914. "TimeAggregate": "None",
  1915. "Sign": "False"
  1916. },
  1917. {
  1918. "Type": "SpecialCategory",
  1919. "Name": "J bisher gruppiert~J bisher~Quartal1~Monat1",
  1920. "Parent": "J bisher gruppiert~J bisher~Quartal1",
  1921. "Levels": "0",
  1922. "Inclusion": "Generate",
  1923. "Rollup": "True",
  1924. "TimeAggregate": "None",
  1925. "Sign": "False"
  1926. },
  1927. {
  1928. "Type": "SpecialCategory",
  1929. "Name": "J bisher gruppiert~J bisher~Quartal1~Monat2",
  1930. "Parent": "J bisher gruppiert~J bisher~Quartal1",
  1931. "Levels": "0",
  1932. "Inclusion": "Generate",
  1933. "Rollup": "True",
  1934. "TimeAggregate": "None",
  1935. "Sign": "False"
  1936. },
  1937. {
  1938. "Type": "SpecialCategory",
  1939. "Name": "J bisher gruppiert~J bisher~Quartal1~Monat3",
  1940. "Parent": "J bisher gruppiert~J bisher~Quartal1",
  1941. "Levels": "0",
  1942. "Inclusion": "Generate",
  1943. "Rollup": "True",
  1944. "TimeAggregate": "None",
  1945. "Sign": "False"
  1946. },
  1947. {
  1948. "Type": "SpecialCategory",
  1949. "Name": "J bisher gruppiert~J bisher~Quartal2",
  1950. "Parent": "J bisher gruppiert~J bisher",
  1951. "Levels": "0",
  1952. "Inclusion": "Generate",
  1953. "Rollup": "True",
  1954. "TimeAggregate": "None",
  1955. "Sign": "False"
  1956. },
  1957. {
  1958. "Type": "SpecialCategory",
  1959. "Name": "J bisher gruppiert~J bisher~Quartal2~Monat1",
  1960. "Parent": "J bisher gruppiert~J bisher~Quartal2",
  1961. "Levels": "0",
  1962. "Inclusion": "Generate",
  1963. "Rollup": "True",
  1964. "TimeAggregate": "None",
  1965. "Sign": "False"
  1966. },
  1967. {
  1968. "Type": "SpecialCategory",
  1969. "Name": "J bisher gruppiert~J bisher~Quartal2~Monat2",
  1970. "Parent": "J bisher gruppiert~J bisher~Quartal2",
  1971. "Levels": "0",
  1972. "Inclusion": "Generate",
  1973. "Rollup": "True",
  1974. "TimeAggregate": "None",
  1975. "Sign": "False"
  1976. },
  1977. {
  1978. "Type": "SpecialCategory",
  1979. "Name": "J bisher gruppiert~J bisher~Quartal2~Monat3",
  1980. "Parent": "J bisher gruppiert~J bisher~Quartal2",
  1981. "Levels": "0",
  1982. "Inclusion": "Generate",
  1983. "Rollup": "True",
  1984. "TimeAggregate": "None",
  1985. "Sign": "False"
  1986. },
  1987. {
  1988. "Type": "SpecialCategory",
  1989. "Name": "J bisher gruppiert~J bisher~Quartal3",
  1990. "Parent": "J bisher gruppiert~J bisher",
  1991. "Levels": "0",
  1992. "Inclusion": "Generate",
  1993. "Rollup": "True",
  1994. "TimeAggregate": "None",
  1995. "Sign": "False"
  1996. },
  1997. {
  1998. "Type": "SpecialCategory",
  1999. "Name": "J bisher gruppiert~J bisher~Quartal3~Monat1",
  2000. "Parent": "J bisher gruppiert~J bisher~Quartal3",
  2001. "Levels": "0",
  2002. "Inclusion": "Generate",
  2003. "Rollup": "True",
  2004. "TimeAggregate": "None",
  2005. "Sign": "False"
  2006. },
  2007. {
  2008. "Type": "SpecialCategory",
  2009. "Name": "J bisher gruppiert~\u00c4NDERUNG ( 'Voriges J bisher' , 'J bisher' )",
  2010. "Parent": "J bisher gruppiert",
  2011. "Levels": "0",
  2012. "Label": "J bisher \u00c4nderung",
  2013. "Rollup": "False",
  2014. "TimeAggregate": "None",
  2015. "Calc": "change \"J bisher gruppiert~Voriges J bisher@13931\" \"J bisher gruppiert~J bisher@13905\""
  2016. },
  2017. {
  2018. "Type": "SpecialCategory",
  2019. "Name": "J bisher gruppiert~PROZENTZUWACHS ( 'Voriges J bisher' , 'J bisher' )",
  2020. "Parent": "J bisher gruppiert",
  2021. "Levels": "0",
  2022. "Label": "J bisher Zuwachs",
  2023. "Rollup": "False",
  2024. "TimeAggregate": "None",
  2025. "Calc": "growth \"J bisher gruppiert~Voriges J bisher@13931\" \"J bisher gruppiert~J bisher@13905\"",
  2026. "\"0%~2\"": "Sign"
  2027. }
  2028. ]
  2029. },
  2030. {
  2031. "Type": "Dimension",
  2032. "Name": "AH-Gruppe",
  2033. "DimType": "Regular",
  2034. "NewCatsLock": "False",
  2035. "ExcludeAutoPartitioning": "False",
  2036. "DimDefaultCategory": "0",
  2037. "Root": {
  2038. "Type": "Root",
  2039. "Name": "Hauptbetrieb",
  2040. "Inclusion": "Generate",
  2041. "Filtered": "False",
  2042. "Suppressed": "False",
  2043. "Sign": "False",
  2044. "HideValue": "False",
  2045. "IsKeyOrphanage": "False",
  2046. "IsTruncated": "False",
  2047. "Blanks": "False",
  2048. "Drill": {
  2049. "Type": "Drill",
  2050. "Name": "Nach Hauptbetrieb",
  2051. "Inclusion": "Suppress",
  2052. "Filtered": "False",
  2053. "Suppressed": "True",
  2054. "PrimaryDrill": "True",
  2055. "HideValue": "False"
  2056. }
  2057. },
  2058. "Levels": [
  2059. {
  2060. "Type": "Levels",
  2061. "Name": "Hauptbetrieb",
  2062. "Blanks": "( Leerstelle )",
  2063. "DateFunction": "None",
  2064. "Generate": "None",
  2065. "RefreshLabel": "False",
  2066. "RefreshDescription": "False",
  2067. "RefreshShortName": "False",
  2068. "NewCatsLock": "False",
  2069. "Timerank": "0",
  2070. "UniqueCategories": "False",
  2071. "UniqueMove": "False",
  2072. "Associations": [
  2073. {
  2074. "Type": "Associations",
  2075. "Name": "Hauptbetrieb_ID",
  2076. "AssociationType": "Type_Query",
  2077. "AssociationRole": "Role_Source",
  2078. "AssociationReferenced": "Hauptbetrieb_ID",
  2079. "Parent": "undefined"
  2080. },
  2081. {
  2082. "Type": "Associations",
  2083. "Name": "Hauptbetrieb_Name",
  2084. "AssociationType": "Type_Query",
  2085. "AssociationRole": "Role_Label",
  2086. "AssociationReferenced": "Hauptbetrieb_Name",
  2087. "Parent": "undefined"
  2088. },
  2089. {
  2090. "Type": "Associations",
  2091. "Name": "Hauptbetrieb_ID",
  2092. "AssociationType": "Type_Query",
  2093. "AssociationRole": "Role_OrderBy",
  2094. "AssociationReferenced": "Hauptbetrieb_ID",
  2095. "SortOrder": "Text",
  2096. "SortAs": "Ascending",
  2097. "Parent": "undefined"
  2098. }
  2099. ]
  2100. },
  2101. {
  2102. "Type": "Levels",
  2103. "Name": "Standort",
  2104. "Blanks": "( Leerstelle )",
  2105. "DateFunction": "None",
  2106. "Generate": "None",
  2107. "RefreshLabel": "False",
  2108. "RefreshDescription": "False",
  2109. "RefreshShortName": "False",
  2110. "NewCatsLock": "False",
  2111. "Timerank": "0",
  2112. "UniqueCategories": "False",
  2113. "UniqueMove": "False",
  2114. "Associations": [
  2115. {
  2116. "Type": "Associations",
  2117. "Name": "Standort_ID",
  2118. "AssociationType": "Type_Query",
  2119. "AssociationRole": "Role_Source",
  2120. "AssociationReferenced": "Standort_ID",
  2121. "Parent": "undefined"
  2122. },
  2123. {
  2124. "Type": "Associations",
  2125. "Name": "Standort_Name",
  2126. "AssociationType": "Type_Query",
  2127. "AssociationRole": "Role_Label",
  2128. "AssociationReferenced": "Standort_Name",
  2129. "Parent": "undefined"
  2130. },
  2131. {
  2132. "Type": "Associations",
  2133. "Name": "Standort_ID",
  2134. "AssociationType": "Type_Query",
  2135. "AssociationRole": "Role_OrderBy",
  2136. "AssociationReferenced": "Standort_ID",
  2137. "SortOrder": "Text",
  2138. "SortAs": "Ascending",
  2139. "Parent": "undefined"
  2140. }
  2141. ]
  2142. },
  2143. {
  2144. "Type": "Levels",
  2145. "Name": "Serviceberater",
  2146. "Blanks": "( Leerstelle )",
  2147. "DateFunction": "None",
  2148. "Generate": "None",
  2149. "RefreshLabel": "False",
  2150. "RefreshDescription": "False",
  2151. "RefreshShortName": "False",
  2152. "NewCatsLock": "False",
  2153. "Timerank": "0",
  2154. "UniqueCategories": "False",
  2155. "UniqueMove": "False",
  2156. "Associations": [
  2157. {
  2158. "Type": "Associations",
  2159. "Name": "Serviceberater",
  2160. "AssociationType": "Type_Query",
  2161. "AssociationRole": "Role_Source",
  2162. "AssociationReferenced": "Serviceberater",
  2163. "Parent": "undefined"
  2164. }
  2165. ]
  2166. },
  2167. {
  2168. "Type": "Levels",
  2169. "Name": "Order Number",
  2170. "Blanks": "( Leerstelle )",
  2171. "DateFunction": "None",
  2172. "Generate": "None",
  2173. "RefreshLabel": "False",
  2174. "RefreshDescription": "False",
  2175. "RefreshShortName": "False",
  2176. "NewCatsLock": "False",
  2177. "Timerank": "0",
  2178. "UniqueCategories": "False",
  2179. "UniqueMove": "False",
  2180. "Associations": [
  2181. {
  2182. "Type": "Associations",
  2183. "Name": "Order Number",
  2184. "AssociationType": "Type_Query",
  2185. "AssociationRole": "Role_Source",
  2186. "AssociationReferenced": "Order Number",
  2187. "Parent": "undefined"
  2188. },
  2189. {
  2190. "Type": "Associations",
  2191. "Name": "Tage offen",
  2192. "AssociationType": "Type_Query",
  2193. "AssociationRole": "Role_OrderBy",
  2194. "AssociationReferenced": "Tage offen",
  2195. "SortOrder": "Int16",
  2196. "SortAs": "Descending",
  2197. "Parent": "undefined"
  2198. }
  2199. ]
  2200. }
  2201. ],
  2202. "Categories": [],
  2203. "SpecialCategories": []
  2204. },
  2205. {
  2206. "Type": "Dimension",
  2207. "Name": "Fabrikat",
  2208. "DimType": "Regular",
  2209. "NewCatsLock": "False",
  2210. "ExcludeAutoPartitioning": "False",
  2211. "DimDefaultCategory": "0",
  2212. "Root": {
  2213. "Type": "Root",
  2214. "Name": "Fabrikat",
  2215. "Inclusion": "Generate",
  2216. "Filtered": "False",
  2217. "Suppressed": "False",
  2218. "Sign": "False",
  2219. "HideValue": "False",
  2220. "IsKeyOrphanage": "False",
  2221. "IsTruncated": "False",
  2222. "Blanks": "False",
  2223. "Drill": {
  2224. "Type": "Drill",
  2225. "Name": "Nach Fabrikat",
  2226. "Inclusion": "Suppress",
  2227. "Filtered": "False",
  2228. "Suppressed": "True",
  2229. "PrimaryDrill": "True",
  2230. "HideValue": "False"
  2231. }
  2232. },
  2233. "Levels": [
  2234. {
  2235. "Type": "Levels",
  2236. "Name": "Fabrikat",
  2237. "Blanks": "( Leerstelle )",
  2238. "DateFunction": "None",
  2239. "Generate": "None",
  2240. "RefreshLabel": "False",
  2241. "RefreshDescription": "False",
  2242. "RefreshShortName": "False",
  2243. "NewCatsLock": "False",
  2244. "Timerank": "0",
  2245. "UniqueCategories": "False",
  2246. "UniqueMove": "False",
  2247. "Associations": [
  2248. {
  2249. "Type": "Associations",
  2250. "Name": "Fabrikat",
  2251. "AssociationType": "Type_Query",
  2252. "AssociationRole": "Role_Source",
  2253. "AssociationReferenced": "Fabrikat",
  2254. "Parent": "undefined"
  2255. }
  2256. ]
  2257. },
  2258. {
  2259. "Type": "Levels",
  2260. "Name": "Model",
  2261. "Blanks": "( Leerstelle )",
  2262. "DateFunction": "None",
  2263. "Generate": "None",
  2264. "RefreshLabel": "False",
  2265. "RefreshDescription": "False",
  2266. "RefreshShortName": "False",
  2267. "NewCatsLock": "False",
  2268. "Timerank": "0",
  2269. "UniqueCategories": "False",
  2270. "UniqueMove": "False",
  2271. "Associations": [
  2272. {
  2273. "Type": "Associations",
  2274. "Name": "Model",
  2275. "AssociationType": "Type_Query",
  2276. "AssociationRole": "Role_Source",
  2277. "AssociationReferenced": "Model",
  2278. "Parent": "undefined"
  2279. }
  2280. ]
  2281. },
  2282. {
  2283. "Type": "Levels",
  2284. "Name": "Fahrzeug",
  2285. "Blanks": "( Leerstelle )",
  2286. "DateFunction": "None",
  2287. "Generate": "None",
  2288. "RefreshLabel": "False",
  2289. "RefreshDescription": "False",
  2290. "RefreshShortName": "False",
  2291. "NewCatsLock": "False",
  2292. "Timerank": "0",
  2293. "UniqueCategories": "False",
  2294. "UniqueMove": "False",
  2295. "Associations": [
  2296. {
  2297. "Type": "Associations",
  2298. "Name": "Fahrzeug",
  2299. "AssociationType": "Type_Query",
  2300. "AssociationRole": "Role_Source",
  2301. "AssociationReferenced": "Fahrzeug",
  2302. "Parent": "undefined"
  2303. }
  2304. ]
  2305. }
  2306. ],
  2307. "Categories": [
  2308. {
  2309. "Type": "Category",
  2310. "Name": "Ford",
  2311. "Parent": "Nach Fabrikat",
  2312. "Levels": "Fabrikat",
  2313. "SourceValue": "Ford",
  2314. "Filtered": "False",
  2315. "Suppressed": "False",
  2316. "Sign": "False",
  2317. "HideValue": "False",
  2318. "IsKeyOrphanage": "False",
  2319. "IsTruncated": "False",
  2320. "Blanks": "False"
  2321. },
  2322. {
  2323. "Type": "Category",
  2324. "Name": "KIA",
  2325. "Parent": "Nach Fabrikat",
  2326. "Levels": "Fabrikat",
  2327. "SourceValue": "KIA",
  2328. "Filtered": "False",
  2329. "Suppressed": "False",
  2330. "Sign": "False",
  2331. "HideValue": "False",
  2332. "IsKeyOrphanage": "False",
  2333. "IsTruncated": "False",
  2334. "Blanks": "False"
  2335. },
  2336. {
  2337. "Type": "Category",
  2338. "Name": "Mitsubishi",
  2339. "Parent": "Nach Fabrikat",
  2340. "Levels": "Fabrikat",
  2341. "SourceValue": "Mitsubishi",
  2342. "Filtered": "False",
  2343. "Suppressed": "False",
  2344. "Sign": "False",
  2345. "HideValue": "False",
  2346. "IsKeyOrphanage": "False",
  2347. "IsTruncated": "False",
  2348. "Blanks": "False"
  2349. }
  2350. ],
  2351. "SpecialCategories": []
  2352. },
  2353. {
  2354. "Type": "Dimension",
  2355. "Name": "Kostenstelle",
  2356. "DimType": "Regular",
  2357. "NewCatsLock": "False",
  2358. "ExcludeAutoPartitioning": "False",
  2359. "DimDefaultCategory": "0",
  2360. "Root": {
  2361. "Type": "Root",
  2362. "Name": "Kostenstelle",
  2363. "Inclusion": "Generate",
  2364. "Filtered": "False",
  2365. "Suppressed": "False",
  2366. "Sign": "False",
  2367. "HideValue": "False",
  2368. "IsKeyOrphanage": "False",
  2369. "IsTruncated": "False",
  2370. "Blanks": "False",
  2371. "Drill": {
  2372. "Type": "Drill",
  2373. "Name": "Nach Kostenstelle",
  2374. "Inclusion": "Suppress",
  2375. "Filtered": "False",
  2376. "Suppressed": "True",
  2377. "PrimaryDrill": "True",
  2378. "HideValue": "False"
  2379. }
  2380. },
  2381. "Levels": [
  2382. {
  2383. "Type": "Levels",
  2384. "Name": "Kostenstelle",
  2385. "Blanks": "( Leerstelle )",
  2386. "DateFunction": "None",
  2387. "Generate": "None",
  2388. "RefreshLabel": "False",
  2389. "RefreshDescription": "False",
  2390. "RefreshShortName": "False",
  2391. "NewCatsLock": "False",
  2392. "Timerank": "0",
  2393. "UniqueCategories": "False",
  2394. "UniqueMove": "False",
  2395. "Associations": [
  2396. {
  2397. "Type": "Associations",
  2398. "Name": "Kostenstelle",
  2399. "AssociationType": "Type_Query",
  2400. "AssociationRole": "Role_Source",
  2401. "AssociationReferenced": "Kostenstelle",
  2402. "Parent": "undefined"
  2403. }
  2404. ]
  2405. }
  2406. ],
  2407. "Categories": [
  2408. {
  2409. "Type": "Category",
  2410. "Name": "3",
  2411. "Parent": "Nach Kostenstelle",
  2412. "Levels": "Kostenstelle",
  2413. "Label": "3 - Mechanik",
  2414. "SourceValue": "3",
  2415. "Filtered": "False",
  2416. "Suppressed": "False",
  2417. "Sign": "False",
  2418. "HideValue": "False",
  2419. "IsKeyOrphanage": "False",
  2420. "IsTruncated": "False",
  2421. "Blanks": "False"
  2422. },
  2423. {
  2424. "Type": "Category",
  2425. "Name": "6",
  2426. "Parent": "Nach Kostenstelle",
  2427. "Levels": "Kostenstelle",
  2428. "Label": "6 - Teile",
  2429. "Inclusion": "Generate",
  2430. "SourceValue": "6",
  2431. "Filtered": "False",
  2432. "Suppressed": "False",
  2433. "Sign": "False",
  2434. "HideValue": "False",
  2435. "IsKeyOrphanage": "False",
  2436. "IsTruncated": "False",
  2437. "Blanks": "False"
  2438. }
  2439. ],
  2440. "SpecialCategories": []
  2441. },
  2442. {
  2443. "Type": "Dimension",
  2444. "Name": "Marke",
  2445. "DimType": "Regular",
  2446. "NewCatsLock": "False",
  2447. "ExcludeAutoPartitioning": "False",
  2448. "DimDefaultCategory": "0",
  2449. "Root": {
  2450. "Type": "Root",
  2451. "Name": "Marke",
  2452. "Inclusion": "Generate",
  2453. "Filtered": "False",
  2454. "Suppressed": "False",
  2455. "Sign": "False",
  2456. "HideValue": "False",
  2457. "IsKeyOrphanage": "False",
  2458. "IsTruncated": "False",
  2459. "Blanks": "False",
  2460. "Drill": {
  2461. "Type": "Drill",
  2462. "Name": "Nach Marke",
  2463. "Inclusion": "Suppress",
  2464. "Filtered": "False",
  2465. "Suppressed": "True",
  2466. "PrimaryDrill": "True",
  2467. "HideValue": "False"
  2468. }
  2469. },
  2470. "Levels": [
  2471. {
  2472. "Type": "Levels",
  2473. "Name": "Marke",
  2474. "Blanks": "( Leerstelle )",
  2475. "DateFunction": "None",
  2476. "Generate": "None",
  2477. "RefreshLabel": "False",
  2478. "RefreshDescription": "False",
  2479. "RefreshShortName": "False",
  2480. "NewCatsLock": "False",
  2481. "Timerank": "0",
  2482. "UniqueCategories": "False",
  2483. "UniqueMove": "False",
  2484. "Associations": [
  2485. {
  2486. "Type": "Associations",
  2487. "Name": "Fabrikat",
  2488. "AssociationType": "Type_Query",
  2489. "AssociationRole": "Role_Source",
  2490. "AssociationReferenced": "Fabrikat",
  2491. "Parent": "undefined"
  2492. }
  2493. ]
  2494. }
  2495. ],
  2496. "Categories": [
  2497. {
  2498. "Type": "Category",
  2499. "Name": "Ford",
  2500. "Parent": "Nach Marke",
  2501. "Levels": "Marke",
  2502. "SourceValue": "Ford",
  2503. "Filtered": "False",
  2504. "Suppressed": "False",
  2505. "Sign": "False",
  2506. "HideValue": "False",
  2507. "IsKeyOrphanage": "False",
  2508. "IsTruncated": "False",
  2509. "Blanks": "False"
  2510. },
  2511. {
  2512. "Type": "Category",
  2513. "Name": "KIA",
  2514. "Parent": "Nach Marke",
  2515. "Levels": "Marke",
  2516. "SourceValue": "KIA",
  2517. "Filtered": "False",
  2518. "Suppressed": "False",
  2519. "Sign": "False",
  2520. "HideValue": "False",
  2521. "IsKeyOrphanage": "False",
  2522. "IsTruncated": "False",
  2523. "Blanks": "False"
  2524. },
  2525. {
  2526. "Type": "Category",
  2527. "Name": "Mitsubishi",
  2528. "Parent": "Nach Marke",
  2529. "Levels": "Marke",
  2530. "SourceValue": "Mitsubishi",
  2531. "Filtered": "False",
  2532. "Suppressed": "False",
  2533. "Sign": "False",
  2534. "HideValue": "False",
  2535. "IsKeyOrphanage": "False",
  2536. "IsTruncated": "False",
  2537. "Blanks": "False"
  2538. }
  2539. ],
  2540. "SpecialCategories": []
  2541. },
  2542. {
  2543. "Type": "Dimension",
  2544. "Name": "Kunde",
  2545. "DimType": "Regular",
  2546. "NewCatsLock": "False",
  2547. "ExcludeAutoPartitioning": "False",
  2548. "DimDefaultCategory": "0",
  2549. "Root": {
  2550. "Type": "Root",
  2551. "Name": "Kunde",
  2552. "Inclusion": "Generate",
  2553. "Filtered": "False",
  2554. "Suppressed": "False",
  2555. "Sign": "False",
  2556. "HideValue": "False",
  2557. "IsKeyOrphanage": "False",
  2558. "IsTruncated": "False",
  2559. "Blanks": "False",
  2560. "Drill": {
  2561. "Type": "Drill",
  2562. "Name": "Nach Kunde",
  2563. "Inclusion": "Suppress",
  2564. "Filtered": "False",
  2565. "Suppressed": "True",
  2566. "PrimaryDrill": "True",
  2567. "HideValue": "False"
  2568. }
  2569. },
  2570. "Levels": [
  2571. {
  2572. "Type": "Levels",
  2573. "Name": "Kunde",
  2574. "Blanks": "( Leerstelle )",
  2575. "DateFunction": "None",
  2576. "Generate": "None",
  2577. "RefreshLabel": "False",
  2578. "RefreshDescription": "False",
  2579. "RefreshShortName": "False",
  2580. "NewCatsLock": "False",
  2581. "Timerank": "0",
  2582. "UniqueCategories": "False",
  2583. "UniqueMove": "False",
  2584. "Associations": [
  2585. {
  2586. "Type": "Associations",
  2587. "Name": "Kunde",
  2588. "AssociationType": "Type_Query",
  2589. "AssociationRole": "Role_Source",
  2590. "AssociationReferenced": "Kunde",
  2591. "Parent": "undefined"
  2592. }
  2593. ]
  2594. }
  2595. ],
  2596. "Categories": [],
  2597. "SpecialCategories": []
  2598. },
  2599. {
  2600. "Type": "Dimension",
  2601. "Name": "Auftrag Detail",
  2602. "DimType": "Regular",
  2603. "NewCatsLock": "False",
  2604. "ExcludeAutoPartitioning": "False",
  2605. "DimDefaultCategory": "0",
  2606. "Root": {
  2607. "Type": "Root",
  2608. "Name": "verk. AW",
  2609. "Inclusion": "Generate",
  2610. "Filtered": "False",
  2611. "Suppressed": "False",
  2612. "Sign": "False",
  2613. "HideValue": "False",
  2614. "IsKeyOrphanage": "False",
  2615. "IsTruncated": "False",
  2616. "Blanks": "False",
  2617. "Drill": {
  2618. "Type": "Drill",
  2619. "Name": "Nach verk. AW",
  2620. "Inclusion": "Suppress",
  2621. "Filtered": "False",
  2622. "Suppressed": "True",
  2623. "PrimaryDrill": "True",
  2624. "HideValue": "False"
  2625. }
  2626. },
  2627. "Levels": [
  2628. {
  2629. "Type": "Levels",
  2630. "Name": "Serviceberater",
  2631. "Blanks": "( Leerstelle )",
  2632. "DateFunction": "None",
  2633. "Generate": "None",
  2634. "RefreshLabel": "False",
  2635. "RefreshDescription": "False",
  2636. "RefreshShortName": "False",
  2637. "NewCatsLock": "False",
  2638. "Timerank": "0",
  2639. "UniqueCategories": "False",
  2640. "UniqueMove": "False",
  2641. "Associations": [
  2642. {
  2643. "Type": "Associations",
  2644. "Name": "Serviceberater",
  2645. "AssociationType": "Type_Query",
  2646. "AssociationRole": "Role_Source",
  2647. "AssociationReferenced": "Serviceberater",
  2648. "Parent": "undefined"
  2649. }
  2650. ]
  2651. },
  2652. {
  2653. "Type": "Levels",
  2654. "Name": "Order Number",
  2655. "Blanks": "( Leerstelle )",
  2656. "DateFunction": "None",
  2657. "Generate": "None",
  2658. "RefreshLabel": "False",
  2659. "RefreshDescription": "False",
  2660. "RefreshShortName": "False",
  2661. "NewCatsLock": "False",
  2662. "Timerank": "0",
  2663. "UniqueCategories": "False",
  2664. "UniqueMove": "False",
  2665. "Associations": [
  2666. {
  2667. "Type": "Associations",
  2668. "Name": "Order Number",
  2669. "AssociationType": "Type_Query",
  2670. "AssociationRole": "Role_Source",
  2671. "AssociationReferenced": "Order Number",
  2672. "Parent": "undefined"
  2673. },
  2674. {
  2675. "Type": "Associations",
  2676. "Name": "Tage offen",
  2677. "AssociationType": "Type_Query",
  2678. "AssociationRole": "Role_OrderBy",
  2679. "AssociationReferenced": "Tage offen",
  2680. "SortOrder": "Int16",
  2681. "SortAs": "Descending",
  2682. "Parent": "undefined"
  2683. }
  2684. ]
  2685. }
  2686. ],
  2687. "Categories": [],
  2688. "SpecialCategories": []
  2689. },
  2690. {
  2691. "Type": "Dimension",
  2692. "Name": "Serviceberater",
  2693. "DimType": "Regular",
  2694. "NewCatsLock": "False",
  2695. "ExcludeAutoPartitioning": "False",
  2696. "DimDefaultCategory": "0",
  2697. "Root": {
  2698. "Type": "Root",
  2699. "Name": "Serviceberater",
  2700. "Inclusion": "Generate",
  2701. "Filtered": "False",
  2702. "Suppressed": "False",
  2703. "Sign": "False",
  2704. "HideValue": "False",
  2705. "IsKeyOrphanage": "False",
  2706. "IsTruncated": "False",
  2707. "Blanks": "False",
  2708. "Drill": {
  2709. "Type": "Drill",
  2710. "Name": "Nach Serviceberater",
  2711. "Inclusion": "Suppress",
  2712. "Filtered": "False",
  2713. "Suppressed": "True",
  2714. "PrimaryDrill": "True",
  2715. "HideValue": "False"
  2716. }
  2717. },
  2718. "Levels": [
  2719. {
  2720. "Type": "Levels",
  2721. "Name": "Serviceberater",
  2722. "Blanks": "( Leerstelle )",
  2723. "DateFunction": "None",
  2724. "Generate": "None",
  2725. "RefreshLabel": "False",
  2726. "RefreshDescription": "False",
  2727. "RefreshShortName": "False",
  2728. "NewCatsLock": "False",
  2729. "Timerank": "0",
  2730. "UniqueCategories": "False",
  2731. "UniqueMove": "False",
  2732. "Associations": [
  2733. {
  2734. "Type": "Associations",
  2735. "Name": "Serviceberater",
  2736. "AssociationType": "Type_Query",
  2737. "AssociationRole": "Role_Source",
  2738. "AssociationReferenced": "Serviceberater",
  2739. "Parent": "undefined"
  2740. }
  2741. ]
  2742. },
  2743. {
  2744. "Type": "Levels",
  2745. "Name": "Order Number",
  2746. "Blanks": "( Leer )",
  2747. "DateFunction": "None",
  2748. "Generate": "None",
  2749. "RefreshLabel": "False",
  2750. "RefreshDescription": "False",
  2751. "RefreshShortName": "False",
  2752. "NewCatsLock": "False",
  2753. "Timerank": "0",
  2754. "UniqueCategories": "False",
  2755. "UniqueMove": "False",
  2756. "Associations": [
  2757. {
  2758. "Type": "Associations",
  2759. "Name": "Order Number",
  2760. "AssociationType": "Type_Query",
  2761. "AssociationRole": "Role_Source",
  2762. "AssociationReferenced": "Order Number",
  2763. "Parent": "undefined"
  2764. },
  2765. {
  2766. "Type": "Associations",
  2767. "Name": "Tage offen",
  2768. "AssociationType": "Type_Query",
  2769. "AssociationRole": "Role_OrderBy",
  2770. "AssociationReferenced": "Tage offen",
  2771. "SortOrder": "Int16",
  2772. "SortAs": "Descending",
  2773. "Parent": "undefined"
  2774. }
  2775. ]
  2776. }
  2777. ],
  2778. "Categories": [],
  2779. "SpecialCategories": []
  2780. },
  2781. {
  2782. "Type": "Dimension",
  2783. "Name": "Auftragsart",
  2784. "DimType": "Regular",
  2785. "NewCatsLock": "False",
  2786. "ExcludeAutoPartitioning": "False",
  2787. "DimDefaultCategory": "0",
  2788. "Root": {
  2789. "Type": "Root",
  2790. "Name": "Auftragsart",
  2791. "Inclusion": "Generate",
  2792. "Filtered": "False",
  2793. "Suppressed": "False",
  2794. "Sign": "False",
  2795. "HideValue": "False",
  2796. "IsKeyOrphanage": "False",
  2797. "IsTruncated": "False",
  2798. "Blanks": "False",
  2799. "Drill": {
  2800. "Type": "Drill",
  2801. "Name": "Nach Auftragsart",
  2802. "Inclusion": "Suppress",
  2803. "Filtered": "False",
  2804. "Suppressed": "True",
  2805. "PrimaryDrill": "True",
  2806. "HideValue": "False"
  2807. }
  2808. },
  2809. "Levels": [
  2810. {
  2811. "Type": "Levels",
  2812. "Name": "Auftragsart",
  2813. "Blanks": "( Leer )",
  2814. "DateFunction": "None",
  2815. "Generate": "None",
  2816. "RefreshLabel": "False",
  2817. "RefreshDescription": "False",
  2818. "RefreshShortName": "False",
  2819. "NewCatsLock": "False",
  2820. "Timerank": "0",
  2821. "UniqueCategories": "False",
  2822. "UniqueMove": "False",
  2823. "Associations": [
  2824. {
  2825. "Type": "Associations",
  2826. "Name": "Auftragsart",
  2827. "AssociationType": "Type_Query",
  2828. "AssociationRole": "Role_Source",
  2829. "AssociationReferenced": "Auftragsart",
  2830. "Parent": "undefined"
  2831. },
  2832. {
  2833. "Type": "Associations",
  2834. "Name": "Auftragsart",
  2835. "AssociationType": "Type_Query",
  2836. "AssociationRole": "Role_OrderBy",
  2837. "AssociationReferenced": "Auftragsart",
  2838. "SortOrder": "Text",
  2839. "SortAs": "Ascending",
  2840. "Parent": "undefined"
  2841. }
  2842. ]
  2843. }
  2844. ],
  2845. "Categories": [],
  2846. "SpecialCategories": []
  2847. }
  2848. ],
  2849. "Measures": [
  2850. {
  2851. "Type": "Measure",
  2852. "Name": "Tage offen",
  2853. "Missing": "Zero",
  2854. "IgnoreMissingValue": "False",
  2855. "Storage": "Float64",
  2856. "OutPutScale": "0",
  2857. "Decimals": "5",
  2858. "ReverseSign": "False",
  2859. "IsCurrency": "False",
  2860. "IsFolder": "False",
  2861. "Format": "#,##0~0",
  2862. "DrillThrough": "False",
  2863. "Associations": [
  2864. {
  2865. "Type": "Associations",
  2866. "Name": "Tage offen",
  2867. "AssociationType": "Type_Query",
  2868. "AssociationRole": "Role_Source",
  2869. "AssociationReferenced": "Tage offen",
  2870. "Parent": "undefined"
  2871. }
  2872. ]
  2873. },
  2874. {
  2875. "Type": "Measure",
  2876. "Name": "DG",
  2877. "Missing": "Zero",
  2878. "IgnoreMissingValue": "False",
  2879. "Storage": "Float64",
  2880. "OutPutScale": "0",
  2881. "Decimals": "8",
  2882. "ReverseSign": "False",
  2883. "IsCurrency": "False",
  2884. "IsFolder": "False",
  2885. "Format": "#,##0~0",
  2886. "DrillThrough": "False",
  2887. "Associations": [
  2888. {
  2889. "Type": "Associations",
  2890. "Name": "DG",
  2891. "AssociationType": "Type_Query",
  2892. "AssociationRole": "Role_Source",
  2893. "AssociationReferenced": "DG",
  2894. "Parent": "undefined"
  2895. }
  2896. ]
  2897. },
  2898. {
  2899. "Type": "Measure",
  2900. "Name": "Lohn",
  2901. "Missing": "Zero",
  2902. "IgnoreMissingValue": "False",
  2903. "Storage": "Float64",
  2904. "OutPutScale": "8",
  2905. "Decimals": "3",
  2906. "ReverseSign": "False",
  2907. "IsCurrency": "False",
  2908. "IsFolder": "False",
  2909. "Format": "#,##0~0",
  2910. "DrillThrough": "False",
  2911. "Associations": [
  2912. {
  2913. "Type": "Associations",
  2914. "Name": "Lohn",
  2915. "AssociationType": "Type_Query",
  2916. "AssociationRole": "Role_Source",
  2917. "AssociationReferenced": "Lohn",
  2918. "Parent": "undefined"
  2919. }
  2920. ]
  2921. },
  2922. {
  2923. "Type": "Measure",
  2924. "Name": "Teile",
  2925. "Missing": "Zero",
  2926. "IgnoreMissingValue": "False",
  2927. "Storage": "Float64",
  2928. "OutPutScale": "0",
  2929. "Decimals": "3",
  2930. "ReverseSign": "False",
  2931. "IsCurrency": "False",
  2932. "IsFolder": "False",
  2933. "Format": "#,##0~0",
  2934. "DrillThrough": "False",
  2935. "Associations": [
  2936. {
  2937. "Type": "Associations",
  2938. "Name": "Teile",
  2939. "AssociationType": "Type_Query",
  2940. "AssociationRole": "Role_Source",
  2941. "AssociationReferenced": "Teile",
  2942. "Parent": "undefined"
  2943. }
  2944. ]
  2945. },
  2946. {
  2947. "Type": "Measure",
  2948. "Name": "Sonst.",
  2949. "Missing": "Zero",
  2950. "IgnoreMissingValue": "False",
  2951. "Storage": "Float64",
  2952. "OutPutScale": "8",
  2953. "Decimals": "3",
  2954. "ReverseSign": "False",
  2955. "IsCurrency": "False",
  2956. "IsFolder": "False",
  2957. "Format": "#,##0~0",
  2958. "DrillThrough": "False",
  2959. "Associations": [
  2960. {
  2961. "Type": "Associations",
  2962. "Name": "Sonst.",
  2963. "AssociationType": "Type_Query",
  2964. "AssociationRole": "Role_Source",
  2965. "AssociationReferenced": "Sonst.",
  2966. "Parent": "undefined"
  2967. }
  2968. ]
  2969. },
  2970. {
  2971. "Type": "Measure",
  2972. "Name": "Tage seit letzt. Stemp.",
  2973. "IgnoreMissingValue": "False",
  2974. "Storage": "Float64",
  2975. "OutPutScale": "0",
  2976. "Decimals": "0",
  2977. "ReverseSign": "False",
  2978. "IsCurrency": "False",
  2979. "IsFolder": "False",
  2980. "Format": "#,##0~0",
  2981. "DrillThrough": "False",
  2982. "Associations": [
  2983. {
  2984. "Type": "Associations",
  2985. "Name": "Tage seit letzt. Stemp.",
  2986. "AssociationType": "Type_Query",
  2987. "AssociationRole": "Role_Source",
  2988. "AssociationReferenced": "Tage seit letzt. Stemp.",
  2989. "Parent": "undefined"
  2990. }
  2991. ]
  2992. }
  2993. ],
  2994. "Signons": [
  2995. {
  2996. "Type": "Signon",
  2997. "Name": "GC_CARLO",
  2998. "UserId": "gaps",
  2999. "PromptForPassword": "False",
  3000. "EncryptedPW": "*1*0154377D72534C4B5F384F556F5B7970286A59373F70255D63D4EDE5BC9A7FD45994",
  3001. "Salt": "AC2C0B8CE18548",
  3002. "AutoLogon": "False",
  3003. "SignonType": "DataSource"
  3004. },
  3005. {
  3006. "Type": "Signon",
  3007. "Name": "Global1",
  3008. "UserId": "Global1",
  3009. "PromptForPassword": "False",
  3010. "EncryptedPW": "*1*013B396846296D72232C62274C312B48432B464B52705B2147BC0680EA66C628A0FE",
  3011. "Salt": "A70FDB4177ACBA",
  3012. "AutoLogon": "True",
  3013. "SignOnNamespace": "CognosEx",
  3014. "SignonType": "Cognos"
  3015. },
  3016. {
  3017. "Type": "Signon",
  3018. "Name": "Test",
  3019. "UserId": "Global1",
  3020. "FullDb": "PromptForPassword",
  3021. "False": "EncryptedPW",
  3022. "\"*1*014D364B683C32432B543A6D2E6C475E207A526D2C3B325F74382B1B5F1C5B4C31AB\"": "678035C7648969",
  3023. "AutoLogon": "False",
  3024. "SignonType": "DataSource"
  3025. }
  3026. ],
  3027. "CustomViews": [],
  3028. "Security": [],
  3029. "Cubes": [
  3030. {
  3031. "Type": "Cube",
  3032. "Name": "S_Offene_Auftraege",
  3033. "MdcFile": "c:\\globalcube\\system\\audev_carit\\cube_out\\s_offene_auftraege.mdc",
  3034. "EncryptedPW": "Status",
  3035. "Salt": "OK",
  3036. "CubeCreation": "On",
  3037. "Optimize": "Default",
  3038. "ConsolidatedRecords": "10000000",
  3039. "PartitionSize": "500000",
  3040. "PassesNumber": "5",
  3041. "Compress": "False",
  3042. "IncrementalUpdate": "False",
  3043. "ServerCube": "False",
  3044. "CubeStamp": "1534758561",
  3045. "CubeCycle": "8",
  3046. "BlockParentTotals": "False",
  3047. "Caching": "False",
  3048. "UseAlternateFileName": "False",
  3049. "DeployType": "DeployToAvailableLocationsAutomatic",
  3050. "DeployLocations": "\"c:\\globalcube\\cubes\"",
  3051. "DeployCleanupEnabled": "True",
  3052. "DeployCleanupNumberOfCubes": "2",
  3053. "DrillThrough": "False",
  3054. "DataSourceSignon": "False",
  3055. "PublishEnable": "True",
  3056. "PublishStatus": "None",
  3057. "PublishAllowNullSuppression": "True",
  3058. "PublishAllowMultiEdgeSuppression": "True",
  3059. "PublishAllowAccessToSuppressionOptions": "True",
  3060. "DimensionViews": [
  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. "Name": "All Categories"
  3087. }
  3088. ],
  3089. "MeasureIncludes": [
  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. "Include": "Yes"
  3107. }
  3108. ]
  3109. }
  3110. ]
  3111. }