T.05 Ranking Kunden.xml 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261
  1. <?xml version="1.0" ?>
  2. <report xmlns="http://developer.cognos.com/schemas/report/15.5/" expressionLocale="de" interactivePageBreakByFrame="true" useStyleVersion="11.4">
  3. <!--RSU-SPC-0093 Die Berichtsspezifikation wurde am 4.9.2019 von {originalNS} zu {destNS} aktualisiert. 16:38:36-->
  4. <drillBehavior/>
  5. <layouts>
  6. <layout>
  7. <reportPages>
  8. <page name="Seite2">
  9. <pageBody>
  10. <contents>
  11. <table>
  12. <style>
  13. <defaultStyles>
  14. <defaultStyle refStyle="tb"/>
  15. </defaultStyles>
  16. <CSS value="border-collapse:collapse;width:100%"/>
  17. </style>
  18. <tableRows>
  19. <tableRow>
  20. <tableCells>
  21. <tableCell>
  22. <contents/>
  23. <style>
  24. <CSS value="padding-bottom:15px"/>
  25. </style>
  26. </tableCell>
  27. </tableCells>
  28. </tableRow>
  29. <tableRow>
  30. <tableCells>
  31. <tableCell>
  32. <contents>
  33. <crosstab name="Kreuztabelle3" pageBreakText="false" refQuery="qry_Main" rowsPerPage="5000">
  34. <noDataHandler>
  35. <contents>
  36. <block>
  37. <contents>
  38. <textItem>
  39. <dataSource>
  40. <staticValue>Keine Daten verfügbar</staticValue>
  41. </dataSource>
  42. <style>
  43. <CSS value="padding:10px 18px;"/>
  44. </style>
  45. </textItem>
  46. </contents>
  47. </block>
  48. </contents>
  49. </noDataHandler>
  50. <style>
  51. <CSS value="border-collapse:collapse"/>
  52. <defaultStyles>
  53. <defaultStyle refStyle="xt"/>
  54. </defaultStyles>
  55. </style>
  56. <crosstabRows>
  57. <crosstabNode>
  58. <crosstabNodeMembers>
  59. <crosstabNodeMember edgeLocation="e8" refDataItem="Kunde1">
  60. <style>
  61. <defaultStyles>
  62. <defaultStyle refStyle="ml"/>
  63. </defaultStyles>
  64. <CSS value="font-weight:normal;background-color:white;white-space:nowrap"/>
  65. </style>
  66. <contents>
  67. <textItem>
  68. <dataSource>
  69. <memberCaption/>
  70. </dataSource>
  71. </textItem>
  72. </contents>
  73. <factCell>
  74. <style>
  75. <CSS value="font-weight:normal;text-align:right"/>
  76. </style>
  77. </factCell>
  78. <sortList>
  79. <sortItem refDataItem="tpl_Gesamt" sortOrder="descending"/>
  80. </sortList>
  81. </crosstabNodeMember>
  82. </crosstabNodeMembers>
  83. </crosstabNode>
  84. <crosstabNode>
  85. <crosstabNodeMembers>
  86. <crosstabNodeMember edgeLocation="e6" refDataItem="Summe(Sel Name)">
  87. <style>
  88. <CSS value="background-color:#72889B;color:white;font-weight:bold"/>
  89. <defaultStyles>
  90. <defaultStyle refStyle="ol"/>
  91. </defaultStyles>
  92. </style>
  93. <contents>
  94. <textItem>
  95. <dataSource>
  96. <staticValue>Gesamt</staticValue>
  97. </dataSource>
  98. </textItem>
  99. </contents>
  100. <factCell>
  101. <style>
  102. <CSS value="background-color:#72889B;color:white;font-weight:bold;text-align:right"/>
  103. <defaultStyles>
  104. <defaultStyle refStyle="ol"/>
  105. </defaultStyles>
  106. </style>
  107. </factCell>
  108. </crosstabNodeMember>
  109. </crosstabNodeMembers>
  110. </crosstabNode>
  111. </crosstabRows>
  112. <crosstabFactCell>
  113. <contents>
  114. <textItem>
  115. <dataSource>
  116. <cellValue/>
  117. </dataSource>
  118. </textItem>
  119. </contents>
  120. <style>
  121. <defaultStyles>
  122. <defaultStyle refStyle="mv"/>
  123. </defaultStyles>
  124. </style>
  125. </crosstabFactCell>
  126. <crosstabColumns>
  127. <crosstabNode>
  128. <crosstabNodeMembers>
  129. <crosstabNodeMember edgeLocation="e7" refDataItem="Trend Monat">
  130. <style>
  131. <defaultStyles>
  132. <defaultStyle refStyle="ml"/>
  133. </defaultStyles>
  134. <CSS value="background-color:white;font-weight:bold;text-align:center;white-space:normal"/>
  135. </style>
  136. <contents>
  137. <textItem>
  138. <dataSource>
  139. <staticValue>Trend J/VJ</staticValue>
  140. </dataSource>
  141. </textItem>
  142. </contents>
  143. <conditionalStyleRefs>
  144. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  145. </conditionalStyleRefs>
  146. <factCell>
  147. <conditionalStyleRefs>
  148. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  149. </conditionalStyleRefs>
  150. </factCell>
  151. </crosstabNodeMember>
  152. </crosstabNodeMembers>
  153. </crosstabNode>
  154. <crosstabNode>
  155. <crosstabNodeMembers>
  156. <crosstabNodeMember edgeLocation="e53" refDataItem="Trend kum.">
  157. <style>
  158. <defaultStyles>
  159. <defaultStyle refStyle="ml"/>
  160. </defaultStyles>
  161. <CSS value="background-color:white;font-weight:bold;text-align:center;white-space:normal"/>
  162. </style>
  163. <contents>
  164. <textItem>
  165. <dataSource>
  166. <staticValue>Trend J/VJ kum.</staticValue>
  167. </dataSource>
  168. </textItem>
  169. </contents>
  170. <factCell>
  171. <contents/>
  172. <conditionalStyleRefs>
  173. <conditionalStyleRef refConditionalStyle="Trend"/>
  174. <conditionalStyleRef refConditionalStyle="Kumuliert"/>
  175. </conditionalStyleRefs>
  176. </factCell>
  177. <conditionalStyleRefs>
  178. <conditionalStyleRef refConditionalStyle="Kumuliert"/>
  179. </conditionalStyleRefs>
  180. </crosstabNodeMember>
  181. </crosstabNodeMembers>
  182. </crosstabNode>
  183. <crosstabNode>
  184. <crosstabNestedNodes>
  185. <crosstabNode>
  186. <crosstabNestedNodes>
  187. <crosstabNode>
  188. <crosstabNodeMembers>
  189. <crosstabNodeMember edgeLocation="e55" refDataItem="Umsatz Teile">
  190. <style>
  191. <defaultStyles>
  192. <defaultStyle refStyle="ml"/>
  193. </defaultStyles>
  194. <CSS value="width:75px;white-space:normal;font-weight:bold;background-color:white;text-align:left"/>
  195. </style>
  196. <contents>
  197. <textItem>
  198. <dataSource>
  199. <memberCaption/>
  200. </dataSource>
  201. </textItem>
  202. </contents>
  203. <sortList>
  204. <sortItem refDataItem="Umsatz Teile" sortOrder="descending"/>
  205. </sortList>
  206. </crosstabNodeMember>
  207. </crosstabNodeMembers>
  208. </crosstabNode>
  209. <crosstabNode>
  210. <crosstabNodeMembers>
  211. <crosstabNodeMember edgeLocation="e56" refDataItem="Einsatz Teile">
  212. <style>
  213. <defaultStyles>
  214. <defaultStyle refStyle="ml"/>
  215. </defaultStyles>
  216. <CSS value="width:75px;white-space:normal;font-weight:bold;background-color:white;text-align:left"/>
  217. </style>
  218. <contents>
  219. <textItem>
  220. <dataSource>
  221. <memberCaption/>
  222. </dataSource>
  223. </textItem>
  224. </contents>
  225. </crosstabNodeMember>
  226. </crosstabNodeMembers>
  227. </crosstabNode>
  228. <crosstabNode>
  229. <crosstabNodeMembers>
  230. <crosstabNodeMember edgeLocation="e1" refDataItem="Bruttoertrag">
  231. <style>
  232. <CSS value="width:75px;white-space:normal;font-weight:bold;text-align:left"/>
  233. <defaultStyles>
  234. <defaultStyle refStyle="ml"/>
  235. <defaultStyle refStyle="cls1"/>
  236. </defaultStyles>
  237. </style>
  238. <contents>
  239. <textItem>
  240. <dataSource>
  241. <memberCaption/>
  242. </dataSource>
  243. </textItem>
  244. </contents>
  245. </crosstabNodeMember>
  246. </crosstabNodeMembers>
  247. </crosstabNode>
  248. <crosstabNode>
  249. <crosstabNodeMembers>
  250. <crosstabNodeMember edgeLocation="e58" refDataItem="BE in %">
  251. <style>
  252. <CSS value="width:75px;white-space:normal;font-weight:bold;text-align:left"/>
  253. <defaultStyles>
  254. <defaultStyle refStyle="ml"/>
  255. <defaultStyle refStyle="cls4"/>
  256. </defaultStyles>
  257. </style>
  258. <contents>
  259. <textItem>
  260. <dataSource>
  261. <memberCaption/>
  262. </dataSource>
  263. </textItem>
  264. </contents>
  265. <factCell>
  266. <style>
  267. <dataFormat>
  268. <percentFormat decimalSize="1" percentSymbol="%" scale="-2"/>
  269. </dataFormat>
  270. </style>
  271. </factCell>
  272. </crosstabNodeMember>
  273. </crosstabNodeMembers>
  274. </crosstabNode>
  275. <crosstabNode>
  276. <crosstabNodeMembers>
  277. <crosstabNodeMember edgeLocation="e59" refDataItem="Umsatz Sonst.">
  278. <style>
  279. <defaultStyles>
  280. <defaultStyle refStyle="ml"/>
  281. </defaultStyles>
  282. <CSS value="width:75px;white-space:normal;font-weight:bold;background-color:white;text-align:left"/>
  283. </style>
  284. <contents>
  285. <textItem>
  286. <dataSource>
  287. <memberCaption/>
  288. </dataSource>
  289. </textItem>
  290. </contents>
  291. </crosstabNodeMember>
  292. </crosstabNodeMembers>
  293. </crosstabNode>
  294. </crosstabNestedNodes>
  295. <crosstabNodeMembers>
  296. <crosstabNodeMember edgeLocation="e4" refDataItem="Kumuliert">
  297. <style>
  298. <defaultStyles>
  299. <defaultStyle refStyle="ml"/>
  300. </defaultStyles>
  301. <CSS value="width:75px;white-space:normal;font-weight:bold;background-color:lime;text-align:left;display:none"/>
  302. </style>
  303. <contents>
  304. <textItem>
  305. <dataSource>
  306. <memberCaption/>
  307. </dataSource>
  308. </textItem>
  309. </contents>
  310. </crosstabNodeMember>
  311. </crosstabNodeMembers>
  312. </crosstabNode>
  313. </crosstabNestedNodes>
  314. <crosstabNodeMembers>
  315. <crosstabNodeMember edgeLocation="e12" refDataItem="gewählter Monat">
  316. <style>
  317. <defaultStyles>
  318. <defaultStyle refStyle="ml"/>
  319. </defaultStyles>
  320. <CSS value="background-color:white;font-weight:bold;text-align:center"/>
  321. </style>
  322. <contents>
  323. <textItem>
  324. <dataSource>
  325. <memberCaption/>
  326. </dataSource>
  327. </textItem>
  328. <textItem>
  329. <dataSource>
  330. <staticValue> kumuliert</staticValue>
  331. </dataSource>
  332. <conditionalStyleRefs>
  333. <conditionalStyleRef refConditionalStyle="Kumuliert"/>
  334. </conditionalStyleRefs>
  335. </textItem>
  336. </contents>
  337. </crosstabNodeMember>
  338. </crosstabNodeMembers>
  339. </crosstabNode>
  340. <crosstabNode>
  341. <crosstabNestedNodes>
  342. <crosstabNode>
  343. <crosstabNestedNodes>
  344. <crosstabNode>
  345. <crosstabNodeMembers>
  346. <crosstabNodeMember edgeLocation="e17" refDataItem="Umsatz Teile">
  347. <style>
  348. <defaultStyles>
  349. <defaultStyle refStyle="ml"/>
  350. </defaultStyles>
  351. <CSS value="width:75px;white-space:normal;font-weight:bold;background-color:white;text-align:left"/>
  352. </style>
  353. <contents>
  354. <textItem>
  355. <dataSource>
  356. <memberCaption/>
  357. </dataSource>
  358. </textItem>
  359. </contents>
  360. <conditionalStyleRefs>
  361. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  362. </conditionalStyleRefs>
  363. </crosstabNodeMember>
  364. </crosstabNodeMembers>
  365. </crosstabNode>
  366. <crosstabNode>
  367. <crosstabNodeMembers>
  368. <crosstabNodeMember edgeLocation="e15" refDataItem="Einsatz Teile">
  369. <style>
  370. <defaultStyles>
  371. <defaultStyle refStyle="ml"/>
  372. </defaultStyles>
  373. <CSS value="width:75px;white-space:normal;font-weight:bold;background-color:white;text-align:left"/>
  374. </style>
  375. <contents>
  376. <textItem>
  377. <dataSource>
  378. <memberCaption/>
  379. </dataSource>
  380. </textItem>
  381. </contents>
  382. <conditionalStyleRefs>
  383. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  384. </conditionalStyleRefs>
  385. </crosstabNodeMember>
  386. </crosstabNodeMembers>
  387. </crosstabNode>
  388. <crosstabNode>
  389. <crosstabNodeMembers>
  390. <crosstabNodeMember edgeLocation="e5" refDataItem="Bruttoertrag">
  391. <style>
  392. <CSS value="width:75px;white-space:normal;font-weight:bold;text-align:left"/>
  393. <defaultStyles>
  394. <defaultStyle refStyle="ml"/>
  395. <defaultStyle refStyle="cls1"/>
  396. </defaultStyles>
  397. </style>
  398. <contents>
  399. <textItem>
  400. <dataSource>
  401. <memberCaption/>
  402. </dataSource>
  403. </textItem>
  404. </contents>
  405. <conditionalStyleRefs>
  406. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  407. </conditionalStyleRefs>
  408. </crosstabNodeMember>
  409. </crosstabNodeMembers>
  410. </crosstabNode>
  411. <crosstabNode>
  412. <crosstabNodeMembers>
  413. <crosstabNodeMember edgeLocation="e13" refDataItem="BE in %">
  414. <style>
  415. <CSS value="width:75px;white-space:normal;font-weight:bold;text-align:left"/>
  416. <defaultStyles>
  417. <defaultStyle refStyle="ml"/>
  418. <defaultStyle refStyle="cls4"/>
  419. </defaultStyles>
  420. </style>
  421. <contents>
  422. <textItem>
  423. <dataSource>
  424. <memberCaption/>
  425. </dataSource>
  426. </textItem>
  427. </contents>
  428. <factCell>
  429. <style>
  430. <dataFormat>
  431. <percentFormat decimalSize="1" percentSymbol="%" scale="-2"/>
  432. </dataFormat>
  433. </style>
  434. </factCell>
  435. <conditionalStyleRefs>
  436. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  437. </conditionalStyleRefs>
  438. </crosstabNodeMember>
  439. </crosstabNodeMembers>
  440. </crosstabNode>
  441. <crosstabNode>
  442. <crosstabNodeMembers>
  443. <crosstabNodeMember edgeLocation="e2" refDataItem="Umsatz Sonst.">
  444. <style>
  445. <defaultStyles>
  446. <defaultStyle refStyle="ml"/>
  447. </defaultStyles>
  448. <CSS value="width:75px;white-space:normal;font-weight:bold;background-color:white;text-align:left"/>
  449. </style>
  450. <contents>
  451. <textItem>
  452. <dataSource>
  453. <memberCaption/>
  454. </dataSource>
  455. </textItem>
  456. </contents>
  457. <conditionalStyleRefs>
  458. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  459. </conditionalStyleRefs>
  460. </crosstabNodeMember>
  461. </crosstabNodeMembers>
  462. </crosstabNode>
  463. <crosstabNode>
  464. <crosstabNodeMembers>
  465. <crosstabNodeMember edgeLocation="e3" refDataItem="Umsatz Teile kumuliert VJ">
  466. <style>
  467. <defaultStyles>
  468. <defaultStyle refStyle="ml"/>
  469. </defaultStyles>
  470. <CSS value="width:75px;white-space:normal;background-color:white;font-weight:bold"/>
  471. </style>
  472. <contents>
  473. <textItem>
  474. <dataSource>
  475. <staticValue>Umsatz Teile</staticValue>
  476. </dataSource>
  477. </textItem>
  478. </contents>
  479. <conditionalStyleRefs>
  480. <conditionalStyleRef refConditionalStyle="Kumuliert"/>
  481. </conditionalStyleRefs>
  482. </crosstabNodeMember>
  483. </crosstabNodeMembers>
  484. </crosstabNode>
  485. <crosstabNode>
  486. <crosstabNodeMembers>
  487. <crosstabNodeMember edgeLocation="e47" refDataItem="Einsatz Teile kumuliert VJ">
  488. <style>
  489. <defaultStyles>
  490. <defaultStyle refStyle="ml"/>
  491. </defaultStyles>
  492. <CSS value="width:75px;white-space:normal;background-color:white;font-weight:bold"/>
  493. </style>
  494. <contents>
  495. <textItem>
  496. <dataSource>
  497. <staticValue>Einsatz Teile</staticValue>
  498. </dataSource>
  499. </textItem>
  500. </contents>
  501. <factCell>
  502. <conditionalStyleRefs>
  503. <conditionalStyleRef refConditionalStyle="Kumuliert"/>
  504. </conditionalStyleRefs>
  505. </factCell>
  506. <conditionalStyleRefs>
  507. <conditionalStyleRef refConditionalStyle="Kumuliert"/>
  508. </conditionalStyleRefs>
  509. </crosstabNodeMember>
  510. </crosstabNodeMembers>
  511. </crosstabNode>
  512. <crosstabNode>
  513. <crosstabNodeMembers>
  514. <crosstabNodeMember edgeLocation="e20" refDataItem="Bruttoertrag kumuliert VJ">
  515. <style>
  516. <CSS value="width:75px;white-space:normal;font-weight:bold"/>
  517. <defaultStyles>
  518. <defaultStyle refStyle="ml"/>
  519. <defaultStyle refStyle="cls1"/>
  520. </defaultStyles>
  521. </style>
  522. <contents>
  523. <textItem>
  524. <dataSource>
  525. <staticValue>Bruttoertrag</staticValue>
  526. </dataSource>
  527. </textItem>
  528. </contents>
  529. <factCell>
  530. <conditionalStyleRefs>
  531. <conditionalStyleRef refConditionalStyle="Kumuliert"/>
  532. </conditionalStyleRefs>
  533. <style>
  534. <dataFormat>
  535. <numberFormat decimalSize="0"/>
  536. </dataFormat>
  537. </style>
  538. </factCell>
  539. <conditionalStyleRefs>
  540. <conditionalStyleRef refConditionalStyle="Kumuliert"/>
  541. </conditionalStyleRefs>
  542. </crosstabNodeMember>
  543. </crosstabNodeMembers>
  544. </crosstabNode>
  545. <crosstabNode>
  546. <crosstabNodeMembers>
  547. <crosstabNodeMember edgeLocation="e48" refDataItem="BE % kumuliert VJ">
  548. <style>
  549. <CSS value="width:75px;white-space:normal;font-weight:bold"/>
  550. <defaultStyles>
  551. <defaultStyle refStyle="ml"/>
  552. <defaultStyle refStyle="cls4"/>
  553. </defaultStyles>
  554. </style>
  555. <contents>
  556. <textItem>
  557. <dataSource>
  558. <staticValue>BE in %</staticValue>
  559. </dataSource>
  560. </textItem>
  561. </contents>
  562. <factCell>
  563. <conditionalStyleRefs>
  564. <conditionalStyleRef refConditionalStyle="Kumuliert"/>
  565. </conditionalStyleRefs>
  566. <style>
  567. <dataFormat>
  568. <percentFormat decimalSize="1" percentSymbol="%" scale="-2"/>
  569. </dataFormat>
  570. </style>
  571. </factCell>
  572. <conditionalStyleRefs>
  573. <conditionalStyleRef refConditionalStyle="Kumuliert"/>
  574. </conditionalStyleRefs>
  575. </crosstabNodeMember>
  576. </crosstabNodeMembers>
  577. </crosstabNode>
  578. </crosstabNestedNodes>
  579. <crosstabNodeMembers>
  580. <crosstabSpacer edgeLocation="s1" renderFactCells="true">
  581. <contents>
  582. <textItem>
  583. <dataSource>
  584. <staticValue> </staticValue>
  585. </dataSource>
  586. </textItem>
  587. </contents>
  588. <style>
  589. <defaultStyles>
  590. <defaultStyle refStyle="xs"/>
  591. </defaultStyles>
  592. <CSS value="display:none;background-color:lime"/>
  593. </style>
  594. </crosstabSpacer>
  595. </crosstabNodeMembers>
  596. </crosstabNode>
  597. </crosstabNestedNodes>
  598. <crosstabNodeMembers>
  599. <crosstabNodeMember edgeLocation="e34" refDataItem="VJ">
  600. <style>
  601. <defaultStyles>
  602. <defaultStyle refStyle="ml"/>
  603. </defaultStyles>
  604. <CSS value="background-color:white;font-weight:bold;text-align:center"/>
  605. </style>
  606. <contents>
  607. <textItem>
  608. <dataSource>
  609. <memberCaption/>
  610. </dataSource>
  611. </textItem>
  612. <textItem>
  613. <dataSource>
  614. <staticValue> kumuliert</staticValue>
  615. </dataSource>
  616. <conditionalStyleRefs>
  617. <conditionalStyleRef refConditionalStyle="Kumuliert"/>
  618. </conditionalStyleRefs>
  619. </textItem>
  620. </contents>
  621. </crosstabNodeMember>
  622. </crosstabNodeMembers>
  623. </crosstabNode>
  624. </crosstabColumns>
  625. <crosstabSuppress/>
  626. <conditionalStyleRefs>
  627. <conditionalStyleRef refConditionalStyle="Monat"/>
  628. </conditionalStyleRefs>
  629. <crosstabIntersections>
  630. <crosstabIntersection column="e7" row="e6">
  631. <conditionalStyleRefs>
  632. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  633. <conditionalStyleRef refConditionalStyle="Trend"/>
  634. </conditionalStyleRefs>
  635. <contents/>
  636. </crosstabIntersection>
  637. <crosstabIntersection column="e7" row="e8">
  638. <conditionalStyleRefs>
  639. <conditionalStyleRef refConditionalStyle="Trend"/>
  640. </conditionalStyleRefs>
  641. <contents/>
  642. </crosstabIntersection>
  643. <crosstabIntersection column="e53" row="e8">
  644. <conditionalStyleRefs>
  645. <conditionalStyleRef refConditionalStyle="Trend"/>
  646. </conditionalStyleRefs>
  647. </crosstabIntersection>
  648. <crosstabIntersection column="e5" row="e8">
  649. <style>
  650. <defaultStyles>
  651. <defaultStyle refStyle="cls1"/>
  652. </defaultStyles>
  653. </style>
  654. <conditionalStyleRefs>
  655. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  656. </conditionalStyleRefs>
  657. </crosstabIntersection>
  658. <crosstabIntersection column="e13" row="e8">
  659. <style>
  660. <defaultStyles>
  661. <defaultStyle refStyle="cls4"/>
  662. </defaultStyles>
  663. </style>
  664. <conditionalStyleRefs>
  665. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  666. </conditionalStyleRefs>
  667. </crosstabIntersection>
  668. <crosstabIntersection column="e20" row="e8">
  669. <style>
  670. <defaultStyles>
  671. <defaultStyle refStyle="cls1"/>
  672. </defaultStyles>
  673. </style>
  674. </crosstabIntersection>
  675. <crosstabIntersection column="e48" row="e8">
  676. <style>
  677. <defaultStyles>
  678. <defaultStyle refStyle="cls4"/>
  679. </defaultStyles>
  680. </style>
  681. </crosstabIntersection>
  682. <crosstabIntersection column="e17" row="e8">
  683. <conditionalStyleRefs>
  684. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  685. </conditionalStyleRefs>
  686. </crosstabIntersection>
  687. <crosstabIntersection column="e15" row="e8">
  688. <conditionalStyleRefs>
  689. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  690. </conditionalStyleRefs>
  691. </crosstabIntersection>
  692. <crosstabIntersection column="e2" row="e8">
  693. <conditionalStyleRefs>
  694. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  695. </conditionalStyleRefs>
  696. </crosstabIntersection>
  697. <crosstabIntersection column="e3" row="e8">
  698. <conditionalStyleRefs>
  699. <conditionalStyleRef refConditionalStyle="Kumuliert"/>
  700. </conditionalStyleRefs>
  701. </crosstabIntersection>
  702. <crosstabIntersection column="e17" row="e6">
  703. <conditionalStyleRefs>
  704. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  705. </conditionalStyleRefs>
  706. </crosstabIntersection>
  707. <crosstabIntersection column="e15" row="e6">
  708. <conditionalStyleRefs>
  709. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  710. </conditionalStyleRefs>
  711. </crosstabIntersection>
  712. <crosstabIntersection column="e5" row="e6">
  713. <conditionalStyleRefs>
  714. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  715. </conditionalStyleRefs>
  716. </crosstabIntersection>
  717. <crosstabIntersection column="e13" row="e6">
  718. <conditionalStyleRefs>
  719. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  720. </conditionalStyleRefs>
  721. </crosstabIntersection>
  722. <crosstabIntersection column="e2" row="e6">
  723. <conditionalStyleRefs>
  724. <conditionalStyleRef refConditionalStyle="Einzelmonat"/>
  725. </conditionalStyleRefs>
  726. </crosstabIntersection>
  727. <crosstabIntersection column="e3" row="e6">
  728. <conditionalStyleRefs>
  729. <conditionalStyleRef refConditionalStyle="Kumuliert"/>
  730. </conditionalStyleRefs>
  731. </crosstabIntersection>
  732. <crosstabIntersection column="e1" row="e8">
  733. <style>
  734. <defaultStyles>
  735. <defaultStyle refStyle="cls1"/>
  736. </defaultStyles>
  737. </style>
  738. </crosstabIntersection>
  739. <crosstabIntersection column="e58" row="e8">
  740. <style>
  741. <defaultStyles>
  742. <defaultStyle refStyle="cls4"/>
  743. </defaultStyles>
  744. </style>
  745. </crosstabIntersection>
  746. </crosstabIntersections>
  747. </crosstab>
  748. </contents>
  749. </tableCell>
  750. </tableCells>
  751. </tableRow>
  752. <tableRow>
  753. <tableCells>
  754. <tableCell>
  755. <contents>
  756. <crosstab name="Kreuztabelle4" pageBreakText="false" refQuery="qry_Main" rowsPerPage="5000">
  757. <noDataHandler>
  758. <contents>
  759. <block>
  760. <contents>
  761. <textItem>
  762. <dataSource>
  763. <staticValue>Keine Daten verfügbar</staticValue>
  764. </dataSource>
  765. <style>
  766. <CSS value="padding:10px 18px;"/>
  767. </style>
  768. </textItem>
  769. </contents>
  770. </block>
  771. </contents>
  772. </noDataHandler>
  773. <style>
  774. <CSS value="border-collapse:collapse"/>
  775. <defaultStyles>
  776. <defaultStyle refStyle="xt"/>
  777. </defaultStyles>
  778. </style>
  779. <crosstabRows>
  780. <crosstabNode>
  781. <crosstabNodeMembers>
  782. <crosstabNodeMember edgeLocation="e10" refDataItem="Kunde2">
  783. <style>
  784. <defaultStyles>
  785. <defaultStyle refStyle="ml"/>
  786. </defaultStyles>
  787. <CSS value="font-weight:normal;background-color:white;white-space:nowrap"/>
  788. </style>
  789. <contents>
  790. <textItem>
  791. <dataSource>
  792. <memberCaption/>
  793. </dataSource>
  794. </textItem>
  795. </contents>
  796. <factCell>
  797. <style>
  798. <CSS value="font-weight:normal;text-align:right"/>
  799. </style>
  800. </factCell>
  801. <sortList>
  802. <sortItem refDataItem="tpl_Gesamt" sortOrder="descending"/>
  803. </sortList>
  804. </crosstabNodeMember>
  805. </crosstabNodeMembers>
  806. </crosstabNode>
  807. <crosstabNode>
  808. <crosstabNodeMembers>
  809. <crosstabNodeMember edgeLocation="e1" refDataItem="Summe(Sel Name1)">
  810. <style>
  811. <CSS value="background-color:#72889B;color:white;font-weight:bold"/>
  812. <defaultStyles>
  813. <defaultStyle refStyle="ol"/>
  814. </defaultStyles>
  815. </style>
  816. <contents>
  817. <textItem>
  818. <dataSource>
  819. <staticValue>Gesamt</staticValue>
  820. </dataSource>
  821. </textItem>
  822. </contents>
  823. <factCell>
  824. <style>
  825. <CSS value="background-color:#72889B;color:white;font-weight:bold;text-align:right"/>
  826. <defaultStyles>
  827. <defaultStyle refStyle="ol"/>
  828. </defaultStyles>
  829. </style>
  830. </factCell>
  831. </crosstabNodeMember>
  832. </crosstabNodeMembers>
  833. </crosstabNode>
  834. </crosstabRows>
  835. <crosstabFactCell>
  836. <contents>
  837. <textItem>
  838. <dataSource>
  839. <cellValue/>
  840. </dataSource>
  841. </textItem>
  842. </contents>
  843. <style>
  844. <defaultStyles>
  845. <defaultStyle refStyle="mv"/>
  846. </defaultStyles>
  847. </style>
  848. </crosstabFactCell>
  849. <crosstabColumns>
  850. <crosstabNode>
  851. <crosstabNodeMembers>
  852. <crosstabNodeMember edgeLocation="e15" refDataItem="Trend_VB">
  853. <style>
  854. <CSS value="background-color:white;font-weight:bold;text-align:left;white-space:normal;width:75px"/>
  855. <defaultStyles>
  856. <defaultStyle refStyle="ml"/>
  857. </defaultStyles>
  858. </style>
  859. <contents>
  860. <textItem>
  861. <dataSource>
  862. <staticValue>Trend J/VJ</staticValue>
  863. </dataSource>
  864. </textItem>
  865. </contents>
  866. <factCell>
  867. <contents/>
  868. </factCell>
  869. </crosstabNodeMember>
  870. </crosstabNodeMembers>
  871. </crosstabNode>
  872. <crosstabNode>
  873. <crosstabNestedNodes>
  874. <crosstabNode>
  875. <crosstabNodeMembers>
  876. <crosstabNodeMember edgeLocation="e54" refDataItem="VB_Umsatz Teile">
  877. <style>
  878. <defaultStyles>
  879. <defaultStyle refStyle="ml"/>
  880. </defaultStyles>
  881. <CSS value="background-color:white;font-weight:bold;text-align:left;width:75px"/>
  882. </style>
  883. <contents>
  884. <textItem>
  885. <dataSource>
  886. <staticValue>Umsatz Teile</staticValue>
  887. </dataSource>
  888. </textItem>
  889. </contents>
  890. <factCell>
  891. <style>
  892. <dataFormat>
  893. <numberFormat decimalSize="0"/>
  894. </dataFormat>
  895. </style>
  896. </factCell>
  897. <sortList>
  898. <sortItem refDataItem="Umsatz Teile" sortOrder="descending"/>
  899. </sortList>
  900. </crosstabNodeMember>
  901. </crosstabNodeMembers>
  902. </crosstabNode>
  903. <crosstabNode>
  904. <crosstabNodeMembers>
  905. <crosstabNodeMember edgeLocation="e2" refDataItem="VB_Einsatz Teile">
  906. <style>
  907. <defaultStyles>
  908. <defaultStyle refStyle="ml"/>
  909. </defaultStyles>
  910. <CSS value="background-color:white;font-weight:bold;text-align:left;width:75px"/>
  911. </style>
  912. <contents>
  913. <textItem>
  914. <dataSource>
  915. <memberCaption/>
  916. </dataSource>
  917. </textItem>
  918. </contents>
  919. </crosstabNodeMember>
  920. </crosstabNodeMembers>
  921. </crosstabNode>
  922. <crosstabNode>
  923. <crosstabNodeMembers>
  924. <crosstabNodeMember edgeLocation="e3" refDataItem="VB_Bruttoertrag">
  925. <style>
  926. <CSS value="font-weight:bold;text-align:left;width:75px"/>
  927. <defaultStyles>
  928. <defaultStyle refStyle="ml"/>
  929. <defaultStyle refStyle="cls1"/>
  930. </defaultStyles>
  931. </style>
  932. <contents>
  933. <textItem>
  934. <dataSource>
  935. <memberCaption/>
  936. </dataSource>
  937. </textItem>
  938. </contents>
  939. </crosstabNodeMember>
  940. </crosstabNodeMembers>
  941. </crosstabNode>
  942. <crosstabNode>
  943. <crosstabNodeMembers>
  944. <crosstabNodeMember edgeLocation="e4" refDataItem="VB_BE in %">
  945. <style>
  946. <CSS value="font-weight:bold;text-align:left;width:75px"/>
  947. <defaultStyles>
  948. <defaultStyle refStyle="ml"/>
  949. <defaultStyle refStyle="cls4"/>
  950. </defaultStyles>
  951. </style>
  952. <contents>
  953. <textItem>
  954. <dataSource>
  955. <memberCaption/>
  956. </dataSource>
  957. </textItem>
  958. </contents>
  959. </crosstabNodeMember>
  960. </crosstabNodeMembers>
  961. </crosstabNode>
  962. <crosstabNode>
  963. <crosstabNodeMembers>
  964. <crosstabNodeMember edgeLocation="e5" refDataItem="VB_Umsatz Sonst.">
  965. <style>
  966. <defaultStyles>
  967. <defaultStyle refStyle="ml"/>
  968. </defaultStyles>
  969. <CSS value="background-color:white;font-weight:bold;text-align:left;width:75px"/>
  970. </style>
  971. <contents>
  972. <textItem>
  973. <dataSource>
  974. <memberCaption/>
  975. </dataSource>
  976. </textItem>
  977. </contents>
  978. </crosstabNodeMember>
  979. </crosstabNodeMembers>
  980. </crosstabNode>
  981. </crosstabNestedNodes>
  982. <crosstabNodeMembers>
  983. <crosstabSpacer edgeLocation="s2" renderFactCells="true">
  984. <contents>
  985. <textItem>
  986. <dataSource>
  987. <reportExpression>ParamDisplayValue(&quot;p_Von&quot;) + &quot; - &quot; + ParamDisplayValue(&quot;p_Bis&quot;)</reportExpression>
  988. </dataSource>
  989. </textItem>
  990. <textItem>
  991. <dataSource>
  992. <staticValue> </staticValue>
  993. </dataSource>
  994. </textItem>
  995. </contents>
  996. <style>
  997. <CSS value="background-color:white;font-weight:bold;text-align:center"/>
  998. <defaultStyles>
  999. <defaultStyle refStyle="ml"/>
  1000. </defaultStyles>
  1001. </style>
  1002. </crosstabSpacer>
  1003. </crosstabNodeMembers>
  1004. </crosstabNode>
  1005. <crosstabNode>
  1006. <crosstabNestedNodes>
  1007. <crosstabNode>
  1008. <crosstabNodeMembers>
  1009. <crosstabNodeMember edgeLocation="e6" refDataItem="Umsatz Teile kumuliert VJ">
  1010. <style>
  1011. <defaultStyles>
  1012. <defaultStyle refStyle="ml"/>
  1013. </defaultStyles>
  1014. <CSS value="background-color:white;font-weight:bold;text-align:left;white-space:normal;width:75px"/>
  1015. </style>
  1016. <contents>
  1017. <textItem>
  1018. <dataSource>
  1019. <memberCaption/>
  1020. </dataSource>
  1021. </textItem>
  1022. </contents>
  1023. </crosstabNodeMember>
  1024. </crosstabNodeMembers>
  1025. </crosstabNode>
  1026. <crosstabNode>
  1027. <crosstabNodeMembers>
  1028. <crosstabNodeMember edgeLocation="e7" refDataItem="Einsatz Teile kumuliert VJ">
  1029. <style>
  1030. <defaultStyles>
  1031. <defaultStyle refStyle="ml"/>
  1032. </defaultStyles>
  1033. <CSS value="background-color:white;font-weight:bold;text-align:left;white-space:normal;width:75px"/>
  1034. </style>
  1035. <contents>
  1036. <textItem>
  1037. <dataSource>
  1038. <memberCaption/>
  1039. </dataSource>
  1040. </textItem>
  1041. </contents>
  1042. </crosstabNodeMember>
  1043. </crosstabNodeMembers>
  1044. </crosstabNode>
  1045. <crosstabNode>
  1046. <crosstabNodeMembers>
  1047. <crosstabNodeMember edgeLocation="e8" refDataItem="Bruttoertrag kumuliert VJ">
  1048. <style>
  1049. <CSS value="font-weight:bold;text-align:left;white-space:normal;width:75px"/>
  1050. <defaultStyles>
  1051. <defaultStyle refStyle="ml"/>
  1052. <defaultStyle refStyle="cls1"/>
  1053. </defaultStyles>
  1054. </style>
  1055. <contents>
  1056. <textItem>
  1057. <dataSource>
  1058. <memberCaption/>
  1059. </dataSource>
  1060. </textItem>
  1061. </contents>
  1062. </crosstabNodeMember>
  1063. </crosstabNodeMembers>
  1064. </crosstabNode>
  1065. <crosstabNode>
  1066. <crosstabNodeMembers>
  1067. <crosstabNodeMember edgeLocation="e9" refDataItem="BE % kumuliert VJ">
  1068. <style>
  1069. <CSS value="font-weight:bold;text-align:left;white-space:normal;width:75px"/>
  1070. <defaultStyles>
  1071. <defaultStyle refStyle="ml"/>
  1072. <defaultStyle refStyle="cls4"/>
  1073. </defaultStyles>
  1074. </style>
  1075. <contents>
  1076. <textItem>
  1077. <dataSource>
  1078. <memberCaption/>
  1079. </dataSource>
  1080. </textItem>
  1081. </contents>
  1082. </crosstabNodeMember>
  1083. </crosstabNodeMembers>
  1084. </crosstabNode>
  1085. </crosstabNestedNodes>
  1086. <crosstabNodeMembers>
  1087. <crosstabSpacer edgeLocation="s1" renderFactCells="true">
  1088. <contents>
  1089. <textItem>
  1090. <dataSource>
  1091. <staticValue>Zeitraum Vorjahr</staticValue>
  1092. </dataSource>
  1093. </textItem>
  1094. <textItem>
  1095. <dataSource>
  1096. <staticValue> </staticValue>
  1097. </dataSource>
  1098. </textItem>
  1099. </contents>
  1100. <style>
  1101. <CSS value="background-color:white;font-weight:bold;text-align:center"/>
  1102. <defaultStyles>
  1103. <defaultStyle refStyle="ml"/>
  1104. </defaultStyles>
  1105. </style>
  1106. </crosstabSpacer>
  1107. </crosstabNodeMembers>
  1108. </crosstabNode>
  1109. </crosstabColumns>
  1110. <crosstabSuppress type="rows"/>
  1111. <conditionalStyleRefs>
  1112. <conditionalStyleRef refConditionalStyle="Zeitraum"/>
  1113. </conditionalStyleRefs>
  1114. <crosstabIntersections>
  1115. <crosstabIntersection column="e15" row="e10">
  1116. <conditionalStyleRefs>
  1117. <conditionalStyleRef refConditionalStyle="Trend"/>
  1118. </conditionalStyleRefs>
  1119. </crosstabIntersection>
  1120. <crosstabIntersection column="e3" row="e10">
  1121. <style>
  1122. <defaultStyles>
  1123. <defaultStyle refStyle="cls1"/>
  1124. </defaultStyles>
  1125. </style>
  1126. </crosstabIntersection>
  1127. <crosstabIntersection column="e4" row="e10">
  1128. <style>
  1129. <defaultStyles>
  1130. <defaultStyle refStyle="cls4"/>
  1131. </defaultStyles>
  1132. </style>
  1133. </crosstabIntersection>
  1134. <crosstabIntersection column="e8" row="e10">
  1135. <style>
  1136. <defaultStyles>
  1137. <defaultStyle refStyle="cls1"/>
  1138. </defaultStyles>
  1139. </style>
  1140. </crosstabIntersection>
  1141. <crosstabIntersection column="e9" row="e10">
  1142. <style>
  1143. <defaultStyles>
  1144. <defaultStyle refStyle="cls4"/>
  1145. </defaultStyles>
  1146. </style>
  1147. </crosstabIntersection>
  1148. </crosstabIntersections>
  1149. </crosstab>
  1150. </contents>
  1151. </tableCell>
  1152. </tableCells>
  1153. </tableRow>
  1154. </tableRows>
  1155. </table>
  1156. </contents>
  1157. <style>
  1158. <defaultStyles>
  1159. <defaultStyle refStyle="pb"/>
  1160. </defaultStyles>
  1161. </style>
  1162. </pageBody>
  1163. <style>
  1164. <defaultStyles>
  1165. <defaultStyle refStyle="pg"/>
  1166. </defaultStyles>
  1167. </style>
  1168. <pageHeader>
  1169. <contents>
  1170. <table>
  1171. <style>
  1172. <defaultStyles>
  1173. <defaultStyle refStyle="tb"/>
  1174. </defaultStyles>
  1175. <CSS value="border-collapse:collapse;width:100%"/>
  1176. </style>
  1177. <tableRows>
  1178. <tableRow>
  1179. <tableCells>
  1180. <tableCell>
  1181. <contents>
  1182. <image>
  1183. <dataSource>
  1184. <staticValue>/bi/samples/images/GC_LOGO/LOGO.png</staticValue>
  1185. </dataSource>
  1186. <style>
  1187. <CSS value="height:40px"/>
  1188. </style>
  1189. </image>
  1190. </contents>
  1191. <style>
  1192. <CSS value="width:250px;padding-top:20px;padding-bottom:20px;padding-left:20px"/>
  1193. </style>
  1194. </tableCell>
  1195. <tableCell>
  1196. <contents>
  1197. <table>
  1198. <style>
  1199. <defaultStyles>
  1200. <defaultStyle refStyle="tb"/>
  1201. </defaultStyles>
  1202. <CSS value="border-collapse:collapse;height:100%"/>
  1203. </style>
  1204. <tableRows>
  1205. <tableRow>
  1206. <tableCells>
  1207. <tableCell>
  1208. <contents>
  1209. <textItem>
  1210. <dataSource>
  1211. <staticValue>T.05 Ranking Kunden per </staticValue>
  1212. </dataSource>
  1213. <style>
  1214. <CSS value="font-size:22pt;padding-left:20px"/>
  1215. </style>
  1216. </textItem>
  1217. </contents>
  1218. <style>
  1219. <CSS value="text-align:left;vertical-align:top;padding-bottom:20px"/>
  1220. </style>
  1221. </tableCell>
  1222. <tableCell>
  1223. <contents>
  1224. <singleton name="s_Tag1" refQuery="qry_Tag">
  1225. <contents>
  1226. <textItem>
  1227. <dataSource>
  1228. <dataItemValue refDataItem="Aktueller Tag"/>
  1229. </dataSource>
  1230. <style>
  1231. <CSS value="font-size:22pt"/>
  1232. </style>
  1233. </textItem>
  1234. </contents>
  1235. </singleton>
  1236. </contents>
  1237. <style>
  1238. <CSS value="text-align:left;vertical-align:top;font-size:22pt"/>
  1239. </style>
  1240. </tableCell>
  1241. </tableCells>
  1242. </tableRow>
  1243. </tableRows>
  1244. </table>
  1245. <textItem>
  1246. <dataSource>
  1247. <staticValue>verwendete Filter: </staticValue>
  1248. </dataSource>
  1249. <style>
  1250. <CSS value="padding-left:20px"/>
  1251. </style>
  1252. </textItem>
  1253. <textItem>
  1254. <dataSource>
  1255. <reportExpression>if(ParamDisplayValue(&quot;p_Zeit&quot;) is null) then(ParamDisplayValue(&quot;p_Von&quot;) + &quot; - &quot; +ParamDisplayValue(&quot;p_Bis&quot;)) else(&quot; | &quot;+ParamDisplayValue(&quot;p_Zeit&quot;))</reportExpression>
  1256. </dataSource>
  1257. </textItem>
  1258. <textItem>
  1259. <dataSource>
  1260. <reportExpression>if(ParamDisplayValue(&quot;p_Mandant&quot;) is null) then(&quot;&quot;) else(&quot; | &quot;+ParamDisplayValue(&quot;p_Mandant&quot;))</reportExpression>
  1261. </dataSource>
  1262. </textItem>
  1263. <textItem>
  1264. <dataSource>
  1265. <reportExpression>if(ParamDisplayValue(&quot;p_AH&quot;) is null) then(&quot;&quot;) else(&quot; | &quot;+ParamDisplayValue(&quot;p_AH&quot;))</reportExpression>
  1266. </dataSource>
  1267. </textItem>
  1268. <textItem>
  1269. <dataSource>
  1270. <reportExpression>if(ParamDisplayValue(&quot;p_Verkäufer&quot;) is null) then(&quot;&quot;) else(&quot; | &quot;+ParamDisplayValue(&quot;p_Verkäufer&quot;))</reportExpression>
  1271. </dataSource>
  1272. </textItem>
  1273. <textItem>
  1274. <dataSource>
  1275. <reportExpression>if(ParamDisplayValue(&quot;p_Fabrikat&quot;) is null) then(&quot;&quot;) else(&quot; | &quot;+ParamDisplayValue(&quot;p_Fabrikat&quot;))</reportExpression>
  1276. </dataSource>
  1277. </textItem>
  1278. <textItem>
  1279. <dataSource>
  1280. <reportExpression>if(ParamDisplayValue(&quot;p_Modell&quot;) is null) then(&quot;&quot;) else(&quot; | &quot;+ParamDisplayValue(&quot;p_Modell&quot;))</reportExpression>
  1281. </dataSource>
  1282. </textItem>
  1283. <textItem>
  1284. <dataSource>
  1285. <reportExpression>if(ParamDisplayValue(&quot;p_Umsatzart&quot;) is null) then(&quot;&quot;) else(&quot; | &quot;+ParamDisplayValue(&quot;p_Umsatzart&quot;))</reportExpression>
  1286. </dataSource>
  1287. </textItem>
  1288. <textItem>
  1289. <dataSource>
  1290. <reportExpression>if(ParamDisplayValue(&quot;p_Umsatzart2&quot;) is null) then(&quot;&quot;) else(&quot; | &quot;+ParamDisplayValue(&quot;p_Umsatzart2&quot;))</reportExpression>
  1291. </dataSource>
  1292. </textItem>
  1293. <textItem>
  1294. <dataSource>
  1295. <reportExpression>if(ParamDisplayValue(&quot;p_Kundengruppe&quot;) is null) then(&quot;&quot;) else(&quot; | &quot;+ParamDisplayValue(&quot;p_Kundengruppe&quot;))</reportExpression>
  1296. </dataSource>
  1297. </textItem>
  1298. <textItem>
  1299. <dataSource>
  1300. <reportExpression>if(ParamDisplayValue(&quot;p_Kostenstelle&quot;) is null) then(&quot;&quot;) else(&quot; | &quot;+ParamDisplayValue(&quot;p_Kostenstelle&quot;))</reportExpression>
  1301. </dataSource>
  1302. </textItem>
  1303. <textItem>
  1304. <dataSource>
  1305. <reportExpression>if(ParamDisplayValue(&quot;p_PLZ&quot;) is null) then(&quot;&quot;) else(&quot; | PLZ: &quot;+ParamDisplayValue(&quot;p_PLZ&quot;))</reportExpression>
  1306. </dataSource>
  1307. </textItem>
  1308. <textItem>
  1309. <dataSource>
  1310. <reportExpression>case when (ParamDisplayValue(&quot;p_Kunde&quot;) is null and ParamDisplayValue(&quot;p_Kunde2&quot;) is null ) then(&quot;&quot;)
  1311. when (ParamDisplayValue(&quot;p_Kunde&quot;) is not null and ParamDisplayValue(&quot;p_Kunde2&quot;) is null) then (&quot; | &quot;+ParamDisplayValue(&quot;p_Kunde&quot;))
  1312. when (ParamDisplayValue(&quot;p_Kunde2&quot;) is not null) then (&quot; | &quot;+ParamDisplayValue(&quot;p_Kunde2&quot;))
  1313. end
  1314. </reportExpression>
  1315. </dataSource>
  1316. </textItem>
  1317. </contents>
  1318. <style>
  1319. <CSS value="text-align:left;width:12%;vertical-align:middle"/>
  1320. <defaultStyles>
  1321. <defaultStyle refStyle="GuidedLayoutBottomPadding"/>
  1322. <defaultStyle refStyle="GuidedLayoutLeftPadding"/>
  1323. <defaultStyle refStyle="GuidedLayoutRightPadding"/>
  1324. </defaultStyles>
  1325. </style>
  1326. </tableCell>
  1327. <tableCell>
  1328. <contents/>
  1329. <style>
  1330. <CSS value="text-align:left;vertical-align:middle"/>
  1331. </style>
  1332. </tableCell>
  1333. </tableCells>
  1334. </tableRow>
  1335. <tableRow>
  1336. <tableCells>
  1337. <tableCell>
  1338. <contents>
  1339. <table>
  1340. <style>
  1341. <defaultStyles>
  1342. <defaultStyle refStyle="tb"/>
  1343. </defaultStyles>
  1344. <CSS value="border-collapse:collapse;width:100%"/>
  1345. </style>
  1346. <tableRows>
  1347. <tableRow>
  1348. <tableCells>
  1349. <tableCell>
  1350. <contents>
  1351. <promptButton type="back">
  1352. <contents/>
  1353. <style>
  1354. <defaultStyles>
  1355. <defaultStyle refStyle="bp"/>
  1356. </defaultStyles>
  1357. </style>
  1358. </promptButton>
  1359. </contents>
  1360. </tableCell>
  1361. <tableCell>
  1362. <contents>
  1363. <selectValue autoSubmit="true" parameter="p_Zeitraum" rowsPerPage="2" selectValueUI="radioGroup">
  1364. <selectOptions>
  1365. <selectOption useValue="[gewählter Monat]">
  1366. <displayValue>Einzelner Monat</displayValue>
  1367. </selectOption>
  1368. <selectOption useValue="[Zeitraum]">
  1369. <displayValue>Kumuliert</displayValue>
  1370. </selectOption>
  1371. </selectOptions>
  1372. <defaultSelections>
  1373. <defaultSimpleSelection>[gewählter Monat]</defaultSimpleSelection>
  1374. </defaultSelections>
  1375. <style>
  1376. <CSS value="width:200px;height:50px"/>
  1377. </style>
  1378. </selectValue>
  1379. </contents>
  1380. <style>
  1381. <CSS value="text-align:left"/>
  1382. </style>
  1383. <conditionalStyleRefs>
  1384. <conditionalStyleRef refConditionalStyle="Monat"/>
  1385. </conditionalStyleRefs>
  1386. </tableCell>
  1387. </tableCells>
  1388. </tableRow>
  1389. </tableRows>
  1390. </table>
  1391. </contents>
  1392. <style>
  1393. <CSS value="padding-top:10px;padding-bottom:10px"/>
  1394. </style>
  1395. </tableCell>
  1396. <tableCell colSpan="2">
  1397. <contents>
  1398. <selectValue autoSubmit="true" parameter="p_AH" refQuery="qry_AH1" required="false">
  1399. <headerText>
  1400. <defaultText>Alle Autohäuser</defaultText>
  1401. </headerText>
  1402. <useItem refDataItem="Standort"/>
  1403. </selectValue>
  1404. </contents>
  1405. <style>
  1406. <CSS value="padding-left:10px"/>
  1407. </style>
  1408. </tableCell>
  1409. </tableCells>
  1410. </tableRow>
  1411. </tableRows>
  1412. </table>
  1413. </contents>
  1414. <style>
  1415. <defaultStyles>
  1416. <defaultStyle refStyle="cls14"/>
  1417. </defaultStyles>
  1418. </style>
  1419. </pageHeader>
  1420. </page>
  1421. </reportPages>
  1422. <pageSetup orientation="landscape"/>
  1423. <promptPages>
  1424. <page name="Eingabeaufforderungsseite1">
  1425. <pageHeader>
  1426. <contents>
  1427. <table>
  1428. <style>
  1429. <defaultStyles>
  1430. <defaultStyle refStyle="tb"/>
  1431. </defaultStyles>
  1432. <CSS value="border-collapse:collapse;width:100%"/>
  1433. </style>
  1434. <tableRows>
  1435. <tableRow>
  1436. <tableCells>
  1437. <tableCell>
  1438. <contents>
  1439. <image>
  1440. <dataSource>
  1441. <staticValue>/bi/samples/images/GC_LOGO/LOGO.png</staticValue>
  1442. </dataSource>
  1443. <style>
  1444. <CSS value="height:40px"/>
  1445. </style>
  1446. </image>
  1447. </contents>
  1448. <style>
  1449. <CSS value="width:250px;height:50px;padding-left:50px"/>
  1450. </style>
  1451. </tableCell>
  1452. <tableCell>
  1453. <contents>
  1454. <textItem>
  1455. <dataSource>
  1456. <staticValue>Filterauswahl</staticValue>
  1457. </dataSource>
  1458. <style>
  1459. <CSS value="font-size:22pt"/>
  1460. </style>
  1461. </textItem>
  1462. </contents>
  1463. </tableCell>
  1464. </tableCells>
  1465. </tableRow>
  1466. </tableRows>
  1467. </table>
  1468. </contents>
  1469. <style>
  1470. <defaultStyles>
  1471. <defaultStyle refStyle="cls14"/>
  1472. </defaultStyles>
  1473. <CSS value="height:70px"/>
  1474. </style>
  1475. </pageHeader>
  1476. <pageBody>
  1477. <contents>
  1478. <table>
  1479. <style>
  1480. <defaultStyles>
  1481. <defaultStyle refStyle="tb"/>
  1482. </defaultStyles>
  1483. <CSS value="border-collapse:collapse;width:100%;background-color:white;border-top-style:none;border-bottom-style:none;border-left-style:none;border-right-style:none;margin-left:15px"/>
  1484. </style>
  1485. <tableRows>
  1486. <tableRow>
  1487. <tableCells>
  1488. <tableCell>
  1489. <contents>
  1490. <textItem>
  1491. <dataSource>
  1492. <staticValue/>
  1493. </dataSource>
  1494. <style>
  1495. <CSS value="width:20px"/>
  1496. </style>
  1497. </textItem>
  1498. </contents>
  1499. </tableCell>
  1500. <tableCell>
  1501. <contents>
  1502. <textItem>
  1503. <dataSource>
  1504. <staticValue>Monat:</staticValue>
  1505. </dataSource>
  1506. </textItem>
  1507. </contents>
  1508. <style>
  1509. <CSS value="vertical-align:middle;font-weight:bold;width:7%;padding-top:10px;padding-left:10px;color:white;padding-bottom:10px;background-color:#3E5C76;text-align:left"/>
  1510. </style>
  1511. </tableCell>
  1512. <tableCell colSpan="2">
  1513. <contents>
  1514. <textItem>
  1515. <dataSource>
  1516. <staticValue>Oder</staticValue>
  1517. </dataSource>
  1518. <style>
  1519. <CSS value="width:40px;font-weight:bold"/>
  1520. </style>
  1521. </textItem>
  1522. </contents>
  1523. <style>
  1524. <CSS value="width:45px;padding-top:20px;text-align:center;padding-right:10px;padding-left:10px"/>
  1525. </style>
  1526. </tableCell>
  1527. <tableCell>
  1528. <contents>
  1529. <textItem>
  1530. <dataSource>
  1531. <staticValue>Zeitraum:</staticValue>
  1532. </dataSource>
  1533. </textItem>
  1534. </contents>
  1535. <style>
  1536. <CSS value="vertical-align:middle;width:7%;text-align:left;color:white;font-weight:bold;padding-top:10px;padding-left:10px;padding-bottom:10px;background-color:#3E5C76"/>
  1537. </style>
  1538. </tableCell>
  1539. <tableCell>
  1540. <contents>
  1541. <textItem>
  1542. <dataSource>
  1543. <staticValue>Oder</staticValue>
  1544. </dataSource>
  1545. <style>
  1546. <CSS value="width:40px;font-weight:bold;color:white"/>
  1547. </style>
  1548. </textItem>
  1549. <textItem>
  1550. <dataSource>
  1551. <staticValue/>
  1552. </dataSource>
  1553. <style>
  1554. <CSS value="width:40px;padding-right:10px;padding-left:10px"/>
  1555. </style>
  1556. </textItem>
  1557. </contents>
  1558. <style>
  1559. <CSS value="text-align:left;width:45px;padding-top:20px"/>
  1560. </style>
  1561. </tableCell>
  1562. <tableCell>
  1563. <contents/>
  1564. <style>
  1565. <CSS value="width:7%;padding-top:20px"/>
  1566. </style>
  1567. </tableCell>
  1568. <tableCell>
  1569. <contents>
  1570. <textItem>
  1571. <dataSource>
  1572. <staticValue/>
  1573. </dataSource>
  1574. <style>
  1575. <CSS value="width:40px;padding-right:10px;padding-left:10px"/>
  1576. </style>
  1577. </textItem>
  1578. <textItem>
  1579. <dataSource>
  1580. <staticValue>Oder</staticValue>
  1581. </dataSource>
  1582. <style>
  1583. <CSS value="width:40px;font-weight:bold;color:white"/>
  1584. </style>
  1585. </textItem>
  1586. </contents>
  1587. <style>
  1588. <CSS value="width:45px"/>
  1589. </style>
  1590. </tableCell>
  1591. <tableCell>
  1592. <contents>
  1593. <promptButton type="finish">
  1594. <contents/>
  1595. <style>
  1596. <defaultStyles>
  1597. <defaultStyle refStyle="bp"/>
  1598. </defaultStyles>
  1599. </style>
  1600. </promptButton>
  1601. </contents>
  1602. <style>
  1603. <CSS value="padding-top:20px;text-align:right;vertical-align:bottom;width:7%"/>
  1604. </style>
  1605. </tableCell>
  1606. <tableCell>
  1607. <contents/>
  1608. <style>
  1609. <CSS value="width:13%;padding-top:20px;text-align:right;vertical-align:bottom"/>
  1610. </style>
  1611. </tableCell>
  1612. <tableCell>
  1613. <contents/>
  1614. <style>
  1615. <CSS value="width:17%;padding-top:20px"/>
  1616. </style>
  1617. </tableCell>
  1618. <tableCell>
  1619. <contents/>
  1620. <style>
  1621. <CSS value="width:7%;padding-top:20px;padding-left:80px"/>
  1622. </style>
  1623. </tableCell>
  1624. <tableCell>
  1625. <contents/>
  1626. <style>
  1627. <CSS value="width:7%;padding-top:20px"/>
  1628. </style>
  1629. </tableCell>
  1630. </tableCells>
  1631. </tableRow>
  1632. <tableRow>
  1633. <tableCells>
  1634. <tableCell>
  1635. <contents/>
  1636. <style>
  1637. <CSS value="width:8%"/>
  1638. </style>
  1639. </tableCell>
  1640. <tableCell>
  1641. <contents>
  1642. <selectValue multiSelect="true" parameter="p_Zeit" prePopulateIfParentOptional="true" refQuery="qry_Monat" required="false" selectValueUI="checkboxGroup">
  1643. <style>
  1644. <CSS value="width:100%"/>
  1645. </style>
  1646. <useItem refDataItem="Monat"/>
  1647. <sortList>
  1648. <sortItem refDataItem="Monat - Category Code" sortOrder="descending"/>
  1649. </sortList>
  1650. </selectValue>
  1651. </contents>
  1652. <style>
  1653. <CSS value="vertical-align:top;width:8%"/>
  1654. </style>
  1655. </tableCell>
  1656. <tableCell colSpan="2">
  1657. <contents/>
  1658. <style>
  1659. <CSS value="text-align:left;vertical-align:top"/>
  1660. </style>
  1661. </tableCell>
  1662. <tableCell>
  1663. <contents>
  1664. <table>
  1665. <style>
  1666. <defaultStyles>
  1667. <defaultStyle refStyle="tb"/>
  1668. </defaultStyles>
  1669. <CSS value="border-collapse:collapse;width:100%;margin-top:25px"/>
  1670. </style>
  1671. <tableRows>
  1672. <tableRow>
  1673. <tableCells>
  1674. <tableCell>
  1675. <contents>
  1676. <textItem>
  1677. <dataSource>
  1678. <staticValue>Von:</staticValue>
  1679. </dataSource>
  1680. <style>
  1681. <CSS value="padding-bottom:10px"/>
  1682. </style>
  1683. </textItem>
  1684. </contents>
  1685. <style>
  1686. <CSS value="padding-bottom:10px"/>
  1687. </style>
  1688. </tableCell>
  1689. </tableCells>
  1690. </tableRow>
  1691. <tableRow>
  1692. <tableCells>
  1693. <tableCell>
  1694. <contents>
  1695. <selectDate parameter="p_Von" required="false" selectDateUI="editBox"/>
  1696. </contents>
  1697. </tableCell>
  1698. </tableCells>
  1699. </tableRow>
  1700. <tableRow>
  1701. <tableCells>
  1702. <tableCell>
  1703. <contents>
  1704. <textItem>
  1705. <dataSource>
  1706. <staticValue>Bis:</staticValue>
  1707. </dataSource>
  1708. </textItem>
  1709. </contents>
  1710. <style>
  1711. <CSS value="padding-bottom:10px"/>
  1712. </style>
  1713. </tableCell>
  1714. </tableCells>
  1715. </tableRow>
  1716. <tableRow>
  1717. <tableCells>
  1718. <tableCell>
  1719. <contents>
  1720. <selectDate parameter="p_Bis" required="false" selectDateUI="editBox"/>
  1721. </contents>
  1722. </tableCell>
  1723. </tableCells>
  1724. </tableRow>
  1725. </tableRows>
  1726. </table>
  1727. </contents>
  1728. <style>
  1729. <CSS value="padding-top:10px;padding-bottom:25px;width:8%"/>
  1730. <defaultStyles>
  1731. <defaultStyle refStyle="GuidedLayoutTopPadding"/>
  1732. <defaultStyle refStyle="GuidedLayoutBottomPadding"/>
  1733. <defaultStyle refStyle="GuidedLayoutLeftPadding"/>
  1734. <defaultStyle refStyle="GuidedLayoutRightPadding"/>
  1735. </defaultStyles>
  1736. </style>
  1737. </tableCell>
  1738. <tableCell>
  1739. <contents/>
  1740. </tableCell>
  1741. <tableCell>
  1742. <contents/>
  1743. <style>
  1744. <CSS value="width:8%"/>
  1745. </style>
  1746. </tableCell>
  1747. <tableCell>
  1748. <contents/>
  1749. </tableCell>
  1750. <tableCell>
  1751. <contents>
  1752. <table>
  1753. <style>
  1754. <defaultStyles>
  1755. <defaultStyle refStyle="tb"/>
  1756. </defaultStyles>
  1757. <CSS value="border-collapse:collapse;width:100%"/>
  1758. </style>
  1759. <tableRows>
  1760. <tableRow>
  1761. <tableCells>
  1762. <tableCell>
  1763. <contents>
  1764. <promptButton type="cancel">
  1765. <contents/>
  1766. <style>
  1767. <defaultStyles>
  1768. <defaultStyle refStyle="bp"/>
  1769. </defaultStyles>
  1770. </style>
  1771. </promptButton>
  1772. </contents>
  1773. <style>
  1774. <CSS value="text-align:right"/>
  1775. </style>
  1776. </tableCell>
  1777. </tableCells>
  1778. </tableRow>
  1779. <tableRow>
  1780. <tableCells>
  1781. <tableCell>
  1782. <contents/>
  1783. </tableCell>
  1784. </tableCells>
  1785. </tableRow>
  1786. <tableRow>
  1787. <tableCells>
  1788. <tableCell>
  1789. <contents/>
  1790. <style>
  1791. <CSS value="text-align:right;padding-top:30px"/>
  1792. </style>
  1793. </tableCell>
  1794. </tableCells>
  1795. </tableRow>
  1796. </tableRows>
  1797. </table>
  1798. </contents>
  1799. <style>
  1800. <CSS value="padding-top:25px;text-align:right;vertical-align:top;width:13%"/>
  1801. <defaultStyles>
  1802. <defaultStyle refStyle="GuidedLayoutTopPadding"/>
  1803. <defaultStyle refStyle="GuidedLayoutBottomPadding"/>
  1804. <defaultStyle refStyle="GuidedLayoutLeftPadding"/>
  1805. <defaultStyle refStyle="GuidedLayoutRightPadding"/>
  1806. </defaultStyles>
  1807. </style>
  1808. </tableCell>
  1809. <tableCell>
  1810. <contents/>
  1811. <style>
  1812. <CSS value="text-align:right;width:13%;vertical-align:top;padding-top:25px"/>
  1813. </style>
  1814. </tableCell>
  1815. <tableCell>
  1816. <contents/>
  1817. <style>
  1818. <CSS value="width:17%"/>
  1819. </style>
  1820. </tableCell>
  1821. <tableCell>
  1822. <contents/>
  1823. <style>
  1824. <CSS value="padding-left:80px"/>
  1825. </style>
  1826. </tableCell>
  1827. <tableCell>
  1828. <contents/>
  1829. </tableCell>
  1830. </tableCells>
  1831. </tableRow>
  1832. <tableRow>
  1833. <tableCells>
  1834. <tableCell>
  1835. <contents>
  1836. <textItem>
  1837. <dataSource>
  1838. <staticValue/>
  1839. </dataSource>
  1840. <style>
  1841. <CSS value="width:20px;height:30px"/>
  1842. </style>
  1843. </textItem>
  1844. </contents>
  1845. </tableCell>
  1846. <tableCell>
  1847. <contents/>
  1848. </tableCell>
  1849. <tableCell colSpan="2">
  1850. <contents/>
  1851. </tableCell>
  1852. <tableCell>
  1853. <contents/>
  1854. </tableCell>
  1855. <tableCell>
  1856. <contents/>
  1857. </tableCell>
  1858. <tableCell>
  1859. <contents/>
  1860. </tableCell>
  1861. <tableCell>
  1862. <contents/>
  1863. </tableCell>
  1864. <tableCell>
  1865. <contents/>
  1866. </tableCell>
  1867. <tableCell>
  1868. <contents/>
  1869. </tableCell>
  1870. <tableCell>
  1871. <contents/>
  1872. </tableCell>
  1873. <tableCell>
  1874. <contents/>
  1875. </tableCell>
  1876. <tableCell>
  1877. <contents/>
  1878. </tableCell>
  1879. </tableCells>
  1880. </tableRow>
  1881. <tableRow>
  1882. <tableCells>
  1883. <tableCell>
  1884. <contents/>
  1885. </tableCell>
  1886. <tableCell>
  1887. <contents>
  1888. <textItem>
  1889. <dataSource>
  1890. <staticValue>Mandant:</staticValue>
  1891. </dataSource>
  1892. <style>
  1893. <CSS value="color:white;font-weight:bold;vertical-align:top"/>
  1894. </style>
  1895. </textItem>
  1896. </contents>
  1897. <style>
  1898. <CSS value="font-weight:bold;vertical-align:middle;color:white;padding-left:10px;padding-bottom:10px;background-color:#3E5C76;text-align:left;padding-top:10px"/>
  1899. </style>
  1900. </tableCell>
  1901. <tableCell colSpan="2">
  1902. <contents/>
  1903. <style>
  1904. <CSS value="padding-left:10px"/>
  1905. </style>
  1906. </tableCell>
  1907. <tableCell>
  1908. <contents>
  1909. <textItem>
  1910. <dataSource>
  1911. <staticValue>AH-Gruppe:</staticValue>
  1912. </dataSource>
  1913. <style>
  1914. <CSS value="color:white;font-weight:bold;vertical-align:top"/>
  1915. </style>
  1916. </textItem>
  1917. </contents>
  1918. <style>
  1919. <CSS value="color:white;font-weight:bold;vertical-align:middle;padding-left:10px;padding-bottom:10px;background-color:#3E5C76;text-align:left;padding-top:10px"/>
  1920. </style>
  1921. </tableCell>
  1922. <tableCell>
  1923. <contents/>
  1924. <style>
  1925. <CSS value="padding-left:10px;text-align:left"/>
  1926. </style>
  1927. </tableCell>
  1928. <tableCell>
  1929. <contents/>
  1930. <style>
  1931. <CSS value="color:white;font-weight:bold;vertical-align:middle;padding-left:10px;text-align:left;padding-bottom:10px;background-color:white;padding-top:10px"/>
  1932. </style>
  1933. </tableCell>
  1934. <tableCell>
  1935. <contents/>
  1936. <style>
  1937. <CSS value="padding-top:10px;padding-bottom:10px;padding-left:10px;background-color:white;color:white;font-weight:bold;text-align:left;vertical-align:middle"/>
  1938. </style>
  1939. </tableCell>
  1940. <tableCell>
  1941. <contents/>
  1942. <style>
  1943. <CSS value="padding-top:10px;padding-bottom:10px;padding-left:10px;background-color:white;color:white;font-weight:bold;text-align:left;vertical-align:middle;width:200px"/>
  1944. <defaultStyles>
  1945. <defaultStyle refStyle="GuidedLayoutTopPadding"/>
  1946. <defaultStyle refStyle="GuidedLayoutBottomPadding"/>
  1947. <defaultStyle refStyle="GuidedLayoutLeftPadding"/>
  1948. <defaultStyle refStyle="GuidedLayoutRightPadding"/>
  1949. </defaultStyles>
  1950. </style>
  1951. </tableCell>
  1952. <tableCell>
  1953. <contents/>
  1954. <style>
  1955. <CSS value="padding-top:10px;padding-bottom:10px;padding-left:10px;background-color:white;color:white;font-weight:bold;text-align:left;vertical-align:middle;width:13%"/>
  1956. </style>
  1957. </tableCell>
  1958. <tableCell>
  1959. <contents/>
  1960. <style>
  1961. <CSS value="width:17%"/>
  1962. </style>
  1963. </tableCell>
  1964. <tableCell>
  1965. <contents/>
  1966. <style>
  1967. <CSS value="padding-left:10px"/>
  1968. </style>
  1969. </tableCell>
  1970. <tableCell>
  1971. <contents/>
  1972. </tableCell>
  1973. </tableCells>
  1974. </tableRow>
  1975. <tableRow>
  1976. <tableCells>
  1977. <tableCell>
  1978. <contents/>
  1979. </tableCell>
  1980. <tableCell>
  1981. <contents>
  1982. <selectValue multiSelect="true" parameter="p_AH" refQuery="qry_Mandant" required="false" selectValueUI="checkboxGroup">
  1983. <headerText>
  1984. <defaultText>Alle Autohäuser</defaultText>
  1985. </headerText>
  1986. <useItem refDataItem="Hauptbetrieb"/>
  1987. <style>
  1988. <CSS value="width:100%"/>
  1989. </style>
  1990. </selectValue>
  1991. </contents>
  1992. <style>
  1993. <CSS value="border-top-style:none;border-bottom-style:none;border-left-style:none;border-right-style:none;vertical-align:top"/>
  1994. </style>
  1995. </tableCell>
  1996. <tableCell colSpan="2">
  1997. <contents/>
  1998. </tableCell>
  1999. <tableCell>
  2000. <contents>
  2001. <selectValue multiSelect="true" parameter="p_AH" refQuery="qry_AH" required="false" selectValueUI="checkboxGroup">
  2002. <headerText>
  2003. <defaultText>Alle Autohäuser</defaultText>
  2004. </headerText>
  2005. <style>
  2006. <CSS value="width:300px"/>
  2007. </style>
  2008. <useItem refDataItem="Standort"/>
  2009. </selectValue>
  2010. </contents>
  2011. <style>
  2012. <CSS value="border-top-style:none;border-bottom-style:none;border-left-style:none;border-right-style:none"/>
  2013. </style>
  2014. </tableCell>
  2015. <tableCell>
  2016. <contents/>
  2017. </tableCell>
  2018. <tableCell>
  2019. <contents/>
  2020. <style>
  2021. <CSS value="border-top-style:none;border-bottom-style:none;border-left-style:none;border-right-style:none;vertical-align:top"/>
  2022. </style>
  2023. </tableCell>
  2024. <tableCell>
  2025. <contents/>
  2026. <style>
  2027. <CSS value="text-align:right"/>
  2028. </style>
  2029. </tableCell>
  2030. <tableCell>
  2031. <contents/>
  2032. </tableCell>
  2033. <tableCell>
  2034. <contents/>
  2035. <style>
  2036. <CSS value="text-align:right"/>
  2037. </style>
  2038. </tableCell>
  2039. <tableCell>
  2040. <contents/>
  2041. <style>
  2042. <CSS value="width:17%"/>
  2043. </style>
  2044. </tableCell>
  2045. <tableCell>
  2046. <contents/>
  2047. </tableCell>
  2048. <tableCell>
  2049. <contents/>
  2050. </tableCell>
  2051. </tableCells>
  2052. </tableRow>
  2053. <tableRow>
  2054. <tableCells>
  2055. <tableCell>
  2056. <contents/>
  2057. </tableCell>
  2058. <tableCell>
  2059. <contents/>
  2060. <style>
  2061. <CSS value="border-top-style:none;border-bottom-style:none;border-left-style:none;border-right-style:none;vertical-align:top"/>
  2062. </style>
  2063. </tableCell>
  2064. <tableCell colSpan="2">
  2065. <contents/>
  2066. </tableCell>
  2067. <tableCell>
  2068. <contents/>
  2069. <style>
  2070. <CSS value="border-top-style:none;border-bottom-style:none;border-left-style:none;border-right-style:none"/>
  2071. </style>
  2072. </tableCell>
  2073. <tableCell>
  2074. <contents/>
  2075. </tableCell>
  2076. <tableCell>
  2077. <contents/>
  2078. <style>
  2079. <CSS value="border-bottom-style:none;border-left-style:none;border-top-style:none;border-right-style:none;vertical-align:top"/>
  2080. </style>
  2081. </tableCell>
  2082. <tableCell>
  2083. <contents/>
  2084. <style>
  2085. <CSS value="text-align:right"/>
  2086. </style>
  2087. </tableCell>
  2088. <tableCell>
  2089. <contents/>
  2090. <style>
  2091. <CSS value="text-align:left"/>
  2092. </style>
  2093. </tableCell>
  2094. <tableCell>
  2095. <contents/>
  2096. <style>
  2097. <CSS value="text-align:right"/>
  2098. </style>
  2099. </tableCell>
  2100. <tableCell>
  2101. <contents/>
  2102. </tableCell>
  2103. <tableCell>
  2104. <contents/>
  2105. </tableCell>
  2106. <tableCell>
  2107. <contents/>
  2108. </tableCell>
  2109. </tableCells>
  2110. </tableRow>
  2111. <tableRow>
  2112. <tableCells>
  2113. <tableCell>
  2114. <contents>
  2115. <textItem>
  2116. <dataSource>
  2117. <staticValue/>
  2118. </dataSource>
  2119. <style>
  2120. <CSS value="width:20px;height:30px"/>
  2121. </style>
  2122. </textItem>
  2123. </contents>
  2124. </tableCell>
  2125. <tableCell>
  2126. <contents/>
  2127. <style>
  2128. <CSS value="padding-top:10px;padding-bottom:10px"/>
  2129. </style>
  2130. </tableCell>
  2131. <tableCell colSpan="2">
  2132. <contents/>
  2133. </tableCell>
  2134. <tableCell>
  2135. <contents/>
  2136. </tableCell>
  2137. <tableCell>
  2138. <contents/>
  2139. </tableCell>
  2140. <tableCell>
  2141. <contents/>
  2142. </tableCell>
  2143. <tableCell>
  2144. <contents/>
  2145. </tableCell>
  2146. <tableCell>
  2147. <contents/>
  2148. </tableCell>
  2149. <tableCell>
  2150. <contents/>
  2151. <style>
  2152. <CSS value="width:13%"/>
  2153. </style>
  2154. </tableCell>
  2155. <tableCell>
  2156. <contents/>
  2157. <style>
  2158. <CSS value="width:17%"/>
  2159. </style>
  2160. </tableCell>
  2161. <tableCell>
  2162. <contents/>
  2163. </tableCell>
  2164. <tableCell>
  2165. <contents/>
  2166. </tableCell>
  2167. </tableCells>
  2168. </tableRow>
  2169. <tableRow>
  2170. <tableCells>
  2171. <tableCell>
  2172. <contents/>
  2173. </tableCell>
  2174. <tableCell>
  2175. <contents>
  2176. <textItem>
  2177. <dataSource>
  2178. <staticValue>Kundengruppe:</staticValue>
  2179. </dataSource>
  2180. <style>
  2181. <CSS value="color:white;font-weight:bold;vertical-align:top"/>
  2182. </style>
  2183. </textItem>
  2184. </contents>
  2185. <style>
  2186. <CSS value="padding-left:10px;color:white;font-weight:bold;vertical-align:middle;padding-bottom:10px;background-color:#3E5C76;text-align:left;padding-top:10px;height:30px"/>
  2187. </style>
  2188. </tableCell>
  2189. <tableCell colSpan="2">
  2190. <contents/>
  2191. <style>
  2192. <CSS value="padding-left:10px;vertical-align:top"/>
  2193. </style>
  2194. </tableCell>
  2195. <tableCell>
  2196. <contents>
  2197. <textItem>
  2198. <dataSource>
  2199. <staticValue>PLZ:</staticValue>
  2200. </dataSource>
  2201. <style>
  2202. <CSS value="color:white;font-weight:bold;vertical-align:top"/>
  2203. </style>
  2204. </textItem>
  2205. </contents>
  2206. <style>
  2207. <CSS value="padding-top:10px;padding-bottom:10px;padding-left:10px;background-color:#3E5C76;color:white;font-weight:bold;text-align:left;vertical-align:middle"/>
  2208. </style>
  2209. </tableCell>
  2210. <tableCell>
  2211. <contents/>
  2212. </tableCell>
  2213. <tableCell colSpan="3">
  2214. <contents>
  2215. <textItem>
  2216. <dataSource>
  2217. <staticValue>Kunde</staticValue>
  2218. </dataSource>
  2219. <style>
  2220. <CSS value="color:white;font-weight:bold;vertical-align:top"/>
  2221. </style>
  2222. </textItem>
  2223. </contents>
  2224. <style>
  2225. <CSS value="padding-top:10px;padding-bottom:10px;padding-left:10px;background-color:#3E5C76;color:white;font-weight:bold;text-align:left;vertical-align:middle"/>
  2226. </style>
  2227. </tableCell>
  2228. <tableCell>
  2229. <contents/>
  2230. <style>
  2231. <CSS value="padding-top:10px;padding-bottom:10px;padding-left:10px;background-color:white;color:white;font-weight:bold;text-align:left;vertical-align:middle"/>
  2232. </style>
  2233. </tableCell>
  2234. <tableCell>
  2235. <contents/>
  2236. <style>
  2237. <CSS value="padding-top:10px;padding-bottom:10px;padding-left:10px;background-color:white;color:white;font-weight:bold;text-align:left;vertical-align:middle"/>
  2238. </style>
  2239. </tableCell>
  2240. <tableCell>
  2241. <contents/>
  2242. </tableCell>
  2243. <tableCell>
  2244. <contents/>
  2245. </tableCell>
  2246. </tableCells>
  2247. </tableRow>
  2248. <tableRow>
  2249. <tableCells>
  2250. <tableCell>
  2251. <contents/>
  2252. </tableCell>
  2253. <tableCell>
  2254. <contents>
  2255. <selectValue multiSelect="true" parameter="p_Kundengruppe" refQuery="qry_Kundenart" required="false" selectValueUI="checkboxGroup">
  2256. <headerText>
  2257. <defaultText>Alle Kundengruppen</defaultText>
  2258. </headerText>
  2259. <style>
  2260. <CSS value="width:100%"/>
  2261. </style>
  2262. <useItem refDataItem="Kundenart1"/>
  2263. </selectValue>
  2264. </contents>
  2265. <style>
  2266. <CSS value="border-top-style:none;border-bottom-style:none;border-left-style:none;border-right-style:none;vertical-align:top"/>
  2267. </style>
  2268. </tableCell>
  2269. <tableCell colSpan="2">
  2270. <contents/>
  2271. </tableCell>
  2272. <tableCell>
  2273. <contents>
  2274. <selectWithTree parameter="p_PLZ" refQuery="qry_PLZ" required="false">
  2275. <style>
  2276. <CSS value="width:200px;height:200px"/>
  2277. </style>
  2278. <selectWithTreeItem refDataItem="PLZ-Gebiete"/>
  2279. </selectWithTree>
  2280. </contents>
  2281. <style>
  2282. <CSS value="vertical-align:top"/>
  2283. </style>
  2284. </tableCell>
  2285. <tableCell>
  2286. <contents/>
  2287. </tableCell>
  2288. <tableCell colSpan="3">
  2289. <contents>
  2290. <selectWithSearch multiSelect="true" parameter="p_Kunde" refQuery="Abfrage1" required="false" rowsPerPage="100">
  2291. <useItem refDataItem="Kunde - Langer Name"/>
  2292. </selectWithSearch>
  2293. </contents>
  2294. </tableCell>
  2295. <tableCell>
  2296. <contents/>
  2297. </tableCell>
  2298. <tableCell>
  2299. <contents/>
  2300. </tableCell>
  2301. <tableCell>
  2302. <contents/>
  2303. </tableCell>
  2304. <tableCell>
  2305. <contents/>
  2306. </tableCell>
  2307. </tableCells>
  2308. </tableRow>
  2309. <tableRow>
  2310. <tableCells>
  2311. <tableCell>
  2312. <contents>
  2313. <textItem>
  2314. <dataSource>
  2315. <staticValue/>
  2316. </dataSource>
  2317. <style>
  2318. <CSS value="width:20px;height:30px"/>
  2319. </style>
  2320. </textItem>
  2321. </contents>
  2322. </tableCell>
  2323. <tableCell>
  2324. <contents/>
  2325. </tableCell>
  2326. <tableCell colSpan="2">
  2327. <contents/>
  2328. </tableCell>
  2329. <tableCell>
  2330. <contents/>
  2331. </tableCell>
  2332. <tableCell>
  2333. <contents/>
  2334. </tableCell>
  2335. <tableCell>
  2336. <contents/>
  2337. </tableCell>
  2338. <tableCell>
  2339. <contents/>
  2340. </tableCell>
  2341. <tableCell>
  2342. <contents/>
  2343. </tableCell>
  2344. <tableCell>
  2345. <contents/>
  2346. <style>
  2347. <CSS value="width:13%"/>
  2348. </style>
  2349. </tableCell>
  2350. <tableCell>
  2351. <contents/>
  2352. <style>
  2353. <CSS value="width:17%"/>
  2354. </style>
  2355. </tableCell>
  2356. <tableCell>
  2357. <contents/>
  2358. </tableCell>
  2359. <tableCell>
  2360. <contents/>
  2361. </tableCell>
  2362. </tableCells>
  2363. </tableRow>
  2364. <tableRow>
  2365. <tableCells>
  2366. <tableCell>
  2367. <contents/>
  2368. </tableCell>
  2369. <tableCell>
  2370. <contents/>
  2371. </tableCell>
  2372. <tableCell colSpan="2">
  2373. <contents/>
  2374. </tableCell>
  2375. <tableCell>
  2376. <contents/>
  2377. </tableCell>
  2378. <tableCell>
  2379. <contents/>
  2380. </tableCell>
  2381. <tableCell>
  2382. <contents/>
  2383. </tableCell>
  2384. <tableCell>
  2385. <contents/>
  2386. </tableCell>
  2387. <tableCell>
  2388. <contents/>
  2389. </tableCell>
  2390. <tableCell>
  2391. <contents/>
  2392. <style>
  2393. <CSS value="width:13%"/>
  2394. </style>
  2395. </tableCell>
  2396. <tableCell>
  2397. <contents/>
  2398. <style>
  2399. <CSS value="width:17%"/>
  2400. </style>
  2401. </tableCell>
  2402. <tableCell>
  2403. <contents/>
  2404. </tableCell>
  2405. <tableCell>
  2406. <contents/>
  2407. </tableCell>
  2408. </tableCells>
  2409. </tableRow>
  2410. <tableRow>
  2411. <tableCells>
  2412. <tableCell>
  2413. <contents/>
  2414. </tableCell>
  2415. <tableCell>
  2416. <contents/>
  2417. </tableCell>
  2418. <tableCell colSpan="2">
  2419. <contents/>
  2420. </tableCell>
  2421. <tableCell>
  2422. <contents/>
  2423. </tableCell>
  2424. <tableCell>
  2425. <contents/>
  2426. </tableCell>
  2427. <tableCell>
  2428. <contents/>
  2429. </tableCell>
  2430. <tableCell>
  2431. <contents/>
  2432. </tableCell>
  2433. <tableCell>
  2434. <contents/>
  2435. </tableCell>
  2436. <tableCell>
  2437. <contents/>
  2438. <style>
  2439. <CSS value="width:13%"/>
  2440. </style>
  2441. </tableCell>
  2442. <tableCell>
  2443. <contents/>
  2444. <style>
  2445. <CSS value="width:17%"/>
  2446. </style>
  2447. </tableCell>
  2448. <tableCell>
  2449. <contents/>
  2450. </tableCell>
  2451. <tableCell>
  2452. <contents/>
  2453. </tableCell>
  2454. </tableCells>
  2455. </tableRow>
  2456. </tableRows>
  2457. </table>
  2458. </contents>
  2459. <style>
  2460. <defaultStyles>
  2461. <defaultStyle refStyle="py"/>
  2462. </defaultStyles>
  2463. <CSS value="background-color:white;padding-top:10px"/>
  2464. </style>
  2465. </pageBody>
  2466. <pageFooter>
  2467. <contents>
  2468. <promptButton type="cancel">
  2469. <contents/>
  2470. <style>
  2471. <defaultStyles>
  2472. <defaultStyle refStyle="bp"/>
  2473. </defaultStyles>
  2474. </style>
  2475. </promptButton>
  2476. <promptButton type="finish">
  2477. <contents/>
  2478. <style>
  2479. <defaultStyles>
  2480. <defaultStyle refStyle="bp"/>
  2481. </defaultStyles>
  2482. </style>
  2483. </promptButton>
  2484. </contents>
  2485. <style>
  2486. <CSS value="background-color:#C3CCD4;padding-top:10px;padding-bottom:10px"/>
  2487. </style>
  2488. </pageFooter>
  2489. <style>
  2490. <defaultStyles>
  2491. <defaultStyle refStyle="pp"/>
  2492. </defaultStyles>
  2493. </style>
  2494. </page>
  2495. </promptPages>
  2496. </layout>
  2497. </layouts>
  2498. <modelPath>/content/folder[@name=&quot;GC&quot;]/folder[@name=&quot;Packages&quot;]/package[@name=&quot;S_Teile&quot;]/model[@name=&quot;2020-07-14T09:15:16.581Z&quot;]</modelPath>
  2499. <reportName>T.05 Ranking Kunden</reportName>
  2500. <queries>
  2501. <query name="qry_Main">
  2502. <source>
  2503. <model/>
  2504. </source>
  2505. <selection>
  2506. <dataItemMeasure name="Umsatz Teile">
  2507. <dmMember>
  2508. <MUN>[S_Teile].[Kennzahlen].[Umsatz Teile]</MUN>
  2509. <itemCaption>Umsatz Teile</itemCaption>
  2510. </dmMember>
  2511. <dmDimension>
  2512. <DUN>[S_Teile].[Kennzahlen]</DUN>
  2513. <itemCaption>Kennzahlen</itemCaption>
  2514. </dmDimension>
  2515. <XMLAttributes>
  2516. <XMLAttribute name="RS_dataType" output="no" value="9"/>
  2517. </XMLAttributes>
  2518. </dataItemMeasure>
  2519. <dataItemMeasure name="Einsatz Teile">
  2520. <dmMember>
  2521. <MUN>[S_Teile].[Kennzahlen].[Einsatz Teile]</MUN>
  2522. <itemCaption>Einsatz Teile</itemCaption>
  2523. </dmMember>
  2524. <dmDimension>
  2525. <DUN>[S_Teile].[Kennzahlen]</DUN>
  2526. <itemCaption>Kennzahlen</itemCaption>
  2527. </dmDimension>
  2528. <XMLAttributes>
  2529. <XMLAttribute name="RS_dataType" output="no" value="9"/>
  2530. </XMLAttributes>
  2531. </dataItemMeasure>
  2532. <dataItemMeasure name="BE in %">
  2533. <dmMember>
  2534. <MUN>[S_Teile].[Kennzahlen].[BE in %]</MUN>
  2535. <itemCaption>BE in %</itemCaption>
  2536. </dmMember>
  2537. <dmDimension>
  2538. <DUN>[S_Teile].[Kennzahlen]</DUN>
  2539. <itemCaption>Kennzahlen</itemCaption>
  2540. </dmDimension>
  2541. <XMLAttributes>
  2542. <XMLAttribute name="RS_dataType" output="no" value="9"/>
  2543. </XMLAttributes>
  2544. </dataItemMeasure>
  2545. <dataItemMeasure name="Umsatz Sonst.">
  2546. <dmMember>
  2547. <MUN>[S_Teile].[Kennzahlen].[Umsatz Sonst.]</MUN>
  2548. <itemCaption>Umsatz Sonst.</itemCaption>
  2549. </dmMember>
  2550. <dmDimension>
  2551. <DUN>[S_Teile].[Kennzahlen]</DUN>
  2552. <itemCaption>Kennzahlen</itemCaption>
  2553. </dmDimension>
  2554. <XMLAttributes>
  2555. <XMLAttribute name="RS_dataType" output="no" value="9"/>
  2556. </XMLAttributes>
  2557. </dataItemMeasure>
  2558. <dataItemLevelSet name="Sel Name">
  2559. <dmLevel>
  2560. <LUN>[S_Teile].[Verursacher].[Verursacher].[Sel Name]</LUN>
  2561. <itemCaption>Sel Name</itemCaption>
  2562. </dmLevel>
  2563. <dmDimension>
  2564. <DUN>[S_Teile].[Verursacher]</DUN>
  2565. <itemCaption>Verursacher</itemCaption>
  2566. </dmDimension>
  2567. <dmHierarchy>
  2568. <HUN>[S_Teile].[Verursacher].[Verursacher]</HUN>
  2569. <itemCaption>Verursacher</itemCaption>
  2570. </dmHierarchy>
  2571. </dataItemLevelSet>
  2572. <dataItemLevelSet name="Sel Name1">
  2573. <dmLevel>
  2574. <LUN>[S_Teile].[Verursacher].[Verursacher].[Sel Name]</LUN>
  2575. <itemCaption>Sel Name</itemCaption>
  2576. </dmLevel>
  2577. <dmDimension>
  2578. <DUN>[S_Teile].[Verursacher]</DUN>
  2579. <itemCaption>Verursacher</itemCaption>
  2580. </dmDimension>
  2581. <dmHierarchy>
  2582. <HUN>[S_Teile].[Verursacher].[Verursacher]</HUN>
  2583. <itemCaption>Verursacher</itemCaption>
  2584. </dmHierarchy>
  2585. </dataItemLevelSet>
  2586. <dataItemMeasure name="Bruttoertrag">
  2587. <dmMember>
  2588. <MUN>[S_Teile].[Kennzahlen].[Bruttoertrag]</MUN>
  2589. <itemCaption>Bruttoertrag</itemCaption>
  2590. </dmMember>
  2591. <dmDimension>
  2592. <DUN>[S_Teile].[Kennzahlen]</DUN>
  2593. <itemCaption>Kennzahlen</itemCaption>
  2594. </dmDimension>
  2595. <XMLAttributes>
  2596. <XMLAttribute name="RS_dataType" output="no" value="9"/>
  2597. </XMLAttributes>
  2598. </dataItemMeasure>
  2599. <dataItemDimensionalEdgeSummary aggregateMethod="aggregate" label="Summe" name="Summe(Sel Name)" refDataItem="Sel Name" solveOrder="1">
  2600. <dmDimension>
  2601. <DUN>[S_Teile].[Verursacher]</DUN>
  2602. <itemCaption>Verursacher</itemCaption>
  2603. </dmDimension>
  2604. <dmHierarchy>
  2605. <HUN>[S_Teile].[Verursacher].[Verursacher]</HUN>
  2606. <itemCaption>Verursacher</itemCaption>
  2607. </dmHierarchy>
  2608. <XMLAttributes>
  2609. <XMLAttribute name="RS_dataType" output="no" value="3"/>
  2610. </XMLAttributes>
  2611. </dataItemDimensionalEdgeSummary>
  2612. <dataItemDimensionalEdgeSummary aggregateMethod="aggregate" label="Summe" name="Summe(Sel Name1)" refDataItem="Sel Name1" solveOrder="1">
  2613. <dmDimension>
  2614. <DUN>[S_Teile].[Verursacher]</DUN>
  2615. <itemCaption>Verursacher</itemCaption>
  2616. </dmDimension>
  2617. <dmHierarchy>
  2618. <HUN>[S_Teile].[Verursacher].[Verursacher]</HUN>
  2619. <itemCaption>Verursacher</itemCaption>
  2620. </dmHierarchy>
  2621. </dataItemDimensionalEdgeSummary>
  2622. <dataItemLevelSet name="Kunde1">
  2623. <dmLevel>
  2624. <LUN>[S_Teile].[Kunde].[Kunde].[Kunde1]</LUN>
  2625. <itemCaption>Kunde1</itemCaption>
  2626. </dmLevel>
  2627. <dmDimension>
  2628. <DUN>[S_Teile].[Kunde]</DUN>
  2629. <itemCaption>Kunde</itemCaption>
  2630. </dmDimension>
  2631. <dmHierarchy>
  2632. <HUN>[S_Teile].[Kunde].[Kunde]</HUN>
  2633. <itemCaption>Kunde</itemCaption>
  2634. </dmHierarchy>
  2635. <XMLAttributes>
  2636. <XMLAttribute name="RS_dataType" output="no" value="3"/>
  2637. </XMLAttributes>
  2638. </dataItemLevelSet>
  2639. <dataItemLevelSet name="Kunde2">
  2640. <dmLevel>
  2641. <LUN>[S_Teile].[Kunde].[Kunde].[Kunde1]</LUN>
  2642. <itemCaption>Kunde1</itemCaption>
  2643. </dmLevel>
  2644. <dmDimension>
  2645. <DUN>[S_Teile].[Kunde]</DUN>
  2646. <itemCaption>Kunde</itemCaption>
  2647. </dmDimension>
  2648. <dmHierarchy>
  2649. <HUN>[S_Teile].[Kunde].[Kunde]</HUN>
  2650. <itemCaption>Kunde</itemCaption>
  2651. </dmHierarchy>
  2652. </dataItemLevelSet>
  2653. <dataItem name="AutoZeit1">
  2654. <expression>month(current_date) + &quot;/&quot; + year(current_date) </expression>
  2655. </dataItem>
  2656. <dataItem name="AutoZeit">
  2657. <expression>#&quot;[S_Teile].[Zeit].[Zeit].[Monat]-&gt;:[PC].[@MEMBER].[&quot;+ timestampMask(_first_of_month(_add_months($current_timestamp;-0)),&quot;yyyymmdd&quot;)+&quot;-&quot;+timestampMask(_last_of_month(_add_months($current_timestamp;-0)),&quot;yyyymmdd&quot;)+&quot;]&quot;#</expression></dataItem>
  2658. <dataItem name="SelectZeit">
  2659. <expression>#prompt(&quot;p_Zeit&quot;,&quot;memberuniquename&quot;,&quot;[AutoZeit]&quot;)#
  2660. </expression>
  2661. </dataItem>
  2662. <dataItem name="gewählter Monat1">
  2663. <expression>[SelectZeit]</expression>
  2664. <XMLAttributes>
  2665. <XMLAttribute name="RS_dataType" output="no" value="3"/>
  2666. <XMLAttribute name="RS_dataUsage" output="no" value="1"/>
  2667. <XMLAttribute name="RS_HUN" output="no" value="[S_Teile].[Zeit].[Zeit]"/>
  2668. </XMLAttributes>
  2669. </dataItem>
  2670. <dataItem name="gewählter Monat">
  2671. <expression>[SelectZeit]</expression>
  2672. <XMLAttributes>
  2673. <XMLAttribute name="RS_dataType" output="no" value="3"/>
  2674. <XMLAttribute name="RS_dataUsage" output="no" value="1"/>
  2675. <XMLAttribute name="RS_HUN" output="no" value="[S_Teile].[Zeit].[Zeit]"/>
  2676. </XMLAttributes>
  2677. </dataItem>
  2678. <dataItem name="Gesamt kumuliert VJ">
  2679. <expression>aggregate([Umsatz Teile] within set periodsToDate ([S_Teile].[Zeit].[Zeit].[Jahr];(parallelPeriod([S_Teile].[Zeit].[Zeit].[Jahr];1;[gewählter Monat]))))</expression>
  2680. <XMLAttributes>
  2681. <XMLAttribute name="RS_dataType" output="no" value="9"/>
  2682. <XMLAttribute name="RS_dataUsage" output="no" value="2"/>
  2683. <XMLAttribute name="RS_HUN" output="no" value="[S_Teile].[Kennzahlen]"/>
  2684. </XMLAttributes>
  2685. </dataItem>
  2686. <dataItem name="Umsatz Teile kumuliert VJ">
  2687. <expression>aggregate([Umsatz Teile]within set periodsToDate ([S_Teile].[Zeit].[Zeit].[Jahr];[VJ]))</expression>
  2688. <XMLAttributes>
  2689. <XMLAttribute name="RS_dataType" output="no" value="9"/>
  2690. <XMLAttribute name="RS_dataUsage" output="no" value="2"/>
  2691. <XMLAttribute name="RS_HUN" output="no" value="[S_Teile].[Kennzahlen]"/>
  2692. <XMLAttribute name="RS_MEASURE_DUN" output="no" value="[S_Teile].[Kennzahlen]"/>
  2693. </XMLAttributes>
  2694. </dataItem>
  2695. <dataItem name="Einsatz Teile kumuliert VJ">
  2696. <expression>aggregate([Einsatz Teile]within set periodsToDate ([S_Teile].[Zeit].[Zeit].[Jahr];[VJ]))</expression>
  2697. </dataItem>
  2698. <dataItem name="Bruttoertrag kumuliert VJ">
  2699. <expression>aggregate([Bruttoertrag]within set periodsToDate ([S_Teile].[Zeit].[Zeit].[Jahr];[VJ]))</expression>
  2700. <XMLAttributes>
  2701. <XMLAttribute name="RS_dataType" output="no" value="1"/>
  2702. <XMLAttribute name="RS_dataUsage" output="no" value="2"/>
  2703. <XMLAttribute name="RS_HUN" output="no" value="[S_Teile].[Kennzahlen]"/>
  2704. </XMLAttributes>
  2705. </dataItem>
  2706. <dataItem name="BE % kumuliert VJ">
  2707. <expression>aggregate([BE in %]within set periodsToDate ([S_Teile].[Zeit].[Zeit].[Jahr];[VJ]))</expression>
  2708. </dataItem>
  2709. <dataItem name="Umsatz Sonst. VJ">
  2710. <expression>aggregate([Umsatz Sonst.]within set periodsToDate ([S_Teile].[Zeit].[Zeit].[Jahr];[VJ]))</expression>
  2711. </dataItem>
  2712. <dataItem name="Gesamt kum.">
  2713. <expression>aggregate([Umsatz Teile]within set periodsToDate ([S_Teile].[Zeit].[Zeit].[Jahr];[gewählter Monat]))</expression>
  2714. <XMLAttributes>
  2715. <XMLAttribute name="RS_dataType" output="no" value="9"/>
  2716. <XMLAttribute name="RS_dataUsage" output="no" value="2"/>
  2717. <XMLAttribute name="RS_HUN" output="no" value="[S_Teile].[Kennzahlen]"/>
  2718. </XMLAttributes>
  2719. </dataItem>
  2720. <dataItem name="top_Ges.Umsatz">
  2721. <expression>topCount ([Umsatz Teile] ;1000; tuple([gewählter Monat]; [Umsatz Teile] ) )</expression>
  2722. <XMLAttributes>
  2723. <XMLAttribute name="RS_dataType" output="no" value="3"/>
  2724. <XMLAttribute name="RS_dataUsage" output="no" value="1"/>
  2725. <XMLAttribute name="RS_HUN" output="no" value="[S_Teile].[Serviceberater].[Serviceberater]"/>
  2726. </XMLAttributes>
  2727. </dataItem>
  2728. <dataItem name="VJ">
  2729. <expression>parallelPeriod([S_Teile].[Zeit].[Zeit].[Jahr];1;[gewählter Monat])</expression>
  2730. <XMLAttributes>
  2731. <XMLAttribute name="RS_dataType" output="no" value="3"/>
  2732. <XMLAttribute name="RS_dataUsage" output="no" value="1"/>
  2733. <XMLAttribute name="RS_HUN" output="no" value="[S_Teile].[Zeit].[Zeit]"/>
  2734. </XMLAttributes>
  2735. </dataItem>
  2736. <dataItem name="Zeitraum">
  2737. <expression>aggregate(CurrentMeasure within set periodsToDate ([S_Teile].[Zeit].[Zeit].[Jahr];[gewählter Monat]))</expression>
  2738. </dataItem>
  2739. <dataItem name="Kumuliert_VJ">
  2740. <expression>parallelPeriod([S_Teile].[Zeit].[Zeit].[Jahr];1;[Kumuliert])</expression>
  2741. </dataItem>
  2742. <dataItem name="Kumuliert">
  2743. <expression>#prompt(&quot;p_Zeitraum&quot;,&quot;token&quot;)#</expression>
  2744. </dataItem>
  2745. <dataItem name="Von_Bis1">
  2746. <expression>intersect(lastPeriods(-9999;[Von]);lastPeriods(9999;[Bis]))</expression>
  2747. </dataItem>
  2748. <dataItem name="Von_Bis">
  2749. <expression>intersect(lastPeriods(-9999;[Von]);lastPeriods(9999;[Bis]))</expression>
  2750. </dataItem>
  2751. <dataItem name="Von">
  2752. <expression>#&quot;[S_Teile].[Zeit].[Zeit].[Tag]-&gt;:[PC].[@MEMBER].[&quot;+substitute(&quot;-&quot;,&quot;&quot;,substitute(&quot;-&quot;,&quot;&quot;,prompt(&quot;p_Von&quot;,&quot;date&quot;)))+&quot;]&quot;#</expression>
  2753. </dataItem>
  2754. <dataItem name="Bis">
  2755. <expression>#&quot;[S_Teile].[Zeit].[Zeit].[Tag]-&gt;:[PC].[@MEMBER].[&quot;+substitute(&quot;-&quot;,&quot;&quot;,substitute(&quot;-&quot;,&quot;&quot;,prompt(&quot;p_Bis&quot;,&quot;date&quot;)))+&quot;]&quot;#</expression>
  2756. </dataItem>
  2757. <dataItem name="Von_Bis_VJ">
  2758. <expression>intersect(lastPeriods(-9999;[Von_VJ]);lastPeriods(9999;[Bis_VJ]))</expression>
  2759. </dataItem>
  2760. <dataItem name="Bis_VJ_Caption">
  2761. <expression>caption([Bis_VJ])</expression>
  2762. </dataItem>
  2763. <dataItem name="Von_VJ_Caption">
  2764. <expression>caption([Von_VJ])</expression>
  2765. </dataItem>
  2766. <dataItem name="Von_VJ">
  2767. <expression>parallelPeriod ([S_Teile].[Zeit].[Zeit].[Jahr];1;[Von])</expression>
  2768. </dataItem>
  2769. <dataItem name="Bis_VJ">
  2770. <expression>parallelPeriod ([S_Teile].[Zeit].[Zeit].[Jahr];1;[Bis])</expression>
  2771. </dataItem>
  2772. <dataItem name="VB_Umsatz Teile">
  2773. <expression>aggregate([Umsatz Teile]within set [Von_Bis])</expression>
  2774. <XMLAttributes>
  2775. <XMLAttribute name="RS_dataType" output="no" value="9"/>
  2776. <XMLAttribute name="RS_dataUsage" output="no" value="2"/>
  2777. <XMLAttribute name="RS_MEASURE_DUN" output="no" value="[S_Teile].[Kennzahlen]"/>
  2778. </XMLAttributes>
  2779. </dataItem>
  2780. <dataItem name="VB_Einsatz Teile">
  2781. <expression>aggregate([Einsatz Teile]within set [Von_Bis])</expression>
  2782. <XMLAttributes>
  2783. <XMLAttribute name="RS_dataType" output="no" value="9"/>
  2784. <XMLAttribute name="RS_dataUsage" output="no" value="2"/>
  2785. <XMLAttribute name="RS_MEASURE_DUN" output="no" value="[S_Teile].[Kennzahlen]"/>
  2786. </XMLAttributes>
  2787. </dataItem>
  2788. <dataItem name="VB_BE in %">
  2789. <expression>aggregate( [BE in %] within set [Von_Bis_VJ])</expression>
  2790. </dataItem>
  2791. <dataItem name="VB_Bruttoertrag">
  2792. <expression>aggregate( [Bruttoertrag] within set [Von_Bis_VJ])</expression>
  2793. </dataItem>
  2794. <dataItem name="VB_Umsatz Sonst.">
  2795. <expression>aggregate( [Umsatz Sonst.] within set [Von_Bis_VJ])</expression>
  2796. </dataItem>
  2797. <dataItem name="Bruttoertrag_VJ1">
  2798. <expression>aggregate([Bruttoertrag] within set [Von_Bis_VJ])</expression>
  2799. <XMLAttributes>
  2800. <XMLAttribute name="RS_dataType" output="no" value="9"/>
  2801. <XMLAttribute name="RS_dataUsage" output="no" value="2"/>
  2802. <XMLAttribute name="RS_MEASURE_DUN" output="no" value="[S_Teile].[Kennzahlen]"/>
  2803. </XMLAttributes>
  2804. </dataItem>
  2805. <dataItem aggregate="total" name="agg_Von_BisVJ" rollupAggregate="total">
  2806. <expression>aggregate([Umsatz Teile]within set [Von_Bis_VJ])</expression>
  2807. </dataItem>
  2808. <dataItem aggregate="total" name="agg_Von_Bis" rollupAggregate="total">
  2809. <expression>aggregate([Umsatz Teile]within set [Von_Bis])</expression>
  2810. </dataItem>
  2811. <dataItem aggregate="total" name="Trend_VB" rollupAggregate="total">
  2812. <expression>[agg_Von_Bis] - [agg_Von_BisVJ]</expression>
  2813. </dataItem>
  2814. <dataItem name="Trend Monat">
  2815. <expression>tuple([Umsatz Teile];[gewählter Monat]) - tuple([Umsatz Teile];[VJ])</expression>
  2816. <XMLAttributes>
  2817. <XMLAttribute name="RS_dataType" output="no" value="9"/>
  2818. <XMLAttribute name="RS_dataUsage" output="no" value="2"/>
  2819. <XMLAttribute name="RS_HUN" output="no" value="[S_Teile].[Kennzahlen]"/>
  2820. <XMLAttribute name="RS_MEASURE_DUN" output="no" value="[S_Teile].[Kennzahlen]"/>
  2821. </XMLAttributes>
  2822. </dataItem>
  2823. <dataItem name="Trend kum.">
  2824. <expression> [Gesamt kum.]- [Umsatz Teile kumuliert VJ]</expression>
  2825. <XMLAttributes>
  2826. <XMLAttribute name="RS_dataType" output="no" value="9"/>
  2827. <XMLAttribute name="RS_dataUsage" output="no" value="2"/>
  2828. <XMLAttribute name="RS_HUN" output="no" value="[S_Teile].[Kennzahlen]"/>
  2829. <XMLAttribute name="RS_MEASURE_DUN" output="no" value="[S_Teile].[Kennzahlen]"/>
  2830. </XMLAttributes>
  2831. </dataItem>
  2832. <dataItem label="Serviceberater" name="top_Serviceberater">
  2833. <expression>topCount ( [S_Teile].[Verursacher].[Verursacher].[Sel Name] ;15; tuple([Umsatz Teile];[Kumuliert] ) )</expression>
  2834. <XMLAttributes>
  2835. <XMLAttribute name="RS_dataType" output="no" value="3"/>
  2836. <XMLAttribute name="RS_dataUsage" output="no" value="1"/>
  2837. <XMLAttribute name="RS_HUN" output="no" value="[S_Teile].[Verursacher].[Verursacher]"/>
  2838. </XMLAttributes>
  2839. </dataItem>
  2840. <dataItem name="tpl_Gesamt">
  2841. <expression>tuple([Umsatz Teile];[Kumuliert])</expression>
  2842. <XMLAttributes>
  2843. <XMLAttribute name="RS_dataType" output="no" value="9"/>
  2844. <XMLAttribute name="RS_dataUsage" output="no" value="2"/>
  2845. <XMLAttribute name="RS_MEASURE_DUN" output="no" value="[S_Teile].[Kennzahlen]"/>
  2846. </XMLAttributes>
  2847. </dataItem>
  2848. </selection>
  2849. <detailFilters>
  2850. <detailFilter use="optional">
  2851. <filterExpression>[S_Teile].[AH-Gruppe].[AH-Gruppe].[Hauptbetrieb] in ( ?p_Mandant?)</filterExpression>
  2852. </detailFilter>
  2853. <detailFilter use="optional">
  2854. <filterExpression>[S_Teile].[AH-Gruppe].[AH-Gruppe].[Standort] in ( ?p_AH?)</filterExpression>
  2855. </detailFilter>
  2856. <detailFilter use="optional">
  2857. <filterExpression>[S_Teile].[Kundenart].[Kundenart].[Kundenart1] in ( ?p_Kundengruppe?)</filterExpression>
  2858. </detailFilter>
  2859. <detailFilter use="optional">
  2860. <filterExpression>[S_Teile].[PLZ-Gebiete].[PLZ-Gebiete].[PLZ-Gebiete] in ( ?p_PLZ?)</filterExpression>
  2861. </detailFilter>
  2862. <detailFilter use="optional">
  2863. <filterExpression>[S_Teile].[Kunde].[Kunde].[Kunde1].[Kunde - Langer Name] in ( ?p_Kunde?)</filterExpression>
  2864. </detailFilter>
  2865. </detailFilters>
  2866. <queryHints>
  2867. <autoSort value="none"/>
  2868. </queryHints>
  2869. </query>
  2870. <query name="qry_AH">
  2871. <source>
  2872. <model/>
  2873. </source>
  2874. <selection>
  2875. <dataItemLevelSet name="Standort">
  2876. <dmLevel>
  2877. <LUN>[S_Teile].[AH-Gruppe].[AH-Gruppe].[Standort]</LUN>
  2878. <itemCaption>Standort</itemCaption>
  2879. </dmLevel>
  2880. <dmDimension>
  2881. <DUN>[S_Teile].[AH-Gruppe]</DUN>
  2882. <itemCaption>AH-Gruppe</itemCaption>
  2883. </dmDimension>
  2884. <dmHierarchy>
  2885. <HUN>[S_Teile].[AH-Gruppe].[AH-Gruppe]</HUN>
  2886. <itemCaption>AH-Gruppe</itemCaption>
  2887. </dmHierarchy>
  2888. </dataItemLevelSet>
  2889. </selection>
  2890. </query>
  2891. <query name="qry_Kundenart">
  2892. <source>
  2893. <model/>
  2894. </source>
  2895. <selection>
  2896. <dataItemLevelSet name="Kundenart1">
  2897. <dmLevel>
  2898. <LUN>[S_Teile].[Kundenart].[Kundenart].[Kundenart1]</LUN>
  2899. <itemCaption>Kundenart1</itemCaption>
  2900. </dmLevel>
  2901. <dmDimension>
  2902. <DUN>[S_Teile].[Kundenart]</DUN>
  2903. <itemCaption>Kundenart</itemCaption>
  2904. </dmDimension>
  2905. <dmHierarchy>
  2906. <HUN>[S_Teile].[Kundenart].[Kundenart]</HUN>
  2907. <itemCaption>Kundenart</itemCaption>
  2908. </dmHierarchy>
  2909. </dataItemLevelSet>
  2910. </selection>
  2911. </query>
  2912. <query name="qry_Tag">
  2913. <source>
  2914. <model/>
  2915. </source>
  2916. <selection>
  2917. <dataItem name="Aktueller Tag">
  2918. <expression>[S_Teile].[Zeit].[Aktueller Tag].[Tag]</expression>
  2919. </dataItem>
  2920. </selection>
  2921. </query>
  2922. <query name="qry_PLZ">
  2923. <source>
  2924. <model/>
  2925. </source>
  2926. <selection>
  2927. <dataItemMember name="PLZ-Gebiete">
  2928. <dmMember>
  2929. <MUN>[S_Teile].[PLZ-Gebiete].[PLZ-Gebiete].[PLZ-Gebiete]-&gt;:[PC].[@MEMBER].[PLZ_Gebiete]</MUN>
  2930. <itemCaption>PLZ-Gebiete</itemCaption>
  2931. </dmMember>
  2932. <dmDimension>
  2933. <DUN>[S_Teile].[PLZ-Gebiete]</DUN>
  2934. <itemCaption>PLZ-Gebiete</itemCaption>
  2935. </dmDimension>
  2936. <dmHierarchy>
  2937. <HUN>[S_Teile].[PLZ-Gebiete].[PLZ-Gebiete]</HUN>
  2938. <itemCaption>PLZ-Gebiete</itemCaption>
  2939. </dmHierarchy>
  2940. </dataItemMember>
  2941. </selection>
  2942. </query>
  2943. <query name="qry_Mandant">
  2944. <source>
  2945. <model/>
  2946. </source>
  2947. <selection>
  2948. <dataItemLevelSet name="Hauptbetrieb">
  2949. <dmLevel>
  2950. <LUN>[S_Teile].[AH-Gruppe].[AH-Gruppe].[Hauptbetrieb]</LUN>
  2951. <itemCaption>Hauptbetrieb</itemCaption>
  2952. </dmLevel>
  2953. <dmDimension>
  2954. <DUN>[S_Teile].[AH-Gruppe]</DUN>
  2955. <itemCaption>AH-Gruppe</itemCaption>
  2956. </dmDimension>
  2957. <dmHierarchy>
  2958. <HUN>[S_Teile].[AH-Gruppe].[AH-Gruppe]</HUN>
  2959. <itemCaption>AH-Gruppe</itemCaption>
  2960. </dmHierarchy>
  2961. </dataItemLevelSet>
  2962. </selection>
  2963. </query>
  2964. <query name="Abfrage1">
  2965. <source>
  2966. <model/>
  2967. </source>
  2968. <selection>
  2969. <dataItem aggregate="none" name="Kunde - Langer Name">
  2970. <expression>[S_Teile].[Kunde].[Kunde].[Kunde1].[Kunde - Langer Name]</expression>
  2971. </dataItem>
  2972. </selection>
  2973. </query>
  2974. <query name="qry_Monat">
  2975. <source>
  2976. <model/>
  2977. </source>
  2978. <selection>
  2979. <dataItemLevelSet name="Monat">
  2980. <dmLevel>
  2981. <LUN>[S_Teile].[Zeit].[Zeit].[Monat]</LUN>
  2982. <itemCaption>Monat</itemCaption>
  2983. </dmLevel>
  2984. <dmDimension>
  2985. <DUN>[S_Teile].[Zeit]</DUN>
  2986. <itemCaption>Zeit</itemCaption>
  2987. </dmDimension>
  2988. <dmHierarchy>
  2989. <HUN>[S_Teile].[Zeit].[Zeit]</HUN>
  2990. <itemCaption>Zeit</itemCaption>
  2991. </dmHierarchy>
  2992. </dataItemLevelSet>
  2993. <dataItemMemberProperty name="Monat - Category Code">
  2994. <dmMemberProperty>
  2995. <MPUN>[S_Teile].[Zeit].[Zeit].[Monat].[Monat - Category Code]</MPUN>
  2996. <itemCaption>Monat - Category Code</itemCaption>
  2997. </dmMemberProperty>
  2998. <dmDimension>
  2999. <DUN>[S_Teile].[Zeit]</DUN>
  3000. <itemCaption>Zeit</itemCaption>
  3001. </dmDimension>
  3002. <dmHierarchy>
  3003. <HUN>[S_Teile].[Zeit].[Zeit]</HUN>
  3004. <itemCaption>Zeit</itemCaption>
  3005. </dmHierarchy>
  3006. <dmLevel>
  3007. <LUN>[S_Teile].[Zeit].[Zeit].[Monat]</LUN>
  3008. <itemCaption>Monat</itemCaption>
  3009. </dmLevel>
  3010. </dataItemMemberProperty>
  3011. </selection>
  3012. <dimensionInfo/>
  3013. </query>
  3014. <query name="qry_AH1">
  3015. <source>
  3016. <model/>
  3017. </source>
  3018. <selection>
  3019. <dataItemLevelSet name="Standort">
  3020. <dmLevel>
  3021. <LUN>[S_Teile].[AH-Gruppe].[AH-Gruppe].[Standort]</LUN>
  3022. <itemCaption>Standort</itemCaption>
  3023. </dmLevel>
  3024. <dmDimension>
  3025. <DUN>[S_Teile].[AH-Gruppe]</DUN>
  3026. <itemCaption>AH-Gruppe</itemCaption>
  3027. </dmDimension>
  3028. <dmHierarchy>
  3029. <HUN>[S_Teile].[AH-Gruppe].[AH-Gruppe]</HUN>
  3030. <itemCaption>AH-Gruppe</itemCaption>
  3031. </dmHierarchy>
  3032. </dataItemLevelSet>
  3033. </selection>
  3034. </query>
  3035. </queries>
  3036. <classStyles>
  3037. <classStyle name="pg">
  3038. <CSS value="white-space:nowrap"/>
  3039. </classStyle>
  3040. <classStyle description="kreuztabelle gelb" label="kt_GELB" name="cls1">
  3041. <CSS value="padding:4px 5px 4px 6px;background-color:#FFE97E;line-break:strict"/>
  3042. </classStyle>
  3043. <classStyle description="kreuztabelle gelb" label="kt_GELB2" name="cls11">
  3044. <CSS value="padding:4px 5px 4px 6px;background-color:#F9DC5C;line-break:strict"/>
  3045. </classStyle>
  3046. <classStyle description="kreuztabelle blau" label="kt_BLAU1" name="cls2">
  3047. <CSS value="padding:4px 5px 4px 6px;background-color:#3868A3;line-break:strict"/>
  3048. </classStyle>
  3049. <classStyle description="kreuztabelle blau" label="kt_BLAU2" name="cls3">
  3050. <CSS value="padding:4px 5px 4px 6px;background-color:#648BD0;line-break:strict"/>
  3051. </classStyle>
  3052. <classStyle description="kreuztabelle türkis" label="kt_TUERKIS1" name="cls4">
  3053. <CSS value="padding:4px 5px 4px 6px;background-color:#C7DEE7;line-break:strict"/>
  3054. </classStyle>
  3055. <classStyle description="kreuztabelle türkis " label="kt_TUERKIS2" name="cls5">
  3056. <CSS value="padding:4px 5px 4px 6px;background-color:#97CDD3;line-break:strict"/>
  3057. </classStyle>
  3058. <classStyle description="kreuztabelle grün" label="kt_GRUEN1" name="cls6">
  3059. <CSS value="padding:4px 5px 4px 6px;background-color:#B6CB9B;line-break:strict"/>
  3060. </classStyle>
  3061. <classStyle label="Hintergrund" name="cls14">
  3062. <CSS value="background-color:#C3CCD4"/>
  3063. </classStyle>
  3064. <classStyle description="kreuztabelle grün" label="kt_GRUEN2" name="cls7">
  3065. <CSS value="padding:4px 5px 4px 6px;background-color:#8EA375;line-break:strict"/>
  3066. </classStyle>
  3067. <classStyle description="kreuztabelle orange" label="kt_ORANGE" name="cls8">
  3068. <CSS value="padding:4px 5px 4px 6px;background-color:#E98751;line-break:strict"/>
  3069. </classStyle>
  3070. <classStyle description="kreuztabelle rot" label="kt_GRAU" name="cls9">
  3071. <CSS value="padding:4px 5px 4px 6px;background-color:#D3D3D3;line-break:strict"/>
  3072. </classStyle>
  3073. <classStyle description="kreuztabelle rot" label="kt_ROT2" name="cls10">
  3074. <CSS value="padding:4px 5px 4px 6px;background-color:#E60606;line-break:strict"/>
  3075. </classStyle>
  3076. <classStyle label="Kopfzeilenfaktzelle für Kreuztabelle1" name="cls12">
  3077. <CSS value="display:block"/>
  3078. <generatedBackground>
  3079. <fill>
  3080. <linearGradient>
  3081. <gradientColor/>
  3082. <gradientColor colorPosition="100" gradientColor="white"/>
  3083. </linearGradient>
  3084. </fill>
  3085. <dropShadow/>
  3086. <border allowTransparentBleed="true" cornerRadius="2pt"/>
  3087. </generatedBackground>
  3088. </classStyle>
  3089. <classStyle label="Kopfzeilenzelle für Kreuztabelle1" name="cls13">
  3090. <CSS value="padding:4px 5px 4px 6px;color:#E98751;font-weight:bold;vertical-align:top;background-color:transparent;border:1px solid silver"/>
  3091. <generatedBackground>
  3092. <fill>
  3093. <linearGradient>
  3094. <gradientColor gradientColor="lime"/>
  3095. </linearGradient>
  3096. </fill>
  3097. </generatedBackground>
  3098. </classStyle>
  3099. <classStyle name="lg">
  3100. <CSS value="direction:auto;unicode-bidi:embed"/>
  3101. </classStyle>
  3102. <classStyle name="bp">
  3103. <CSS value="color:#3E5C76;border:0.5pt solid #3E5C76"/>
  3104. </classStyle>
  3105. <classStyle name="bph">
  3106. <CSS value="color:#3E5C76;background-color:#E98751;border:0.5pt solid #3E5C76"/>
  3107. </classStyle>
  3108. <classStyle name="GuidedLayoutLeftPadding">
  3109. <CSS value="padding-left:5px;border-top-width:1px;border-bottom-width:1px;border-left-width:1px;border-right-width:1px"/>
  3110. </classStyle>
  3111. <classStyle name="GuidedLayoutTopPadding">
  3112. <CSS value="padding-top:5px;border-top-width:1px;border-bottom-width:1px;border-left-width:1px;border-right-width:1px"/>
  3113. </classStyle>
  3114. <classStyle name="GuidedLayoutRightPadding">
  3115. <CSS value="padding-right:5px;border-top-width:1px;border-bottom-width:1px;border-left-width:1px;border-right-width:1px"/>
  3116. </classStyle>
  3117. <classStyle name="GuidedLayoutBottomPadding">
  3118. <CSS value="padding-bottom:5px;border-top-width:1px;border-bottom-width:1px;border-left-width:1px;border-right-width:1px"/>
  3119. </classStyle>
  3120. <classStyle name="GuidedLayoutMargin">
  3121. <CSS value="margin-bottom:10px"/>
  3122. </classStyle>
  3123. </classStyles>
  3124. <reportVariables>
  3125. <reportVariable name="b_Anzeige_Tag" type="boolean">
  3126. <reportExpression>ParamDisplayValue(&quot;p_Zeit&quot;) is null</reportExpression>
  3127. <variableValues>
  3128. <variableValue value="1"/>
  3129. </variableValues>
  3130. </reportVariable>
  3131. <reportVariable name="b_Kumuliert_VJ" type="boolean">
  3132. <reportExpression>ParamDisplayValue(&quot;p_Zeitraum&quot;) = &quot;Kumuliert&quot;</reportExpression>
  3133. <variableValues>
  3134. <variableValue value="1"/>
  3135. </variableValues>
  3136. </reportVariable>
  3137. <reportVariable name="b_Einzelmonat_VJ" type="boolean">
  3138. <reportExpression>ParamDisplayValue(&quot;p_Zeitraum&quot;) = &quot;Einzelner Monat&quot;</reportExpression>
  3139. <variableValues>
  3140. <variableValue value="1"/>
  3141. </variableValues>
  3142. </reportVariable>
  3143. <reportVariable name="var_gewählterMonat" type="string">
  3144. <reportExpression>[qry_Main].[gewählter Monat]</reportExpression>
  3145. <variableValues>
  3146. <variableValue value="[qry_Main].[gewählter Monat]"/>
  3147. </variableValues>
  3148. </reportVariable>
  3149. </reportVariables>
  3150. <namedConditionalStyles>
  3151. <advancedConditionalStyle name="Bedingter Stil 1">
  3152. <styleCases>
  3153. <styleCase>
  3154. <style>
  3155. <CSS value="background-color:#C3CCD4"/>
  3156. </style>
  3157. <reportCondition>(ReportOutput() contains &quot;HTML&quot;)
  3158. </reportCondition>
  3159. </styleCase>
  3160. </styleCases>
  3161. <styleDefault>
  3162. <style>
  3163. <CSS value="background-color:white"/>
  3164. </style>
  3165. </styleDefault>
  3166. </advancedConditionalStyle>
  3167. <advancedConditionalStyle name="Trend">
  3168. <styleCases>
  3169. <styleCase>
  3170. <style>
  3171. <CSS value="background-image:url(/bi/samples/images/icon_average_traffic.gif);background-position:center center;background-repeat:no-repeat"/>
  3172. </style>
  3173. <reportCondition>CellValue () = 0</reportCondition>
  3174. </styleCase>
  3175. <styleCase>
  3176. <style>
  3177. <CSS value="background-image:url(/bi/samples/images/icon_metric_trend_up.gif);background-position:center center;background-repeat:no-repeat"/>
  3178. </style>
  3179. <reportCondition>CellValue() &gt; 0</reportCondition>
  3180. </styleCase>
  3181. <styleCase>
  3182. <style>
  3183. <CSS value="background-image:url(/bi/samples/images/icon_metric_trend_down.gif);background-position:center center;background-repeat:no-repeat"/>
  3184. </style>
  3185. <reportCondition>CellValue() &lt;0</reportCondition>
  3186. </styleCase>
  3187. </styleCases>
  3188. <styleDefault/>
  3189. </advancedConditionalStyle>
  3190. <advancedConditionalStyle name="Kunde">
  3191. <styleCases>
  3192. <styleCase>
  3193. <style>
  3194. <CSS value="visibility:hidden;display:none"/>
  3195. </style>
  3196. <reportCondition>ParamDisplayValue(&quot;p_Kunde&quot;) is null</reportCondition>
  3197. </styleCase>
  3198. </styleCases>
  3199. <styleDefault/>
  3200. </advancedConditionalStyle>
  3201. <advancedConditionalStyle name="Einzelmonat">
  3202. <styleCases>
  3203. <styleCase>
  3204. <reportCondition>ParamDisplayValue(&quot;p_Zeitraum&quot;) = &quot;Einzelner Monat&quot;</reportCondition>
  3205. </styleCase>
  3206. </styleCases>
  3207. <styleDefault>
  3208. <style>
  3209. <CSS value="display:none;background-color:lime"/>
  3210. </style>
  3211. </styleDefault>
  3212. </advancedConditionalStyle>
  3213. <advancedConditionalStyle name="Kumuliert">
  3214. <styleCases>
  3215. <styleCase>
  3216. <reportCondition>ParamDisplayValue(&quot;p_Zeitraum&quot;) = &quot;Kumuliert&quot;</reportCondition>
  3217. </styleCase>
  3218. </styleCases>
  3219. <styleDefault>
  3220. <style>
  3221. <CSS value="display:none;background-color:lime"/>
  3222. </style>
  3223. </styleDefault>
  3224. </advancedConditionalStyle>
  3225. <advancedConditionalStyle name="Monat">
  3226. <styleCases>
  3227. <styleCase>
  3228. <reportCondition>ParamDisplayValue(&quot;p_Zeit&quot;) is not null</reportCondition>
  3229. </styleCase>
  3230. </styleCases>
  3231. <styleDefault>
  3232. <style>
  3233. <CSS value="display:none"/>
  3234. </style>
  3235. </styleDefault>
  3236. </advancedConditionalStyle>
  3237. <advancedConditionalStyle name="Zeitraum">
  3238. <styleCases>
  3239. <styleCase>
  3240. <reportCondition>ParamDisplayValue(&quot;p_Zeit&quot;) is null</reportCondition>
  3241. </styleCase>
  3242. </styleCases>
  3243. <styleDefault>
  3244. <style>
  3245. <CSS value="display:none"/>
  3246. </style>
  3247. </styleDefault>
  3248. </advancedConditionalStyle>
  3249. <advancedConditionalStyle name="Rot&lt;0">
  3250. <styleCases>
  3251. <styleCase>
  3252. <style>
  3253. <CSS value="color:#B30808"/>
  3254. </style>
  3255. <reportCondition>CellValue() &lt;0</reportCondition>
  3256. </styleCase>
  3257. </styleCases>
  3258. <styleDefault/>
  3259. </advancedConditionalStyle>
  3260. </namedConditionalStyles>
  3261. </report>