Rechnungsausgangsbuch.xml 170 KB

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