AHR_AHA_Zeit_Abwesenheit.mdl 481 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968
  1. Name "Neues Modell" CharacterSet "nlsCSWindows_1252" AutoAccess False Synchronize False
  2. SynchroCycle 0 SynchroStamp 0 UpdateCycle 43 ModelStamp 1196167168 ClientStamp 1196167168
  3. ServerStamp 0 Generation 0 RootUser 0 Version "7.4.3034.0 " AccessManager False
  4. AccessManagerUserClasses False UserClassBrowser False ModelCategoryOrderDefault OrderUsePreference
  5. ModelOrderedByDefault False
  6. DataSource 98817 "current_date_prognose" Separator " " SourceType DataSource
  7. CharacterSet Default DecimalSep "," Thousandsep "." Columns True Timing PopYesCreateDefault
  8. Source "d:\gaps_bmw\portal\system\iqd\ahr\belege\current_date_prognose.iqd"
  9. SQL "select c1 as c1,
  10. c2 as c2,
  11. c3 as c3,
  12. c4 as c4,
  13. c5 as c5"
  14. ",
  15. c6 as c6,
  16. c7 as c7,
  17. c8 as c8,
  18. c9 as c9,
  19. c10 as c1"
  20. "0,
  21. c11 as c11,
  22. RSUM(c4) as c12,
  23. c13 as c13
  24. from
  25. (select T1"
  26. '."bundeslaender_id" as c1,
  27. T1."datum" as c2,
  28. T1."wochentage_id"'
  29. ' as c3,
  30. T1."arbeitstag_mofr" as c4,
  31. T1."zaehler_mofr" as c5,
  32. '
  33. ' T1."summe_mofr" as c6,
  34. T1."arbeitstag_mosa" as c7,
  35. T1."zaehle'
  36. 'r_mosa" as c8,
  37. T1."summe_mosa" as c9,
  38. T1."feiertage_id" as c10,'
  39. "
  40. (@CURRENT_DATE) - INTERVAL '001 00:00:00.000' as c11,
  41. CASE WHE"
  42. 'N (T1."datum" BETWEEN DATE ' "'2014-01-01' AND DATE '2014-12-31') THEN (250) WHEN (T1."
  43. '"datum" BETWEEN DATE ' "'2015-01-01' AND DATE '2015-12-31') THEN (252) WHEN (T1."
  44. '"datum" BETWEEN DATE ' "'2016-01-01' AND DATE '2016-12-31') THEN (250) WHEN (T1."
  45. '"datum" BETWEEN DATE ' "'2017-01-01' AND DATE '2017-12-31') THEN (248) ELSE null END as c13
  46. fro"
  47. 'm "reisacher_2008"."arbeitstage" T1
  48. where (((T1."bundeslaender_id" = 2)'
  49. ' and ((od_year(T1."datum")) = (extract(YEAR FROM ((@CURRENT_DATE) - INT'
  50. "ERVAL '001 00:00:00.000'))))) and (T1." '"datum" <= ((@CURRENT_DATE) - INTERVAL '
  51. "'001 00:00:00.000')))
  52. order by c1 asc,c2 asc,c3 asc,c4 asc,c5 asc,c6 as"
  53. "c,c7 asc,c8 asc,c9 asc,c10 asc
  54. ) D1
  55. " Isolation 0 UserEditable False SourceSignonList 673755
  56. EndList ImrName "D:\GAPS_BMW\Portal\System\IQD\AHR\Belege\current_date_prognose.imr"
  57. Stamp 1452531215 EnableMultiProcess False SetCurrent True ServerSource False
  58. Speed False Presummarized False
  59. OrgName 220823 "Bundeslaender Id" Origin Source Offset 0 Column "Bundeslaender Id"
  60. Storage Text Scale 0 Size 257 Decimals 0 Class Description InputScale 0
  61. TimeArray Off
  62. OrgName 220825 "Datum" Origin Source Offset 1 Column "Datum" Storage Int32
  63. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  64. OrgName 220827 "Wochentage Id" Origin Source Offset 2 Column "Wochentage Id"
  65. Storage Text Scale 0 Size 257 Decimals 0 Class Description InputScale 0
  66. TimeArray Off
  67. OrgName 220829 "Arbeitstag Mofr" Origin Source Offset 3 Column "Arbeitstag Mofr"
  68. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  69. OrgName 220831 "Zaehler Mofr" Origin Source Offset 4 Column "Zaehler Mofr"
  70. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  71. OrgName 220833 "Summe Mofr" Origin Source Offset 5 Column "Summe Mofr"
  72. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  73. OrgName 220835 "Arbeitstag Mosa" Origin Source Offset 6 Column "Arbeitstag Mosa"
  74. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  75. OrgName 220837 "Zaehler Mosa" Origin Source Offset 7 Column "Zaehler Mosa"
  76. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  77. OrgName 220839 "Summe Mosa" Origin Source Offset 8 Column "Summe Mosa"
  78. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  79. OrgName 220841 "Feiertage Id" Origin Source Offset 9 Column "Feiertage Id"
  80. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  81. OrgName 220843 "Jahr" Origin Source Offset 10 Column "Invoice Date" Storage Int32
  82. Scale 0 Size 4 Decimals 0 Class Date InputScale 0 TimeArray Off
  83. OrgName 220845 "Arbeitstag Nr Jahr" Origin Source Offset 11 Column "Arbeitstag Nr Jahr"
  84. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  85. OrgName 220847 "Gesamt Arbeitstage" Origin Source Offset 12 Column "Gesamt Arbeitstage"
  86. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  87. DataSource 982507 "Zeit_Mitarbeiter_Urlaub" Separator " " SourceType DataSource
  88. CharacterSet Default DecimalSep "," Thousandsep "." Columns True Timing PopYesCreateDefault
  89. Source "d:\gaps_bmw\portal\system\iqd\ahr\Zeit\Zeit_Mitarbeiter_Urlaub.iqd"
  90. SQL 'select T1."No_" as c1,
  91. T1."ID No_" as c2,
  92. T1."Name" as c3,
  93. '
  94. 'T1."Last Name" as c4,
  95. T1."First Name" as c5,
  96. T1."Employment Dat'
  97. 'e" as c6,
  98. T1."Leaving Date" as c7,
  99. T1."Department No_" as c8,
  100. '
  101. ' T1."Group No_ 1" as c9,
  102. T1."Group No_ 2" as c10,
  103. T1."Group N'
  104. 'o_ 3" as c11,
  105. T1."Time Object No_" as c12,
  106. (cast_float(T1."Std_'
  107. ' Vac_ Entitlem_ Days")) as c13,
  108. (cast_float(T1."Handic_ Vac_ Entitl'
  109. 'em_ Days")) as c14,
  110. (cast_float(T1."Spec_ Vac_2 Entitlem_ Days")) a'
  111. 's c15,
  112. (cast_float(T1."Spec_ Vac_3 Entitlem_ Days")) as c16,
  113. (c'
  114. 'ast_float(T1."Std_Vac_Days Car_Fwd_Prev_Y_")) as c17,
  115. (cast_float(T'
  116. '1."Handic_ Vac_1 Days Car_ Fwd_")) as c18,
  117. (cast_float(T1."Special '
  118. 'Vac_2 Days Car_ Fwd_")) as c19,
  119. (cast_float(T1."Special Vac_3 Days '
  120. 'Car_ Fwd_")) as c20,
  121. (cast_float(T1."Rem_ Vac_ Days taken")) as c21'
  122. ',
  123. (cast_float(T1."Rem_ Vac_ Days planned")) as c22,
  124. (cast_float'
  125. '(T1."Standard Vac_ Entitlement Hrs_")) as c23,
  126. (cast_float(T1."Hand'
  127. 'ic_ Vac_1 Entitlement Hrs_")) as c24,
  128. (cast_float(T1."Special Vac_2'
  129. ' Entitlement (H)")) as c25,
  130. (cast_float(T1."Std_ Vac_Car_Fwd_Prev_Y'
  131. '_(H)")) as c26,
  132. (cast_float(T1."Handic_ Vac_1 Hours Car_ Fwd_")) as'
  133. ' c27,
  134. (cast_float(T1."Spec_ Vac_2 Hours Car_ Fwd_")) as c28,
  135. (c'
  136. 'ast_float(T1."Rem_ Vac_ Hours taken")) as c29,
  137. (cast_float(T1."Rem_'
  138. ' Vac_ Hrs_ Planned")) as c30,
  139. (cast_float(T1."Rem_ Handic_ Vac_ Day'
  140. 's taken")) as c31,
  141. (cast_float(T1."Rem_ Handic_ Vac_ Days planned")'
  142. ') as c32,
  143. T1."Values Car_ Fwd_ Inactive" as c33,
  144. T1."Present" a'
  145. 's c34,
  146. T1."Absent" as c35,
  147. T1."Department Code" as c36,
  148. T1.'
  149. '"Task Type Group" as c37,
  150. T1."Efficiency %" as c38,
  151. T1."Resourc'
  152. 'e No_" as c39,
  153. T1."Rating PEREAS" as c40,
  154. ((cast_float(T1."Std_'
  155. ' Vac_ Entitlem_ Days"))) as c41,
  156. ((cast_float(T1."Std_Vac_Days Car_'
  157. 'Fwd_Prev_Y_"))) as c42,
  158. (((cast_float(T1."Std_ Vac_ Entitlem_ Days"'
  159. ')))) + (((cast_float(T1."Std_Vac_Days Car_Fwd_Prev_Y_")))) as c43,
  160. '
  161. '((cast_float(T1."Rem_ Vac_ Days taken"))) as c44,
  162. ((((cast_float(T1'
  163. '."Std_ Vac_ Entitlem_ Days")))) + (((cast_float(T1."Std_Vac_Days Car_Fw'
  164. 'd_Prev_Y_"))))) - (((cast_float(T1."Rem_ Vac_ Days taken")))) + ((cast_'
  165. 'float(T1."Spec_ Vac_2 Entitlem_ Days"))) as c45,
  166. ((cast_float(T1."R'
  167. 'em_ Vac_ Days planned"))) as c46,
  168. (((cast_float(T1."Rem_ Vac_ Days '
  169. 'taken")))) - (((cast_float(T1."Rem_ Vac_ Days planned")))) as c47,
  170. '
  171. "'1' as c48,
  172. CASE WHEN ((od_left(T1." '"Department No_",2)) = ' "'90') THEN ('55') ELSE ((od_left(T1."
  173. '"Department No_",2))) END as c49,
  174. T1."Pay Group No_" as c50,
  175. (n'
  176. "ow()) - INTERVAL '001 10:00:00.000' as c51,
  177. (extract(DAY FROM (now("
  178. ')) - T1."Leaving Date")) as c52,
  179. CASE WHEN ((((extract(DAY FROM (no'
  180. 'w()) - T1."Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP '
  181. "'1753-01-01 00:00:00.000')) THEN ('augetretene Mitarbeiter') ELSE (T1."
  182. '"Pay Group No_") END as c53,
  183. T1."First Name" || ' "' ' || T1." '"Last Name" as c54,
  184. CASE WHEN (T1."Task Type Group" IN ('
  185. "'MONTEURE','PROD MEIST')) THEN ('prod. Personal') WHEN (T1." '"Task Type Group" IN ('
  186. "'VERWALTUNG')) THEN ('unprod. Personal') ELSE null END as c55
  187. from " '"DMS1"."dbo"."AH Reisacher$Employee_T" T1
  188. where (((T1."Leaving Date" >='
  189. ' (@CURRENT_DATE)) or (T1."Leaving Date" = TIMESTAMP ' "'1753-01-01 00:00:00.000')) and (T1."
  190. '"No_" <> ' "'11724'))
  191. order by c1 asc
  192. " Isolation 0 UserEditable False
  193. SourceSignonList 643419 EndList ImrName "D:\GAPS_BMW\Portal\System\IQD\AHR\Zeit\Zeit_Mitarbeiter_Urlaub.imr"
  194. Stamp 1560930422 EnableMultiProcess False SetCurrent False ServerSource False
  195. Speed False Presummarized False
  196. OrgName 982509 "No" Origin Source Offset 0 Column "No" Storage Text Scale 0
  197. Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  198. OrgName 982511 "Id No" Origin Source Offset 1 Column "Id No" Storage Text
  199. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  200. OrgName 982513 "Name" Origin Source Offset 2 Column "Name" Storage Text
  201. Scale 0 Size 52 Decimals 0 Class Description InputScale 0 TimeArray Off
  202. OrgName 982515 "Last Name" Origin Source Offset 3 Column "Last Name" Storage Text
  203. Scale 0 Size 32 Decimals 0 Class Description InputScale 0 TimeArray Off
  204. OrgName 982517 "First Name" Origin Source Offset 4 Column "First Name"
  205. Storage Text Scale 0 Size 32 Decimals 0 Class Description InputScale 0
  206. TimeArray Off
  207. OrgName 982519 "Employment Date" Origin Source Offset 5 Column "Employment Date"
  208. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  209. OrgName 982521 "Leaving Date" Origin Source Offset 6 Column "Leaving Date"
  210. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  211. OrgName 982523 "Department No" Origin Source Offset 7 Column "Department No"
  212. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  213. TimeArray Off
  214. OrgName 982525 "Group No 1" Origin Source Offset 8 Column "Group No 1"
  215. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  216. TimeArray Off
  217. OrgName 982527 "Group No 2" Origin Source Offset 9 Column "Group No 2"
  218. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  219. TimeArray Off
  220. OrgName 982529 "Group No 3" Origin Source Offset 10 Column "Group No 3"
  221. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  222. TimeArray Off
  223. OrgName 982531 "Time Object No" Origin Source Offset 11 Column "Time Object No"
  224. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  225. TimeArray Off
  226. OrgName 982533 "Std Vac Entitlem Days" Origin Source Offset 12 Column "Std Vac Entitlem Days"
  227. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  228. OrgName 982535 "Handic Vac Entitlem Days" Origin Source Offset 13 Column "Handic Vac Entitlem Days"
  229. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  230. OrgName 982537 "Spec Vac 2 Entitlem Days" Origin Source Offset 14 Column "Spec Vac 2 Entitlem Days"
  231. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  232. OrgName 982539 "Spec Vac 3 Entitlem Days" Origin Source Offset 15 Column "Spec Vac 3 Entitlem Days"
  233. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  234. OrgName 982541 "Std Vac Days Car Fwd Prev Y" Origin Source Offset 16 Column "Std Vac Days Car Fwd Prev Y"
  235. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  236. OrgName 982543 "Handic Vac 1 Days Car Fwd" Origin Source Offset 17 Column "Handic Vac 1 Days Car Fwd"
  237. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  238. OrgName 982545 "Special Vac 2 Days Car Fwd" Origin Source Offset 18 Column "Special Vac 2 Days Car Fwd"
  239. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  240. OrgName 982547 "Special Vac 3 Days Car Fwd" Origin Source Offset 19 Column "Special Vac 3 Days Car Fwd"
  241. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  242. OrgName 982549 "Rem Vac Days Taken" Origin Source Offset 20 Column "Rem Vac Days Taken"
  243. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  244. OrgName 982551 "Rem Vac Days Planned" Origin Source Offset 21 Column "Rem Vac Days Planned"
  245. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  246. OrgName 982553 "Standard Vac Entitlement Hrs" Origin Source Offset 22 Column "Standard Vac Entitlement Hrs"
  247. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  248. OrgName 982555 "Handic Vac 1 Entitlement Hrs" Origin Source Offset 23 Column "Handic Vac 1 Entitlement Hrs"
  249. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  250. OrgName 982557 "Special Vac 2 Entitlement (h)" Origin Source Offset 24
  251. Column "Special Vac 2 Entitlement (h)" Storage Float64 Scale 0 Size 8 Decimals 0
  252. Class Quantity InputScale 0 TimeArray Off
  253. OrgName 982559 "Std Vac Car Fwd Prev Y (h)" Origin Source Offset 25 Column "Std Vac Car Fwd Prev Y (h)"
  254. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  255. OrgName 982561 "Handic Vac 1 Hours Car Fwd" Origin Source Offset 26 Column "Handic Vac 1 Hours Car Fwd"
  256. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  257. OrgName 982563 "Spec Vac 2 Hours Car Fwd" Origin Source Offset 27 Column "Spec Vac 2 Hours Car Fwd"
  258. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  259. OrgName 982565 "Rem Vac Hours Taken" Origin Source Offset 28 Column "Rem Vac Hours Taken"
  260. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  261. OrgName 982567 "Rem Vac Hrs Planned" Origin Source Offset 29 Column "Rem Vac Hrs Planned"
  262. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  263. OrgName 982569 "Rem Handic Vac Days Taken" Origin Source Offset 30 Column "Rem Handic Vac Days Taken"
  264. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  265. OrgName 982571 "Rem Handic Vac Days Planned" Origin Source Offset 31 Column "Rem Handic Vac Days Planned"
  266. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  267. OrgName 982573 "Values Car Fwd Inactive" Origin Source Offset 32 Column "Values Car Fwd Inactive"
  268. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  269. OrgName 982575 "Present" Origin Source Offset 33 Column "Present" Storage Int16
  270. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  271. OrgName 982577 "Absent" Origin Source Offset 34 Column "Absent" Storage Int16
  272. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  273. OrgName 982579 "Department Code" Origin Source Offset 35 Column "Department Code"
  274. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  275. TimeArray Off
  276. OrgName 982581 "Task Type Group" Origin Source Offset 36 Column "Task Type Group"
  277. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  278. TimeArray Off
  279. OrgName 982583 "Efficiency %" Origin Source Offset 37 Column "Efficiency %"
  280. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  281. TimeArray Off
  282. OrgName 982585 "Resource No" Origin Source Offset 38 Column "Resource No"
  283. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  284. TimeArray Off
  285. OrgName 982587 "Rating Pereas" Origin Source Offset 39 Column "Rating Pereas"
  286. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  287. TimeArray Off
  288. OrgName 982589 "Urlaubsanspruch" Origin Source Offset 40 Column "Urlaubsanspruch"
  289. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  290. OrgName 982591 "Urlaubsübertrag Vorjahr" Origin Source Offset 41 Column "Urlaubsübertrag Vorjahr"
  291. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  292. OrgName 982593 "Gesamturlaubsanspruch" Origin Source Offset 42 Column "Gesamturlaubsanspruch"
  293. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  294. OrgName 982595 "Resturlaub" Origin Source Offset 43 Column "Resturlaub"
  295. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  296. OrgName 982597 "bisher genommener Urlaub" Origin Source Offset 44 Column "bisher genommener Urlaub"
  297. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  298. OrgName 982599 "Resturlaub bis Jahresende" Origin Source Offset 45 Column "Resturlaub bis Jahresende"
  299. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  300. OrgName 982601 "geplanter Urlaub" Origin Source Offset 46 Column "geplanter Urlaub"
  301. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  302. OrgName 982603 "Hauptbetrieb" Origin Source Offset 47 Column "Hauptbetrieb"
  303. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  304. OrgName 982605 "Standort" Origin Source Offset 48 Column "Standort" Storage Text
  305. Scale 0 Size 4 Decimals 0 Class Description InputScale 0 TimeArray Off
  306. OrgName 982607 "Monteur_Gruppe_ori" Origin Source Offset 49 Column "Monteur_Gruppe_ori"
  307. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  308. TimeArray Off
  309. OrgName 982609 "Heute" Origin Source Offset 50 Column "Datum" Storage Int32
  310. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  311. OrgName 982611 "Tage Heute Leaving Date" Origin Source Offset 51 Column "Tage Heute Leaving Date"
  312. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  313. OrgName 982613 "Monteur_Gruppe" Origin Source Offset 52 Column "Monteur_Gruppe"
  314. Storage Text Scale 0 Size 25 Decimals 0 Class Description InputScale 0
  315. TimeArray Off
  316. OrgName 982615 "Monteur" Origin Source Offset 53 Column "Monteur" Storage Text
  317. Scale 0 Size 63 Decimals 0 Class Description InputScale 0 TimeArray Off
  318. OrgName 987283 "produktiv/unproduktiv" Origin Source Offset 54 Column "produktiv/unproduktiv"
  319. Storage Text Scale 0 Size 18 Decimals 0 Class Description InputScale 0
  320. TimeArray Off
  321. DataSource 985057 "AHA_Zeit_Mitarbeiter_Urlaub" Separator " " SourceType DataSource
  322. CharacterSet Default DecimalSep "," Thousandsep "." Columns True Timing PopYesCreateDefault
  323. Source "D:\GAPS_BMW\Portal\System\IQD\AHA\Zeit\AHA_Zeit_Mitarbeiter_Urlaub.iqd"
  324. SQL 'select T1."No_" as c1,
  325. T1."ID No_" as c2,
  326. T1."Name" as c3,
  327. '
  328. 'T1."Last Name" as c4,
  329. T1."First Name" as c5,
  330. T1."Employment Dat'
  331. 'e" as c6,
  332. T1."Leaving Date" as c7,
  333. T1."Department No_" as c8,
  334. '
  335. ' T1."Group No_ 1" as c9,
  336. T1."Group No_ 2" as c10,
  337. T1."Group N'
  338. 'o_ 3" as c11,
  339. T1."Time Object No_" as c12,
  340. (cast_float(T1."Std_'
  341. ' Vac_ Entitlem_ Days")) as c13,
  342. (cast_float(T1."Handic_ Vac_ Entitl'
  343. 'em_ Days")) as c14,
  344. (cast_float(T1."Spec_ Vac_2 Entitlem_ Days")) a'
  345. 's c15,
  346. (cast_float(T1."Spec_ Vac_3 Entitlem_ Days")) as c16,
  347. (c'
  348. 'ast_float(T1."Std_Vac_Days Car_Fwd_Prev_Y_")) as c17,
  349. (cast_float(T'
  350. '1."Handic_ Vac_1 Days Car_ Fwd_")) as c18,
  351. (cast_float(T1."Special '
  352. 'Vac_2 Days Car_ Fwd_")) as c19,
  353. (cast_float(T1."Special Vac_3 Days '
  354. 'Car_ Fwd_")) as c20,
  355. (cast_float(T1."Rem_ Vac_ Days taken")) as c21'
  356. ',
  357. (cast_float(T1."Rem_ Vac_ Days planned")) as c22,
  358. (cast_float'
  359. '(T1."Standard Vac_ Entitlement Hrs_")) as c23,
  360. (cast_float(T1."Hand'
  361. 'ic_ Vac_1 Entitlement Hrs_")) as c24,
  362. (cast_float(T1."Special Vac_2'
  363. ' Entitlement (H)")) as c25,
  364. (cast_float(T1."Std_ Vac_Car_Fwd_Prev_Y'
  365. '_(H)")) as c26,
  366. (cast_float(T1."Handic_ Vac_1 Hours Car_ Fwd_")) as'
  367. ' c27,
  368. (cast_float(T1."Spec_ Vac_2 Hours Car_ Fwd_")) as c28,
  369. (c'
  370. 'ast_float(T1."Rem_ Vac_ Hours taken")) as c29,
  371. (cast_float(T1."Rem_'
  372. ' Vac_ Hrs_ Planned")) as c30,
  373. (cast_float(T1."Rem_ Handic_ Vac_ Day'
  374. 's taken")) as c31,
  375. (cast_float(T1."Rem_ Handic_ Vac_ Days planned")'
  376. ') as c32,
  377. T1."Values Car_ Fwd_ Inactive" as c33,
  378. T1."Present" a'
  379. 's c34,
  380. T1."Absent" as c35,
  381. T1."Department Code" as c36,
  382. T1.'
  383. '"Task Type Group" as c37,
  384. T1."Efficiency %" as c38,
  385. T1."Resourc'
  386. 'e No_" as c39,
  387. T1."Rating PEREAS" as c40,
  388. ((cast_float(T1."Std_'
  389. ' Vac_ Entitlem_ Days"))) as c41,
  390. ((cast_float(T1."Std_Vac_Days Car_'
  391. 'Fwd_Prev_Y_"))) as c42,
  392. (((cast_float(T1."Std_ Vac_ Entitlem_ Days"'
  393. ')))) + (((cast_float(T1."Std_Vac_Days Car_Fwd_Prev_Y_")))) as c43,
  394. '
  395. '((cast_float(T1."Rem_ Vac_ Days taken"))) as c44,
  396. ((((cast_float(T1'
  397. '."Std_ Vac_ Entitlem_ Days")))) + (((cast_float(T1."Std_Vac_Days Car_Fw'
  398. 'd_Prev_Y_"))))) - (((cast_float(T1."Rem_ Vac_ Days taken")))) + ((cast_'
  399. 'float(T1."Spec_ Vac_2 Entitlem_ Days"))) as c45,
  400. ((cast_float(T1."R'
  401. 'em_ Vac_ Days planned"))) as c46,
  402. (((cast_float(T1."Rem_ Vac_ Days '
  403. 'taken")))) - (((cast_float(T1."Rem_ Vac_ Days planned")))) as c47,
  404. '
  405. "'1' as c48,
  406. (od_left(T1." '"Department No_",2)) as c49,
  407. T1."Pay Group No_" as c50,
  408. (now())'
  409. " - INTERVAL '001 10:00:00.000' as c51,
  410. (extract(DAY FROM (now()) - "
  411. 'T1."Leaving Date")) as c52,
  412. CASE WHEN ((((extract(DAY FROM (now()) '
  413. '- T1."Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('augetretene Mitarbeiter') WHEN (T1."
  414. '"Pay Group No_" = ' "'WMOZ') THEN ('WMOM') ELSE (T1." '"Pay Group No_") END as c53,
  415. T1."First Name" || '
  416. "' ' || T1." '"Last Name" as c54,
  417. CASE WHEN (T1."Task Type Group" IN ('
  418. "'MONTEURE','PROD MEIST')) THEN ('prod. Personal') WHEN (T1." '"Task Type Group" IN ('
  419. "'VERWALTUNG')) THEN ('unprod. Personal') ELSE null END as c55
  420. from " '"DMS1"."dbo"."AH Augsburg$Employee_T" T1
  421. where (((T1."Leaving Date" >= '
  422. '(@CURRENT_DATE)) or (T1."Leaving Date" = TIMESTAMP ' "'1753-01-01 00:00:00.000')) and (T1."
  423. '"No_" <> ' "'65517'))
  424. order by c1 asc
  425. " Isolation 0 UserEditable False
  426. SourceSignonList 643419 EndList ImrName "D:\GAPS_BMW\Portal\System\IQD\AHA\Zeit\AHA_Zeit_Mitarbeiter_Urlaub.imr"
  427. Stamp 1560930478 EnableMultiProcess False SetCurrent False ServerSource False
  428. Speed False Presummarized False
  429. OrgName 985059 "No" Origin Source Offset 0 Column "No" Storage Text Scale 0
  430. Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  431. OrgName 985061 "Id No" Origin Source Offset 1 Column "Id No" Storage Text
  432. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  433. OrgName 985063 "Name" Origin Source Offset 2 Column "Name" Storage Text
  434. Scale 0 Size 52 Decimals 0 Class Description InputScale 0 TimeArray Off
  435. OrgName 985065 "Last Name" Origin Source Offset 3 Column "Last Name" Storage Text
  436. Scale 0 Size 32 Decimals 0 Class Description InputScale 0 TimeArray Off
  437. OrgName 985067 "First Name" Origin Source Offset 4 Column "First Name"
  438. Storage Text Scale 0 Size 32 Decimals 0 Class Description InputScale 0
  439. TimeArray Off
  440. OrgName 985069 "Employment Date" Origin Source Offset 5 Column "Employment Date"
  441. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  442. OrgName 985071 "Leaving Date" Origin Source Offset 6 Column "Leaving Date"
  443. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  444. OrgName 985073 "Department No" Origin Source Offset 7 Column "Department No"
  445. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  446. TimeArray Off
  447. OrgName 985075 "Group No 1" Origin Source Offset 8 Column "Group No 1"
  448. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  449. TimeArray Off
  450. OrgName 985077 "Group No 2" Origin Source Offset 9 Column "Group No 2"
  451. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  452. TimeArray Off
  453. OrgName 985079 "Group No 3" Origin Source Offset 10 Column "Group No 3"
  454. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  455. TimeArray Off
  456. OrgName 985081 "Time Object No" Origin Source Offset 11 Column "Time Object No"
  457. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  458. TimeArray Off
  459. OrgName 985083 "Std Vac Entitlem Days" Origin Source Offset 12 Column "Std Vac Entitlem Days"
  460. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  461. OrgName 985085 "Handic Vac Entitlem Days" Origin Source Offset 13 Column "Handic Vac Entitlem Days"
  462. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  463. OrgName 985087 "Spec Vac 2 Entitlem Days" Origin Source Offset 14 Column "Spec Vac 2 Entitlem Days"
  464. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  465. OrgName 985089 "Spec Vac 3 Entitlem Days" Origin Source Offset 15 Column "Spec Vac 3 Entitlem Days"
  466. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  467. OrgName 985091 "Std Vac Days Car Fwd Prev Y" Origin Source Offset 16 Column "Std Vac Days Car Fwd Prev Y"
  468. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  469. OrgName 985093 "Handic Vac 1 Days Car Fwd" Origin Source Offset 17 Column "Handic Vac 1 Days Car Fwd"
  470. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  471. OrgName 985095 "Special Vac 2 Days Car Fwd" Origin Source Offset 18 Column "Special Vac 2 Days Car Fwd"
  472. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  473. OrgName 985097 "Special Vac 3 Days Car Fwd" Origin Source Offset 19 Column "Special Vac 3 Days Car Fwd"
  474. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  475. OrgName 985099 "Rem Vac Days Taken" Origin Source Offset 20 Column "Rem Vac Days Taken"
  476. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  477. OrgName 985101 "Rem Vac Days Planned" Origin Source Offset 21 Column "Rem Vac Days Planned"
  478. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  479. OrgName 985103 "Standard Vac Entitlement Hrs" Origin Source Offset 22 Column "Standard Vac Entitlement Hrs"
  480. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  481. OrgName 985105 "Handic Vac 1 Entitlement Hrs" Origin Source Offset 23 Column "Handic Vac 1 Entitlement Hrs"
  482. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  483. OrgName 985107 "Special Vac 2 Entitlement (h)" Origin Source Offset 24
  484. Column "Special Vac 2 Entitlement (h)" Storage Float64 Scale 0 Size 8 Decimals 0
  485. Class Quantity InputScale 0 TimeArray Off
  486. OrgName 985109 "Std Vac Car Fwd Prev Y (h)" Origin Source Offset 25 Column "Std Vac Car Fwd Prev Y (h)"
  487. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  488. OrgName 985111 "Handic Vac 1 Hours Car Fwd" Origin Source Offset 26 Column "Handic Vac 1 Hours Car Fwd"
  489. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  490. OrgName 985113 "Spec Vac 2 Hours Car Fwd" Origin Source Offset 27 Column "Spec Vac 2 Hours Car Fwd"
  491. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  492. OrgName 985115 "Rem Vac Hours Taken" Origin Source Offset 28 Column "Rem Vac Hours Taken"
  493. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  494. OrgName 985117 "Rem Vac Hrs Planned" Origin Source Offset 29 Column "Rem Vac Hrs Planned"
  495. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  496. OrgName 985119 "Rem Handic Vac Days Taken" Origin Source Offset 30 Column "Rem Handic Vac Days Taken"
  497. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  498. OrgName 985121 "Rem Handic Vac Days Planned" Origin Source Offset 31 Column "Rem Handic Vac Days Planned"
  499. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  500. OrgName 985123 "Values Car Fwd Inactive" Origin Source Offset 32 Column "Values Car Fwd Inactive"
  501. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  502. OrgName 985125 "Present" Origin Source Offset 33 Column "Present" Storage Int16
  503. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  504. OrgName 985127 "Absent" Origin Source Offset 34 Column "Absent" Storage Int16
  505. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  506. OrgName 985129 "Department Code" Origin Source Offset 35 Column "Department Code"
  507. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  508. TimeArray Off
  509. OrgName 985131 "Task Type Group" Origin Source Offset 36 Column "Task Type Group"
  510. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  511. TimeArray Off
  512. OrgName 985133 "Efficiency %" Origin Source Offset 37 Column "Efficiency %"
  513. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  514. TimeArray Off
  515. OrgName 985135 "Resource No" Origin Source Offset 38 Column "Resource No"
  516. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  517. TimeArray Off
  518. OrgName 985137 "Rating Pereas" Origin Source Offset 39 Column "Rating Pereas"
  519. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  520. TimeArray Off
  521. OrgName 985139 "Urlaubsanspruch" Origin Source Offset 40 Column "Urlaubsanspruch"
  522. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  523. OrgName 985141 "Urlaubsübertrag Vorjahr" Origin Source Offset 41 Column "Urlaubsübertrag Vorjahr"
  524. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  525. OrgName 985143 "Gesamturlaubsanspruch" Origin Source Offset 42 Column "Gesamturlaubsanspruch"
  526. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  527. OrgName 985145 "Resturlaub" Origin Source Offset 43 Column "Resturlaub"
  528. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  529. OrgName 985147 "bisher genommener Urlaub" Origin Source Offset 44 Column "bisher genommener Urlaub"
  530. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  531. OrgName 985149 "Resturlaub bis Jahresende" Origin Source Offset 45 Column "Resturlaub bis Jahresende"
  532. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  533. OrgName 985151 "geplanter Urlaub" Origin Source Offset 46 Column "geplanter Urlaub"
  534. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  535. OrgName 985153 "Hauptbetrieb" Origin Source Offset 47 Column "Hauptbetrieb_ori"
  536. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  537. OrgName 985155 "Standort" Origin Source Offset 48 Column "Standort" Storage Text
  538. Scale 0 Size 4 Decimals 0 Class Description InputScale 0 TimeArray Off
  539. OrgName 985157 "Monteur_Gruppe_ori" Origin Source Offset 49 Column "Monteur_Gruppe_ori"
  540. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  541. TimeArray Off
  542. OrgName 985159 "Heute" Origin Source Offset 50 Column "Datum" Storage Int32
  543. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  544. OrgName 985161 "Tage Heute Leaving Date" Origin Source Offset 51 Column "Tage Heute Leaving Date"
  545. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  546. OrgName 985163 "Monteur_Gruppe" Origin Source Offset 52 Column "Monteur_Gruppe"
  547. Storage Text Scale 0 Size 25 Decimals 0 Class Description InputScale 0
  548. TimeArray Off
  549. OrgName 985165 "Monteur" Origin Source Offset 53 Column "Monteur" Storage Text
  550. Scale 0 Size 63 Decimals 0 Class Description InputScale 0 TimeArray Off
  551. OrgName 987285 "produktiv/unproduktiv" Origin Source Offset 54 Column "produktiv/unproduktiv"
  552. Storage Text Scale 0 Size 18 Decimals 0 Class Description InputScale 0
  553. TimeArray Off
  554. OrgName 985167 "Hauptbetrieb" Origin Calculated Offset 55 Column "Hauptbetrieb"
  555. Storage Default Scale 0 Size 1 Decimals 0 Class Description InputScale 0
  556. TimeArray Off Calc '2'
  557. DataSource 986697 "Zeit_Mitarbeiter_Time_Entry_für_Abwesenheit" Separator " "
  558. SourceType DataSource CharacterSet Default DecimalSep "," Thousandsep "."
  559. Columns True Timing PopYesCreateDefault Source "D:\GAPS_BMW\Portal\System\IQD\AHR\Zeit\Zeit_Mitarbeiter_Time_Entry_für_Abwesenheit.iqd"
  560. SQL "select c1 as c1,
  561. c2 as c2,
  562. c3 as c3,
  563. c4 as c4,
  564. c5 as c5"
  565. ",
  566. c6 as c6,
  567. c7 as c7,
  568. c8 as c8,
  569. c9 as c9,
  570. c10 as c1"
  571. "0,
  572. c11 as c11,
  573. c12 as c12,
  574. c13 as c13,
  575. c14 as c14,
  576. "
  577. "c15 as c15,
  578. c16 as c16,
  579. c17 as c17,
  580. c18 as c18,
  581. c19 as "
  582. "c19,
  583. c20 as c20,
  584. c21 as c21,
  585. c22 as c22,
  586. c23 as c23,
  587. "
  588. " c24 as c24,
  589. c25 as c25,
  590. c26 as c26,
  591. c27 as c27,
  592. c28 a"
  593. "s c28,
  594. c29 as c29,
  595. c30 as c30,
  596. c31 as c31,
  597. c32 as c32,
  598. "
  599. " c33 as c33,
  600. c34 as c34,
  601. c35 as c35,
  602. c36 as c36,
  603. c37"
  604. " as c37,
  605. c38 as c38,
  606. c39 as c39,
  607. c40 as c40,
  608. c41 as c41"
  609. ",
  610. c42 as c42,
  611. c43 as c43,
  612. c44 as c44,
  613. c45 as c45,
  614. c"
  615. "46 as c46,
  616. c47 as c47,
  617. c48 as c48,
  618. c49 as c49,
  619. c50 as c"
  620. "50,
  621. c51 as c51,
  622. c52 as c52,
  623. c53 as c53,
  624. c54 as c54,
  625. "
  626. " c55 as c55,
  627. c56 as c56,
  628. c57 as c57,
  629. c58 as c58,
  630. c59 as"
  631. " c59,
  632. c60 as c60,
  633. c61 as c61,
  634. c62 as c62,
  635. c63 as c63,
  636. "
  637. " c64 as c64,
  638. c65 as c65,
  639. c66 as c66,
  640. c67 as c67,
  641. c68 "
  642. "as c68,
  643. c69 as c69,
  644. c70 as c70,
  645. c71 as c71,
  646. c72 as c72,"
  647. "
  648. c73 as c73,
  649. c74 as c74,
  650. c75 as c75,
  651. c76 as c76,
  652. c7"
  653. "7 as c77,
  654. c78 as c78,
  655. c79 as c79,
  656. c80 as c80,
  657. c81 as c8"
  658. "1,
  659. c82 as c82,
  660. c83 as c83,
  661. c84 as c84,
  662. c85 as c85,
  663. "
  664. "c86 as c86,
  665. c87 as c87,
  666. c88 as c88,
  667. c89 as c89,
  668. c90 as "
  669. "c90,
  670. c91 as c91,
  671. c92 as c92,
  672. c93 as c93,
  673. c94 as c94,
  674. "
  675. " c95 as c95,
  676. c96 as c96,
  677. c97 as c97,
  678. c98 as c98,
  679. c99 a"
  680. "s c99,
  681. c100 as c100,
  682. c101 as c101,
  683. c102 as c102,
  684. c103 a"
  685. "s c103,
  686. c104 as c104,
  687. c105 as c105,
  688. c106 as c106,
  689. c107 "
  690. "as c107,
  691. c108 as c108,
  692. c109 as c109,
  693. c110 as c110,
  694. c111"
  695. " as c111,
  696. c112 as c112,
  697. c113 as c113,
  698. c114 as c114,
  699. c11"
  700. "5 as c115,
  701. c116 as c116,
  702. c117 as c117,
  703. c118 as c118,
  704. c1"
  705. "19 as c119,
  706. c120 as c120,
  707. c121 as c121,
  708. c122 as c122,
  709. c"
  710. "123 as c123,
  711. c124 as c124,
  712. XSUM(c124 for c49,c1) as c125,
  713. C"
  714. "ASE WHEN (XSUM(c124 for c49,c1) <> 0) THEN c108 ELSE (0) END as c126,
  715. "
  716. " CASE WHEN (XSUM(c124 for c49,c1) <> 0) THEN c109 ELSE (0) END as c12"
  717. "7,
  718. CASE WHEN (XSUM(c124 for c49,c1) <> 0) THEN c110 ELSE (0) END as"
  719. " c128,
  720. CASE WHEN (XSUM(c124 for c49,c1) <> 0) THEN c111 ELSE (0) EN"
  721. "D as c129
  722. from
  723. (select c1 as c1,
  724. c2 as c2,
  725. c3 as c3,
  726. c4 as"
  727. " c4,
  728. c5 as c5,
  729. c6 as c6,
  730. c7 as c7,
  731. c8 as c8,
  732. c9 as "
  733. "c9,
  734. c10 as c10,
  735. c11 as c11,
  736. c12 as c12,
  737. c13 as c13,
  738. "
  739. " c14 as c14,
  740. c15 as c15,
  741. c16 as c16,
  742. c17 as c17,
  743. c18 as"
  744. " c18,
  745. c19 as c19,
  746. c20 as c20,
  747. c21 as c21,
  748. c22 as c22,
  749. "
  750. " c23 as c23,
  751. c24 as c24,
  752. c25 as c25,
  753. c26 as c26,
  754. c27 "
  755. "as c27,
  756. c28 as c28,
  757. c29 as c29,
  758. c30 as c30,
  759. c31 as c31,"
  760. "
  761. c32 as c32,
  762. c33 as c33,
  763. c34 as c34,
  764. c35 as c35,
  765. c3"
  766. "6 as c36,
  767. c37 as c37,
  768. c38 as c38,
  769. c39 as c39,
  770. c40 as c4"
  771. "0,
  772. c41 as c41,
  773. c42 as c42,
  774. c43 as c43,
  775. c44 as c44,
  776. "
  777. "c45 as c45,
  778. c46 as c46,
  779. c47 as c47,
  780. c48 as c48,
  781. c49 as "
  782. "c49,
  783. c50 as c50,
  784. c51 as c51,
  785. c52 as c52,
  786. c53 as c53,
  787. "
  788. " c54 as c54,
  789. c55 as c55,
  790. c56 as c56,
  791. c57 as c57,
  792. c58 a"
  793. "s c58,
  794. c59 as c59,
  795. c60 as c60,
  796. c61 as c61,
  797. c62 as c62,
  798. "
  799. " c63 as c63,
  800. c64 as c64,
  801. c65 as c65,
  802. c66 as c66,
  803. c67"
  804. " as c67,
  805. c68 as c68,
  806. c69 as c69,
  807. c70 as c70,
  808. c71 as c71"
  809. ",
  810. c72 as c72,
  811. c73 as c73,
  812. c74 as c74,
  813. c75 as c75,
  814. R"
  815. "SUM(c75 for c49) as c76,
  816. RSUM(c75) as c77,
  817. c78 as c78,
  818. c79 "
  819. "as c79,
  820. c80 as c80,
  821. c81 as c81,
  822. c82 as c82,
  823. c83 as c83,"
  824. "
  825. c84 as c84,
  826. c85 as c85,
  827. c86 as c86,
  828. c87 as c87,
  829. c8"
  830. "8 as c88,
  831. c89 as c89,
  832. c90 as c90,
  833. c91 as c91,
  834. c92 as c9"
  835. "2,
  836. c93 as c93,
  837. c94 as c94,
  838. c95 as c95,
  839. c96 as c96,
  840. "
  841. "c97 as c97,
  842. c98 as c98,
  843. c99 as c99,
  844. c100 as c100,
  845. c101 "
  846. "as c101,
  847. c102 as c102,
  848. c103 as c103,
  849. c104 as c104,
  850. c105"
  851. " as c105,
  852. c106 as c106,
  853. c107 as c107,
  854. c108 as c108,
  855. c10"
  856. "9 as c109,
  857. c110 as c110,
  858. c111 as c111,
  859. c112 as c112,
  860. c1"
  861. "13 as c113,
  862. c114 as c114,
  863. c115 as c115,
  864. c116 as c116,
  865. c"
  866. "117 as c117,
  867. c118 as c118,
  868. c119 as c119,
  869. c120 as c120,
  870. "
  871. "c121 as c121,
  872. c122 as c122,
  873. c123 as c123,
  874. c124 as c124
  875. from"
  876. "
  877. (select c137 as c1,
  878. c249 as c2,
  879. c248 as c3,
  880. c247 as c4,
  881. "
  882. " c246 as c5,
  883. c245 as c6,
  884. c244 as c7,
  885. c243 as c8,
  886. c242"
  887. " as c9,
  888. c241 as c10,
  889. c240 as c11,
  890. c239 as c12,
  891. c214 as "
  892. "c13,
  893. c238 as c14,
  894. c237 as c15,
  895. c236 as c16,
  896. c213 as c17"
  897. ",
  898. c235 as c18,
  899. c234 as c19,
  900. c233 as c20,
  901. c211 as c21,
  902. "
  903. " c209 as c22,
  904. c232 as c23,
  905. c231 as c24,
  906. c230 as c25,
  907. "
  908. "c229 as c26,
  909. c228 as c27,
  910. c227 as c28,
  911. c226 as c29,
  912. c22"
  913. "5 as c30,
  914. c224 as c31,
  915. c223 as c32,
  916. c222 as c33,
  917. c221 a"
  918. "s c34,
  919. c220 as c35,
  920. c219 as c36,
  921. c218 as c37,
  922. c217 as c"
  923. "38,
  924. c216 as c39,
  925. c215 as c40,
  926. c214 as c41,
  927. c213 as c42,"
  928. "
  929. c212 as c43,
  930. c211 as c44,
  931. c210 as c45,
  932. c209 as c46,
  933. "
  934. " c208 as c47,
  935. c207 as c48,
  936. c138 as c49,
  937. c206 as c50,
  938. c"
  939. "205 as c51,
  940. c182 as c52,
  941. c204 as c53,
  942. c203 as c54,
  943. c202"
  944. " as c55,
  945. c201 as c56,
  946. c200 as c57,
  947. c199 as c58,
  948. c198 as"
  949. " c59,
  950. c197 as c60,
  951. c196 as c61,
  952. c195 as c62,
  953. c194 as c6"
  954. "3,
  955. c193 as c64,
  956. c192 as c65,
  957. c191 as c66,
  958. c190 as c67,
  959. "
  960. " c189 as c68,
  961. c188 as c69,
  962. c187 as c70,
  963. c186 as c71,
  964. "
  965. " c185 as c72,
  966. c184 as c73,
  967. c183 as c74,
  968. c181 as c75,
  969. c1"
  970. "80 as c78,
  971. c179 as c79,
  972. c178 as c80,
  973. c177 as c81,
  974. c176 "
  975. "as c82,
  976. c175 as c83,
  977. c174 as c84,
  978. c173 as c85,
  979. c172 as "
  980. "c86,
  981. c171 as c87,
  982. c170 as c88,
  983. c169 as c89,
  984. c168 as c90"
  985. ",
  986. c167 as c91,
  987. c166 as c92,
  988. c165 as c93,
  989. c164 as c94,
  990. "
  991. " c163 as c95,
  992. '1' as c96,
  993. c162 as c97,
  994. c161 as c98,
  995. c"
  996. "160 as c99,
  997. c159 as c100,
  998. c158 as c101,
  999. c157 as c102,
  1000. c"
  1001. "156 as c103,
  1002. c155 as c104,
  1003. c154 as c105,
  1004. '' as c106,
  1005. c1"
  1006. "53 as c107,
  1007. c143 as c108,
  1008. c142 as c109,
  1009. c141 as c110,
  1010. c"
  1011. "140 as c111,
  1012. c152 as c112,
  1013. c151 as c113,
  1014. c150 as c114,
  1015. "
  1016. "c149 as c115,
  1017. c148 as c116,
  1018. c147 as c117,
  1019. CASE WHEN ((XSUM("
  1020. "c187 for c139)) <> (XSUM(c175 for c139))) THEN (c146) ELSE (0) END as c"
  1021. "118,
  1022. XSUM(c187 for c139) as c119,
  1023. XSUM(c175 for c139) as c120,
  1024. "
  1025. " XSUM(c180 for c139) as c121,
  1026. CASE WHEN (((XSUM(c187 for c139)) "
  1027. "<> (XSUM(c175 for c139))) and ((XSUM(c187 for c139)) <> (XSUM(c180 for "
  1028. "c139)))) THEN (c146) ELSE (0) END as c122,
  1029. c145 as c123,
  1030. c144 a"
  1031. 's c124
  1032. from
  1033. (select T1."No_" as c137,
  1034. T2."Current Date" as c138,
  1035. '
  1036. ' ((asciiz(extract(YEAR FROM T2."Current Date"),4) || ' "'-' || asciiz(extract(MONTH FROM T2."
  1037. '"Current Date"),2) || ' "'-' || asciiz(extract(DAY FROM T2." '"Current Date"),2)) || (T1."First Name" || '
  1038. "' ' || T1." '"Last Name")) as c139,
  1039. CASE WHEN (T2."Time Account No_" IN ('
  1040. "'673','674')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c140,
  1041. CASE WHEN (T2."Time '
  1042. 'Account No_" IN (' "'672')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c141,
  1043. CASE WHEN (T2."Time '
  1044. 'Account No_" IN (' "'671')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c142,
  1045. CASE WHEN (T2."Time '
  1046. 'Account No_" IN (' "'670')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c143,
  1047. CASE WHEN ((CASE WHE'
  1048. 'N (T2."Time Account No_" IN (' "'1200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) <> 0) THEN ((CASE WHEN (T2."Time'
  1049. ' Account No_" IN (' "'1200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) / (CASE WHEN (T2."Time Account N'
  1050. 'o_" IN (' "'1200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END)) ELSE (0) END as c144,
  1051. CASE '
  1052. 'WHEN (T2."Time Account No_" IN (' "'655')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c145,
  1053. (((CASE WHEN (T2."Ti'
  1054. 'me Account No_" IN (' "'1200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) * 12 * (((cast_float(T1."Efficie'
  1055. 'ncy %"))) / 100)) * 0.8) * (CASE WHEN (((CASE WHEN ((od_left(T1."Depart'
  1056. 'ment No_",2)) = ' "'90') THEN ('55') ELSE ((od_left(T1." '"Department No_",2))) END) IN ('
  1057. "'40')) and ((CASE WHEN ((((extract(DAY FROM (now()) - T1." '"Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP '
  1058. "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') ELSE (T1."
  1059. '"Pay Group No_") END) IN (' "'WMOM','WMOE','AZG4','AZG3','AZG2','AZG1'))) THEN (8.99) WHEN (((CASE W"
  1060. 'HEN ((od_left(T1."Department No_",2)) = ' "'90') THEN ('55') ELSE ((od_left(T1."
  1061. '"Department No_",2))) END) IN (' "'40')) and ((CASE WHEN ((((extract(DAY FROM (now()) - T1."
  1062. '"Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') ELSE (T1."
  1063. '"Pay Group No_") END) IN (' "'WMOK','WMOL'))) THEN (9.95) WHEN (((CASE WHEN ((od_left(T1."
  1064. '"Department No_",2)) = ' "'90') THEN ('55') ELSE ((od_left(T1." '"Department No_",2))) END) IN ('
  1065. "'10','20','30','50')) and ((CASE WHEN ((((extract(DAY FROM (now()) - T1"
  1066. '."Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') ELSE (T1."
  1067. '"Pay Group No_") END) IN (' "'WMOM','WMOE','AZG4','AZG3','AZG2','AZG1'))) THEN (8.30) WHEN (((CASE W"
  1068. 'HEN ((od_left(T1."Department No_",2)) = ' "'90') THEN ('55') ELSE ((od_left(T1."
  1069. '"Department No_",2))) END) IN (' "'10','20','30','50')) and ((CASE WHEN ((((extract(DAY FROM (now()) - T1"
  1070. '."Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') ELSE (T1."
  1071. '"Pay Group No_") END) IN (' "'WMOK','WMOL'))) THEN (9.75) ELSE (0) END) as c146,
  1072. CASE WHEN (((CA"
  1073. 'SE WHEN ((od_left(T1."Department No_",2)) = ' "'90') THEN ('55') ELSE ((od_left(T1."
  1074. '"Department No_",2))) END) IN (' "'40')) and ((CASE WHEN ((((extract(DAY FROM (now()) - T1."
  1075. '"Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') ELSE (T1."
  1076. '"Pay Group No_") END) IN (' "'WMOM','WMOE','AZG4','AZG3','AZG2','AZG1'))) THEN (8.99) WHEN (((CASE W"
  1077. 'HEN ((od_left(T1."Department No_",2)) = ' "'90') THEN ('55') ELSE ((od_left(T1."
  1078. '"Department No_",2))) END) IN (' "'40')) and ((CASE WHEN ((((extract(DAY FROM (now()) - T1."
  1079. '"Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') ELSE (T1."
  1080. '"Pay Group No_") END) IN (' "'WMOK','WMOL'))) THEN (9.95) WHEN (((CASE WHEN ((od_left(T1."
  1081. '"Department No_",2)) = ' "'90') THEN ('55') ELSE ((od_left(T1." '"Department No_",2))) END) IN ('
  1082. "'10','20','30','50')) and ((CASE WHEN ((((extract(DAY FROM (now()) - T1"
  1083. '."Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') ELSE (T1."
  1084. '"Pay Group No_") END) IN (' "'WMOM','WMOE','AZG4','AZG3','AZG2','AZG1'))) THEN (8.30) WHEN (((CASE W"
  1085. 'HEN ((od_left(T1."Department No_",2)) = ' "'90') THEN ('55') ELSE ((od_left(T1."
  1086. '"Department No_",2))) END) IN (' "'10','20','30','50')) and ((CASE WHEN ((((extract(DAY FROM (now()) - T1"
  1087. '."Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') ELSE (T1."
  1088. '"Pay Group No_") END) IN (' "'WMOK','WMOL'))) THEN (9.75) ELSE (0) END as c147,
  1089. ((CASE WHEN (T2."
  1090. '"Time Account No_" IN (' "'1200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) * (((cast_float(T1."Efficiency %'
  1091. '"))) / 100)) * 0.75 as c148,
  1092. ((CASE WHEN (T2."Time Account No_" IN '
  1093. "('1200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) * 12 * (((cast_float(T1."Efficie'
  1094. 'ncy %"))) / 100)) * 0.8 as c149,
  1095. ((cast_float(T1."Efficiency %"))) '
  1096. "/ 100 as c150,
  1097. CASE WHEN ((CASE WHEN ((((extract(DAY FROM (now()) -"
  1098. ' T1."Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') ELSE (T1."
  1099. '"Pay Group No_") END) = ' "'WMOM') THEN (110) WHEN ((CASE WHEN ((((extract(DAY FROM (now()) - T1."
  1100. '"Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') ELSE (T1."
  1101. '"Pay Group No_") END) = ' "'WMOE') THEN (100) WHEN ((CASE WHEN ((((extract(DAY FROM (now()) - T1."
  1102. '"Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') ELSE (T1."
  1103. '"Pay Group No_") END) = ' "'WMOK') THEN (120) ELSE (0) END as c151,
  1104. CASE WHEN (T2."
  1105. '"Time Account No_" IN (' "'3500')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c152,
  1106. T1."First Name" || '
  1107. "' ' || T1." '"Last Name" as c153,
  1108. CASE WHEN (((now()) - INTERVAL '
  1109. "'001 10:00:00.000') BETWEEN ((cdatetime(T2." '"Current Date" - cinterval(extract(DAY FROM T2."Current Date") - 1)))) '
  1110. 'AND ((cdatetime(lastday(cdate(T2."Current Date")))))) THEN (T2."Current'
  1111. ' Date") ELSE null END as c154,
  1112. (cdatetime(lastday(cdate(T2."Current'
  1113. ' Date")))) as c155,
  1114. (cdatetime(T2."Current Date" - cinterval(extrac'
  1115. 't(DAY FROM T2."Current Date") - 1))) as c156,
  1116. CASE WHEN (T1."Task T'
  1117. 'ype Group" IN (' "'MONTEURE','PROD MEIST')) THEN ('prod. Personal') WHEN (T1."
  1118. '"Task Type Group" IN (' "'VERWALTUNG')) THEN ('unprod. Personal') ELSE null END as c157,
  1119. CAS"
  1120. 'E WHEN ((((extract(DAY FROM (now()) - T1."Leaving Date"))) > 0) and (T1'
  1121. '."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') ELSE (T1."
  1122. '"Pay Group No_") END as c158,
  1123. (extract(DAY FROM (now()) - T1."Leavi'
  1124. 'ng Date")) as c159,
  1125. (now()) - INTERVAL ' "'001 10:00:00.000' as c160,
  1126. T1."
  1127. '"Pay Group No_" as c161,
  1128. CASE WHEN ((od_left(T1."Department No_",2)'
  1129. ") = '90') THEN ('55') ELSE ((od_left(T1." '"Department No_",2))) END as c162,
  1130. CASE WHEN (T2."Time Account No_"'
  1131. " IN ('380')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c163,
  1132. CASE WHEN (T2."Time '
  1133. 'Account No_" IN (' "'378')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c164,
  1134. CASE WHEN (T2."Time '
  1135. 'Account No_" IN (' "'450')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c165,
  1136. CASE WHEN (T2."Time '
  1137. 'Account No_" IN (' "'359')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c166,
  1138. CASE WHEN (T2."Time '
  1139. 'Account No_" IN (' "'357')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c167,
  1140. CASE WHEN (T2."Time '
  1141. 'Account No_" IN (' "'356')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c168,
  1142. CASE WHEN (T2."Time '
  1143. 'Account No_" IN (' "'355')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c169,
  1144. CASE WHEN (T2."Time '
  1145. 'Account No_" IN (' "'354')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c170,
  1146. (CASE WHEN (T2."Time'
  1147. ' Account No_" IN (' "'350')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  1148. 'o_" IN (' "'352')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  1149. 'o_" IN (' "'353')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  1150. 'o_" IN (' "'351')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) as c171,
  1151. CASE WHEN (T2."Time'
  1152. ' Account No_" IN (' "'351')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c172,
  1153. CASE WHEN (T2."Time '
  1154. 'Account No_" IN (' "'353')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c173,
  1155. CASE WHEN (T2."Time '
  1156. 'Account No_" IN (' "'352')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c174,
  1157. CASE WHEN (T2."Time '
  1158. 'Account No_" IN (' "'350')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c175,
  1159. (CASE WHEN (T2."Time'
  1160. ' Account No_" IN (' "'370')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  1161. 'o_" IN (' "'371')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  1162. 'o_" IN (' "'372')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  1163. 'o_" IN (' "'373','374')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) as c176,
  1164. CASE WHEN (T2."Time'
  1165. ' Account No_" IN (' "'373','374')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c177,
  1166. CASE WHEN (T2."Time '
  1167. 'Account No_" IN (' "'372')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c178,
  1168. CASE WHEN (T2."Time '
  1169. 'Account No_" IN (' "'371')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c179,
  1170. CASE WHEN (T2."Time '
  1171. 'Account No_" IN (' "'370')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c180,
  1172. (CASE WHEN (T2."Time'
  1173. ' Account No_" IN (' "'200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) - (CASE WHEN (T2."Time Account N'
  1174. 'o_" IN (' "'300')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN ((((od_year(T2."Cur'
  1175. 'rent Date")) = (od_year((now())))) and ((od_month(T2."Current Date")) ='
  1176. ' 1)) and (T2."Time Account No_" IN (' "'1101'))) THEN (((cast_float(T2."
  1177. '"Time Account Value")))) ELSE (0) END) as c181,
  1178. T2."Time Account No'
  1179. '_" as c182,
  1180. CASE WHEN ((((od_year(T2."Current Date")) = (od_year((n'
  1181. 'ow())))) and ((od_month(T2."Current Date")) = 1)) and (T2."Time Account'
  1182. ' No_" IN (' "'1101'))) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c183,
  1183. CASE WHEN (T2."Time '
  1184. 'Account No_" IN (' "'300')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c184,
  1185. CASE WHEN (T2."Time '
  1186. 'Account No_" IN (' "'200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c185,
  1187. CASE WHEN (T2."Time '
  1188. 'Account No_" IN (' "'100')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c186,
  1189. CASE WHEN (T2."Time '
  1190. 'Account No_" IN (' "'1200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c187,
  1191. T3."Pay Type 1" as c'
  1192. '188,
  1193. T3."Character" as c189,
  1194. T3."Symbol" as c190,
  1195. T3."Descr'
  1196. 'iption 2" as c191,
  1197. T3."Description" as c192,
  1198. T3."No_" as c193,
  1199. '
  1200. ' T2."Record protected" as c194,
  1201. T2."Generating Function" as c195'
  1202. ',
  1203. T2."TA Formatting" as c196,
  1204. T2."TA Class (Vacation Reduction)'
  1205. '" as c197,
  1206. T2."TA Class (Employee Info)" as c198,
  1207. T2."TA Class '
  1208. '(Individual)" as c199,
  1209. T2."TA Class (Time Processing)" as c200,
  1210. '
  1211. ' T2."TA Class (Absent Days)" as c201,
  1212. T2."TA Class (Statistics)" as'
  1213. ' c202,
  1214. T2."TA Class (General)" as c203,
  1215. (cast_float(T2."Time Ac'
  1216. 'count Value")) as c204,
  1217. T2."Order No_" as c205,
  1218. T2."Department '
  1219. 'No_" as c206,
  1220. T2."Employee No_" as c207,
  1221. (((cast_float(T1."Rem_'
  1222. ' Vac_ Days taken")))) - (((cast_float(T1."Rem_ Vac_ Days planned")))) a'
  1223. 's c208,
  1224. ((cast_float(T1."Rem_ Vac_ Days planned"))) as c209,
  1225. (('
  1226. '((cast_float(T1."Std_ Vac_ Entitlem_ Days")))) + (((cast_float(T1."Std_'
  1227. 'Vac_Days Car_Fwd_Prev_Y_"))))) - (((cast_float(T1."Rem_ Vac_ Days taken'
  1228. '")))) as c210,
  1229. ((cast_float(T1."Rem_ Vac_ Days taken"))) as c211,
  1230. '
  1231. ' (((cast_float(T1."Std_ Vac_ Entitlem_ Days")))) + (((cast_float(T1."'
  1232. 'Std_Vac_Days Car_Fwd_Prev_Y_")))) as c212,
  1233. ((cast_float(T1."Std_Vac'
  1234. '_Days Car_Fwd_Prev_Y_"))) as c213,
  1235. ((cast_float(T1."Std_ Vac_ Entit'
  1236. 'lem_ Days"))) as c214,
  1237. T1."Rating PEREAS" as c215,
  1238. T1."Resource'
  1239. ' No_" as c216,
  1240. (cast_float(T1."Efficiency %")) as c217,
  1241. T1."Tas'
  1242. 'k Type Group" as c218,
  1243. T1."Department Code" as c219,
  1244. T1."Absent'
  1245. '" as c220,
  1246. T1."Present" as c221,
  1247. T1."Values Car_ Fwd_ Inactive"'
  1248. ' as c222,
  1249. (cast_float(T1."Rem_ Handic_ Vac_ Days planned")) as c223'
  1250. ',
  1251. (cast_float(T1."Rem_ Handic_ Vac_ Days taken")) as c224,
  1252. (cas'
  1253. 't_float(T1."Rem_ Vac_ Hrs_ Planned")) as c225,
  1254. (cast_float(T1."Rem_'
  1255. ' Vac_ Hours taken")) as c226,
  1256. (cast_float(T1."Spec_ Vac_2 Hours Car'
  1257. '_ Fwd_")) as c227,
  1258. (cast_float(T1."Handic_ Vac_1 Hours Car_ Fwd_"))'
  1259. ' as c228,
  1260. (cast_float(T1."Std_ Vac_Car_Fwd_Prev_Y_(H)")) as c229,
  1261. '
  1262. ' (cast_float(T1."Special Vac_2 Entitlement (H)")) as c230,
  1263. (cast_'
  1264. 'float(T1."Handic_ Vac_1 Entitlement Hrs_")) as c231,
  1265. (cast_float(T1'
  1266. '."Standard Vac_ Entitlement Hrs_")) as c232,
  1267. (cast_float(T1."Specia'
  1268. 'l Vac_3 Days Car_ Fwd_")) as c233,
  1269. (cast_float(T1."Special Vac_2 Da'
  1270. 'ys Car_ Fwd_")) as c234,
  1271. (cast_float(T1."Handic_ Vac_1 Days Car_ Fw'
  1272. 'd_")) as c235,
  1273. (cast_float(T1."Spec_ Vac_3 Entitlem_ Days")) as c23'
  1274. '6,
  1275. (cast_float(T1."Spec_ Vac_2 Entitlem_ Days")) as c237,
  1276. (cast'
  1277. '_float(T1."Handic_ Vac_ Entitlem_ Days")) as c238,
  1278. T1."Time Object '
  1279. 'No_" as c239,
  1280. T1."Group No_ 3" as c240,
  1281. T1."Group No_ 2" as c24'
  1282. '1,
  1283. T1."Group No_ 1" as c242,
  1284. T1."Department No_" as c243,
  1285. T'
  1286. '1."Leaving Date" as c244,
  1287. T1."Employment Date" as c245,
  1288. T1."Fir'
  1289. 'st Name" as c246,
  1290. T1."Last Name" as c247,
  1291. T1."Name" as c248,
  1292. '
  1293. ' T1."ID No_" as c249
  1294. from "DMS1"."dbo"."AH Reisacher$Employee_T" T1,
  1295. '
  1296. '"DMS1"."dbo"."AH Reisacher$Time Entry_T" T2,
  1297. "DMS1"."dbo"."AH Reisache'
  1298. 'r$Time Account_T" T3
  1299. where (T1."No_" = T2."Employee No_") and (T2."Time'
  1300. ' Account No_" = (cast_numberToString(cast_integer(T3."No_"))))
  1301. and (((('
  1302. 'T2."Current Date" >= T1."Employment Date") and ((T1."Leaving Date" >= T'
  1303. "IMESTAMP '2012-01-01 00:00:00.000') or (T1." '"Leaving Date" = TIMESTAMP '
  1304. "'1753-01-01 00:00:00.000'))) and (T2." '"Current Date" >= TIMESTAMP '
  1305. "'2018-01-01 00:00:00.000')) and (T1." '"No_" <> ' "'11724'))
  1306. ) D1
  1307. order by c49 asc,c1 asc,c52 asc
  1308. ) D5
  1309. ) D4
  1310. "
  1311. Isolation 0 UserEditable False SourceSignonList 643419 EndList ImrName "D:\GAPS_BMW\Portal\System\IQD\AHR\Zeit\Zeit_Mitarbeiter_Time_Entry_für_Abwesenheit.imr"
  1312. Stamp 1578996998 EnableMultiProcess False SetCurrent False ServerSource False
  1313. Speed False Presummarized False
  1314. OrgName 986699 "No" Origin Source Offset 63 Column "No" Storage Text Scale 0
  1315. Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  1316. OrgName 986701 "Id No" Origin Source Offset 1 Column "Id No" Storage Text
  1317. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  1318. OrgName 986703 "Name" Origin Source Offset 2 Column "Name" Storage Text
  1319. Scale 0 Size 52 Decimals 0 Class Description InputScale 0 TimeArray Off
  1320. OrgName 986705 "Last Name" Origin Source Offset 3 Column "Last Name" Storage Text
  1321. Scale 0 Size 32 Decimals 0 Class Description InputScale 0 TimeArray Off
  1322. OrgName 986707 "First Name" Origin Source Offset 4 Column "First Name"
  1323. Storage Text Scale 0 Size 32 Decimals 0 Class Description InputScale 0
  1324. TimeArray Off
  1325. OrgName 986709 "Employment Date" Origin Source Offset 5 Column "Employment Date"
  1326. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  1327. OrgName 986711 "Leaving Date" Origin Source Offset 6 Column "Leaving Date"
  1328. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  1329. OrgName 986713 "Department No" Origin Source Offset 7 Column "Department No"
  1330. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  1331. TimeArray Off
  1332. OrgName 986715 "Group No 1" Origin Source Offset 8 Column "Group No 1"
  1333. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  1334. TimeArray Off
  1335. OrgName 986717 "Group No 2" Origin Source Offset 9 Column "Group No 2"
  1336. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  1337. TimeArray Off
  1338. OrgName 986719 "Group No 3" Origin Source Offset 10 Column "Group No 3"
  1339. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  1340. TimeArray Off
  1341. OrgName 986721 "Time Object No" Origin Source Offset 11 Column "Time Object No"
  1342. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  1343. TimeArray Off
  1344. OrgName 986723 "Std Vac Entitlem Days" Origin Source Offset 12 Column "Std Vac Entitlem Days"
  1345. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1346. OrgName 986725 "Handic Vac Entitlem Days" Origin Source Offset 13 Column "Handic Vac Entitlem Days"
  1347. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1348. OrgName 986727 "Spec Vac 2 Entitlem Days" Origin Source Offset 14 Column "Spec Vac 2 Entitlem Days"
  1349. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1350. OrgName 986729 "Spec Vac 3 Entitlem Days" Origin Source Offset 15 Column "Spec Vac 3 Entitlem Days"
  1351. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1352. OrgName 986731 "Std Vac Days Car Fwd Prev Y" Origin Source Offset 16 Column "Std Vac Days Car Fwd Prev Y"
  1353. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1354. OrgName 986733 "Handic Vac 1 Days Car Fwd" Origin Source Offset 17 Column "Handic Vac 1 Days Car Fwd"
  1355. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1356. OrgName 986735 "Special Vac 2 Days Car Fwd" Origin Source Offset 18 Column "Special Vac 2 Days Car Fwd"
  1357. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1358. OrgName 986737 "Special Vac 3 Days Car Fwd" Origin Source Offset 19 Column "Special Vac 3 Days Car Fwd"
  1359. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1360. OrgName 986739 "Rem Vac Days Taken" Origin Source Offset 20 Column "Rem Vac Days Taken"
  1361. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1362. OrgName 986741 "Rem Vac Days Planned" Origin Source Offset 21 Column "Rem Vac Days Planned"
  1363. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1364. OrgName 986743 "Standard Vac Entitlement Hrs" Origin Source Offset 22 Column "Standard Vac Entitlement Hrs"
  1365. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1366. OrgName 986745 "Handic Vac 1 Entitlement Hrs" Origin Source Offset 23 Column "Handic Vac 1 Entitlement Hrs"
  1367. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1368. OrgName 986747 "Special Vac 2 Entitlement (h)" Origin Source Offset 24
  1369. Column "Special Vac 2 Entitlement (h)" Storage Float64 Scale 0 Size 8 Decimals 0
  1370. Class Quantity InputScale 0 TimeArray Off
  1371. OrgName 986749 "Std Vac Car Fwd Prev Y (h)" Origin Source Offset 25 Column "Std Vac Car Fwd Prev Y (h)"
  1372. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1373. OrgName 986751 "Handic Vac 1 Hours Car Fwd" Origin Source Offset 26 Column "Handic Vac 1 Hours Car Fwd"
  1374. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1375. OrgName 986753 "Spec Vac 2 Hours Car Fwd" Origin Source Offset 27 Column "Spec Vac 2 Hours Car Fwd"
  1376. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1377. OrgName 986755 "Rem Vac Hours Taken" Origin Source Offset 28 Column "Rem Vac Hours Taken"
  1378. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1379. OrgName 986757 "Rem Vac Hrs Planned" Origin Source Offset 29 Column "Rem Vac Hrs Planned"
  1380. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1381. OrgName 986759 "Rem Handic Vac Days Taken" Origin Source Offset 30 Column "Rem Handic Vac Days Taken"
  1382. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1383. OrgName 986761 "Rem Handic Vac Days Planned" Origin Source Offset 31 Column "Rem Handic Vac Days Planned"
  1384. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1385. OrgName 986763 "Values Car Fwd Inactive" Origin Source Offset 32 Column "Values Car Fwd Inactive"
  1386. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1387. OrgName 986765 "Present" Origin Source Offset 33 Column "Present" Storage Int16
  1388. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1389. OrgName 986767 "Absent" Origin Source Offset 34 Column "Absent" Storage Int16
  1390. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1391. OrgName 986769 "Department Code" Origin Source Offset 35 Column "Department Code"
  1392. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  1393. TimeArray Off
  1394. OrgName 986771 "Task Type Group" Origin Source Offset 36 Column "Task Type Group"
  1395. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  1396. TimeArray Off
  1397. OrgName 986773 "Efficiency %" Origin Source Offset 37 Column "Efficiency %"
  1398. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1399. OrgName 986775 "Resource No" Origin Source Offset 38 Column "Resource No"
  1400. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  1401. TimeArray Off
  1402. OrgName 986777 "Rating Pereas" Origin Source Offset 39 Column "Rating Pereas"
  1403. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  1404. TimeArray Off
  1405. OrgName 986779 "Urlaubsanspruch" Origin Source Offset 40 Column "Urlaubsanspruch_"
  1406. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1407. OrgName 986781 "Urlaubsübertrag Vorjahr" Origin Source Offset 41 Column "Urlaubsübertrag Vorjahr_"
  1408. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1409. OrgName 986783 "Gesamturlaubsanspruch" Origin Source Offset 42 Column "Gesamturlaubsanspruch_"
  1410. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1411. OrgName 986785 "Resturlaub" Origin Source Offset 43 Column "Resturlaub_"
  1412. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1413. OrgName 986787 "bisher genommener Urlaub" Origin Source Offset 44 Column "bisher genommener Urlaub_"
  1414. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1415. OrgName 986789 "Resturlaub bis Jahresende" Origin Source Offset 45 Column "Resturlaub bis Jahresende_"
  1416. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1417. OrgName 986791 "geplanter Urlaub" Origin Source Offset 46 Column "geplanter Urlaub_"
  1418. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1419. OrgName 986793 "Employee No" Origin Source Offset 47 Column "Employee No"
  1420. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  1421. TimeArray Off
  1422. OrgName 986795 "Datum" Origin Source Offset 48 Column "Datum" Storage Int32
  1423. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  1424. OrgName 987279 "Department No_" Origin Source Offset 49 Column "Department No_"
  1425. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  1426. TimeArray Off
  1427. OrgName 986797 "Department No" Origin Source Offset 7 Column "(2) Department No"
  1428. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  1429. TimeArray Off
  1430. OrgName 986799 "Order No" Origin Source Offset 50 Column "Order No" Storage Text
  1431. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  1432. OrgName 986801 "Time Account No" Origin Source Offset 51 Column "Time Account No"
  1433. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  1434. TimeArray Off
  1435. OrgName 986803 "Time Account Value" Origin Source Offset 52 Column "Time Account Value"
  1436. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1437. OrgName 986805 "Ta Class (general)" Origin Source Offset 53 Column "Ta Class (general)"
  1438. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1439. OrgName 986807 "Ta Class (statistics)" Origin Source Offset 54 Column "Ta Class (statistics)"
  1440. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1441. OrgName 986809 "Ta Class (absent Days)" Origin Source Offset 55 Column "Ta Class (absent Days)"
  1442. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1443. OrgName 986811 "Ta Class (time Processing)" Origin Source Offset 56 Column "Ta Class (time Processing)"
  1444. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1445. OrgName 986813 "Ta Class (individual)" Origin Source Offset 57 Column "Ta Class (individual)"
  1446. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1447. OrgName 986815 "Ta Class (employee Info)" Origin Source Offset 58 Column "Ta Class (employee Info)"
  1448. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1449. OrgName 986817 "Ta Class (vacation Reduction)" Origin Source Offset 59
  1450. Column "Ta Class (vacation Reduction)" Storage Int32 Scale 0 Size 4 Decimals 0
  1451. Class Quantity InputScale 0 TimeArray Off
  1452. OrgName 986819 "Ta Formatting" Origin Source Offset 60 Column "Ta Formatting"
  1453. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1454. OrgName 986821 "Generating Function" Origin Source Offset 61 Column "Generating Function"
  1455. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1456. OrgName 986823 "Record Protected" Origin Source Offset 62 Column "Record Protected"
  1457. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1458. OrgName 986825 "No" Origin Source Offset 63 Column "(2) No" Storage Int32
  1459. Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1460. OrgName 986827 "Description" Origin Source Offset 64 Column "Description"
  1461. Storage Text Scale 0 Size 52 Decimals 0 Class Description InputScale 0
  1462. TimeArray Off
  1463. OrgName 986829 "Description 2" Origin Source Offset 65 Column "Description 2"
  1464. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  1465. TimeArray Off
  1466. OrgName 986831 "Symbol" Origin Source Offset 66 Column "Symbol" Storage Text
  1467. Scale 0 Size 5 Decimals 0 Class Description InputScale 0 TimeArray Off
  1468. OrgName 986833 "Character" Origin Source Offset 67 Column "Character" Storage Text
  1469. Scale 0 Size 3 Decimals 0 Class Description InputScale 0 TimeArray Off
  1470. OrgName 986835 "Pay Type 1" Origin Source Offset 68 Column "Pay Type 1"
  1471. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  1472. TimeArray Off
  1473. OrgName 986837 "Sollzeit" Origin Source Offset 69 Column "Sollzeit" Storage Float64
  1474. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1475. OrgName 986839 "Anwesenheit" Origin Source Offset 70 Column "Anwesenheit"
  1476. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1477. OrgName 986841 "Mehrarbeit genehmigt" Origin Source Offset 71 Column "Mehrarbeit genehmigt"
  1478. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1479. OrgName 986843 "Fehlzeit ungenehmigt" Origin Source Offset 72 Column "Fehlzeit ungenehmigt"
  1480. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1481. OrgName 986845 "Überstunden Vortrag" Origin Source Offset 73 Column "Überstunden Vortrag_"
  1482. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1483. OrgName 986847 "Überstunden Saldo" Origin Source Offset 74 Column "Überstunden Saldo_"
  1484. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1485. OrgName 986849 "Summe (Überstunden Saldo) Nr.2" Origin Source Offset 75
  1486. Column "Summe (Überstunden Saldo) Nr.2" Storage Float64 Scale 0 Size 8
  1487. Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1488. OrgName 986851 "Summe (Überstunden Saldo) Nr.1" Origin Source Offset 76
  1489. Column "Summe (Überstunden Saldo) Nr.1" Storage Float64 Scale 0 Size 8
  1490. Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1491. OrgName 986853 "Krank" Origin Source Offset 77 Column "Krank" Storage Float64
  1492. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1493. OrgName 986855 "Krank ohne AUB" Origin Source Offset 78 Column "Krank ohne AUB"
  1494. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1495. OrgName 986857 "Krank ohne LFZ" Origin Source Offset 79 Column "Krank ohne LFZ"
  1496. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1497. OrgName 986859 "Krank Kur" Origin Source Offset 80 Column "Krank Kur" Storage Float64
  1498. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1499. OrgName 986861 "Krank gesamt" Origin Source Offset 81 Column "Krank gesamt"
  1500. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1501. OrgName 986863 "Urlaub" Origin Source Offset 82 Column "Urlaub" Storage Float64
  1502. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1503. OrgName 986865 "Sonderurlaub" Origin Source Offset 83 Column "Sonderurlaub"
  1504. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1505. OrgName 986867 "Erziehungsurlaub" Origin Source Offset 84 Column "Erziehungsurlaub"
  1506. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1507. OrgName 986869 "Urlaub unbezahlt" Origin Source Offset 85 Column "Urlaub unbezahlt"
  1508. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1509. OrgName 986871 "Urlaub gesamt" Origin Source Offset 86 Column "Urlaub gesamt"
  1510. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1511. OrgName 986873 "Berufsschule" Origin Source Offset 87 Column "Berufsschule"
  1512. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1513. OrgName 986875 "Schulung extern" Origin Source Offset 88 Column "Schulung extern"
  1514. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1515. OrgName 986877 "Dienstreise" Origin Source Offset 89 Column "Dienstreise"
  1516. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1517. OrgName 986879 "Prüfung" Origin Source Offset 90 Column "Prüfung" Storage Float64
  1518. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1519. OrgName 986881 "Messe" Origin Source Offset 91 Column "Messe" Storage Float64
  1520. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1521. OrgName 986883 "Feiertag" Origin Source Offset 92 Column "Feiertag" Storage Float64
  1522. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1523. OrgName 986885 "Zeitausgleich" Origin Source Offset 93 Column "Zeitausgleich"
  1524. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1525. OrgName 986887 "Mutterschutz" Origin Source Offset 94 Column "Mutterschutz"
  1526. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1527. OrgName 986889 "Hauptbetrieb" Origin Source Offset 95 Column "Hauptbetrieb"
  1528. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  1529. OrgName 986891 "Standort" Origin Source Offset 96 Column "Standort" Storage Text
  1530. Scale 0 Size 4 Decimals 0 Class Description InputScale 0 TimeArray Off
  1531. OrgName 986893 "Monteur_Gruppe_ori" Origin Source Offset 97 Column "Monteur_Gruppe_ori"
  1532. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  1533. TimeArray Off
  1534. OrgName 986895 "Heute" Origin Source Offset 98 Column "Heute" Storage Int32
  1535. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  1536. OrgName 986897 "Tage Heute Leaving Date" Origin Source Offset 99 Column "Tage Heute Leaving Date"
  1537. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1538. OrgName 986899 "Monteur_Gruppe" Origin Source Offset 100 Column "Monteur_Gruppe"
  1539. Storage Text Scale 0 Size 26 Decimals 0 Class Description InputScale 0
  1540. TimeArray Off
  1541. OrgName 986901 "produktiv/unproduktiv" Origin Source Offset 101 Column "produktiv/unproduktiv"
  1542. Storage Text Scale 0 Size 18 Decimals 0 Class Description InputScale 0
  1543. TimeArray Off
  1544. OrgName 986903 "Monatserster" Origin Source Offset 102 Column "Monatserster"
  1545. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  1546. OrgName 986905 "Monatsletzter" Origin Source Offset 103 Column "Monatsletzter"
  1547. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  1548. OrgName 986907 "Datum Tagesbericht" Origin Source Offset 104 Column "Datum Tagesbericht"
  1549. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  1550. OrgName 986909 "Order Number" Origin Source Offset 105 Column "Order Number"
  1551. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  1552. OrgName 986911 "Monteur" Origin Source Offset 106 Column "Monteur" Storage Text
  1553. Scale 0 Size 63 Decimals 0 Class Description InputScale 0 TimeArray Off
  1554. OrgName 986913 "Krank Tage" Origin Source Offset 107 Column "Krank Tage"
  1555. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1556. OrgName 986915 "Krank Tage ohne AUB" Origin Source Offset 108 Column "Krank Tage ohne AUB"
  1557. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1558. OrgName 986917 "Krank Tage ohne LFZ" Origin Source Offset 109 Column "Krank Tage ohne LFZ"
  1559. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1560. OrgName 986919 "Krank Tage Kur" Origin Source Offset 110 Column "Krank Tage Kur"
  1561. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1562. OrgName 986921 "ausbezahlte Überstunden" Origin Source Offset 111 Column "ausbezahlte Überstunden_"
  1563. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1564. OrgName 986923 "LG_Soll" Origin Source Offset 112 Column "LG_Soll" Storage Int32
  1565. Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1566. OrgName 986925 "Effizienz" Origin Source Offset 113 Column "Effizienz"
  1567. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1568. OrgName 986927 "fakt. Zeit Soll in AW" Origin Source Offset 114 Column "fakt. Zeit Soll in AW"
  1569. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1570. OrgName 986929 "fakt. Zeit Soll in Std." Origin Source Offset 115 Column "fakt. Zeit Soll in Std."
  1571. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1572. OrgName 986931 "AW-Listenpreis" Origin Source Offset 116 Column "AW-Listenpreis"
  1573. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1574. OrgName 986933 "Ums. Lohn Plan Monteur" Origin Source Offset 117 Column "Ums. Lohn Plan Monteur"
  1575. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1576. OrgName 986935 "Summe Sollzeit für Tag" Origin Source Offset 118 Column "Summe Sollzeit für Tag"
  1577. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1578. OrgName 986937 "Summe Urlaub für Tag" Origin Source Offset 119 Column "Summe Urlaub für Tag"
  1579. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1580. OrgName 986939 "Summe Krank für Tag" Origin Source Offset 120 Column "Summe Krank für Tag"
  1581. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1582. OrgName 986941 "Umsatz Lohn Plan Monteur ohne Krank" Origin Source Offset 121
  1583. Column "Umsatz Lohn Plan Monteur ohne Krank" Storage Float64 Scale 0 Size 8
  1584. Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1585. OrgName 992925 "Sollzeit in Tagen" Origin Source Offset 123 Column "Sollzeit in Tagen"
  1586. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1587. OrgName 993929 "Summe_Sollzeit_in_Tagen" Origin Source Offset 124 Column "Summe_Sollzeit_in_Tagen"
  1588. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1589. OrgName 993931 "Krank Tage bereinigt" Origin Source Offset 125 Column "Krank Tage bereinigt"
  1590. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1591. OrgName 993933 "Krank Tage ohne AUB bereinigt" Origin Source Offset 126
  1592. Column "Krank Tage ohne AUB bereinigt" Storage Float64 Scale 0 Size 8 Decimals 0
  1593. Class Quantity InputScale 0 TimeArray Off
  1594. OrgName 993935 "Krank Tage ohne LFZ bereinigt" Origin Source Offset 127
  1595. Column "Krank Tage ohne LFZ bereinigt" Storage Float64 Scale 0 Size 8 Decimals 0
  1596. Class Quantity InputScale 0 TimeArray Off
  1597. OrgName 993937 "Krank Tage Kur bereinigt" Origin Source Offset 128 Column "Krank Tage Kur bereinigt"
  1598. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1599. OrgName 987269 "Schulung extern Tage" Origin Source Offset 122 Column "Schulung extern Tage"
  1600. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  1601. DataSource 987013 "AHA_Zeit_Mitarbeiter_Time_Entry_für_Abwesenheit" Separator " "
  1602. SourceType DataSource CharacterSet Default DecimalSep "," Thousandsep "."
  1603. Columns True Timing PopYesCreateDefault Source "D:\GAPS_BMW\Portal\System\IQD\AHA\Zeit\AHA_Zeit_Mitarbeiter_Time_Entry_für_Abwesenheit.iqd"
  1604. SQL "select c1 as c1,
  1605. c2 as c2,
  1606. c3 as c3,
  1607. c4 as c4,
  1608. c5 as c5"
  1609. ",
  1610. c6 as c6,
  1611. c7 as c7,
  1612. c8 as c8,
  1613. c9 as c9,
  1614. c10 as c1"
  1615. "0,
  1616. c11 as c11,
  1617. c12 as c12,
  1618. c13 as c13,
  1619. c14 as c14,
  1620. "
  1621. "c15 as c15,
  1622. c16 as c16,
  1623. c17 as c17,
  1624. c18 as c18,
  1625. c19 as "
  1626. "c19,
  1627. c20 as c20,
  1628. c21 as c21,
  1629. c22 as c22,
  1630. c23 as c23,
  1631. "
  1632. " c24 as c24,
  1633. c25 as c25,
  1634. c26 as c26,
  1635. c27 as c27,
  1636. c28 a"
  1637. "s c28,
  1638. c29 as c29,
  1639. c30 as c30,
  1640. c31 as c31,
  1641. c32 as c32,
  1642. "
  1643. " c33 as c33,
  1644. c34 as c34,
  1645. c35 as c35,
  1646. c36 as c36,
  1647. c37"
  1648. " as c37,
  1649. c38 as c38,
  1650. c39 as c39,
  1651. c40 as c40,
  1652. c41 as c41"
  1653. ",
  1654. c42 as c42,
  1655. c43 as c43,
  1656. c44 as c44,
  1657. c45 as c45,
  1658. c"
  1659. "46 as c46,
  1660. c47 as c47,
  1661. c48 as c48,
  1662. c49 as c49,
  1663. c50 as c"
  1664. "50,
  1665. c51 as c51,
  1666. c52 as c52,
  1667. c53 as c53,
  1668. c54 as c54,
  1669. "
  1670. " c55 as c55,
  1671. c56 as c56,
  1672. c57 as c57,
  1673. c58 as c58,
  1674. c59 as"
  1675. " c59,
  1676. c60 as c60,
  1677. c61 as c61,
  1678. c62 as c62,
  1679. c63 as c63,
  1680. "
  1681. " c64 as c64,
  1682. c65 as c65,
  1683. c66 as c66,
  1684. c67 as c67,
  1685. c68 "
  1686. "as c68,
  1687. c69 as c69,
  1688. c70 as c70,
  1689. c71 as c71,
  1690. c72 as c72,"
  1691. "
  1692. c73 as c73,
  1693. c74 as c74,
  1694. c75 as c75,
  1695. c76 as c76,
  1696. c7"
  1697. "7 as c77,
  1698. c78 as c78,
  1699. c79 as c79,
  1700. c80 as c80,
  1701. c81 as c8"
  1702. "1,
  1703. c82 as c82,
  1704. c83 as c83,
  1705. c84 as c84,
  1706. c85 as c85,
  1707. "
  1708. "c86 as c86,
  1709. c87 as c87,
  1710. c88 as c88,
  1711. c89 as c89,
  1712. c90 as "
  1713. "c90,
  1714. c91 as c91,
  1715. c92 as c92,
  1716. c93 as c93,
  1717. c94 as c94,
  1718. "
  1719. " c95 as c95,
  1720. c96 as c96,
  1721. c97 as c97,
  1722. c98 as c98,
  1723. c99 a"
  1724. "s c99,
  1725. c100 as c100,
  1726. c101 as c101,
  1727. c102 as c102,
  1728. c103 a"
  1729. "s c103,
  1730. c104 as c104,
  1731. c105 as c105,
  1732. c106 as c106,
  1733. c107 "
  1734. "as c107,
  1735. c108 as c108,
  1736. c109 as c109,
  1737. c110 as c110,
  1738. c111"
  1739. " as c111,
  1740. c112 as c112,
  1741. c113 as c113,
  1742. c114 as c114,
  1743. c11"
  1744. "5 as c115,
  1745. c116 as c116,
  1746. c117 as c117,
  1747. c118 as c118,
  1748. c1"
  1749. "19 as c119,
  1750. c120 as c120,
  1751. c121 as c121,
  1752. c122 as c122,
  1753. c"
  1754. "123 as c123,
  1755. c124 as c124,
  1756. c125 as c125,
  1757. c126 as c126,
  1758. "
  1759. "c127 as c127,
  1760. XSUM(c126 for c49,c1) as c128,
  1761. CASE WHEN (XSUM(c1"
  1762. "26 for c49,c1) <> 0) THEN c110 ELSE (0) END as c129,
  1763. CASE WHEN (XSU"
  1764. "M(c126 for c49,c1) <> 0) THEN c111 ELSE (0) END as c130,
  1765. CASE WHEN "
  1766. "(XSUM(c126 for c49,c1) <> 0) THEN c112 ELSE (0) END as c131,
  1767. CASE W"
  1768. "HEN (XSUM(c126 for c49,c1) <> 0) THEN c113 ELSE (0) END as c132
  1769. from
  1770. ("
  1771. "select c1 as c1,
  1772. c2 as c2,
  1773. c3 as c3,
  1774. c4 as c4,
  1775. c5 as c5"
  1776. ",
  1777. c6 as c6,
  1778. c7 as c7,
  1779. c8 as c8,
  1780. c9 as c9,
  1781. c10 as c1"
  1782. "0,
  1783. c11 as c11,
  1784. c12 as c12,
  1785. c13 as c13,
  1786. c14 as c14,
  1787. "
  1788. "c15 as c15,
  1789. c16 as c16,
  1790. c17 as c17,
  1791. c18 as c18,
  1792. c19 as "
  1793. "c19,
  1794. c20 as c20,
  1795. c21 as c21,
  1796. c22 as c22,
  1797. c23 as c23,
  1798. "
  1799. " c24 as c24,
  1800. c25 as c25,
  1801. c26 as c26,
  1802. c27 as c27,
  1803. c28 a"
  1804. "s c28,
  1805. c29 as c29,
  1806. c30 as c30,
  1807. c31 as c31,
  1808. c32 as c32,
  1809. "
  1810. " c33 as c33,
  1811. c34 as c34,
  1812. c35 as c35,
  1813. c36 as c36,
  1814. c37"
  1815. " as c37,
  1816. c38 as c38,
  1817. c39 as c39,
  1818. c40 as c40,
  1819. c41 as c41"
  1820. ",
  1821. c42 as c42,
  1822. c43 as c43,
  1823. c44 as c44,
  1824. c45 as c45,
  1825. c"
  1826. "46 as c46,
  1827. c47 as c47,
  1828. c48 as c48,
  1829. c49 as c49,
  1830. c50 as c"
  1831. "50,
  1832. c51 as c51,
  1833. c52 as c52,
  1834. c53 as c53,
  1835. RSUM(c53 for c4"
  1836. "9) as c54,
  1837. RSUM(c53) as c55,
  1838. c56 as c56,
  1839. c57 as c57,
  1840. c5"
  1841. "8 as c58,
  1842. c59 as c59,
  1843. c60 as c60,
  1844. c61 as c61,
  1845. c62 as c6"
  1846. "2,
  1847. c63 as c63,
  1848. c64 as c64,
  1849. c65 as c65,
  1850. c66 as c66,
  1851. "
  1852. "c67 as c67,
  1853. c68 as c68,
  1854. c69 as c69,
  1855. c70 as c70,
  1856. c71 as "
  1857. "c71,
  1858. c72 as c72,
  1859. c73 as c73,
  1860. c74 as c74,
  1861. c75 as c75,
  1862. "
  1863. " c76 as c76,
  1864. c77 as c77,
  1865. RSUM(c77 for c49) as c78,
  1866. RSUM(c7"
  1867. "7) as c79,
  1868. c80 as c80,
  1869. c81 as c81,
  1870. c82 as c82,
  1871. c83 as c"
  1872. "83,
  1873. c84 as c84,
  1874. c85 as c85,
  1875. c86 as c86,
  1876. c87 as c87,
  1877. "
  1878. " c88 as c88,
  1879. c89 as c89,
  1880. c90 as c90,
  1881. c91 as c91,
  1882. c92 as"
  1883. " c92,
  1884. c93 as c93,
  1885. c94 as c94,
  1886. c95 as c95,
  1887. c96 as c96,
  1888. "
  1889. " c97 as c97,
  1890. c98 as c98,
  1891. c99 as c99,
  1892. c100 as c100,
  1893. c1"
  1894. "01 as c101,
  1895. c102 as c102,
  1896. c103 as c103,
  1897. c104 as c104,
  1898. c"
  1899. "105 as c105,
  1900. c106 as c106,
  1901. c107 as c107,
  1902. c108 as c108,
  1903. "
  1904. "c109 as c109,
  1905. c110 as c110,
  1906. c111 as c111,
  1907. c112 as c112,
  1908. "
  1909. " c113 as c113,
  1910. c114 as c114,
  1911. c115 as c115,
  1912. c116 as c116,
  1913. "
  1914. " c117 as c117,
  1915. c118 as c118,
  1916. c119 as c119,
  1917. c120 as c120,
  1918. "
  1919. " c121 as c121,
  1920. c122 as c122,
  1921. c123 as c123,
  1922. c124 as c124,
  1923. "
  1924. " c125 as c125,
  1925. c126 as c126,
  1926. c127 as c127
  1927. from
  1928. (select c140"
  1929. " as c1,
  1930. c253 as c2,
  1931. c252 as c3,
  1932. c251 as c4,
  1933. c250 as c5,"
  1934. "
  1935. c249 as c6,
  1936. c248 as c7,
  1937. c247 as c8,
  1938. c246 as c9,
  1939. c2"
  1940. "45 as c10,
  1941. c244 as c11,
  1942. c243 as c12,
  1943. c218 as c13,
  1944. c242 "
  1945. "as c14,
  1946. c241 as c15,
  1947. c240 as c16,
  1948. c217 as c17,
  1949. c239 as "
  1950. "c18,
  1951. c238 as c19,
  1952. c237 as c20,
  1953. c215 as c21,
  1954. c213 as c22"
  1955. ",
  1956. c236 as c23,
  1957. c235 as c24,
  1958. c234 as c25,
  1959. c233 as c26,
  1960. "
  1961. " c232 as c27,
  1962. c231 as c28,
  1963. c230 as c29,
  1964. c229 as c30,
  1965. "
  1966. "c228 as c31,
  1967. c227 as c32,
  1968. c226 as c33,
  1969. c225 as c34,
  1970. c22"
  1971. "4 as c35,
  1972. c223 as c36,
  1973. c222 as c37,
  1974. c221 as c38,
  1975. c220 a"
  1976. "s c39,
  1977. c219 as c40,
  1978. c218 as c41,
  1979. c217 as c42,
  1980. c216 as c"
  1981. "43,
  1982. c215 as c44,
  1983. c214 as c45,
  1984. c213 as c46,
  1985. c212 as c47,"
  1986. "
  1987. c211 as c48,
  1988. c141 as c49,
  1989. c210 as c50,
  1990. c209 as c51,
  1991. "
  1992. " c186 as c52,
  1993. c208 as c53,
  1994. c207 as c56,
  1995. c206 as c57,
  1996. c"
  1997. "205 as c58,
  1998. c204 as c59,
  1999. c203 as c60,
  2000. c202 as c61,
  2001. c201"
  2002. " as c62,
  2003. c200 as c63,
  2004. c199 as c64,
  2005. c198 as c65,
  2006. c197 as"
  2007. " c66,
  2008. c196 as c67,
  2009. c195 as c68,
  2010. c194 as c69,
  2011. c193 as c7"
  2012. "0,
  2013. c192 as c71,
  2014. c191 as c72,
  2015. c190 as c73,
  2016. c189 as c74,
  2017. "
  2018. " c188 as c75,
  2019. c187 as c76,
  2020. c185 as c77,
  2021. c184 as c80,
  2022. "
  2023. " c183 as c81,
  2024. c182 as c82,
  2025. c181 as c83,
  2026. c180 as c84,
  2027. c1"
  2028. "79 as c85,
  2029. c178 as c86,
  2030. c177 as c87,
  2031. c176 as c88,
  2032. c175 "
  2033. "as c89,
  2034. c174 as c90,
  2035. c173 as c91,
  2036. c172 as c92,
  2037. c171 as "
  2038. "c93,
  2039. c170 as c94,
  2040. c169 as c95,
  2041. c168 as c96,
  2042. c167 as c97"
  2043. ",
  2044. '1' as c98,
  2045. c166 as c99,
  2046. c165 as c100,
  2047. c164 as c101,
  2048. "
  2049. " c163 as c102,
  2050. c162 as c103,
  2051. c161 as c104,
  2052. c160 as c105,"
  2053. "
  2054. c159 as c106,
  2055. c158 as c107,
  2056. '' as c108,
  2057. c157 as c109,
  2058. "
  2059. " c146 as c110,
  2060. c145 as c111,
  2061. c144 as c112,
  2062. c143 as c113,"
  2063. "
  2064. c156 as c114,
  2065. c155 as c115,
  2066. c154 as c116,
  2067. c153 as c117"
  2068. ",
  2069. c152 as c118,
  2070. c151 as c119,
  2071. CASE WHEN ((XSUM(c191 for c14"
  2072. "2)) <> (XSUM(c179 for c142))) THEN (c150) ELSE (0) END as c120,
  2073. XSU"
  2074. "M(c191 for c142) as c121,
  2075. XSUM(c179 for c142) as c122,
  2076. XSUM(c18"
  2077. "4 for c142) as c123,
  2078. CASE WHEN (((XSUM(c191 for c142)) <> (XSUM(c17"
  2079. "9 for c142))) and ((XSUM(c191 for c142)) <> (XSUM(c184 for c142)))) THE"
  2080. "N (c150) ELSE (0) END as c124,
  2081. c149 as c125,
  2082. c148 as c126,
  2083. "
  2084. 'c147 as c127
  2085. from
  2086. (select T1."No_" as c140,
  2087. T2."Current Date" as c'
  2088. '141,
  2089. ((asciiz(extract(YEAR FROM T2."Current Date"),4) || ' "'-' || asciiz(extract(MONTH FROM T2."
  2090. '"Current Date"),2) || ' "'-' || asciiz(extract(DAY FROM T2." '"Current Date"),2)) || (T1."First Name" || '
  2091. "' ' || T1." '"Last Name")) as c142,
  2092. CASE WHEN (T2."Time Account No_" IN ('
  2093. "'673','674')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c143,
  2094. CASE WHEN (T2."Time '
  2095. 'Account No_" IN (' "'672')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c144,
  2096. CASE WHEN (T2."Time '
  2097. 'Account No_" IN (' "'671')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c145,
  2098. CASE WHEN (T2."Time '
  2099. 'Account No_" IN (' "'670')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c146,
  2100. (dayofweek(T2."Curre'
  2101. 'nt Date")) as c147,
  2102. CASE WHEN ((CASE WHEN (T2."Time Account No_" IN'
  2103. " ('1200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) <> 0) THEN ((CASE WHEN (T2."Time'
  2104. ' Account No_" IN (' "'1200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) / (CASE WHEN (T2."Time Account N'
  2105. 'o_" IN (' "'1200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END)) ELSE (0) END as c148,
  2106. CASE '
  2107. 'WHEN (T2."Time Account No_" IN (' "'655')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c149,
  2108. (((CASE WHEN (T2."Ti'
  2109. 'me Account No_" IN (' "'1200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) * 12 * (((cast_float(T1."Efficie'
  2110. 'ncy %"))) / 100)) * 0.8) * (CASE WHEN ((((od_left(T1."Department No_",2'
  2111. "))) IN ('60','70','80')) and ((CASE WHEN ((((extract(DAY FROM (now()) -"
  2112. ' T1."Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') WHEN (T1."
  2113. '"Pay Group No_" = ' "'WMOZ') THEN ('WMOM') ELSE (T1." '"Pay Group No_") END) IN ('
  2114. "'WMOM','WMOE','AZG4','AZG3','AZG2','AZG1'))) THEN (8.99) WHEN ((((od_le"
  2115. 'ft(T1."Department No_",2))) IN (' "'60','70','80')) and ((CASE WHEN ((((extract(DAY FROM (now()) - T1."
  2116. '"Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') WHEN (T1."
  2117. '"Pay Group No_" = ' "'WMOZ') THEN ('WMOM') ELSE (T1." '"Pay Group No_") END) IN ('
  2118. "'WMOK','WMOL'))) THEN (9.95) ELSE (0) END) as c150,
  2119. CASE WHEN ((((o"
  2120. 'd_left(T1."Department No_",2))) IN (' "'60','70','80')) and ((CASE WHEN ((((extract(DAY FROM (now()) - T1."
  2121. '"Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') WHEN (T1."
  2122. '"Pay Group No_" = ' "'WMOZ') THEN ('WMOM') ELSE (T1." '"Pay Group No_") END) IN ('
  2123. "'WMOM','WMOE','AZG4','AZG3','AZG2','AZG1'))) THEN (8.99) WHEN ((((od_le"
  2124. 'ft(T1."Department No_",2))) IN (' "'60','70','80')) and ((CASE WHEN ((((extract(DAY FROM (now()) - T1."
  2125. '"Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') WHEN (T1."
  2126. '"Pay Group No_" = ' "'WMOZ') THEN ('WMOM') ELSE (T1." '"Pay Group No_") END) IN ('
  2127. "'WMOK','WMOL'))) THEN (9.95) ELSE (0) END as c151,
  2128. ((CASE WHEN (T2."
  2129. '"Time Account No_" IN (' "'1200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) * (((cast_float(T1."Efficiency %'
  2130. '"))) / 100)) * 0.75 as c152,
  2131. ((CASE WHEN (T2."Time Account No_" IN '
  2132. "('1200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) * 12 * (((cast_float(T1."Efficie'
  2133. 'ncy %"))) / 100)) * 0.8 as c153,
  2134. ((cast_float(T1."Efficiency %"))) '
  2135. "/ 100 as c154,
  2136. CASE WHEN ((CASE WHEN ((((extract(DAY FROM (now()) -"
  2137. ' T1."Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') WHEN (T1."
  2138. '"Pay Group No_" = ' "'WMOZ') THEN ('WMOM') ELSE (T1." '"Pay Group No_") END) = '
  2139. "'WMOM') THEN (110) WHEN ((CASE WHEN ((((extract(DAY FROM (now()) - T1."
  2140. '"Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') WHEN (T1."
  2141. '"Pay Group No_" = ' "'WMOZ') THEN ('WMOM') ELSE (T1." '"Pay Group No_") END) = '
  2142. "'WMOE') THEN (100) WHEN ((CASE WHEN ((((extract(DAY FROM (now()) - T1."
  2143. '"Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') WHEN (T1."
  2144. '"Pay Group No_" = ' "'WMOZ') THEN ('WMOM') ELSE (T1." '"Pay Group No_") END) = '
  2145. "'WMOK') THEN (120) ELSE (0) END as c155,
  2146. CASE WHEN (T2." '"Time Account No_" IN ('
  2147. "'3500')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c156,
  2148. T1."First Name" || '
  2149. "' ' || T1." '"Last Name" as c157,
  2150. CASE WHEN (((now()) - INTERVAL '
  2151. "'001 10:00:00.000') BETWEEN ((cdatetime(T2." '"Current Date" - cinterval(extract(DAY FROM T2."Current Date") - 1)))) '
  2152. 'AND ((cdatetime(lastday(cdate(T2."Current Date")))))) THEN (T2."Current'
  2153. ' Date") ELSE null END as c158,
  2154. (cdatetime(lastday(cdate(T2."Current'
  2155. ' Date")))) as c159,
  2156. (cdatetime(T2."Current Date" - cinterval(extrac'
  2157. 't(DAY FROM T2."Current Date") - 1))) as c160,
  2158. CASE WHEN (T1."Pay Gr'
  2159. 'oup No_" IN (' "'AZG1','AZG2','AZG3','WMOE','WMOK','WMOM','AZG4','WMOZ')) THEN ('prod. "
  2160. "Personal') ELSE ('unprod. Personal') END as c161,
  2161. CASE WHEN ((((ext"
  2162. 'ract(DAY FROM (now()) - T1."Leaving Date"))) > 0) and (T1."Leaving Date'
  2163. '" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('ausgetretene Mitarbeiter') WHEN (T1."
  2164. '"Pay Group No_" = ' "'WMOZ') THEN ('WMOM') ELSE (T1." '"Pay Group No_") END as c162,
  2165. (extract(DAY FROM (now()) - T1."Leavi'
  2166. 'ng Date")) as c163,
  2167. (now()) - INTERVAL ' "'001 10:00:00.000' as c164,
  2168. T1."
  2169. '"Pay Group No_" as c165,
  2170. (od_left(T1."Department No_",2)) as c166,
  2171. '
  2172. ' CASE WHEN (T2."Time Account No_" IN (' "'380')) THEN (((cast_float(T2."
  2173. '"Time Account Value")))) ELSE (0) END as c167,
  2174. CASE WHEN (T2."Time '
  2175. 'Account No_" IN (' "'378')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c168,
  2176. CASE WHEN (T2."Time '
  2177. 'Account No_" IN (' "'450')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c169,
  2178. CASE WHEN (T2."Time '
  2179. 'Account No_" IN (' "'359')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c170,
  2180. CASE WHEN (T2."Time '
  2181. 'Account No_" IN (' "'357')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c171,
  2182. CASE WHEN (T2."Time '
  2183. 'Account No_" IN (' "'356')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c172,
  2184. CASE WHEN (T2."Time '
  2185. 'Account No_" IN (' "'355')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c173,
  2186. CASE WHEN (T2."Time '
  2187. 'Account No_" IN (' "'354')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c174,
  2188. (CASE WHEN (T2."Time'
  2189. ' Account No_" IN (' "'350')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  2190. 'o_" IN (' "'352')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  2191. 'o_" IN (' "'353')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  2192. 'o_" IN (' "'351')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) as c175,
  2193. CASE WHEN (T2."Time'
  2194. ' Account No_" IN (' "'351')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c176,
  2195. CASE WHEN (T2."Time '
  2196. 'Account No_" IN (' "'353')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c177,
  2197. CASE WHEN (T2."Time '
  2198. 'Account No_" IN (' "'352')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c178,
  2199. CASE WHEN (T2."Time '
  2200. 'Account No_" IN (' "'350')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c179,
  2201. (CASE WHEN (T2."Time'
  2202. ' Account No_" IN (' "'370')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  2203. 'o_" IN (' "'371')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  2204. 'o_" IN (' "'372')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  2205. 'o_" IN (' "'373','374')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) as c180,
  2206. CASE WHEN (T2."Time'
  2207. ' Account No_" IN (' "'373','374')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c181,
  2208. CASE WHEN (T2."Time '
  2209. 'Account No_" IN (' "'372')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c182,
  2210. CASE WHEN (T2."Time '
  2211. 'Account No_" IN (' "'371')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c183,
  2212. CASE WHEN (T2."Time '
  2213. 'Account No_" IN (' "'370')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c184,
  2214. (CASE WHEN (T2."Time'
  2215. ' Account No_" IN (' "'200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) - (CASE WHEN (T2."Time Account N'
  2216. 'o_" IN (' "'300')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN ((((od_year(T2."Cur'
  2217. 'rent Date")) = (od_year((now())))) and ((od_month(T2."Current Date")) ='
  2218. ' 1)) and (T2."Time Account No_" IN (' "'1101'))) THEN (((cast_float(T2."
  2219. '"Time Account Value")))) ELSE (0) END) as c185,
  2220. T2."Time Account No'
  2221. '_" as c186,
  2222. CASE WHEN ((((od_year(T2."Current Date")) = (od_year((n'
  2223. 'ow())))) and ((od_month(T2."Current Date")) = 1)) and (T2."Time Account'
  2224. ' No_" IN (' "'1101'))) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c187,
  2225. CASE WHEN (T2."Time '
  2226. 'Account No_" IN (' "'300')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c188,
  2227. CASE WHEN (T2."Time '
  2228. 'Account No_" IN (' "'200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c189,
  2229. CASE WHEN (T2."Time '
  2230. 'Account No_" IN (' "'100')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c190,
  2231. CASE WHEN (T2."Time '
  2232. 'Account No_" IN (' "'1200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c191,
  2233. T3."Pay Type 1" as c'
  2234. '192,
  2235. T3."Character" as c193,
  2236. T3."Symbol" as c194,
  2237. T3."Descr'
  2238. 'iption 2" as c195,
  2239. T3."Description" as c196,
  2240. T3."No_" as c197,
  2241. '
  2242. ' T2."Record protected" as c198,
  2243. T2."Generating Function" as c199'
  2244. ',
  2245. T2."TA Formatting" as c200,
  2246. T2."TA Class (Vacation Reduction)'
  2247. '" as c201,
  2248. T2."TA Class (Employee Info)" as c202,
  2249. T2."TA Class '
  2250. '(Individual)" as c203,
  2251. T2."TA Class (Time Processing)" as c204,
  2252. '
  2253. ' T2."TA Class (Absent Days)" as c205,
  2254. T2."TA Class (Statistics)" as'
  2255. ' c206,
  2256. T2."TA Class (General)" as c207,
  2257. (cast_float(T2."Time Ac'
  2258. 'count Value")) as c208,
  2259. T2."Order No_" as c209,
  2260. T2."Department '
  2261. 'No_" as c210,
  2262. T2."Employee No_" as c211,
  2263. (((cast_float(T1."Rem_'
  2264. ' Vac_ Days taken")))) - (((cast_float(T1."Rem_ Vac_ Days planned")))) a'
  2265. 's c212,
  2266. ((cast_float(T1."Rem_ Vac_ Days planned"))) as c213,
  2267. (('
  2268. '((cast_float(T1."Std_ Vac_ Entitlem_ Days")))) + (((cast_float(T1."Std_'
  2269. 'Vac_Days Car_Fwd_Prev_Y_"))))) - (((cast_float(T1."Rem_ Vac_ Days taken'
  2270. '")))) as c214,
  2271. ((cast_float(T1."Rem_ Vac_ Days taken"))) as c215,
  2272. '
  2273. ' (((cast_float(T1."Std_ Vac_ Entitlem_ Days")))) + (((cast_float(T1."'
  2274. 'Std_Vac_Days Car_Fwd_Prev_Y_")))) as c216,
  2275. ((cast_float(T1."Std_Vac'
  2276. '_Days Car_Fwd_Prev_Y_"))) as c217,
  2277. ((cast_float(T1."Std_ Vac_ Entit'
  2278. 'lem_ Days"))) as c218,
  2279. T1."Rating PEREAS" as c219,
  2280. T1."Resource'
  2281. ' No_" as c220,
  2282. (cast_float(T1."Efficiency %")) as c221,
  2283. T1."Tas'
  2284. 'k Type Group" as c222,
  2285. T1."Department Code" as c223,
  2286. T1."Absent'
  2287. '" as c224,
  2288. T1."Present" as c225,
  2289. T1."Values Car_ Fwd_ Inactive"'
  2290. ' as c226,
  2291. (cast_float(T1."Rem_ Handic_ Vac_ Days planned")) as c227'
  2292. ',
  2293. (cast_float(T1."Rem_ Handic_ Vac_ Days taken")) as c228,
  2294. (cas'
  2295. 't_float(T1."Rem_ Vac_ Hrs_ Planned")) as c229,
  2296. (cast_float(T1."Rem_'
  2297. ' Vac_ Hours taken")) as c230,
  2298. (cast_float(T1."Spec_ Vac_2 Hours Car'
  2299. '_ Fwd_")) as c231,
  2300. (cast_float(T1."Handic_ Vac_1 Hours Car_ Fwd_"))'
  2301. ' as c232,
  2302. (cast_float(T1."Std_ Vac_Car_Fwd_Prev_Y_(H)")) as c233,
  2303. '
  2304. ' (cast_float(T1."Special Vac_2 Entitlement (H)")) as c234,
  2305. (cast_'
  2306. 'float(T1."Handic_ Vac_1 Entitlement Hrs_")) as c235,
  2307. (cast_float(T1'
  2308. '."Standard Vac_ Entitlement Hrs_")) as c236,
  2309. (cast_float(T1."Specia'
  2310. 'l Vac_3 Days Car_ Fwd_")) as c237,
  2311. (cast_float(T1."Special Vac_2 Da'
  2312. 'ys Car_ Fwd_")) as c238,
  2313. (cast_float(T1."Handic_ Vac_1 Days Car_ Fw'
  2314. 'd_")) as c239,
  2315. (cast_float(T1."Spec_ Vac_3 Entitlem_ Days")) as c24'
  2316. '0,
  2317. (cast_float(T1."Spec_ Vac_2 Entitlem_ Days")) as c241,
  2318. (cast'
  2319. '_float(T1."Handic_ Vac_ Entitlem_ Days")) as c242,
  2320. T1."Time Object '
  2321. 'No_" as c243,
  2322. T1."Group No_ 3" as c244,
  2323. T1."Group No_ 2" as c24'
  2324. '5,
  2325. T1."Group No_ 1" as c246,
  2326. T1."Department No_" as c247,
  2327. T'
  2328. '1."Leaving Date" as c248,
  2329. T1."Employment Date" as c249,
  2330. T1."Fir'
  2331. 'st Name" as c250,
  2332. T1."Last Name" as c251,
  2333. T1."Name" as c252,
  2334. '
  2335. ' T1."ID No_" as c253
  2336. from "DMS1"."dbo"."AH Augsburg$Employee_T" T1,
  2337. "'
  2338. 'DMS1"."dbo"."AH Augsburg$Time Entry_T" T2,
  2339. "DMS1"."dbo"."AH Augsburg$T'
  2340. 'ime Account_T" T3
  2341. where (T1."No_" = T2."Employee No_") and (T2."Time Ac'
  2342. 'count No_" = (cast_numberToString(cast_integer(T3."No_"))))
  2343. and ((((T2.'
  2344. '"Current Date" >= T1."Employment Date") and ((T1."Leaving Date" >= TIME'
  2345. "STAMP '2012-01-01 00:00:00.000') or (T1." '"Leaving Date" = TIMESTAMP '
  2346. "'1753-01-01 00:00:00.000'))) and (T2." '"Current Date" >= TIMESTAMP '
  2347. "'2018-01-01 00:00:00.000')) and (T1." '"No_" <> ' "'65517'))
  2348. ) D1
  2349. order by c49 asc,c1 asc,c52 asc
  2350. ) D5
  2351. ) D4
  2352. "
  2353. Isolation 0 UserEditable False SourceSignonList 643419 EndList ImrName "D:\GAPS_BMW\Portal\System\IQD\AHA\Zeit\AHA_Zeit_Mitarbeiter_Time_Entry_für_Abwesenheit.imr"
  2354. Stamp 1572435613 EnableMultiProcess False SetCurrent False ServerSource False
  2355. Speed False Presummarized False
  2356. OrgName 987015 "No" Origin Source Offset 65 Column "No" Storage Text Scale 0
  2357. Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  2358. OrgName 987017 "Id No" Origin Source Offset 1 Column "Id No" Storage Text
  2359. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  2360. OrgName 987019 "Name" Origin Source Offset 2 Column "Name" Storage Text
  2361. Scale 0 Size 52 Decimals 0 Class Description InputScale 0 TimeArray Off
  2362. OrgName 987021 "Last Name" Origin Source Offset 3 Column "Last Name" Storage Text
  2363. Scale 0 Size 32 Decimals 0 Class Description InputScale 0 TimeArray Off
  2364. OrgName 987023 "First Name" Origin Source Offset 4 Column "First Name"
  2365. Storage Text Scale 0 Size 32 Decimals 0 Class Description InputScale 0
  2366. TimeArray Off
  2367. OrgName 987025 "Employment Date" Origin Source Offset 5 Column "Employment Date"
  2368. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  2369. OrgName 987027 "Leaving Date" Origin Source Offset 6 Column "Leaving Date"
  2370. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  2371. OrgName 987029 "Department No" Origin Source Offset 7 Column "Department No"
  2372. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  2373. TimeArray Off
  2374. OrgName 987031 "Group No 1" Origin Source Offset 8 Column "Group No 1"
  2375. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  2376. TimeArray Off
  2377. OrgName 987033 "Group No 2" Origin Source Offset 9 Column "Group No 2"
  2378. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  2379. TimeArray Off
  2380. OrgName 987035 "Group No 3" Origin Source Offset 10 Column "Group No 3"
  2381. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  2382. TimeArray Off
  2383. OrgName 987037 "Time Object No" Origin Source Offset 11 Column "Time Object No"
  2384. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  2385. TimeArray Off
  2386. OrgName 987039 "Std Vac Entitlem Days" Origin Source Offset 12 Column "Std Vac Entitlem Days"
  2387. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2388. OrgName 987041 "Handic Vac Entitlem Days" Origin Source Offset 13 Column "Handic Vac Entitlem Days"
  2389. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2390. OrgName 987043 "Spec Vac 2 Entitlem Days" Origin Source Offset 14 Column "Spec Vac 2 Entitlem Days"
  2391. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2392. OrgName 987045 "Spec Vac 3 Entitlem Days" Origin Source Offset 15 Column "Spec Vac 3 Entitlem Days"
  2393. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2394. OrgName 987047 "Std Vac Days Car Fwd Prev Y" Origin Source Offset 16 Column "Std Vac Days Car Fwd Prev Y"
  2395. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2396. OrgName 987049 "Handic Vac 1 Days Car Fwd" Origin Source Offset 17 Column "Handic Vac 1 Days Car Fwd"
  2397. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2398. OrgName 987051 "Special Vac 2 Days Car Fwd" Origin Source Offset 18 Column "Special Vac 2 Days Car Fwd"
  2399. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2400. OrgName 987053 "Special Vac 3 Days Car Fwd" Origin Source Offset 19 Column "Special Vac 3 Days Car Fwd"
  2401. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2402. OrgName 987055 "Rem Vac Days Taken" Origin Source Offset 20 Column "Rem Vac Days Taken"
  2403. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2404. OrgName 987057 "Rem Vac Days Planned" Origin Source Offset 21 Column "Rem Vac Days Planned"
  2405. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2406. OrgName 987059 "Standard Vac Entitlement Hrs" Origin Source Offset 22 Column "Standard Vac Entitlement Hrs"
  2407. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2408. OrgName 987061 "Handic Vac 1 Entitlement Hrs" Origin Source Offset 23 Column "Handic Vac 1 Entitlement Hrs"
  2409. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2410. OrgName 987063 "Special Vac 2 Entitlement (h)" Origin Source Offset 24
  2411. Column "Special Vac 2 Entitlement (h)" Storage Float64 Scale 0 Size 8 Decimals 0
  2412. Class Quantity InputScale 0 TimeArray Off
  2413. OrgName 987065 "Std Vac Car Fwd Prev Y (h)" Origin Source Offset 25 Column "Std Vac Car Fwd Prev Y (h)"
  2414. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2415. OrgName 987067 "Handic Vac 1 Hours Car Fwd" Origin Source Offset 26 Column "Handic Vac 1 Hours Car Fwd"
  2416. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2417. OrgName 987069 "Spec Vac 2 Hours Car Fwd" Origin Source Offset 27 Column "Spec Vac 2 Hours Car Fwd"
  2418. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2419. OrgName 987071 "Rem Vac Hours Taken" Origin Source Offset 28 Column "Rem Vac Hours Taken"
  2420. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2421. OrgName 987073 "Rem Vac Hrs Planned" Origin Source Offset 29 Column "Rem Vac Hrs Planned"
  2422. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2423. OrgName 987075 "Rem Handic Vac Days Taken" Origin Source Offset 30 Column "Rem Handic Vac Days Taken"
  2424. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2425. OrgName 987077 "Rem Handic Vac Days Planned" Origin Source Offset 31 Column "Rem Handic Vac Days Planned"
  2426. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2427. OrgName 987079 "Values Car Fwd Inactive" Origin Source Offset 32 Column "Values Car Fwd Inactive"
  2428. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2429. OrgName 987081 "Present" Origin Source Offset 33 Column "Present" Storage Int16
  2430. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2431. OrgName 987083 "Absent" Origin Source Offset 34 Column "Absent" Storage Int16
  2432. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2433. OrgName 987085 "Department Code" Origin Source Offset 35 Column "Department Code"
  2434. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  2435. TimeArray Off
  2436. OrgName 987087 "Task Type Group" Origin Source Offset 36 Column "Task Type Group"
  2437. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  2438. TimeArray Off
  2439. OrgName 987089 "Efficiency %" Origin Source Offset 37 Column "Efficiency %"
  2440. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2441. OrgName 987091 "Resource No" Origin Source Offset 38 Column "Resource No"
  2442. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  2443. TimeArray Off
  2444. OrgName 987093 "Rating Pereas" Origin Source Offset 39 Column "Rating Pereas"
  2445. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  2446. TimeArray Off
  2447. OrgName 987095 "Urlaubsanspruch" Origin Source Offset 40 Column "Urlaubsanspruch_"
  2448. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2449. OrgName 987097 "Urlaubsübertrag Vorjahr" Origin Source Offset 41 Column "Urlaubsübertrag Vorjahr_"
  2450. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2451. OrgName 987099 "Gesamturlaubsanspruch" Origin Source Offset 42 Column "Gesamturlaubsanspruch_"
  2452. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2453. OrgName 987101 "Resturlaub" Origin Source Offset 43 Column "Resturlaub_"
  2454. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2455. OrgName 987103 "bisher genommener Urlaub" Origin Source Offset 44 Column "bisher genommener Urlaub_"
  2456. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2457. OrgName 987105 "Resturlaub bis Jahresende" Origin Source Offset 45 Column "Resturlaub bis Jahresende_"
  2458. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2459. OrgName 987107 "geplanter Urlaub" Origin Source Offset 46 Column "geplanter Urlaub_"
  2460. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2461. OrgName 987109 "Employee No" Origin Source Offset 47 Column "Employee No"
  2462. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  2463. TimeArray Off
  2464. OrgName 987111 "Datum" Origin Source Offset 48 Column "Datum" Storage Int32
  2465. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  2466. OrgName 987281 "Department No_" Origin Source Offset 49 Column "Department No_"
  2467. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  2468. TimeArray Off
  2469. OrgName 987113 "Department No" Origin Source Offset 7 Column "(2) Department No"
  2470. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  2471. TimeArray Off
  2472. OrgName 987115 "Order No" Origin Source Offset 50 Column "Order No" Storage Text
  2473. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  2474. OrgName 987117 "Time Account No" Origin Source Offset 51 Column "Time Account No"
  2475. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  2476. TimeArray Off
  2477. OrgName 987119 "Time Account Value" Origin Source Offset 52 Column "Time Account Value"
  2478. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2479. OrgName 987121 "Summe (Time Account Value) Nr.2" Origin Source Offset 53
  2480. Column "Summe (Time Account Value) Nr.2" Storage Float64 Scale 0 Size 8
  2481. Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2482. OrgName 987123 "Summe (Time Account Value) Nr.1" Origin Source Offset 54
  2483. Column "Summe (Time Account Value) Nr.1" Storage Float64 Scale 0 Size 8
  2484. Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2485. OrgName 987125 "Ta Class (general)" Origin Source Offset 55 Column "Ta Class (general)"
  2486. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2487. OrgName 987127 "Ta Class (statistics)" Origin Source Offset 56 Column "Ta Class (statistics)"
  2488. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2489. OrgName 987129 "Ta Class (absent Days)" Origin Source Offset 57 Column "Ta Class (absent Days)"
  2490. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2491. OrgName 987131 "Ta Class (time Processing)" Origin Source Offset 58 Column "Ta Class (time Processing)"
  2492. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2493. OrgName 987133 "Ta Class (individual)" Origin Source Offset 59 Column "Ta Class (individual)"
  2494. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2495. OrgName 987135 "Ta Class (employee Info)" Origin Source Offset 60 Column "Ta Class (employee Info)"
  2496. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2497. OrgName 987137 "Ta Class (vacation Reduction)" Origin Source Offset 61
  2498. Column "Ta Class (vacation Reduction)" Storage Int32 Scale 0 Size 4 Decimals 0
  2499. Class Quantity InputScale 0 TimeArray Off
  2500. OrgName 987139 "Ta Formatting" Origin Source Offset 62 Column "Ta Formatting"
  2501. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2502. OrgName 987141 "Generating Function" Origin Source Offset 63 Column "Generating Function"
  2503. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2504. OrgName 987143 "Record Protected" Origin Source Offset 64 Column "Record Protected"
  2505. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2506. OrgName 987145 "No" Origin Source Offset 65 Column "(2) No" Storage Int32
  2507. Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2508. OrgName 987147 "Description" Origin Source Offset 66 Column "Description"
  2509. Storage Text Scale 0 Size 52 Decimals 0 Class Description InputScale 0
  2510. TimeArray Off
  2511. OrgName 987149 "Description 2" Origin Source Offset 67 Column "Description 2"
  2512. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  2513. TimeArray Off
  2514. OrgName 987151 "Symbol" Origin Source Offset 68 Column "Symbol" Storage Text
  2515. Scale 0 Size 5 Decimals 0 Class Description InputScale 0 TimeArray Off
  2516. OrgName 987153 "Character" Origin Source Offset 69 Column "Character" Storage Text
  2517. Scale 0 Size 3 Decimals 0 Class Description InputScale 0 TimeArray Off
  2518. OrgName 987155 "Pay Type 1" Origin Source Offset 70 Column "Pay Type 1"
  2519. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  2520. TimeArray Off
  2521. OrgName 987157 "Sollzeit" Origin Source Offset 71 Column "Sollzeit" Storage Float64
  2522. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2523. OrgName 987159 "Anwesenheit" Origin Source Offset 72 Column "Anwesenheit"
  2524. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2525. OrgName 987161 "Mehrarbeit genehmigt" Origin Source Offset 73 Column "Mehrarbeit genehmigt"
  2526. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2527. OrgName 987163 "Fehlzeit ungenehmigt" Origin Source Offset 74 Column "Fehlzeit ungenehmigt"
  2528. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2529. OrgName 987165 "Überstunden Vortrag" Origin Source Offset 75 Column "Überstunden Vortrag_"
  2530. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2531. OrgName 987167 "Überstunden Saldo" Origin Source Offset 76 Column "Überstunden Saldo_"
  2532. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2533. OrgName 987169 "Summe (Überstunden Saldo) Nr.2" Origin Source Offset 77
  2534. Column "Summe (Überstunden Saldo) Nr.2" Storage Float64 Scale 0 Size 8
  2535. Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2536. OrgName 987171 "Summe (Überstunden Saldo) Nr.1" Origin Source Offset 78
  2537. Column "Summe (Überstunden Saldo) Nr.1" Storage Float64 Scale 0 Size 8
  2538. Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2539. OrgName 987173 "Krank" Origin Source Offset 79 Column "Krank" Storage Float64
  2540. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2541. OrgName 987175 "Krank ohne AUB" Origin Source Offset 80 Column "Krank ohne AUB"
  2542. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2543. OrgName 987177 "Krank ohne LFZ" Origin Source Offset 81 Column "Krank ohne LFZ"
  2544. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2545. OrgName 987179 "Krank Kur" Origin Source Offset 82 Column "Krank Kur" Storage Float64
  2546. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2547. OrgName 987181 "Krank gesamt" Origin Source Offset 83 Column "Krank gesamt"
  2548. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2549. OrgName 987183 "Urlaub" Origin Source Offset 84 Column "Urlaub" Storage Float64
  2550. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2551. OrgName 987185 "Sonderurlaub" Origin Source Offset 85 Column "Sonderurlaub"
  2552. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2553. OrgName 987187 "Erziehungsurlaub" Origin Source Offset 86 Column "Erziehungsurlaub"
  2554. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2555. OrgName 987189 "Urlaub unbezahlt" Origin Source Offset 87 Column "Urlaub unbezahlt"
  2556. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2557. OrgName 987191 "Urlaub gesamt" Origin Source Offset 88 Column "Urlaub gesamt"
  2558. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2559. OrgName 987193 "Berufsschule" Origin Source Offset 89 Column "Berufsschule"
  2560. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2561. OrgName 987195 "Schulung extern" Origin Source Offset 90 Column "Schulung extern"
  2562. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2563. OrgName 987197 "Dienstreise" Origin Source Offset 91 Column "Dienstreise"
  2564. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2565. OrgName 987199 "Prüfung" Origin Source Offset 92 Column "Prüfung" Storage Float64
  2566. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2567. OrgName 987201 "Messe" Origin Source Offset 93 Column "Messe" Storage Float64
  2568. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2569. OrgName 987203 "Feiertag" Origin Source Offset 94 Column "Feiertag" Storage Float64
  2570. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2571. OrgName 987205 "Zeitausgleich" Origin Source Offset 95 Column "Zeitausgleich"
  2572. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2573. OrgName 987207 "Mutterschutz" Origin Source Offset 96 Column "Mutterschutz"
  2574. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2575. OrgName 987209 "Hauptbetrieb" Origin Source Offset 97 Column "Hauptbetrieb_ori"
  2576. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  2577. OrgName 987211 "Standort" Origin Source Offset 98 Column "Standort" Storage Text
  2578. Scale 0 Size 4 Decimals 0 Class Description InputScale 0 TimeArray Off
  2579. OrgName 987213 "Monteur_Gruppe_ori" Origin Source Offset 99 Column "Monteur_Gruppe_ori"
  2580. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  2581. TimeArray Off
  2582. OrgName 987215 "Heute" Origin Source Offset 100 Column "Heute" Storage Int32
  2583. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  2584. OrgName 987217 "Tage Heute Leaving Date" Origin Source Offset 101 Column "Tage Heute Leaving Date"
  2585. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2586. OrgName 987219 "Monteur_Gruppe" Origin Source Offset 102 Column "Monteur_Gruppe"
  2587. Storage Text Scale 0 Size 26 Decimals 0 Class Description InputScale 0
  2588. TimeArray Off
  2589. OrgName 987221 "produktiv/unproduktiv" Origin Source Offset 103 Column "produktiv/unproduktiv"
  2590. Storage Text Scale 0 Size 18 Decimals 0 Class Description InputScale 0
  2591. TimeArray Off
  2592. OrgName 987223 "Monatserster" Origin Source Offset 104 Column "Monatserster"
  2593. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  2594. OrgName 987225 "Monatsletzter" Origin Source Offset 105 Column "Monatsletzter"
  2595. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  2596. OrgName 987227 "Datum Tagesbericht" Origin Source Offset 106 Column "Datum Tagesbericht"
  2597. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  2598. OrgName 987229 "Order Number" Origin Source Offset 107 Column "Order Number"
  2599. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  2600. OrgName 987231 "Monteur" Origin Source Offset 108 Column "Monteur" Storage Text
  2601. Scale 0 Size 63 Decimals 0 Class Description InputScale 0 TimeArray Off
  2602. OrgName 987233 "Krank Tage" Origin Source Offset 109 Column "Krank Tage"
  2603. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2604. OrgName 987235 "Krank Tage ohne AUB" Origin Source Offset 110 Column "Krank Tage ohne AUB"
  2605. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2606. OrgName 987237 "Krank Tage ohne LFZ" Origin Source Offset 111 Column "Krank Tage ohne LFZ"
  2607. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2608. OrgName 987239 "Krank Tage Kur" Origin Source Offset 112 Column "Krank Tage Kur"
  2609. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2610. OrgName 987241 "ausbezahlte Überstunden" Origin Source Offset 113 Column "ausbezahlte Überstunden_"
  2611. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2612. OrgName 987243 "LG_Soll" Origin Source Offset 114 Column "LG_Soll" Storage Int32
  2613. Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2614. OrgName 987245 "Effizienz" Origin Source Offset 115 Column "Effizienz"
  2615. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2616. OrgName 987247 "fakt. Zeit Soll in AW" Origin Source Offset 116 Column "fakt. Zeit Soll in AW"
  2617. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2618. OrgName 987249 "fakt. Zeit Soll in Std." Origin Source Offset 117 Column "fakt. Zeit Soll in Std."
  2619. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2620. OrgName 987251 "AW-Listenpreis" Origin Source Offset 118 Column "AW-Listenpreis"
  2621. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2622. OrgName 987253 "Ums. Lohn Plan Monteur" Origin Source Offset 119 Column "Ums. Lohn Plan Monteur"
  2623. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2624. OrgName 987255 "Summe Sollzeit für Tag" Origin Source Offset 120 Column "Summe Sollzeit für Tag"
  2625. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2626. OrgName 987257 "Summe Urlaub für Tag" Origin Source Offset 121 Column "Summe Urlaub für Tag"
  2627. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2628. OrgName 987259 "Summe Krank für Tag" Origin Source Offset 122 Column "Summe Krank für Tag"
  2629. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2630. OrgName 987261 "Umsatz Lohn Plan Monteur ohne Krank" Origin Source Offset 123
  2631. Column "Umsatz Lohn Plan Monteur ohne Krank" Storage Float64 Scale 0 Size 8
  2632. Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2633. OrgName 992927 "Sollzeit in Tagen" Origin Source Offset 125 Column "Sollzeit in Tagen"
  2634. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2635. OrgName 993901 "Wochentag_Datum" Origin Source Offset 126 Column "Wochentag_Datum"
  2636. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2637. OrgName 993903 "Summe_Sollzeit_in_Tagen" Origin Source Offset 127 Column "Summe_Sollzeit_in_Tagen"
  2638. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2639. OrgName 993905 "Krank Tage bereinigt" Origin Source Offset 128 Column "Krank Tage bereinigt"
  2640. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2641. OrgName 993907 "Krank Tage ohne AUB bereinigt" Origin Source Offset 129
  2642. Column "Krank Tage ohne AUB bereinigt" Storage Float64 Scale 0 Size 8 Decimals 0
  2643. Class Quantity InputScale 0 TimeArray Off
  2644. OrgName 993919 "Krank Tage ohne LFZ bereinigt" Origin Source Offset 130
  2645. Column "Krank Tage ohne LFZ bereinigt" Storage Float64 Scale 0 Size 8 Decimals 0
  2646. Class Quantity InputScale 0 TimeArray Off
  2647. OrgName 987271 "Schulung extern Tage" Origin Source Offset 124 Column "Schulung extern Tage"
  2648. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2649. OrgName 993909 "Krank Tage Kur bereinigt" Origin Source Offset 131 Column "Krank Tage Kur bereinigt"
  2650. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  2651. OrgName 987263 "Hauptbetrieb" Origin Calculated Offset 0 Column "Hauptbetrieb"
  2652. Storage Default Scale 0 Size 1 Decimals 0 Class Description InputScale 0
  2653. TimeArray Off Calc '2'
  2654. DataSource 992455 "Zeit_Mitarbeiter_Ueberstunden_per_Vormonat" Separator " "
  2655. SourceType DataSource CharacterSet Default DecimalSep "," Thousandsep "."
  2656. Columns True Timing PopYesCreateDefault Source "d:\gaps_bmw\portal\system\iqd\ahr\zeit\zeit_mitarbeiter_ueberstunden_per_vormonat.iqd"
  2657. SQL "select c1 as c1,
  2658. c2 as c2,
  2659. c3 as c3,
  2660. c4 as c4,
  2661. c5 as c5"
  2662. ",
  2663. c6 as c6,
  2664. c7 as c7,
  2665. c8 as c8,
  2666. c9 as c9,
  2667. c10 as c1"
  2668. "0,
  2669. c11 as c11,
  2670. c12 as c12,
  2671. c13 as c13,
  2672. c14 as c14,
  2673. "
  2674. "c15 as c15,
  2675. c16 as c16,
  2676. c17 as c17,
  2677. c18 as c18,
  2678. c19 as "
  2679. "c19,
  2680. c20 as c20,
  2681. c21 as c21,
  2682. c22 as c22,
  2683. c23 as c23,
  2684. "
  2685. " c24 as c24,
  2686. c25 as c25,
  2687. c26 as c26,
  2688. c27 as c27,
  2689. c28 a"
  2690. "s c28,
  2691. c29 as c29,
  2692. c30 as c30,
  2693. c31 as c31,
  2694. c32 as c32,
  2695. "
  2696. " c33 as c33,
  2697. c34 as c34,
  2698. c35 as c35,
  2699. c36 as c36,
  2700. c37"
  2701. " as c37,
  2702. c38 as c38,
  2703. c39 as c39,
  2704. c40 as c40,
  2705. c41 as c41"
  2706. ",
  2707. c42 as c42,
  2708. c43 as c43,
  2709. c44 as c44,
  2710. c45 as c45,
  2711. c"
  2712. "46 as c46,
  2713. c47 as c47,
  2714. c48 as c48,
  2715. c49 as c49,
  2716. c50 as c"
  2717. "50,
  2718. c51 as c51,
  2719. c52 as c52,
  2720. c53 as c53,
  2721. c54 as c54,
  2722. "
  2723. " c55 as c55,
  2724. c56 as c56,
  2725. c57 as c57,
  2726. c58 as c58,
  2727. c59 as"
  2728. " c59,
  2729. c60 as c60,
  2730. c61 as c61,
  2731. c62 as c62,
  2732. c63 as c63,
  2733. "
  2734. " c64 as c64,
  2735. c65 as c65,
  2736. c66 as c66,
  2737. c67 as c67,
  2738. c68 "
  2739. "as c68,
  2740. c69 as c69,
  2741. c70 as c70,
  2742. c71 as c71,
  2743. c72 as c72,"
  2744. "
  2745. c73 as c73,
  2746. c74 as c74,
  2747. c75 as c75,
  2748. RSUM(c75 for c49) "
  2749. "as c76,
  2750. RSUM(c75) as c77,
  2751. c78 as c78,
  2752. c79 as c79,
  2753. c80 a"
  2754. "s c80,
  2755. c81 as c81,
  2756. c82 as c82,
  2757. c83 as c83,
  2758. c84 as c84,
  2759. "
  2760. " c85 as c85,
  2761. c86 as c86,
  2762. c87 as c87,
  2763. c88 as c88,
  2764. c89"
  2765. " as c89,
  2766. c90 as c90,
  2767. c91 as c91,
  2768. c92 as c92,
  2769. c93 as c93"
  2770. ",
  2771. c94 as c94,
  2772. c95 as c95,
  2773. c96 as c96,
  2774. c97 as c97,
  2775. c"
  2776. "98 as c98,
  2777. c99 as c99,
  2778. c100 as c100,
  2779. c101 as c101,
  2780. c102"
  2781. " as c102,
  2782. c103 as c103,
  2783. c104 as c104,
  2784. c105 as c105,
  2785. c10"
  2786. "6 as c106,
  2787. c107 as c107,
  2788. c108 as c108,
  2789. c109 as c109,
  2790. c1"
  2791. "10 as c110,
  2792. c111 as c111,
  2793. c112 as c112,
  2794. c113 as c113,
  2795. c"
  2796. '114 as c114
  2797. from
  2798. (select T1."No_" as c1,
  2799. T1."ID No_" as c2,
  2800. T1'
  2801. '."Name" as c3,
  2802. T1."Last Name" as c4,
  2803. T1."First Name" as c5,
  2804. '
  2805. ' T1."Employment Date" as c6,
  2806. T1."Leaving Date" as c7,
  2807. T1."Depar'
  2808. 'tment No_" as c8,
  2809. T1."Group No_ 1" as c9,
  2810. T1."Group No_ 2" as c'
  2811. '10,
  2812. T1."Group No_ 3" as c11,
  2813. T1."Time Object No_" as c12,
  2814. ('
  2815. 'cast_float(T1."Std_ Vac_ Entitlem_ Days")) as c13,
  2816. (cast_float(T1."'
  2817. 'Handic_ Vac_ Entitlem_ Days")) as c14,
  2818. (cast_float(T1."Spec_ Vac_2 '
  2819. 'Entitlem_ Days")) as c15,
  2820. (cast_float(T1."Spec_ Vac_3 Entitlem_ Day'
  2821. 's")) as c16,
  2822. (cast_float(T1."Std_Vac_Days Car_Fwd_Prev_Y_")) as c17'
  2823. ',
  2824. (cast_float(T1."Handic_ Vac_1 Days Car_ Fwd_")) as c18,
  2825. (cast'
  2826. '_float(T1."Special Vac_2 Days Car_ Fwd_")) as c19,
  2827. (cast_float(T1."'
  2828. 'Special Vac_3 Days Car_ Fwd_")) as c20,
  2829. (cast_float(T1."Rem_ Vac_ D'
  2830. 'ays taken")) as c21,
  2831. (cast_float(T1."Rem_ Vac_ Days planned")) as c'
  2832. '22,
  2833. (cast_float(T1."Standard Vac_ Entitlement Hrs_")) as c23,
  2834. ('
  2835. 'cast_float(T1."Handic_ Vac_1 Entitlement Hrs_")) as c24,
  2836. (cast_floa'
  2837. 't(T1."Special Vac_2 Entitlement (H)")) as c25,
  2838. (cast_float(T1."Std_'
  2839. ' Vac_Car_Fwd_Prev_Y_(H)")) as c26,
  2840. (cast_float(T1."Handic_ Vac_1 Ho'
  2841. 'urs Car_ Fwd_")) as c27,
  2842. (cast_float(T1."Spec_ Vac_2 Hours Car_ Fwd'
  2843. '_")) as c28,
  2844. (cast_float(T1."Rem_ Vac_ Hours taken")) as c29,
  2845. ('
  2846. 'cast_float(T1."Rem_ Vac_ Hrs_ Planned")) as c30,
  2847. (cast_float(T1."Re'
  2848. 'm_ Handic_ Vac_ Days taken")) as c31,
  2849. (cast_float(T1."Rem_ Handic_ '
  2850. 'Vac_ Days planned")) as c32,
  2851. T1."Values Car_ Fwd_ Inactive" as c33,'
  2852. '
  2853. T1."Present" as c34,
  2854. T1."Absent" as c35,
  2855. T1."Department Co'
  2856. 'de" as c36,
  2857. T1."Task Type Group" as c37,
  2858. T1."Efficiency %" as c'
  2859. '38,
  2860. T1."Resource No_" as c39,
  2861. T1."Rating PEREAS" as c40,
  2862. (('
  2863. 'cast_float(T1."Std_ Vac_ Entitlem_ Days"))) as c41,
  2864. ((cast_float(T1'
  2865. '."Std_Vac_Days Car_Fwd_Prev_Y_"))) as c42,
  2866. (((cast_float(T1."Std_ V'
  2867. 'ac_ Entitlem_ Days")))) + (((cast_float(T1."Std_Vac_Days Car_Fwd_Prev_Y'
  2868. '_")))) as c43,
  2869. ((cast_float(T1."Rem_ Vac_ Days taken"))) as c44,
  2870. '
  2871. ' ((((cast_float(T1."Std_ Vac_ Entitlem_ Days")))) + (((cast_float(T1."'
  2872. 'Std_Vac_Days Car_Fwd_Prev_Y_"))))) - (((cast_float(T1."Rem_ Vac_ Days t'
  2873. 'aken")))) as c45,
  2874. ((cast_float(T1."Rem_ Vac_ Days planned"))) as c4'
  2875. '6,
  2876. (((cast_float(T1."Rem_ Vac_ Days taken")))) - (((cast_float(T1."'
  2877. 'Rem_ Vac_ Days planned")))) as c47,
  2878. T2."Employee No_" as c48,
  2879. T'
  2880. '2."Current Date" as c49,
  2881. T2."Department No_" as c50,
  2882. T2."Order '
  2883. 'No_" as c51,
  2884. T2."Time Account No_" as c52,
  2885. (cast_float(T2."Time'
  2886. ' Account Value")) as c53,
  2887. T2."TA Class (General)" as c54,
  2888. T2."T'
  2889. 'A Class (Statistics)" as c55,
  2890. T2."TA Class (Absent Days)" as c56,
  2891. '
  2892. ' T2."TA Class (Time Processing)" as c57,
  2893. T2."TA Class (Individual'
  2894. ')" as c58,
  2895. T2."TA Class (Employee Info)" as c59,
  2896. T2."TA Class ('
  2897. 'Vacation Reduction)" as c60,
  2898. T2."TA Formatting" as c61,
  2899. T2."Gen'
  2900. 'erating Function" as c62,
  2901. T2."Record protected" as c63,
  2902. T3."No_'
  2903. '" as c64,
  2904. T3."Description" as c65,
  2905. T3."Description 2" as c66,
  2906. '
  2907. ' T3."Symbol" as c67,
  2908. T3."Character" as c68,
  2909. T3."Pay Type 1" a'
  2910. 's c69,
  2911. CASE WHEN (T2."Time Account No_" IN (' "'1200')) THEN (((cast_float(T2."
  2912. '"Time Account Value")))) ELSE (0) END as c70,
  2913. CASE WHEN (T2."Time A'
  2914. 'ccount No_" IN (' "'100')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c71,
  2915. CASE WHEN (T2."Time A'
  2916. 'ccount No_" IN (' "'200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c72,
  2917. CASE WHEN (T2."Time A'
  2918. 'ccount No_" IN (' "'300')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c73,
  2919. CASE WHEN ((((od_year'
  2920. '(T2."Current Date")) = (od_year((now())))) and ((od_month(T2."Current D'
  2921. 'ate")) = 1)) and (T2."Time Account No_" IN (' "'1101'))) THEN (((cast_float(T2."
  2922. '"Time Account Value")))) ELSE (0) END as c74,
  2923. (CASE WHEN (T2."Time '
  2924. 'Account No_" IN (' "'200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) - (CASE WHEN (T2."Time Account N'
  2925. 'o_" IN (' "'300')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN ((((od_year(T2."Cur'
  2926. 'rent Date")) = (od_year((now())))) and ((od_month(T2."Current Date")) ='
  2927. ' 1)) and (T2."Time Account No_" IN (' "'1101'))) THEN (((cast_float(T2."
  2928. '"Time Account Value")))) ELSE (0) END) as c75,
  2929. CASE WHEN (T2."Time '
  2930. 'Account No_" IN (' "'370')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c78,
  2931. CASE WHEN (T2."Time A'
  2932. 'ccount No_" IN (' "'371')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c79,
  2933. CASE WHEN (T2."Time A'
  2934. 'ccount No_" IN (' "'372')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c80,
  2935. CASE WHEN (T2."Time A'
  2936. 'ccount No_" IN (' "'373','374')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c81,
  2937. (CASE WHEN (T2."Time '
  2938. 'Account No_" IN (' "'370')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  2939. 'o_" IN (' "'371')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  2940. 'o_" IN (' "'372')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  2941. 'o_" IN (' "'373','374')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) as c82,
  2942. CASE WHEN (T2."Time '
  2943. 'Account No_" IN (' "'350')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c83,
  2944. CASE WHEN (T2."Time A'
  2945. 'ccount No_" IN (' "'352')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c84,
  2946. CASE WHEN (T2."Time A'
  2947. 'ccount No_" IN (' "'353')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c85,
  2948. CASE WHEN (T2."Time A'
  2949. 'ccount No_" IN (' "'351')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c86,
  2950. (CASE WHEN (T2."Time '
  2951. 'Account No_" IN (' "'350')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  2952. 'o_" IN (' "'352')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  2953. 'o_" IN (' "'353')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  2954. 'o_" IN (' "'351')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) as c87,
  2955. CASE WHEN (T2."Time '
  2956. 'Account No_" IN (' "'354')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c88,
  2957. CASE WHEN (T2."Time A'
  2958. 'ccount No_" IN (' "'355')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c89,
  2959. CASE WHEN (T2."Time A'
  2960. 'ccount No_" IN (' "'356')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c90,
  2961. CASE WHEN (T2."Time A'
  2962. 'ccount No_" IN (' "'357')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c91,
  2963. CASE WHEN (T2."Time A'
  2964. 'ccount No_" IN (' "'359')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c92,
  2965. CASE WHEN (T2."Time A'
  2966. 'ccount No_" IN (' "'450')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c93,
  2967. CASE WHEN (T2."Time A'
  2968. 'ccount No_" IN (' "'378')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c94,
  2969. CASE WHEN (T2."Time A'
  2970. 'ccount No_" IN (' "'380')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c95,
  2971. '
  2972. "'1' as c96,
  2973. CASE WHEN ((od_left(T1." '"Department No_",2)) = ' "'90') THEN ('55') ELSE ((od_left(T1."
  2974. '"Department No_",2))) END as c97,
  2975. T1."Pay Group No_" as c98,
  2976. (n'
  2977. "ow()) - INTERVAL '001 10:00:00.000' as c99,
  2978. (extract(DAY FROM (now("
  2979. ')) - T1."Leaving Date")) as c100,
  2980. CASE WHEN ((((extract(DAY FROM (n'
  2981. 'ow()) - T1."Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP '
  2982. "'1753-01-01 00:00:00.000')) THEN ('augetretene Mitarbeiter') ELSE (T1."
  2983. '"Pay Group No_") END as c101,
  2984. CASE WHEN (T1."Task Type Group" IN ('
  2985. "'MONTEURE','PROD MEIST')) THEN ('prod. Personal') WHEN (T1." '"Task Type Group" IN ('
  2986. "'VERWALTUNG')) THEN ('unprod. Personal') ELSE null END as c102,
  2987. (cd"
  2988. 'atetime(T2."Current Date" - cinterval(extract(DAY FROM T2."Current Date'
  2989. '") - 1))) as c103,
  2990. (cdatetime(lastday(cdate(T2."Current Date")))) a'
  2991. "s c104,
  2992. CASE WHEN (((now()) - INTERVAL '001 10:00:00.000') BETWEEN "
  2993. '((cdatetime(T2."Current Date" - cinterval(extract(DAY FROM T2."Current '
  2994. 'Date") - 1)))) AND ((cdatetime(lastday(cdate(T2."Current Date")))))) TH'
  2995. 'EN (T2."Current Date") ELSE null END as c105,
  2996. ' "'' as c106,
  2997. T1."
  2998. '"First Name" || ' "' ' || T1." '"Last Name" as c107,
  2999. CASE WHEN (T2."Time Account No_" IN ('
  3000. "'670')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c108,
  3001. CASE WHEN (T2."Time '
  3002. 'Account No_" IN (' "'671')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c109,
  3003. CASE WHEN (T2."Time '
  3004. 'Account No_" IN (' "'672')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c110,
  3005. CASE WHEN (T2."Time '
  3006. 'Account No_" IN (' "'673','674')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c111,
  3007. CASE WHEN (T2."Time '
  3008. 'Account No_" IN (' "'3500')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c112,
  3009. CASE WHEN (T2."Time '
  3010. 'Account No_" IN (' "'1101')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c113,
  3011. CASE WHEN (T2."Time '
  3012. 'Account No_" = ' "'1101') THEN (T2." '"Current Date" - INTERVAL ' "'001 00:00:00.000') ELSE (T2."
  3013. '"Current Date") END as c114
  3014. from "DMS1"."dbo"."AH Reisacher$Employee_T"'
  3015. ' T1,
  3016. "DMS1"."dbo"."AH Reisacher$Time Entry_T" T2,
  3017. "DMS1"."dbo"."AH Re'
  3018. 'isacher$Time Account_T" T3
  3019. where (T1."No_" = T2."Employee No_") and (T2'
  3020. '."Time Account No_" = (cast_numberToString(cast_integer(T3."No_"))))
  3021. an'
  3022. 'd ((((((T2."Current Date" >= T1."Employment Date") and ((T1."Leaving Da'
  3023. 'te" >= (@CURRENT_DATE)) or (T1."Leaving Date" = TIMESTAMP ' "'1753-01-01 00:00:00.000'))) and ((CASE WHEN (T2."
  3024. '"Time Account No_" = ' "'1101') THEN (T2." '"Current Date" - INTERVAL '
  3025. "'001 00:00:00.000') ELSE (T2." '"Current Date") END) >= TIMESTAMP ' "'2015-01-01 00:00:00.000')) and ((CASE WHEN (T2."
  3026. '"Time Account No_" = ' "'1101') THEN (T2." '"Current Date" - INTERVAL '
  3027. "'001 00:00:00.000') ELSE (T2." '"Current Date") END) < (cdatetime((@CURRENT_DATE) - cinterval(extract(D'
  3028. 'AY FROM (@CURRENT_DATE)) - 1))))) and (T2."Time Account No_" IN (' "'1101','3500','1090'))) and (T1."
  3029. '"No_" <> ' "'11724'))
  3030. order by c49 asc,c3 asc,c52 asc
  3031. ) D1
  3032. " Isolation 0
  3033. UserEditable False SourceSignonList 643419 EndList ImrName "D:\GAPS_BMW\Portal\System\IQD\AHR\Zeit\Zeit_Mitarbeiter_Ueberstunden_per_Vormonat.imr"
  3034. Stamp 1537539767 EnableMultiProcess False SetCurrent False ServerSource False
  3035. Speed False Presummarized False
  3036. OrgName 992457 "No" Origin Source Offset 63 Column "No" Storage Text Scale 0
  3037. Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  3038. OrgName 992459 "Id No" Origin Source Offset 1 Column "Id No" Storage Text
  3039. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  3040. OrgName 992461 "Name" Origin Source Offset 2 Column "Name" Storage Text
  3041. Scale 0 Size 52 Decimals 0 Class Description InputScale 0 TimeArray Off
  3042. OrgName 992463 "Last Name" Origin Source Offset 3 Column "Last Name" Storage Text
  3043. Scale 0 Size 32 Decimals 0 Class Description InputScale 0 TimeArray Off
  3044. OrgName 992465 "First Name" Origin Source Offset 4 Column "First Name"
  3045. Storage Text Scale 0 Size 32 Decimals 0 Class Description InputScale 0
  3046. TimeArray Off
  3047. OrgName 992467 "Employment Date" Origin Source Offset 5 Column "Employment Date"
  3048. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3049. OrgName 992469 "Leaving Date" Origin Source Offset 6 Column "Leaving Date"
  3050. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3051. OrgName 992471 "Department No" Origin Source Offset 49 Column "Department No"
  3052. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3053. TimeArray Off
  3054. OrgName 992473 "Group No 1" Origin Source Offset 8 Column "Group No 1"
  3055. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3056. TimeArray Off
  3057. OrgName 992475 "Group No 2" Origin Source Offset 9 Column "Group No 2"
  3058. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3059. TimeArray Off
  3060. OrgName 992477 "Group No 3" Origin Source Offset 10 Column "Group No 3"
  3061. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3062. TimeArray Off
  3063. OrgName 992479 "Time Object No" Origin Source Offset 11 Column "Time Object No"
  3064. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3065. TimeArray Off
  3066. OrgName 992481 "Std Vac Entitlem Days" Origin Source Offset 12 Column "Std Vac Entitlem Days"
  3067. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3068. OrgName 992483 "Handic Vac Entitlem Days" Origin Source Offset 13 Column "Handic Vac Entitlem Days"
  3069. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3070. OrgName 992485 "Spec Vac 2 Entitlem Days" Origin Source Offset 14 Column "Spec Vac 2 Entitlem Days"
  3071. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3072. OrgName 992487 "Spec Vac 3 Entitlem Days" Origin Source Offset 15 Column "Spec Vac 3 Entitlem Days"
  3073. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3074. OrgName 992489 "Std Vac Days Car Fwd Prev Y" Origin Source Offset 16 Column "Std Vac Days Car Fwd Prev Y"
  3075. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3076. OrgName 992491 "Handic Vac 1 Days Car Fwd" Origin Source Offset 17 Column "Handic Vac 1 Days Car Fwd"
  3077. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3078. OrgName 992493 "Special Vac 2 Days Car Fwd" Origin Source Offset 18 Column "Special Vac 2 Days Car Fwd"
  3079. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3080. OrgName 992495 "Special Vac 3 Days Car Fwd" Origin Source Offset 19 Column "Special Vac 3 Days Car Fwd"
  3081. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3082. OrgName 992497 "Rem Vac Days Taken" Origin Source Offset 20 Column "Rem Vac Days Taken"
  3083. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3084. OrgName 992499 "Rem Vac Days Planned" Origin Source Offset 21 Column "Rem Vac Days Planned"
  3085. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3086. OrgName 992501 "Standard Vac Entitlement Hrs" Origin Source Offset 22 Column "Standard Vac Entitlement Hrs"
  3087. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3088. OrgName 992503 "Handic Vac 1 Entitlement Hrs" Origin Source Offset 23 Column "Handic Vac 1 Entitlement Hrs"
  3089. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3090. OrgName 992505 "Special Vac 2 Entitlement (h)" Origin Source Offset 24
  3091. Column "Special Vac 2 Entitlement (h)" Storage Float64 Scale 0 Size 8 Decimals 0
  3092. Class Quantity InputScale 0 TimeArray Off
  3093. OrgName 992507 "Std Vac Car Fwd Prev Y (h)" Origin Source Offset 25 Column "Std Vac Car Fwd Prev Y (h)"
  3094. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3095. OrgName 992509 "Handic Vac 1 Hours Car Fwd" Origin Source Offset 26 Column "Handic Vac 1 Hours Car Fwd"
  3096. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3097. OrgName 992511 "Spec Vac 2 Hours Car Fwd" Origin Source Offset 27 Column "Spec Vac 2 Hours Car Fwd"
  3098. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3099. OrgName 992513 "Rem Vac Hours Taken" Origin Source Offset 28 Column "Rem Vac Hours Taken"
  3100. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3101. OrgName 992515 "Rem Vac Hrs Planned" Origin Source Offset 29 Column "Rem Vac Hrs Planned"
  3102. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3103. OrgName 992517 "Rem Handic Vac Days Taken" Origin Source Offset 30 Column "Rem Handic Vac Days Taken"
  3104. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3105. OrgName 992519 "Rem Handic Vac Days Planned" Origin Source Offset 31 Column "Rem Handic Vac Days Planned"
  3106. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3107. OrgName 992521 "Values Car Fwd Inactive" Origin Source Offset 32 Column "Values Car Fwd Inactive"
  3108. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3109. OrgName 992523 "Present" Origin Source Offset 33 Column "Present" Storage Int16
  3110. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3111. OrgName 992525 "Absent" Origin Source Offset 34 Column "Absent" Storage Int16
  3112. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3113. OrgName 992527 "Department Code" Origin Source Offset 35 Column "Department Code"
  3114. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3115. TimeArray Off
  3116. OrgName 992529 "Task Type Group" Origin Source Offset 36 Column "Task Type Group"
  3117. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3118. TimeArray Off
  3119. OrgName 992531 "Efficiency %" Origin Source Offset 37 Column "Efficiency %"
  3120. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  3121. TimeArray Off
  3122. OrgName 992533 "Resource No" Origin Source Offset 38 Column "Resource No"
  3123. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  3124. TimeArray Off
  3125. OrgName 992535 "Rating Pereas" Origin Source Offset 39 Column "Rating Pereas"
  3126. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  3127. TimeArray Off
  3128. OrgName 992537 "Urlaubsanspruch" Origin Source Offset 40 Column "Urlaubsanspruch_"
  3129. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3130. OrgName 992539 "Urlaubsübertrag Vorjahr" Origin Source Offset 41 Column "Urlaubsübertrag Vorjahr_"
  3131. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3132. OrgName 992541 "Gesamturlaubsanspruch" Origin Source Offset 42 Column "Gesamturlaubsanspruch_"
  3133. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3134. OrgName 992543 "Resturlaub" Origin Source Offset 43 Column "Resturlaub_"
  3135. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3136. OrgName 992545 "bisher genommener Urlaub" Origin Source Offset 44 Column "bisher genommener Urlaub_"
  3137. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3138. OrgName 992547 "Resturlaub bis Jahresende" Origin Source Offset 45 Column "Resturlaub bis Jahresende_"
  3139. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3140. OrgName 992549 "geplanter Urlaub" Origin Source Offset 46 Column "geplanter Urlaub_"
  3141. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3142. OrgName 992551 "Employee No" Origin Source Offset 47 Column "Employee No"
  3143. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  3144. TimeArray Off
  3145. OrgName 993635 "Datum_ori" Origin Source Offset 48 Column "Datum_ori" Storage Int32
  3146. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3147. OrgName 992553 "Datum" Origin Source Offset 113 Column "Datum" Storage Int32
  3148. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3149. OrgName 992555 "Department No" Origin Source Offset 49 Column "(2) Department No"
  3150. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3151. TimeArray Off
  3152. OrgName 992557 "Order No" Origin Source Offset 50 Column "Order No" Storage Text
  3153. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  3154. OrgName 992559 "Time Account No" Origin Source Offset 51 Column "Time Account No"
  3155. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3156. TimeArray Off
  3157. OrgName 992561 "Time Account Value" Origin Source Offset 52 Column "Time Account Value"
  3158. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3159. OrgName 992563 "Ta Class (general)" Origin Source Offset 53 Column "Ta Class (general)"
  3160. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3161. OrgName 992565 "Ta Class (statistics)" Origin Source Offset 54 Column "Ta Class (statistics)"
  3162. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3163. OrgName 992567 "Ta Class (absent Days)" Origin Source Offset 55 Column "Ta Class (absent Days)"
  3164. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3165. OrgName 992569 "Ta Class (time Processing)" Origin Source Offset 56 Column "Ta Class (time Processing)"
  3166. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3167. OrgName 992571 "Ta Class (individual)" Origin Source Offset 57 Column "Ta Class (individual)"
  3168. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3169. OrgName 992573 "Ta Class (employee Info)" Origin Source Offset 58 Column "Ta Class (employee Info)"
  3170. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3171. OrgName 992575 "Ta Class (vacation Reduction)" Origin Source Offset 59
  3172. Column "Ta Class (vacation Reduction)" Storage Int32 Scale 0 Size 4 Decimals 0
  3173. Class Quantity InputScale 0 TimeArray Off
  3174. OrgName 992577 "Ta Formatting" Origin Source Offset 60 Column "Ta Formatting"
  3175. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3176. OrgName 992579 "Generating Function" Origin Source Offset 61 Column "Generating Function"
  3177. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3178. OrgName 992581 "Record Protected" Origin Source Offset 62 Column "Record Protected"
  3179. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3180. OrgName 992583 "No" Origin Source Offset 63 Column "(2) No" Storage Int32
  3181. Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3182. OrgName 992585 "Description" Origin Source Offset 64 Column "Description"
  3183. Storage Text Scale 0 Size 52 Decimals 0 Class Description InputScale 0
  3184. TimeArray Off
  3185. OrgName 992587 "Description 2" Origin Source Offset 65 Column "Description 2"
  3186. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3187. TimeArray Off
  3188. OrgName 992589 "Symbol" Origin Source Offset 66 Column "Symbol" Storage Text
  3189. Scale 0 Size 5 Decimals 0 Class Description InputScale 0 TimeArray Off
  3190. OrgName 992591 "Character" Origin Source Offset 67 Column "Character" Storage Text
  3191. Scale 0 Size 3 Decimals 0 Class Description InputScale 0 TimeArray Off
  3192. OrgName 992593 "Pay Type 1" Origin Source Offset 68 Column "Pay Type 1"
  3193. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3194. TimeArray Off
  3195. OrgName 992595 "Sollzeit" Origin Source Offset 69 Column "Sollzeit_" Storage Float64
  3196. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3197. OrgName 992597 "Anwesenheit" Origin Source Offset 70 Column "Anwesenheit_"
  3198. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3199. OrgName 992599 "Mehrarbeit genehmigt" Origin Source Offset 71 Column "Mehrarbeit genehmigt_"
  3200. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3201. OrgName 992601 "Fehlzeit ungenehmigt" Origin Source Offset 72 Column "Fehlzeit ungenehmigt_"
  3202. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3203. OrgName 992603 "Überstunden Vortrag" Origin Source Offset 73 Column "Überstunden Vortrag"
  3204. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3205. OrgName 992605 "Überstunden Saldo" Origin Source Offset 74 Column "Überstunden Saldo"
  3206. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3207. OrgName 992607 "Summe (Überstunden Saldo) Nr.2" Origin Source Offset 75
  3208. Column "Summe (Überstunden Saldo) Nr.2" Storage Float64 Scale 0 Size 8
  3209. Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3210. OrgName 992609 "Summe (Überstunden Saldo) Nr.1" Origin Source Offset 76
  3211. Column "Summe (Überstunden Saldo) Nr.1" Storage Float64 Scale 0 Size 8
  3212. Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3213. OrgName 992611 "Krank" Origin Source Offset 77 Column "Krank_" Storage Float64
  3214. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3215. OrgName 992613 "Krank ohne AUB" Origin Source Offset 78 Column "Krank ohne AUB_"
  3216. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3217. OrgName 992615 "Krank ohne LFZ" Origin Source Offset 79 Column "Krank ohne LFZ_"
  3218. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3219. OrgName 992617 "Krank Kur" Origin Source Offset 80 Column "Krank Kur_"
  3220. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3221. OrgName 992619 "Krank gesamt" Origin Source Offset 81 Column "Krank gesamt_"
  3222. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3223. OrgName 992621 "Urlaub" Origin Source Offset 82 Column "Urlaub_" Storage Float64
  3224. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3225. OrgName 992623 "Sonderurlaub" Origin Source Offset 83 Column "Sonderurlaub"
  3226. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3227. OrgName 992625 "Erziehungsurlaub" Origin Source Offset 84 Column "Erziehungsurlaub"
  3228. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3229. OrgName 992627 "Urlaub unbezahlt" Origin Source Offset 85 Column "Urlaub unbezahlt_"
  3230. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3231. OrgName 992629 "Urlaub gesamt" Origin Source Offset 86 Column "Urlaub gesamt_"
  3232. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3233. OrgName 992631 "Berufsschule" Origin Source Offset 87 Column "Berufsschule"
  3234. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3235. OrgName 992633 "Schulung extern" Origin Source Offset 88 Column "Schulung extern_"
  3236. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3237. OrgName 992635 "Dienstreise" Origin Source Offset 89 Column "Dienstreise"
  3238. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3239. OrgName 992637 "Prüfung" Origin Source Offset 90 Column "Prüfung" Storage Float64
  3240. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3241. OrgName 992639 "Messe" Origin Source Offset 91 Column "Messe" Storage Float64
  3242. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3243. OrgName 992641 "Feiertag" Origin Source Offset 92 Column "Feiertag" Storage Float64
  3244. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3245. OrgName 992643 "Zeitausgleich" Origin Source Offset 93 Column "Zeitausgleich"
  3246. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3247. OrgName 992645 "Mutterschutz" Origin Source Offset 94 Column "Mutterschutz"
  3248. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3249. OrgName 992647 "Hauptbetrieb" Origin Source Offset 95 Column "Hauptbetrieb"
  3250. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  3251. OrgName 992649 "Standort" Origin Source Offset 96 Column "Standort" Storage Text
  3252. Scale 0 Size 4 Decimals 0 Class Description InputScale 0 TimeArray Off
  3253. OrgName 992651 "Monteur_Gruppe_ori" Origin Source Offset 97 Column "Monteur_Gruppe_ori"
  3254. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3255. TimeArray Off
  3256. OrgName 992653 "Heute" Origin Source Offset 98 Column "Heute" Storage Int32
  3257. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3258. OrgName 992655 "Tage Heute Leaving Date" Origin Source Offset 99 Column "Tage Heute Leaving Date"
  3259. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3260. OrgName 992657 "Monteur_Gruppe" Origin Source Offset 100 Column "Monteur_Gruppe"
  3261. Storage Text Scale 0 Size 25 Decimals 0 Class Description InputScale 0
  3262. TimeArray Off
  3263. OrgName 992659 "produktiv/unproduktiv" Origin Source Offset 101 Column "produktiv/unproduktiv"
  3264. Storage Text Scale 0 Size 18 Decimals 0 Class Description InputScale 0
  3265. TimeArray Off
  3266. OrgName 992661 "Monatserster" Origin Source Offset 102 Column "Monatserster"
  3267. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3268. OrgName 992663 "Monatsletzter" Origin Source Offset 103 Column "Monatsletzter"
  3269. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3270. OrgName 992665 "Datum Tagesbericht" Origin Source Offset 104 Column "Datum Tagesbericht"
  3271. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3272. OrgName 992667 "Order Number" Origin Source Offset 105 Column "Order Number"
  3273. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  3274. OrgName 992669 "Monteur" Origin Source Offset 106 Column "Monteur" Storage Text
  3275. Scale 0 Size 63 Decimals 0 Class Description InputScale 0 TimeArray Off
  3276. OrgName 992671 "Krank Tage" Origin Source Offset 107 Column "Krank Tage_"
  3277. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3278. OrgName 992673 "Krank Tage ohne AUB" Origin Source Offset 108 Column "Krank Tage ohne AUB_"
  3279. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3280. OrgName 992675 "Krank Tage ohne LFZ" Origin Source Offset 109 Column "Krank Tage ohne LFZ_"
  3281. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3282. OrgName 992677 "Krank Tage Kur" Origin Source Offset 110 Column "Krank Tage Kur_"
  3283. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3284. OrgName 992679 "ausbezahlte Überstunden" Origin Source Offset 111 Column "ausbezahlte Überstunden"
  3285. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3286. OrgName 992681 "Überstunden" Origin Source Offset 112 Column "Überstunden"
  3287. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3288. DataSource 992693 "AHA_Zeit_Mitarbeiter_Ueberstunden_per_Vormonat" Separator " "
  3289. SourceType DataSource CharacterSet Default DecimalSep "," Thousandsep "."
  3290. Columns True Timing PopYesCreateDefault Source "d:\gaps_bmw\portal\system\iqd\aha\zeit\aha_zeit_mitarbeiter_ueberstunden_per_vormonat.iqd"
  3291. SQL "select c1 as c1,
  3292. c2 as c2,
  3293. c3 as c3,
  3294. c4 as c4,
  3295. c5 as c5"
  3296. ",
  3297. c6 as c6,
  3298. c7 as c7,
  3299. c8 as c8,
  3300. c9 as c9,
  3301. c10 as c1"
  3302. "0,
  3303. c11 as c11,
  3304. c12 as c12,
  3305. c13 as c13,
  3306. c14 as c14,
  3307. "
  3308. "c15 as c15,
  3309. c16 as c16,
  3310. c17 as c17,
  3311. c18 as c18,
  3312. c19 as "
  3313. "c19,
  3314. c20 as c20,
  3315. c21 as c21,
  3316. c22 as c22,
  3317. c23 as c23,
  3318. "
  3319. " c24 as c24,
  3320. c25 as c25,
  3321. c26 as c26,
  3322. c27 as c27,
  3323. c28 a"
  3324. "s c28,
  3325. c29 as c29,
  3326. c30 as c30,
  3327. c31 as c31,
  3328. c32 as c32,
  3329. "
  3330. " c33 as c33,
  3331. c34 as c34,
  3332. c35 as c35,
  3333. c36 as c36,
  3334. c37"
  3335. " as c37,
  3336. c38 as c38,
  3337. c39 as c39,
  3338. c40 as c40,
  3339. c41 as c41"
  3340. ",
  3341. c42 as c42,
  3342. c43 as c43,
  3343. c44 as c44,
  3344. c45 as c45,
  3345. c"
  3346. "46 as c46,
  3347. c47 as c47,
  3348. c48 as c48,
  3349. c49 as c49,
  3350. c50 as c"
  3351. "50,
  3352. c51 as c51,
  3353. c52 as c52,
  3354. c53 as c53,
  3355. c54 as c54,
  3356. "
  3357. " c55 as c55,
  3358. c56 as c56,
  3359. c57 as c57,
  3360. c58 as c58,
  3361. c59 as"
  3362. " c59,
  3363. c60 as c60,
  3364. c61 as c61,
  3365. c62 as c62,
  3366. c63 as c63,
  3367. "
  3368. " c64 as c64,
  3369. c65 as c65,
  3370. c66 as c66,
  3371. c67 as c67,
  3372. c68 "
  3373. "as c68,
  3374. c69 as c69,
  3375. c70 as c70,
  3376. c71 as c71,
  3377. c72 as c72,"
  3378. "
  3379. c73 as c73,
  3380. c74 as c74,
  3381. c75 as c75,
  3382. RSUM(c75 for c49) "
  3383. "as c76,
  3384. RSUM(c75) as c77,
  3385. c78 as c78,
  3386. c79 as c79,
  3387. c80 a"
  3388. "s c80,
  3389. c81 as c81,
  3390. c82 as c82,
  3391. c83 as c83,
  3392. c84 as c84,
  3393. "
  3394. " c85 as c85,
  3395. c86 as c86,
  3396. c87 as c87,
  3397. c88 as c88,
  3398. c89"
  3399. " as c89,
  3400. c90 as c90,
  3401. c91 as c91,
  3402. c92 as c92,
  3403. c93 as c93"
  3404. ",
  3405. c94 as c94,
  3406. c95 as c95,
  3407. c96 as c96,
  3408. c97 as c97,
  3409. c"
  3410. "98 as c98,
  3411. c99 as c99,
  3412. c100 as c100,
  3413. c101 as c101,
  3414. c102"
  3415. " as c102,
  3416. c103 as c103,
  3417. c104 as c104,
  3418. c105 as c105,
  3419. c10"
  3420. "6 as c106,
  3421. c107 as c107,
  3422. c108 as c108,
  3423. c109 as c109,
  3424. c1"
  3425. "10 as c110,
  3426. c111 as c111,
  3427. c112 as c112,
  3428. c113 as c113,
  3429. c"
  3430. '114 as c114
  3431. from
  3432. (select T1."No_" as c1,
  3433. T1."ID No_" as c2,
  3434. T1'
  3435. '."Name" as c3,
  3436. T1."Last Name" as c4,
  3437. T1."First Name" as c5,
  3438. '
  3439. ' T1."Employment Date" as c6,
  3440. T1."Leaving Date" as c7,
  3441. T1."Depar'
  3442. 'tment No_" as c8,
  3443. T1."Group No_ 1" as c9,
  3444. T1."Group No_ 2" as c'
  3445. '10,
  3446. T1."Group No_ 3" as c11,
  3447. T1."Time Object No_" as c12,
  3448. ('
  3449. 'cast_float(T1."Std_ Vac_ Entitlem_ Days")) as c13,
  3450. (cast_float(T1."'
  3451. 'Handic_ Vac_ Entitlem_ Days")) as c14,
  3452. (cast_float(T1."Spec_ Vac_2 '
  3453. 'Entitlem_ Days")) as c15,
  3454. (cast_float(T1."Spec_ Vac_3 Entitlem_ Day'
  3455. 's")) as c16,
  3456. (cast_float(T1."Std_Vac_Days Car_Fwd_Prev_Y_")) as c17'
  3457. ',
  3458. (cast_float(T1."Handic_ Vac_1 Days Car_ Fwd_")) as c18,
  3459. (cast'
  3460. '_float(T1."Special Vac_2 Days Car_ Fwd_")) as c19,
  3461. (cast_float(T1."'
  3462. 'Special Vac_3 Days Car_ Fwd_")) as c20,
  3463. (cast_float(T1."Rem_ Vac_ D'
  3464. 'ays taken")) as c21,
  3465. (cast_float(T1."Rem_ Vac_ Days planned")) as c'
  3466. '22,
  3467. (cast_float(T1."Standard Vac_ Entitlement Hrs_")) as c23,
  3468. ('
  3469. 'cast_float(T1."Handic_ Vac_1 Entitlement Hrs_")) as c24,
  3470. (cast_floa'
  3471. 't(T1."Special Vac_2 Entitlement (H)")) as c25,
  3472. (cast_float(T1."Std_'
  3473. ' Vac_Car_Fwd_Prev_Y_(H)")) as c26,
  3474. (cast_float(T1."Handic_ Vac_1 Ho'
  3475. 'urs Car_ Fwd_")) as c27,
  3476. (cast_float(T1."Spec_ Vac_2 Hours Car_ Fwd'
  3477. '_")) as c28,
  3478. (cast_float(T1."Rem_ Vac_ Hours taken")) as c29,
  3479. ('
  3480. 'cast_float(T1."Rem_ Vac_ Hrs_ Planned")) as c30,
  3481. (cast_float(T1."Re'
  3482. 'm_ Handic_ Vac_ Days taken")) as c31,
  3483. (cast_float(T1."Rem_ Handic_ '
  3484. 'Vac_ Days planned")) as c32,
  3485. T1."Values Car_ Fwd_ Inactive" as c33,'
  3486. '
  3487. T1."Present" as c34,
  3488. T1."Absent" as c35,
  3489. T1."Department Co'
  3490. 'de" as c36,
  3491. T1."Task Type Group" as c37,
  3492. T1."Efficiency %" as c'
  3493. '38,
  3494. T1."Resource No_" as c39,
  3495. T1."Rating PEREAS" as c40,
  3496. (('
  3497. 'cast_float(T1."Std_ Vac_ Entitlem_ Days"))) as c41,
  3498. ((cast_float(T1'
  3499. '."Std_Vac_Days Car_Fwd_Prev_Y_"))) as c42,
  3500. (((cast_float(T1."Std_ V'
  3501. 'ac_ Entitlem_ Days")))) + (((cast_float(T1."Std_Vac_Days Car_Fwd_Prev_Y'
  3502. '_")))) as c43,
  3503. ((cast_float(T1."Rem_ Vac_ Days taken"))) as c44,
  3504. '
  3505. ' ((((cast_float(T1."Std_ Vac_ Entitlem_ Days")))) + (((cast_float(T1."'
  3506. 'Std_Vac_Days Car_Fwd_Prev_Y_"))))) - (((cast_float(T1."Rem_ Vac_ Days t'
  3507. 'aken")))) as c45,
  3508. ((cast_float(T1."Rem_ Vac_ Days planned"))) as c4'
  3509. '6,
  3510. (((cast_float(T1."Rem_ Vac_ Days taken")))) - (((cast_float(T1."'
  3511. 'Rem_ Vac_ Days planned")))) as c47,
  3512. T2."Employee No_" as c48,
  3513. T'
  3514. '2."Current Date" as c49,
  3515. T2."Department No_" as c50,
  3516. T2."Order '
  3517. 'No_" as c51,
  3518. T2."Time Account No_" as c52,
  3519. (cast_float(T2."Time'
  3520. ' Account Value")) as c53,
  3521. T2."TA Class (General)" as c54,
  3522. T2."T'
  3523. 'A Class (Statistics)" as c55,
  3524. T2."TA Class (Absent Days)" as c56,
  3525. '
  3526. ' T2."TA Class (Time Processing)" as c57,
  3527. T2."TA Class (Individual'
  3528. ')" as c58,
  3529. T2."TA Class (Employee Info)" as c59,
  3530. T2."TA Class ('
  3531. 'Vacation Reduction)" as c60,
  3532. T2."TA Formatting" as c61,
  3533. T2."Gen'
  3534. 'erating Function" as c62,
  3535. T2."Record protected" as c63,
  3536. T3."No_'
  3537. '" as c64,
  3538. T3."Description" as c65,
  3539. T3."Description 2" as c66,
  3540. '
  3541. ' T3."Symbol" as c67,
  3542. T3."Character" as c68,
  3543. T3."Pay Type 1" a'
  3544. 's c69,
  3545. CASE WHEN (T2."Time Account No_" IN (' "'1200')) THEN (((cast_float(T2."
  3546. '"Time Account Value")))) ELSE (0) END as c70,
  3547. CASE WHEN (T2."Time A'
  3548. 'ccount No_" IN (' "'100')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c71,
  3549. CASE WHEN (T2."Time A'
  3550. 'ccount No_" IN (' "'200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c72,
  3551. CASE WHEN (T2."Time A'
  3552. 'ccount No_" IN (' "'300')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c73,
  3553. CASE WHEN ((((od_year'
  3554. '(T2."Current Date")) = (od_year((now())))) and (((od_month(T2."Current '
  3555. 'Date")) = 1) or (T2."Current Date" = TIMESTAMP ' "'2013-07-01 00:00:00.000'))) and (T2."
  3556. '"Time Account No_" IN (' "'1101'))) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c74,
  3557. (CASE WHEN (T2."Time '
  3558. 'Account No_" IN (' "'200')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) - (CASE WHEN (T2."Time Account N'
  3559. 'o_" IN (' "'300')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN ((((od_year(T2."Cur'
  3560. 'rent Date")) = (od_year((now())))) and (((od_month(T2."Current Date")) '
  3561. '= 1) or (T2."Current Date" = TIMESTAMP ' "'2013-07-01 00:00:00.000'))) and (T2."
  3562. '"Time Account No_" IN (' "'1101'))) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) as c75,
  3563. CASE WHEN (T2."Time '
  3564. 'Account No_" IN (' "'370')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c78,
  3565. CASE WHEN (T2."Time A'
  3566. 'ccount No_" IN (' "'371')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c79,
  3567. CASE WHEN (T2."Time A'
  3568. 'ccount No_" IN (' "'372')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c80,
  3569. CASE WHEN (T2."Time A'
  3570. 'ccount No_" IN (' "'373','374')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c81,
  3571. (CASE WHEN (T2."Time '
  3572. 'Account No_" IN (' "'370')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  3573. 'o_" IN (' "'371')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  3574. 'o_" IN (' "'372')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  3575. 'o_" IN (' "'373','374')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) as c82,
  3576. CASE WHEN (T2."Time '
  3577. 'Account No_" IN (' "'350')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c83,
  3578. CASE WHEN (T2."Time A'
  3579. 'ccount No_" IN (' "'352')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c84,
  3580. CASE WHEN (T2."Time A'
  3581. 'ccount No_" IN (' "'353')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c85,
  3582. CASE WHEN (T2."Time A'
  3583. 'ccount No_" IN (' "'351')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c86,
  3584. (CASE WHEN (T2."Time '
  3585. 'Account No_" IN (' "'350')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  3586. 'o_" IN (' "'352')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  3587. 'o_" IN (' "'353')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) + (CASE WHEN (T2."Time Account N'
  3588. 'o_" IN (' "'351')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END) as c87,
  3589. CASE WHEN (T2."Time '
  3590. 'Account No_" IN (' "'354')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c88,
  3591. CASE WHEN (T2."Time A'
  3592. 'ccount No_" IN (' "'355')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c89,
  3593. CASE WHEN (T2."Time A'
  3594. 'ccount No_" IN (' "'356')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c90,
  3595. CASE WHEN (T2."Time A'
  3596. 'ccount No_" IN (' "'357')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c91,
  3597. CASE WHEN (T2."Time A'
  3598. 'ccount No_" IN (' "'359')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c92,
  3599. CASE WHEN (T2."Time A'
  3600. 'ccount No_" IN (' "'450')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c93,
  3601. CASE WHEN (T2."Time A'
  3602. 'ccount No_" IN (' "'378')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c94,
  3603. CASE WHEN (T2."Time A'
  3604. 'ccount No_" IN (' "'380')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c95,
  3605. '
  3606. "'1' as c96,
  3607. (od_left(T1." '"Department No_",2)) as c97,
  3608. T1."Pay Group No_" as c98,
  3609. (now())'
  3610. " - INTERVAL '001 10:00:00.000' as c99,
  3611. (extract(DAY FROM (now()) - "
  3612. 'T1."Leaving Date")) as c100,
  3613. CASE WHEN ((((extract(DAY FROM (now())'
  3614. ' - T1."Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('augetretene Mitarbeiter') WHEN (T1."
  3615. '"Pay Group No_" = ' "'WMOZ') THEN ('WMOM') ELSE (T1." '"Pay Group No_") END as c101,
  3616. CASE WHEN (T1."Pay Group No_" IN ('
  3617. "'AZG1','AZG2','AZG3','WMOE','WMOK','WMOM','AZG4','WMOZ')) THEN ('prod. "
  3618. "Personal') ELSE ('unprod. Personal') END as c102,
  3619. (cdatetime(T2."
  3620. '"Current Date" - cinterval(extract(DAY FROM T2."Current Date") - 1))) a'
  3621. 's c103,
  3622. (cdatetime(lastday(cdate(T2."Current Date")))) as c104,
  3623. '
  3624. " CASE WHEN (((now()) - INTERVAL '001 10:00:00.000') BETWEEN ((cdatetime"
  3625. '(T2."Current Date" - cinterval(extract(DAY FROM T2."Current Date") - 1)'
  3626. '))) AND ((cdatetime(lastday(cdate(T2."Current Date")))))) THEN (T2."Cur'
  3627. 'rent Date") ELSE null END as c105,
  3628. ' "'' as c106,
  3629. T1." '"First Name" || '
  3630. "' ' || T1." '"Last Name" as c107,
  3631. CASE WHEN (T2."Time Account No_" IN ('
  3632. "'670')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c108,
  3633. CASE WHEN (T2."Time '
  3634. 'Account No_" IN (' "'671')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c109,
  3635. CASE WHEN (T2."Time '
  3636. 'Account No_" IN (' "'672')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c110,
  3637. CASE WHEN (T2."Time '
  3638. 'Account No_" IN (' "'673','674')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c111,
  3639. CASE WHEN (T2."Time '
  3640. 'Account No_" IN (' "'3500')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c112,
  3641. CASE WHEN (T2."Time '
  3642. 'Account No_" IN (' "'1101')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c113,
  3643. CASE WHEN (T2."Time '
  3644. 'Account No_" = ' "'1101') THEN (T2." '"Current Date" - INTERVAL ' "'001 00:00:00.000') ELSE (T2."
  3645. '"Current Date") END as c114
  3646. from "DMS1"."dbo"."AH Augsburg$Employee_T" '
  3647. 'T1,
  3648. "DMS1"."dbo"."AH Augsburg$Time Entry_T" T2,
  3649. "DMS1"."dbo"."AH Augs'
  3650. 'burg$Time Account_T" T3
  3651. where (T1."No_" = T2."Employee No_") and (T2."T'
  3652. 'ime Account No_" = (cast_numberToString(cast_integer(T3."No_"))))
  3653. and ('
  3654. '(((((T2."Current Date" >= T1."Employment Date") and ((T1."Leaving Date"'
  3655. ' >= (@CURRENT_DATE)) or (T1."Leaving Date" = TIMESTAMP ' "'1753-01-01 00:00:00.000'))) and ((CASE WHEN (T2."
  3656. '"Time Account No_" = ' "'1101') THEN (T2." '"Current Date" - INTERVAL '
  3657. "'001 00:00:00.000') ELSE (T2." '"Current Date") END) >= TIMESTAMP ' "'2015-01-01 00:00:00.000')) and ((CASE WHEN (T2."
  3658. '"Time Account No_" = ' "'1101') THEN (T2." '"Current Date" - INTERVAL '
  3659. "'001 00:00:00.000') ELSE (T2." '"Current Date") END) < (cdatetime((@CURRENT_DATE) - cinterval(extract(D'
  3660. 'AY FROM (@CURRENT_DATE)) - 1))))) and (T2."Time Account No_" IN (' "'1101','3500','1090'))) and (T1."
  3661. '"No_" <> ' "'65517'))
  3662. order by c49 asc,c3 asc,c52 asc
  3663. ) D1
  3664. " Isolation 0
  3665. UserEditable False SourceSignonList 643419 EndList ImrName "D:\GAPS_BMW\Portal\System\IQD\AHA\Zeit\AHA_Zeit_Mitarbeiter_Ueberstunden_per_Vormonat.imr"
  3666. Stamp 1476867996 EnableMultiProcess False SetCurrent False ServerSource False
  3667. Speed False Presummarized False
  3668. OrgName 992695 "No" Origin Source Offset 63 Column "No" Storage Text Scale 0
  3669. Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  3670. OrgName 992697 "Id No" Origin Source Offset 1 Column "Id No" Storage Text
  3671. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  3672. OrgName 992699 "Name" Origin Source Offset 2 Column "Name" Storage Text
  3673. Scale 0 Size 52 Decimals 0 Class Description InputScale 0 TimeArray Off
  3674. OrgName 992701 "Last Name" Origin Source Offset 3 Column "Last Name" Storage Text
  3675. Scale 0 Size 32 Decimals 0 Class Description InputScale 0 TimeArray Off
  3676. OrgName 992703 "First Name" Origin Source Offset 4 Column "First Name"
  3677. Storage Text Scale 0 Size 32 Decimals 0 Class Description InputScale 0
  3678. TimeArray Off
  3679. OrgName 992705 "Employment Date" Origin Source Offset 5 Column "Employment Date"
  3680. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3681. OrgName 992707 "Leaving Date" Origin Source Offset 6 Column "Leaving Date"
  3682. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3683. OrgName 992709 "Department No" Origin Source Offset 49 Column "Department No"
  3684. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3685. TimeArray Off
  3686. OrgName 992711 "Group No 1" Origin Source Offset 8 Column "Group No 1"
  3687. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3688. TimeArray Off
  3689. OrgName 992713 "Group No 2" Origin Source Offset 9 Column "Group No 2"
  3690. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3691. TimeArray Off
  3692. OrgName 992715 "Group No 3" Origin Source Offset 10 Column "Group No 3"
  3693. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3694. TimeArray Off
  3695. OrgName 992717 "Time Object No" Origin Source Offset 11 Column "Time Object No"
  3696. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3697. TimeArray Off
  3698. OrgName 992719 "Std Vac Entitlem Days" Origin Source Offset 12 Column "Std Vac Entitlem Days"
  3699. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3700. OrgName 992721 "Handic Vac Entitlem Days" Origin Source Offset 13 Column "Handic Vac Entitlem Days"
  3701. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3702. OrgName 992723 "Spec Vac 2 Entitlem Days" Origin Source Offset 14 Column "Spec Vac 2 Entitlem Days"
  3703. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3704. OrgName 992725 "Spec Vac 3 Entitlem Days" Origin Source Offset 15 Column "Spec Vac 3 Entitlem Days"
  3705. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3706. OrgName 992727 "Std Vac Days Car Fwd Prev Y" Origin Source Offset 16 Column "Std Vac Days Car Fwd Prev Y"
  3707. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3708. OrgName 992729 "Handic Vac 1 Days Car Fwd" Origin Source Offset 17 Column "Handic Vac 1 Days Car Fwd"
  3709. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3710. OrgName 992731 "Special Vac 2 Days Car Fwd" Origin Source Offset 18 Column "Special Vac 2 Days Car Fwd"
  3711. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3712. OrgName 992733 "Special Vac 3 Days Car Fwd" Origin Source Offset 19 Column "Special Vac 3 Days Car Fwd"
  3713. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3714. OrgName 992735 "Rem Vac Days Taken" Origin Source Offset 20 Column "Rem Vac Days Taken"
  3715. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3716. OrgName 992737 "Rem Vac Days Planned" Origin Source Offset 21 Column "Rem Vac Days Planned"
  3717. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3718. OrgName 992739 "Standard Vac Entitlement Hrs" Origin Source Offset 22 Column "Standard Vac Entitlement Hrs"
  3719. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3720. OrgName 992741 "Handic Vac 1 Entitlement Hrs" Origin Source Offset 23 Column "Handic Vac 1 Entitlement Hrs"
  3721. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3722. OrgName 992743 "Special Vac 2 Entitlement (h)" Origin Source Offset 24
  3723. Column "Special Vac 2 Entitlement (h)" Storage Float64 Scale 0 Size 8 Decimals 0
  3724. Class Quantity InputScale 0 TimeArray Off
  3725. OrgName 992745 "Std Vac Car Fwd Prev Y (h)" Origin Source Offset 25 Column "Std Vac Car Fwd Prev Y (h)"
  3726. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3727. OrgName 992747 "Handic Vac 1 Hours Car Fwd" Origin Source Offset 26 Column "Handic Vac 1 Hours Car Fwd"
  3728. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3729. OrgName 992749 "Spec Vac 2 Hours Car Fwd" Origin Source Offset 27 Column "Spec Vac 2 Hours Car Fwd"
  3730. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3731. OrgName 992751 "Rem Vac Hours Taken" Origin Source Offset 28 Column "Rem Vac Hours Taken"
  3732. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3733. OrgName 992753 "Rem Vac Hrs Planned" Origin Source Offset 29 Column "Rem Vac Hrs Planned"
  3734. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3735. OrgName 992755 "Rem Handic Vac Days Taken" Origin Source Offset 30 Column "Rem Handic Vac Days Taken"
  3736. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3737. OrgName 992757 "Rem Handic Vac Days Planned" Origin Source Offset 31 Column "Rem Handic Vac Days Planned"
  3738. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3739. OrgName 992759 "Values Car Fwd Inactive" Origin Source Offset 32 Column "Values Car Fwd Inactive"
  3740. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3741. OrgName 992761 "Present" Origin Source Offset 33 Column "Present" Storage Int16
  3742. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3743. OrgName 992763 "Absent" Origin Source Offset 34 Column "Absent" Storage Int16
  3744. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3745. OrgName 992765 "Department Code" Origin Source Offset 35 Column "Department Code"
  3746. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3747. TimeArray Off
  3748. OrgName 992767 "Task Type Group" Origin Source Offset 36 Column "Task Type Group"
  3749. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3750. TimeArray Off
  3751. OrgName 992769 "Efficiency %" Origin Source Offset 37 Column "Efficiency %"
  3752. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  3753. TimeArray Off
  3754. OrgName 992771 "Resource No" Origin Source Offset 38 Column "Resource No"
  3755. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  3756. TimeArray Off
  3757. OrgName 992773 "Rating Pereas" Origin Source Offset 39 Column "Rating Pereas"
  3758. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  3759. TimeArray Off
  3760. OrgName 992775 "Urlaubsanspruch" Origin Source Offset 40 Column "Urlaubsanspruch_"
  3761. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3762. OrgName 992777 "Urlaubsübertrag Vorjahr" Origin Source Offset 41 Column "Urlaubsübertrag Vorjahr_"
  3763. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3764. OrgName 992779 "Gesamturlaubsanspruch" Origin Source Offset 42 Column "Gesamturlaubsanspruch_"
  3765. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3766. OrgName 992781 "Resturlaub" Origin Source Offset 43 Column "Resturlaub_"
  3767. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3768. OrgName 992783 "bisher genommener Urlaub" Origin Source Offset 44 Column "bisher genommener Urlaub_"
  3769. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3770. OrgName 992785 "Resturlaub bis Jahresende" Origin Source Offset 45 Column "Resturlaub bis Jahresende_"
  3771. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3772. OrgName 992787 "geplanter Urlaub" Origin Source Offset 46 Column "geplanter Urlaub_"
  3773. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3774. OrgName 992789 "Employee No" Origin Source Offset 47 Column "Employee No"
  3775. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  3776. TimeArray Off
  3777. OrgName 993637 "Datum_ori" Origin Source Offset 48 Column "Datum_ori" Storage Int32
  3778. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3779. OrgName 992791 "Datum" Origin Source Offset 113 Column "Datum" Storage Int32
  3780. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3781. OrgName 992793 "Department No" Origin Source Offset 49 Column "(2) Department No"
  3782. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3783. TimeArray Off
  3784. OrgName 992795 "Order No" Origin Source Offset 50 Column "Order No" Storage Text
  3785. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  3786. OrgName 992797 "Time Account No" Origin Source Offset 51 Column "Time Account No"
  3787. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3788. TimeArray Off
  3789. OrgName 992799 "Time Account Value" Origin Source Offset 52 Column "Time Account Value"
  3790. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3791. OrgName 992801 "Ta Class (general)" Origin Source Offset 53 Column "Ta Class (general)"
  3792. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3793. OrgName 992803 "Ta Class (statistics)" Origin Source Offset 54 Column "Ta Class (statistics)"
  3794. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3795. OrgName 992805 "Ta Class (absent Days)" Origin Source Offset 55 Column "Ta Class (absent Days)"
  3796. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3797. OrgName 992807 "Ta Class (time Processing)" Origin Source Offset 56 Column "Ta Class (time Processing)"
  3798. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3799. OrgName 992809 "Ta Class (individual)" Origin Source Offset 57 Column "Ta Class (individual)"
  3800. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3801. OrgName 992811 "Ta Class (employee Info)" Origin Source Offset 58 Column "Ta Class (employee Info)"
  3802. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3803. OrgName 992813 "Ta Class (vacation Reduction)" Origin Source Offset 59
  3804. Column "Ta Class (vacation Reduction)" Storage Int32 Scale 0 Size 4 Decimals 0
  3805. Class Quantity InputScale 0 TimeArray Off
  3806. OrgName 992815 "Ta Formatting" Origin Source Offset 60 Column "Ta Formatting"
  3807. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3808. OrgName 992817 "Generating Function" Origin Source Offset 61 Column "Generating Function"
  3809. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3810. OrgName 992819 "Record Protected" Origin Source Offset 62 Column "Record Protected"
  3811. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3812. OrgName 992821 "No" Origin Source Offset 63 Column "(2) No" Storage Int32
  3813. Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3814. OrgName 992823 "Description" Origin Source Offset 64 Column "Description"
  3815. Storage Text Scale 0 Size 52 Decimals 0 Class Description InputScale 0
  3816. TimeArray Off
  3817. OrgName 992825 "Description 2" Origin Source Offset 65 Column "Description 2"
  3818. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3819. TimeArray Off
  3820. OrgName 992827 "Symbol" Origin Source Offset 66 Column "Symbol" Storage Text
  3821. Scale 0 Size 5 Decimals 0 Class Description InputScale 0 TimeArray Off
  3822. OrgName 992829 "Character" Origin Source Offset 67 Column "Character" Storage Text
  3823. Scale 0 Size 3 Decimals 0 Class Description InputScale 0 TimeArray Off
  3824. OrgName 992831 "Pay Type 1" Origin Source Offset 68 Column "Pay Type 1"
  3825. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3826. TimeArray Off
  3827. OrgName 992833 "Sollzeit" Origin Source Offset 69 Column "Sollzeit_" Storage Float64
  3828. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3829. OrgName 992835 "Anwesenheit" Origin Source Offset 70 Column "Anwesenheit_"
  3830. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3831. OrgName 992837 "Mehrarbeit genehmigt" Origin Source Offset 71 Column "Mehrarbeit genehmigt_"
  3832. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3833. OrgName 992839 "Fehlzeit ungenehmigt" Origin Source Offset 72 Column "Fehlzeit ungenehmigt_"
  3834. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3835. OrgName 992841 "Überstunden Vortrag" Origin Source Offset 73 Column "Überstunden Vortrag"
  3836. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3837. OrgName 992843 "Überstunden Saldo" Origin Source Offset 74 Column "Überstunden Saldo"
  3838. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3839. OrgName 992845 "Summe (Überstunden Saldo) Nr.2" Origin Source Offset 75
  3840. Column "Summe (Überstunden Saldo) Nr.2" Storage Float64 Scale 0 Size 8
  3841. Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3842. OrgName 992847 "Summe (Überstunden Saldo) Nr.1" Origin Source Offset 76
  3843. Column "Summe (Überstunden Saldo) Nr.1" Storage Float64 Scale 0 Size 8
  3844. Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3845. OrgName 992849 "Krank" Origin Source Offset 77 Column "Krank_" Storage Float64
  3846. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3847. OrgName 992851 "Krank ohne AUB" Origin Source Offset 78 Column "Krank ohne AUB_"
  3848. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3849. OrgName 992853 "Krank ohne LFZ" Origin Source Offset 79 Column "Krank ohne LFZ_"
  3850. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3851. OrgName 992855 "Krank Kur" Origin Source Offset 80 Column "Krank Kur_"
  3852. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3853. OrgName 992857 "Krank gesamt" Origin Source Offset 81 Column "Krank gesamt_"
  3854. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3855. OrgName 992859 "Urlaub" Origin Source Offset 82 Column "Urlaub_" Storage Float64
  3856. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3857. OrgName 992861 "Sonderurlaub" Origin Source Offset 83 Column "Sonderurlaub_"
  3858. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3859. OrgName 992863 "Erziehungsurlaub" Origin Source Offset 84 Column "Erziehungsurlaub_"
  3860. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3861. OrgName 992865 "Urlaub unbezahlt" Origin Source Offset 85 Column "Urlaub unbezahlt_"
  3862. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3863. OrgName 992867 "Urlaub gesamt" Origin Source Offset 86 Column "Urlaub gesamt_"
  3864. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3865. OrgName 992869 "Berufsschule" Origin Source Offset 87 Column "Berufsschule"
  3866. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3867. OrgName 992871 "Schulung extern" Origin Source Offset 88 Column "Schulung extern_"
  3868. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3869. OrgName 992873 "Dienstreise" Origin Source Offset 89 Column "Dienstreise"
  3870. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3871. OrgName 992875 "Prüfung" Origin Source Offset 90 Column "Prüfung" Storage Float64
  3872. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3873. OrgName 992877 "Messe" Origin Source Offset 91 Column "Messe" Storage Float64
  3874. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3875. OrgName 992879 "Feiertag" Origin Source Offset 92 Column "Feiertag" Storage Float64
  3876. Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3877. OrgName 992881 "Zeitausgleich" Origin Source Offset 93 Column "Zeitausgleich"
  3878. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3879. OrgName 992883 "Mutterschutz" Origin Source Offset 94 Column "Mutterschutz"
  3880. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3881. OrgName 992885 "Hauptbetrieb" Origin Source Offset 95 Column "Hauptbetrieb_ori"
  3882. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  3883. OrgName 992887 "Standort" Origin Source Offset 96 Column "Standort" Storage Text
  3884. Scale 0 Size 4 Decimals 0 Class Description InputScale 0 TimeArray Off
  3885. OrgName 992889 "Monteur_Gruppe_ori" Origin Source Offset 97 Column "Monteur_Gruppe_ori"
  3886. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  3887. TimeArray Off
  3888. OrgName 992891 "Heute" Origin Source Offset 98 Column "Heute" Storage Int32
  3889. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3890. OrgName 992893 "Tage Heute Leaving Date" Origin Source Offset 99 Column "Tage Heute Leaving Date"
  3891. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3892. OrgName 992895 "Monteur_Gruppe" Origin Source Offset 100 Column "Monteur_Gruppe"
  3893. Storage Text Scale 0 Size 25 Decimals 0 Class Description InputScale 0
  3894. TimeArray Off
  3895. OrgName 992897 "produktiv/unproduktiv" Origin Source Offset 101 Column "produktiv/unproduktiv"
  3896. Storage Text Scale 0 Size 18 Decimals 0 Class Description InputScale 0
  3897. TimeArray Off
  3898. OrgName 992899 "Monatserster" Origin Source Offset 102 Column "Monatserster"
  3899. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3900. OrgName 992901 "Monatsletzter" Origin Source Offset 103 Column "Monatsletzter"
  3901. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3902. OrgName 992903 "Datum Tagesbericht" Origin Source Offset 104 Column "Datum Tagesbericht"
  3903. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  3904. OrgName 992905 "Order Number" Origin Source Offset 105 Column "Order Number"
  3905. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  3906. OrgName 992907 "Monteur" Origin Source Offset 106 Column "Monteur" Storage Text
  3907. Scale 0 Size 63 Decimals 0 Class Description InputScale 0 TimeArray Off
  3908. OrgName 992909 "Krank Tage" Origin Source Offset 107 Column "Krank Tage_"
  3909. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3910. OrgName 992911 "Krank Tage ohne AUB" Origin Source Offset 108 Column "Krank Tage ohne AUB_"
  3911. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3912. OrgName 992913 "Krank Tage ohne LFZ" Origin Source Offset 109 Column "Krank Tage ohne LFZ_"
  3913. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3914. OrgName 992915 "Krank Tage Kur" Origin Source Offset 110 Column "Krank Tage Kur_"
  3915. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3916. OrgName 992917 "ausbezahlte Überstunden" Origin Source Offset 111 Column "ausbezahlte Überstunden"
  3917. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3918. OrgName 992919 "Überstunden" Origin Source Offset 112 Column "Überstunden"
  3919. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  3920. OrgName 992921 "Hauptbetrieb" Origin Calculated Offset 0 Column "Hauptbetrieb"
  3921. Storage Default Scale 0 Size 1 Decimals 0 Class Description InputScale 0
  3922. TimeArray Off Calc '2'
  3923. DataSource 992945 "Zeit_Mitarbeiter_Ueberstunden_lfd_Monat" Separator " "
  3924. SourceType DataSource CharacterSet Default DecimalSep "," Thousandsep "."
  3925. Columns True Timing PopYesCreateDefault Source "D:\GAPS_BMW\Portal\System\IQD\AHR\Zeit\Zeit_Mitarbeiter_Ueberstunden_lfd_Monat.iqd"
  3926. SQL 'select T1."No_" as c1,
  3927. T1."ID No_" as c2,
  3928. T1."Name" as c3,
  3929. '
  3930. 'T1."Last Name" as c4,
  3931. T1."First Name" as c5,
  3932. T1."Employment Dat'
  3933. 'e" as c6,
  3934. T1."Leaving Date" as c7,
  3935. T1."Department No_" as c8,
  3936. '
  3937. ' T1."Group No_ 1" as c9,
  3938. T1."Group No_ 2" as c10,
  3939. T1."Group N'
  3940. 'o_ 3" as c11,
  3941. T1."Time Object No_" as c12,
  3942. (cast_float(T1."Std_'
  3943. ' Vac_ Entitlem_ Days")) as c13,
  3944. (cast_float(T1."Handic_ Vac_ Entitl'
  3945. 'em_ Days")) as c14,
  3946. (cast_float(T1."Spec_ Vac_2 Entitlem_ Days")) a'
  3947. 's c15,
  3948. (cast_float(T1."Spec_ Vac_3 Entitlem_ Days")) as c16,
  3949. (c'
  3950. 'ast_float(T1."Std_Vac_Days Car_Fwd_Prev_Y_")) as c17,
  3951. (cast_float(T'
  3952. '1."Handic_ Vac_1 Days Car_ Fwd_")) as c18,
  3953. (cast_float(T1."Special '
  3954. 'Vac_2 Days Car_ Fwd_")) as c19,
  3955. (cast_float(T1."Special Vac_3 Days '
  3956. 'Car_ Fwd_")) as c20,
  3957. (cast_float(T1."Rem_ Vac_ Days taken")) as c21'
  3958. ',
  3959. (cast_float(T1."Rem_ Vac_ Days planned")) as c22,
  3960. (cast_float'
  3961. '(T1."Standard Vac_ Entitlement Hrs_")) as c23,
  3962. (cast_float(T1."Hand'
  3963. 'ic_ Vac_1 Entitlement Hrs_")) as c24,
  3964. (cast_float(T1."Special Vac_2'
  3965. ' Entitlement (H)")) as c25,
  3966. (cast_float(T1."Std_ Vac_Car_Fwd_Prev_Y'
  3967. '_(H)")) as c26,
  3968. (cast_float(T1."Handic_ Vac_1 Hours Car_ Fwd_")) as'
  3969. ' c27,
  3970. (cast_float(T1."Spec_ Vac_2 Hours Car_ Fwd_")) as c28,
  3971. (c'
  3972. 'ast_float(T1."Rem_ Vac_ Hours taken")) as c29,
  3973. (cast_float(T1."Rem_'
  3974. ' Vac_ Hrs_ Planned")) as c30,
  3975. (cast_float(T1."Rem_ Handic_ Vac_ Day'
  3976. 's taken")) as c31,
  3977. (cast_float(T1."Rem_ Handic_ Vac_ Days planned")'
  3978. ') as c32,
  3979. T1."Values Car_ Fwd_ Inactive" as c33,
  3980. T1."Present" a'
  3981. 's c34,
  3982. T1."Absent" as c35,
  3983. T1."Department Code" as c36,
  3984. T1.'
  3985. '"Task Type Group" as c37,
  3986. T1."Efficiency %" as c38,
  3987. T1."Resourc'
  3988. 'e No_" as c39,
  3989. T1."Rating PEREAS" as c40,
  3990. T2."Employee No_" as '
  3991. 'c41,
  3992. T2."Current Date" as c42,
  3993. T2."Department No_" as c43,
  3994. '
  3995. 'T2."Order No_" as c44,
  3996. T2."Time Account No_" as c45,
  3997. (cast_floa'
  3998. 't(T2."Time Account Value")) as c46,
  3999. T2."TA Class (General)" as c47,'
  4000. '
  4001. T2."TA Class (Statistics)" as c48,
  4002. T2."TA Class (Absent Days)"'
  4003. ' as c49,
  4004. T2."TA Class (Time Processing)" as c50,
  4005. T2."TA Class ('
  4006. 'Individual)" as c51,
  4007. T2."TA Class (Employee Info)" as c52,
  4008. T2."'
  4009. 'TA Class (Vacation Reduction)" as c53,
  4010. T2."TA Formatting" as c54,
  4011. '
  4012. ' T2."Generating Function" as c55,
  4013. T2."Record protected" as c56,
  4014. '
  4015. ' T3."No_" as c57,
  4016. T3."Description" as c58,
  4017. T3."Description 2"'
  4018. ' as c59,
  4019. T3."Symbol" as c60,
  4020. T3."Character" as c61,
  4021. T3."Pay'
  4022. ' Type 1" as c62,
  4023. ' "'1' as c63,
  4024. CASE WHEN ((od_left(T1." '"Department No_",2)) = '
  4025. "'90') THEN ('55') ELSE ((od_left(T1." '"Department No_",2))) END as c64,
  4026. T1."Pay Group No_" as c65,
  4027. (n'
  4028. "ow()) - INTERVAL '001 10:00:00.000' as c66,
  4029. (extract(DAY FROM (now("
  4030. ')) - T1."Leaving Date")) as c67,
  4031. CASE WHEN ((((extract(DAY FROM (no'
  4032. 'w()) - T1."Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP '
  4033. "'1753-01-01 00:00:00.000')) THEN ('augetretene Mitarbeiter') ELSE (T1."
  4034. '"Pay Group No_") END as c68,
  4035. CASE WHEN (T1."Task Type Group" IN ('
  4036. "'MONTEURE','PROD MEIST')) THEN ('prod. Personal') WHEN (T1." '"Task Type Group" IN ('
  4037. "'VERWALTUNG')) THEN ('unprod. Personal') ELSE null END as c69,
  4038. (cda"
  4039. 'tetime(T2."Current Date" - cinterval(extract(DAY FROM T2."Current Date"'
  4040. ') - 1))) as c70,
  4041. (cdatetime(lastday(cdate(T2."Current Date")))) as '
  4042. "c71,
  4043. CASE WHEN (((now()) - INTERVAL '001 10:00:00.000') BETWEEN ((c"
  4044. 'datetime(T2."Current Date" - cinterval(extract(DAY FROM T2."Current Dat'
  4045. 'e") - 1)))) AND ((cdatetime(lastday(cdate(T2."Current Date")))))) THEN '
  4046. '(T2."Current Date") ELSE null END as c72,
  4047. ' "'' as c73,
  4048. T1." '"First Name" || '
  4049. "' ' || T1." '"Last Name" as c74,
  4050. CASE WHEN (T2."Time Account No_" IN ('
  4051. "'3500')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c75,
  4052. CASE WHEN (T2."Time A'
  4053. 'ccount No_" IN (' "'1090')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c76
  4054. from "DMS1"."dbo"."AH Reis'
  4055. 'acher$Employee_T" T1,
  4056. "DMS1"."dbo"."AH Reisacher$Time Entry_T" T2,
  4057. "D'
  4058. 'MS1"."dbo"."AH Reisacher$Time Account_T" T3
  4059. where (T1."No_" = T2."Emplo'
  4060. 'yee No_") and (T2."Time Account No_" = (cast_numberToString(cast_intege'
  4061. 'r(T3."No_"))))
  4062. and (((((T2."Current Date" >= T1."Employment Date") and '
  4063. '((T1."Leaving Date" >= (@CURRENT_DATE)) or (T1."Leaving Date" = TIMESTA'
  4064. "MP '1753-01-01 00:00:00.000'))) and (T2." '"Current Date" = (@CURRENT_DATE) - INTERVAL '
  4065. "'001 00:00:00.000')) and (T2." '"Time Account No_" IN (' "'1090'))) and (T1."
  4066. '"No_" <> ' "'11724'))
  4067. order by c42 asc,c3 asc,c45 asc
  4068. " Isolation 0 UserEditable False
  4069. SourceSignonList 643419 EndList ImrName "D:\GAPS_BMW\Portal\System\IQD\AHR\Zeit\Zeit_Mitarbeiter_Ueberstunden_lfd_Monat.imr"
  4070. Stamp 1537539831 EnableMultiProcess False SetCurrent False ServerSource False
  4071. Speed False Presummarized False
  4072. OrgName 992947 "No" Origin Source Offset 56 Column "No" Storage Text Scale 0
  4073. Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  4074. OrgName 992949 "Id No" Origin Source Offset 1 Column "Id No" Storage Text
  4075. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  4076. OrgName 992951 "Name" Origin Source Offset 2 Column "Name" Storage Text
  4077. Scale 0 Size 52 Decimals 0 Class Description InputScale 0 TimeArray Off
  4078. OrgName 992953 "Last Name" Origin Source Offset 3 Column "Last Name" Storage Text
  4079. Scale 0 Size 32 Decimals 0 Class Description InputScale 0 TimeArray Off
  4080. OrgName 992955 "First Name" Origin Source Offset 4 Column "First Name"
  4081. Storage Text Scale 0 Size 32 Decimals 0 Class Description InputScale 0
  4082. TimeArray Off
  4083. OrgName 992957 "Employment Date" Origin Source Offset 5 Column "Employment Date"
  4084. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4085. OrgName 992959 "Leaving Date" Origin Source Offset 6 Column "Leaving Date"
  4086. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4087. OrgName 992961 "Department No" Origin Source Offset 42 Column "Department No"
  4088. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4089. TimeArray Off
  4090. OrgName 992963 "Group No 1" Origin Source Offset 8 Column "Group No 1"
  4091. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4092. TimeArray Off
  4093. OrgName 992965 "Group No 2" Origin Source Offset 9 Column "Group No 2"
  4094. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4095. TimeArray Off
  4096. OrgName 992967 "Group No 3" Origin Source Offset 10 Column "Group No 3"
  4097. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4098. TimeArray Off
  4099. OrgName 992969 "Time Object No" Origin Source Offset 11 Column "Time Object No"
  4100. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4101. TimeArray Off
  4102. OrgName 992971 "Std Vac Entitlem Days" Origin Source Offset 12 Column "Std Vac Entitlem Days"
  4103. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4104. OrgName 992973 "Handic Vac Entitlem Days" Origin Source Offset 13 Column "Handic Vac Entitlem Days"
  4105. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4106. OrgName 992975 "Spec Vac 2 Entitlem Days" Origin Source Offset 14 Column "Spec Vac 2 Entitlem Days"
  4107. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4108. OrgName 992977 "Spec Vac 3 Entitlem Days" Origin Source Offset 15 Column "Spec Vac 3 Entitlem Days"
  4109. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4110. OrgName 992979 "Std Vac Days Car Fwd Prev Y" Origin Source Offset 16 Column "Std Vac Days Car Fwd Prev Y"
  4111. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4112. OrgName 992981 "Handic Vac 1 Days Car Fwd" Origin Source Offset 17 Column "Handic Vac 1 Days Car Fwd"
  4113. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4114. OrgName 992983 "Special Vac 2 Days Car Fwd" Origin Source Offset 18 Column "Special Vac 2 Days Car Fwd"
  4115. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4116. OrgName 992985 "Special Vac 3 Days Car Fwd" Origin Source Offset 19 Column "Special Vac 3 Days Car Fwd"
  4117. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4118. OrgName 992987 "Rem Vac Days Taken" Origin Source Offset 20 Column "Rem Vac Days Taken"
  4119. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4120. OrgName 992989 "Rem Vac Days Planned" Origin Source Offset 21 Column "Rem Vac Days Planned"
  4121. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4122. OrgName 992991 "Standard Vac Entitlement Hrs" Origin Source Offset 22 Column "Standard Vac Entitlement Hrs"
  4123. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4124. OrgName 992993 "Handic Vac 1 Entitlement Hrs" Origin Source Offset 23 Column "Handic Vac 1 Entitlement Hrs"
  4125. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4126. OrgName 992995 "Special Vac 2 Entitlement (h)" Origin Source Offset 24
  4127. Column "Special Vac 2 Entitlement (h)" Storage Float64 Scale 0 Size 8 Decimals 0
  4128. Class Quantity InputScale 0 TimeArray Off
  4129. OrgName 992997 "Std Vac Car Fwd Prev Y (h)" Origin Source Offset 25 Column "Std Vac Car Fwd Prev Y (h)"
  4130. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4131. OrgName 992999 "Handic Vac 1 Hours Car Fwd" Origin Source Offset 26 Column "Handic Vac 1 Hours Car Fwd"
  4132. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4133. OrgName 993001 "Spec Vac 2 Hours Car Fwd" Origin Source Offset 27 Column "Spec Vac 2 Hours Car Fwd"
  4134. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4135. OrgName 993003 "Rem Vac Hours Taken" Origin Source Offset 28 Column "Rem Vac Hours Taken"
  4136. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4137. OrgName 993005 "Rem Vac Hrs Planned" Origin Source Offset 29 Column "Rem Vac Hrs Planned"
  4138. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4139. OrgName 993007 "Rem Handic Vac Days Taken" Origin Source Offset 30 Column "Rem Handic Vac Days Taken"
  4140. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4141. OrgName 993009 "Rem Handic Vac Days Planned" Origin Source Offset 31 Column "Rem Handic Vac Days Planned"
  4142. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4143. OrgName 993011 "Values Car Fwd Inactive" Origin Source Offset 32 Column "Values Car Fwd Inactive"
  4144. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4145. OrgName 993013 "Present" Origin Source Offset 33 Column "Present" Storage Int16
  4146. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4147. OrgName 993015 "Absent" Origin Source Offset 34 Column "Absent" Storage Int16
  4148. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4149. OrgName 993017 "Department Code" Origin Source Offset 35 Column "Department Code"
  4150. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4151. TimeArray Off
  4152. OrgName 993019 "Task Type Group" Origin Source Offset 36 Column "Task Type Group"
  4153. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4154. TimeArray Off
  4155. OrgName 993021 "Efficiency %" Origin Source Offset 37 Column "Efficiency %"
  4156. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  4157. TimeArray Off
  4158. OrgName 993023 "Resource No" Origin Source Offset 38 Column "Resource No"
  4159. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  4160. TimeArray Off
  4161. OrgName 993025 "Rating Pereas" Origin Source Offset 39 Column "Rating Pereas"
  4162. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  4163. TimeArray Off
  4164. OrgName 993041 "Employee No" Origin Source Offset 40 Column "Employee No"
  4165. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  4166. TimeArray Off
  4167. OrgName 993043 "Datum" Origin Source Offset 41 Column "Datum" Storage Int32
  4168. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4169. OrgName 993045 "Department No" Origin Source Offset 42 Column "(2) Department No"
  4170. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4171. TimeArray Off
  4172. OrgName 993047 "Order No" Origin Source Offset 43 Column "Order No" Storage Text
  4173. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  4174. OrgName 993049 "Time Account No" Origin Source Offset 44 Column "Time Account No"
  4175. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4176. TimeArray Off
  4177. OrgName 993051 "Time Account Value" Origin Source Offset 45 Column "Time Account Value"
  4178. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4179. OrgName 993053 "Ta Class (general)" Origin Source Offset 46 Column "Ta Class (general)"
  4180. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4181. OrgName 993055 "Ta Class (statistics)" Origin Source Offset 47 Column "Ta Class (statistics)"
  4182. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4183. OrgName 993057 "Ta Class (absent Days)" Origin Source Offset 48 Column "Ta Class (absent Days)"
  4184. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4185. OrgName 993059 "Ta Class (time Processing)" Origin Source Offset 49 Column "Ta Class (time Processing)"
  4186. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4187. OrgName 993061 "Ta Class (individual)" Origin Source Offset 50 Column "Ta Class (individual)"
  4188. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4189. OrgName 993063 "Ta Class (employee Info)" Origin Source Offset 51 Column "Ta Class (employee Info)"
  4190. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4191. OrgName 993065 "Ta Class (vacation Reduction)" Origin Source Offset 52
  4192. Column "Ta Class (vacation Reduction)" Storage Int32 Scale 0 Size 4 Decimals 0
  4193. Class Quantity InputScale 0 TimeArray Off
  4194. OrgName 993067 "Ta Formatting" Origin Source Offset 53 Column "Ta Formatting"
  4195. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4196. OrgName 993069 "Generating Function" Origin Source Offset 54 Column "Generating Function"
  4197. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4198. OrgName 993071 "Record Protected" Origin Source Offset 55 Column "Record Protected"
  4199. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4200. OrgName 993073 "No" Origin Source Offset 56 Column "(2) No" Storage Int32
  4201. Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4202. OrgName 993075 "Description" Origin Source Offset 57 Column "Description"
  4203. Storage Text Scale 0 Size 52 Decimals 0 Class Description InputScale 0
  4204. TimeArray Off
  4205. OrgName 993077 "Description 2" Origin Source Offset 58 Column "Description 2"
  4206. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4207. TimeArray Off
  4208. OrgName 993079 "Symbol" Origin Source Offset 59 Column "Symbol" Storage Text
  4209. Scale 0 Size 5 Decimals 0 Class Description InputScale 0 TimeArray Off
  4210. OrgName 993081 "Character" Origin Source Offset 60 Column "Character" Storage Text
  4211. Scale 0 Size 3 Decimals 0 Class Description InputScale 0 TimeArray Off
  4212. OrgName 993083 "Pay Type 1" Origin Source Offset 61 Column "Pay Type 1"
  4213. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4214. TimeArray Off
  4215. OrgName 993137 "Hauptbetrieb" Origin Source Offset 62 Column "Hauptbetrieb"
  4216. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  4217. OrgName 993139 "Standort" Origin Source Offset 63 Column "Standort" Storage Text
  4218. Scale 0 Size 4 Decimals 0 Class Description InputScale 0 TimeArray Off
  4219. OrgName 993141 "Monteur_Gruppe_ori" Origin Source Offset 64 Column "Monteur_Gruppe_ori"
  4220. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4221. TimeArray Off
  4222. OrgName 993143 "Heute" Origin Source Offset 65 Column "Heute" Storage Int32
  4223. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4224. OrgName 993145 "Tage Heute Leaving Date" Origin Source Offset 66 Column "Tage Heute Leaving Date"
  4225. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4226. OrgName 993147 "Monteur_Gruppe" Origin Source Offset 67 Column "Monteur_Gruppe"
  4227. Storage Text Scale 0 Size 25 Decimals 0 Class Description InputScale 0
  4228. TimeArray Off
  4229. OrgName 993149 "produktiv/unproduktiv" Origin Source Offset 68 Column "produktiv/unproduktiv"
  4230. Storage Text Scale 0 Size 18 Decimals 0 Class Description InputScale 0
  4231. TimeArray Off
  4232. OrgName 993151 "Monatserster" Origin Source Offset 69 Column "Monatserster"
  4233. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4234. OrgName 993153 "Monatsletzter" Origin Source Offset 70 Column "Monatsletzter"
  4235. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4236. OrgName 993155 "Datum Tagesbericht" Origin Source Offset 71 Column "Datum Tagesbericht"
  4237. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4238. OrgName 993157 "Order Number" Origin Source Offset 72 Column "Order Number"
  4239. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  4240. OrgName 993159 "Monteur" Origin Source Offset 73 Column "Monteur" Storage Text
  4241. Scale 0 Size 63 Decimals 0 Class Description InputScale 0 TimeArray Off
  4242. OrgName 993169 "ausbezahlte Überstunden" Origin Source Offset 74 Column "ausbezahlte Überstunden"
  4243. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4244. OrgName 993171 "Überstunden" Origin Source Offset 75 Column "Überstunden"
  4245. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4246. DataSource 993173 "Zeit_Mitarbeiter_aubez_Ueberstunden_lfd_Monat" Separator " "
  4247. SourceType DataSource CharacterSet Default DecimalSep "," Thousandsep "."
  4248. Columns True Timing PopYesCreateDefault Source "D:\GAPS_BMW\Portal\System\IQD\AHR\Zeit\Zeit_Mitarbeiter_aubez_Ueberstunden_lfd_Monat.iqd"
  4249. SQL 'select T1."No_" as c1,
  4250. T1."ID No_" as c2,
  4251. T1."Name" as c3,
  4252. '
  4253. 'T1."Last Name" as c4,
  4254. T1."First Name" as c5,
  4255. T1."Employment Dat'
  4256. 'e" as c6,
  4257. T1."Leaving Date" as c7,
  4258. T1."Department No_" as c8,
  4259. '
  4260. ' T1."Group No_ 1" as c9,
  4261. T1."Group No_ 2" as c10,
  4262. T1."Group N'
  4263. 'o_ 3" as c11,
  4264. T1."Time Object No_" as c12,
  4265. (cast_float(T1."Std_'
  4266. ' Vac_ Entitlem_ Days")) as c13,
  4267. (cast_float(T1."Handic_ Vac_ Entitl'
  4268. 'em_ Days")) as c14,
  4269. (cast_float(T1."Spec_ Vac_2 Entitlem_ Days")) a'
  4270. 's c15,
  4271. (cast_float(T1."Spec_ Vac_3 Entitlem_ Days")) as c16,
  4272. (c'
  4273. 'ast_float(T1."Std_Vac_Days Car_Fwd_Prev_Y_")) as c17,
  4274. (cast_float(T'
  4275. '1."Handic_ Vac_1 Days Car_ Fwd_")) as c18,
  4276. (cast_float(T1."Special '
  4277. 'Vac_2 Days Car_ Fwd_")) as c19,
  4278. (cast_float(T1."Special Vac_3 Days '
  4279. 'Car_ Fwd_")) as c20,
  4280. (cast_float(T1."Rem_ Vac_ Days taken")) as c21'
  4281. ',
  4282. (cast_float(T1."Rem_ Vac_ Days planned")) as c22,
  4283. (cast_float'
  4284. '(T1."Standard Vac_ Entitlement Hrs_")) as c23,
  4285. (cast_float(T1."Hand'
  4286. 'ic_ Vac_1 Entitlement Hrs_")) as c24,
  4287. (cast_float(T1."Special Vac_2'
  4288. ' Entitlement (H)")) as c25,
  4289. (cast_float(T1."Std_ Vac_Car_Fwd_Prev_Y'
  4290. '_(H)")) as c26,
  4291. (cast_float(T1."Handic_ Vac_1 Hours Car_ Fwd_")) as'
  4292. ' c27,
  4293. (cast_float(T1."Spec_ Vac_2 Hours Car_ Fwd_")) as c28,
  4294. (c'
  4295. 'ast_float(T1."Rem_ Vac_ Hours taken")) as c29,
  4296. (cast_float(T1."Rem_'
  4297. ' Vac_ Hrs_ Planned")) as c30,
  4298. (cast_float(T1."Rem_ Handic_ Vac_ Day'
  4299. 's taken")) as c31,
  4300. (cast_float(T1."Rem_ Handic_ Vac_ Days planned")'
  4301. ') as c32,
  4302. T1."Values Car_ Fwd_ Inactive" as c33,
  4303. T1."Present" a'
  4304. 's c34,
  4305. T1."Absent" as c35,
  4306. T1."Department Code" as c36,
  4307. T1.'
  4308. '"Task Type Group" as c37,
  4309. T1."Efficiency %" as c38,
  4310. T1."Resourc'
  4311. 'e No_" as c39,
  4312. T1."Rating PEREAS" as c40,
  4313. T2."Employee No_" as '
  4314. 'c41,
  4315. T2."Current Date" as c42,
  4316. T2."Department No_" as c43,
  4317. '
  4318. 'T2."Order No_" as c44,
  4319. T2."Time Account No_" as c45,
  4320. (cast_floa'
  4321. 't(T2."Time Account Value")) as c46,
  4322. T2."TA Class (General)" as c47,'
  4323. '
  4324. T2."TA Class (Statistics)" as c48,
  4325. T2."TA Class (Absent Days)"'
  4326. ' as c49,
  4327. T2."TA Class (Time Processing)" as c50,
  4328. T2."TA Class ('
  4329. 'Individual)" as c51,
  4330. T2."TA Class (Employee Info)" as c52,
  4331. T2."'
  4332. 'TA Class (Vacation Reduction)" as c53,
  4333. T2."TA Formatting" as c54,
  4334. '
  4335. ' T2."Generating Function" as c55,
  4336. T2."Record protected" as c56,
  4337. '
  4338. ' T3."No_" as c57,
  4339. T3."Description" as c58,
  4340. T3."Description 2"'
  4341. ' as c59,
  4342. T3."Symbol" as c60,
  4343. T3."Character" as c61,
  4344. T3."Pay'
  4345. ' Type 1" as c62,
  4346. ' "'1' as c63,
  4347. CASE WHEN ((od_left(T1." '"Department No_",2)) = '
  4348. "'90') THEN ('55') ELSE ((od_left(T1." '"Department No_",2))) END as c64,
  4349. T1."Pay Group No_" as c65,
  4350. (n'
  4351. "ow()) - INTERVAL '001 10:00:00.000' as c66,
  4352. (extract(DAY FROM (now("
  4353. ')) - T1."Leaving Date")) as c67,
  4354. CASE WHEN ((((extract(DAY FROM (no'
  4355. 'w()) - T1."Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP '
  4356. "'1753-01-01 00:00:00.000')) THEN ('augetretene Mitarbeiter') ELSE (T1."
  4357. '"Pay Group No_") END as c68,
  4358. CASE WHEN (T1."Task Type Group" IN ('
  4359. "'MONTEURE','PROD MEIST')) THEN ('prod. Personal') WHEN (T1." '"Task Type Group" IN ('
  4360. "'VERWALTUNG')) THEN ('unprod. Personal') ELSE null END as c69,
  4361. (cda"
  4362. 'tetime(T2."Current Date" - cinterval(extract(DAY FROM T2."Current Date"'
  4363. ') - 1))) as c70,
  4364. (cdatetime(lastday(cdate(T2."Current Date")))) as '
  4365. "c71,
  4366. CASE WHEN (((now()) - INTERVAL '001 10:00:00.000') BETWEEN ((c"
  4367. 'datetime(T2."Current Date" - cinterval(extract(DAY FROM T2."Current Dat'
  4368. 'e") - 1)))) AND ((cdatetime(lastday(cdate(T2."Current Date")))))) THEN '
  4369. '(T2."Current Date") ELSE null END as c72,
  4370. ' "'' as c73,
  4371. T1." '"First Name" || '
  4372. "' ' || T1." '"Last Name" as c74,
  4373. CASE WHEN (T2."Time Account No_" IN ('
  4374. "'3500')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c75,
  4375. CASE WHEN (T2."Time A'
  4376. 'ccount No_" IN (' "'1090')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c76
  4377. from "DMS1"."dbo"."AH Reis'
  4378. 'acher$Employee_T" T1,
  4379. "DMS1"."dbo"."AH Reisacher$Time Entry_T" T2,
  4380. "D'
  4381. 'MS1"."dbo"."AH Reisacher$Time Account_T" T3
  4382. where (T1."No_" = T2."Emplo'
  4383. 'yee No_") and (T2."Time Account No_" = (cast_numberToString(cast_intege'
  4384. 'r(T3."No_"))))
  4385. and (((((T2."Current Date" >= T1."Employment Date") and '
  4386. '((T1."Leaving Date" >= (@CURRENT_DATE)) or (T1."Leaving Date" = TIMESTA'
  4387. "MP '1753-01-01 00:00:00.000'))) and (T2." '"Current Date" >= (cdatetime((@CURRENT_DATE) - cinterval(extract(DAY FR'
  4388. 'OM (@CURRENT_DATE)) - 1))))) and (T2."Time Account No_" IN (' "'3500'))) and (T1."
  4389. '"No_" <> ' "'11724'))
  4390. order by c42 asc,c3 asc,c45 asc
  4391. " Isolation 0 UserEditable False
  4392. SourceSignonList 643419 EndList ImrName "D:\GAPS_BMW\Portal\System\IQD\AHR\Zeit\Zeit_Mitarbeiter_aubez_Ueberstunden_lfd_Monat.imr"
  4393. Stamp 1537539911 EnableMultiProcess False SetCurrent False ServerSource False
  4394. Speed False Presummarized False
  4395. OrgName 993175 "No" Origin Source Offset 0 Column "No" Storage Text Scale 0
  4396. Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  4397. OrgName 993177 "Id No" Origin Source Offset 1 Column "Id No" Storage Text
  4398. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  4399. OrgName 993179 "Name" Origin Source Offset 2 Column "Name" Storage Text
  4400. Scale 0 Size 52 Decimals 0 Class Description InputScale 0 TimeArray Off
  4401. OrgName 993181 "Last Name" Origin Source Offset 3 Column "Last Name" Storage Text
  4402. Scale 0 Size 32 Decimals 0 Class Description InputScale 0 TimeArray Off
  4403. OrgName 993183 "First Name" Origin Source Offset 4 Column "First Name"
  4404. Storage Text Scale 0 Size 32 Decimals 0 Class Description InputScale 0
  4405. TimeArray Off
  4406. OrgName 993185 "Employment Date" Origin Source Offset 5 Column "Employment Date"
  4407. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4408. OrgName 993187 "Leaving Date" Origin Source Offset 6 Column "Leaving Date"
  4409. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4410. OrgName 993189 "Department No" Origin Source Offset 7 Column "Department No"
  4411. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4412. TimeArray Off
  4413. OrgName 993191 "Group No 1" Origin Source Offset 8 Column "Group No 1"
  4414. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4415. TimeArray Off
  4416. OrgName 993193 "Group No 2" Origin Source Offset 9 Column "Group No 2"
  4417. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4418. TimeArray Off
  4419. OrgName 993195 "Group No 3" Origin Source Offset 10 Column "Group No 3"
  4420. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4421. TimeArray Off
  4422. OrgName 993197 "Time Object No" Origin Source Offset 11 Column "Time Object No"
  4423. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4424. TimeArray Off
  4425. OrgName 993199 "Std Vac Entitlem Days" Origin Source Offset 12 Column "Std Vac Entitlem Days"
  4426. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4427. OrgName 993201 "Handic Vac Entitlem Days" Origin Source Offset 13 Column "Handic Vac Entitlem Days"
  4428. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4429. OrgName 993203 "Spec Vac 2 Entitlem Days" Origin Source Offset 14 Column "Spec Vac 2 Entitlem Days"
  4430. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4431. OrgName 993205 "Spec Vac 3 Entitlem Days" Origin Source Offset 15 Column "Spec Vac 3 Entitlem Days"
  4432. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4433. OrgName 993207 "Std Vac Days Car Fwd Prev Y" Origin Source Offset 16 Column "Std Vac Days Car Fwd Prev Y"
  4434. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4435. OrgName 993209 "Handic Vac 1 Days Car Fwd" Origin Source Offset 17 Column "Handic Vac 1 Days Car Fwd"
  4436. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4437. OrgName 993211 "Special Vac 2 Days Car Fwd" Origin Source Offset 18 Column "Special Vac 2 Days Car Fwd"
  4438. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4439. OrgName 993213 "Special Vac 3 Days Car Fwd" Origin Source Offset 19 Column "Special Vac 3 Days Car Fwd"
  4440. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4441. OrgName 993215 "Rem Vac Days Taken" Origin Source Offset 20 Column "Rem Vac Days Taken"
  4442. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4443. OrgName 993217 "Rem Vac Days Planned" Origin Source Offset 21 Column "Rem Vac Days Planned"
  4444. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4445. OrgName 993219 "Standard Vac Entitlement Hrs" Origin Source Offset 22 Column "Standard Vac Entitlement Hrs"
  4446. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4447. OrgName 993221 "Handic Vac 1 Entitlement Hrs" Origin Source Offset 23 Column "Handic Vac 1 Entitlement Hrs"
  4448. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4449. OrgName 993223 "Special Vac 2 Entitlement (h)" Origin Source Offset 24
  4450. Column "Special Vac 2 Entitlement (h)" Storage Float64 Scale 0 Size 8 Decimals 0
  4451. Class Quantity InputScale 0 TimeArray Off
  4452. OrgName 993225 "Std Vac Car Fwd Prev Y (h)" Origin Source Offset 25 Column "Std Vac Car Fwd Prev Y (h)"
  4453. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4454. OrgName 993227 "Handic Vac 1 Hours Car Fwd" Origin Source Offset 26 Column "Handic Vac 1 Hours Car Fwd"
  4455. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4456. OrgName 993229 "Spec Vac 2 Hours Car Fwd" Origin Source Offset 27 Column "Spec Vac 2 Hours Car Fwd"
  4457. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4458. OrgName 993231 "Rem Vac Hours Taken" Origin Source Offset 28 Column "Rem Vac Hours Taken"
  4459. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4460. OrgName 993233 "Rem Vac Hrs Planned" Origin Source Offset 29 Column "Rem Vac Hrs Planned"
  4461. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4462. OrgName 993235 "Rem Handic Vac Days Taken" Origin Source Offset 30 Column "Rem Handic Vac Days Taken"
  4463. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4464. OrgName 993237 "Rem Handic Vac Days Planned" Origin Source Offset 31 Column "Rem Handic Vac Days Planned"
  4465. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4466. OrgName 993239 "Values Car Fwd Inactive" Origin Source Offset 32 Column "Values Car Fwd Inactive"
  4467. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4468. OrgName 993241 "Present" Origin Source Offset 33 Column "Present" Storage Int16
  4469. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4470. OrgName 993243 "Absent" Origin Source Offset 34 Column "Absent" Storage Int16
  4471. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4472. OrgName 993245 "Department Code" Origin Source Offset 35 Column "Department Code"
  4473. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4474. TimeArray Off
  4475. OrgName 993247 "Task Type Group" Origin Source Offset 36 Column "Task Type Group"
  4476. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4477. TimeArray Off
  4478. OrgName 993249 "Efficiency %" Origin Source Offset 37 Column "Efficiency %"
  4479. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  4480. TimeArray Off
  4481. OrgName 993251 "Resource No" Origin Source Offset 38 Column "Resource No"
  4482. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  4483. TimeArray Off
  4484. OrgName 993253 "Rating Pereas" Origin Source Offset 39 Column "Rating Pereas"
  4485. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  4486. TimeArray Off
  4487. OrgName 993255 "Employee No" Origin Source Offset 40 Column "Employee No"
  4488. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  4489. TimeArray Off
  4490. OrgName 993257 "Datum" Origin Source Offset 41 Column "Datum" Storage Int32
  4491. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4492. OrgName 993259 "Department No" Origin Source Offset 42 Column "(2) Department No"
  4493. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4494. TimeArray Off
  4495. OrgName 993261 "Order No" Origin Source Offset 43 Column "Order No" Storage Text
  4496. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  4497. OrgName 993263 "Time Account No" Origin Source Offset 44 Column "Time Account No"
  4498. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4499. TimeArray Off
  4500. OrgName 993265 "Time Account Value" Origin Source Offset 45 Column "Time Account Value"
  4501. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4502. OrgName 993267 "Ta Class (general)" Origin Source Offset 46 Column "Ta Class (general)"
  4503. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4504. OrgName 993269 "Ta Class (statistics)" Origin Source Offset 47 Column "Ta Class (statistics)"
  4505. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4506. OrgName 993271 "Ta Class (absent Days)" Origin Source Offset 48 Column "Ta Class (absent Days)"
  4507. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4508. OrgName 993273 "Ta Class (time Processing)" Origin Source Offset 49 Column "Ta Class (time Processing)"
  4509. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4510. OrgName 993275 "Ta Class (individual)" Origin Source Offset 50 Column "Ta Class (individual)"
  4511. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4512. OrgName 993277 "Ta Class (employee Info)" Origin Source Offset 51 Column "Ta Class (employee Info)"
  4513. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4514. OrgName 993279 "Ta Class (vacation Reduction)" Origin Source Offset 52
  4515. Column "Ta Class (vacation Reduction)" Storage Int32 Scale 0 Size 4 Decimals 0
  4516. Class Quantity InputScale 0 TimeArray Off
  4517. OrgName 993281 "Ta Formatting" Origin Source Offset 53 Column "Ta Formatting"
  4518. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4519. OrgName 993283 "Generating Function" Origin Source Offset 54 Column "Generating Function"
  4520. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4521. OrgName 993285 "Record Protected" Origin Source Offset 55 Column "Record Protected"
  4522. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4523. OrgName 993287 "No" Origin Source Offset 56 Column "(2) No" Storage Int32
  4524. Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4525. OrgName 993289 "Description" Origin Source Offset 57 Column "Description"
  4526. Storage Text Scale 0 Size 52 Decimals 0 Class Description InputScale 0
  4527. TimeArray Off
  4528. OrgName 993291 "Description 2" Origin Source Offset 58 Column "Description 2"
  4529. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4530. TimeArray Off
  4531. OrgName 993293 "Symbol" Origin Source Offset 59 Column "Symbol" Storage Text
  4532. Scale 0 Size 5 Decimals 0 Class Description InputScale 0 TimeArray Off
  4533. OrgName 993295 "Character" Origin Source Offset 60 Column "Character" Storage Text
  4534. Scale 0 Size 3 Decimals 0 Class Description InputScale 0 TimeArray Off
  4535. OrgName 993297 "Pay Type 1" Origin Source Offset 61 Column "Pay Type 1"
  4536. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4537. TimeArray Off
  4538. OrgName 993299 "Hauptbetrieb" Origin Source Offset 62 Column "Hauptbetrieb"
  4539. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  4540. OrgName 993301 "Standort" Origin Source Offset 63 Column "Standort" Storage Text
  4541. Scale 0 Size 4 Decimals 0 Class Description InputScale 0 TimeArray Off
  4542. OrgName 993303 "Monteur_Gruppe_ori" Origin Source Offset 64 Column "Monteur_Gruppe_ori"
  4543. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4544. TimeArray Off
  4545. OrgName 993305 "Heute" Origin Source Offset 65 Column "Heute" Storage Int32
  4546. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4547. OrgName 993307 "Tage Heute Leaving Date" Origin Source Offset 66 Column "Tage Heute Leaving Date"
  4548. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4549. OrgName 993309 "Monteur_Gruppe" Origin Source Offset 67 Column "Monteur_Gruppe"
  4550. Storage Text Scale 0 Size 25 Decimals 0 Class Description InputScale 0
  4551. TimeArray Off
  4552. OrgName 993311 "produktiv/unproduktiv" Origin Source Offset 68 Column "produktiv/unproduktiv"
  4553. Storage Text Scale 0 Size 18 Decimals 0 Class Description InputScale 0
  4554. TimeArray Off
  4555. OrgName 993313 "Monatserster" Origin Source Offset 69 Column "Monatserster"
  4556. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4557. OrgName 993315 "Monatsletzter" Origin Source Offset 70 Column "Monatsletzter"
  4558. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4559. OrgName 993317 "Datum Tagesbericht" Origin Source Offset 71 Column "Datum Tagesbericht"
  4560. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4561. OrgName 993319 "Order Number" Origin Source Offset 72 Column "Order Number"
  4562. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  4563. OrgName 993321 "Monteur" Origin Source Offset 73 Column "Monteur" Storage Text
  4564. Scale 0 Size 63 Decimals 0 Class Description InputScale 0 TimeArray Off
  4565. OrgName 993323 "ausbezahlte Überstunden" Origin Source Offset 74 Column "ausbezahlte Überstunden"
  4566. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4567. OrgName 993325 "Überstunden" Origin Source Offset 75 Column "Überstunden"
  4568. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4569. DataSource 993481 "AHA_Zeit_Mitarbeiter_ausbezahlte_Ueberstunden_lfd_Monat"
  4570. Separator " " SourceType DataSource CharacterSet Default DecimalSep ","
  4571. Thousandsep "." Columns True Timing PopYesCreateDefault Source "D:\GAPS_BMW\Portal\System\IQD\AHA\Zeit\AHA_Zeit_Mitarbeiter_ausbezahlte_Ueberstunden_lfd_Monat.iqd"
  4572. SQL 'select T1."No_" as c1,
  4573. T1."ID No_" as c2,
  4574. T1."Name" as c3,
  4575. '
  4576. 'T1."Last Name" as c4,
  4577. T1."First Name" as c5,
  4578. T1."Employment Dat'
  4579. 'e" as c6,
  4580. T1."Leaving Date" as c7,
  4581. T1."Department No_" as c8,
  4582. '
  4583. ' T1."Group No_ 1" as c9,
  4584. T1."Group No_ 2" as c10,
  4585. T1."Group N'
  4586. 'o_ 3" as c11,
  4587. T1."Time Object No_" as c12,
  4588. (cast_float(T1."Std_'
  4589. ' Vac_ Entitlem_ Days")) as c13,
  4590. (cast_float(T1."Handic_ Vac_ Entitl'
  4591. 'em_ Days")) as c14,
  4592. (cast_float(T1."Spec_ Vac_2 Entitlem_ Days")) a'
  4593. 's c15,
  4594. (cast_float(T1."Spec_ Vac_3 Entitlem_ Days")) as c16,
  4595. (c'
  4596. 'ast_float(T1."Std_Vac_Days Car_Fwd_Prev_Y_")) as c17,
  4597. (cast_float(T'
  4598. '1."Handic_ Vac_1 Days Car_ Fwd_")) as c18,
  4599. (cast_float(T1."Special '
  4600. 'Vac_2 Days Car_ Fwd_")) as c19,
  4601. (cast_float(T1."Special Vac_3 Days '
  4602. 'Car_ Fwd_")) as c20,
  4603. (cast_float(T1."Rem_ Vac_ Days taken")) as c21'
  4604. ',
  4605. (cast_float(T1."Rem_ Vac_ Days planned")) as c22,
  4606. (cast_float'
  4607. '(T1."Standard Vac_ Entitlement Hrs_")) as c23,
  4608. (cast_float(T1."Hand'
  4609. 'ic_ Vac_1 Entitlement Hrs_")) as c24,
  4610. (cast_float(T1."Special Vac_2'
  4611. ' Entitlement (H)")) as c25,
  4612. (cast_float(T1."Std_ Vac_Car_Fwd_Prev_Y'
  4613. '_(H)")) as c26,
  4614. (cast_float(T1."Handic_ Vac_1 Hours Car_ Fwd_")) as'
  4615. ' c27,
  4616. (cast_float(T1."Spec_ Vac_2 Hours Car_ Fwd_")) as c28,
  4617. (c'
  4618. 'ast_float(T1."Rem_ Vac_ Hours taken")) as c29,
  4619. (cast_float(T1."Rem_'
  4620. ' Vac_ Hrs_ Planned")) as c30,
  4621. (cast_float(T1."Rem_ Handic_ Vac_ Day'
  4622. 's taken")) as c31,
  4623. (cast_float(T1."Rem_ Handic_ Vac_ Days planned")'
  4624. ') as c32,
  4625. T1."Values Car_ Fwd_ Inactive" as c33,
  4626. T1."Present" a'
  4627. 's c34,
  4628. T1."Absent" as c35,
  4629. T1."Department Code" as c36,
  4630. T1.'
  4631. '"Task Type Group" as c37,
  4632. T1."Efficiency %" as c38,
  4633. T1."Resourc'
  4634. 'e No_" as c39,
  4635. T1."Rating PEREAS" as c40,
  4636. T2."Employee No_" as '
  4637. 'c41,
  4638. T2."Current Date" as c42,
  4639. T2."Department No_" as c43,
  4640. '
  4641. 'T2."Order No_" as c44,
  4642. T2."Time Account No_" as c45,
  4643. (cast_floa'
  4644. 't(T2."Time Account Value")) as c46,
  4645. T2."TA Class (General)" as c47,'
  4646. '
  4647. T2."TA Class (Statistics)" as c48,
  4648. T2."TA Class (Absent Days)"'
  4649. ' as c49,
  4650. T2."TA Class (Time Processing)" as c50,
  4651. T2."TA Class ('
  4652. 'Individual)" as c51,
  4653. T2."TA Class (Employee Info)" as c52,
  4654. T2."'
  4655. 'TA Class (Vacation Reduction)" as c53,
  4656. T2."TA Formatting" as c54,
  4657. '
  4658. ' T2."Generating Function" as c55,
  4659. T2."Record protected" as c56,
  4660. '
  4661. ' T3."No_" as c57,
  4662. T3."Description" as c58,
  4663. T3."Description 2"'
  4664. ' as c59,
  4665. T3."Symbol" as c60,
  4666. T3."Character" as c61,
  4667. T3."Pay'
  4668. ' Type 1" as c62,
  4669. ' "'1' as c63,
  4670. (od_left(T1." '"Department No_",2)) as c64,
  4671. T1."Pay Group No_" as c65,
  4672. (now())'
  4673. " - INTERVAL '001 10:00:00.000' as c66,
  4674. (extract(DAY FROM (now()) - "
  4675. 'T1."Leaving Date")) as c67,
  4676. CASE WHEN ((((extract(DAY FROM (now()) '
  4677. '- T1."Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('augetretene Mitarbeiter') WHEN (T1."
  4678. '"Pay Group No_" = ' "'WMOZ') THEN ('WMOM') ELSE (T1." '"Pay Group No_") END as c68,
  4679. CASE WHEN (T1."Pay Group No_" IN ('
  4680. "'AZG1','AZG2','AZG3','WMOE','WMOK','WMOM','AZG4','WMOZ')) THEN ('prod. "
  4681. "Personal') ELSE ('unprod. Personal') END as c69,
  4682. (cdatetime(T2." '"Current Date" - cinterval(extract(DAY FROM T2."Current Date") - 1))) a'
  4683. 's c70,
  4684. (cdatetime(lastday(cdate(T2."Current Date")))) as c71,
  4685. C'
  4686. "ASE WHEN (((now()) - INTERVAL '001 10:00:00.000') BETWEEN ((cdatetime(T"
  4687. '2."Current Date" - cinterval(extract(DAY FROM T2."Current Date") - 1)))'
  4688. ') AND ((cdatetime(lastday(cdate(T2."Current Date")))))) THEN (T2."Curre'
  4689. 'nt Date") ELSE null END as c72,
  4690. ' "'' as c73,
  4691. T1." '"First Name" || '
  4692. "' ' || T1." '"Last Name" as c74,
  4693. CASE WHEN (T2."Time Account No_" IN ('
  4694. "'3500')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c75,
  4695. CASE WHEN (T2."Time A'
  4696. 'ccount No_" IN (' "'1090')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c76
  4697. from "DMS1"."dbo"."AH Augs'
  4698. 'burg$Employee_T" T1,
  4699. "DMS1"."dbo"."AH Augsburg$Time Entry_T" T2,
  4700. "DMS'
  4701. '1"."dbo"."AH Augsburg$Time Account_T" T3
  4702. where (T1."No_" = T2."Employee'
  4703. ' No_") and (T2."Time Account No_" = (cast_numberToString(cast_integer(T'
  4704. '3."No_"))))
  4705. and (((((T2."Current Date" >= T1."Employment Date") and ((T'
  4706. '1."Leaving Date" >= (@CURRENT_DATE)) or (T1."Leaving Date" = TIMESTAMP '
  4707. "'1753-01-01 00:00:00.000'))) and (T2." '"Current Date" >= (cdatetime((@CURRENT_DATE) - cinterval(extract(DAY FR'
  4708. 'OM (@CURRENT_DATE)) - 1))))) and (T2."Time Account No_" IN (' "'3500'))) and (T1."
  4709. '"No_" <> ' "'65517'))
  4710. order by c42 asc,c3 asc,c45 asc
  4711. " Isolation 0 UserEditable False
  4712. SourceSignonList 643419 EndList ImrName "D:\GAPS_BMW\Portal\System\IQD\AHA\Zeit\AHA_Zeit_Mitarbeiter_ausbezahlte_Ueberstunden_lfd_Monat.imr"
  4713. Stamp 1476858918 EnableMultiProcess False SetCurrent False ServerSource False
  4714. Speed False Presummarized False
  4715. OrgName 993483 "No" Origin Source Offset 0 Column "No" Storage Text Scale 0
  4716. Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  4717. OrgName 993485 "Id No" Origin Source Offset 1 Column "Id No" Storage Text
  4718. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  4719. OrgName 993487 "Name" Origin Source Offset 2 Column "Name" Storage Text
  4720. Scale 0 Size 52 Decimals 0 Class Description InputScale 0 TimeArray Off
  4721. OrgName 993489 "Last Name" Origin Source Offset 3 Column "Last Name" Storage Text
  4722. Scale 0 Size 32 Decimals 0 Class Description InputScale 0 TimeArray Off
  4723. OrgName 993491 "First Name" Origin Source Offset 4 Column "First Name"
  4724. Storage Text Scale 0 Size 32 Decimals 0 Class Description InputScale 0
  4725. TimeArray Off
  4726. OrgName 993493 "Employment Date" Origin Source Offset 5 Column "Employment Date"
  4727. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4728. OrgName 993495 "Leaving Date" Origin Source Offset 6 Column "Leaving Date"
  4729. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4730. OrgName 993497 "Department No" Origin Source Offset 7 Column "Department No"
  4731. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4732. TimeArray Off
  4733. OrgName 993499 "Group No 1" Origin Source Offset 8 Column "Group No 1"
  4734. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4735. TimeArray Off
  4736. OrgName 993501 "Group No 2" Origin Source Offset 9 Column "Group No 2"
  4737. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4738. TimeArray Off
  4739. OrgName 993503 "Group No 3" Origin Source Offset 10 Column "Group No 3"
  4740. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4741. TimeArray Off
  4742. OrgName 993505 "Time Object No" Origin Source Offset 11 Column "Time Object No"
  4743. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4744. TimeArray Off
  4745. OrgName 993507 "Std Vac Entitlem Days" Origin Source Offset 12 Column "Std Vac Entitlem Days"
  4746. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4747. OrgName 993509 "Handic Vac Entitlem Days" Origin Source Offset 13 Column "Handic Vac Entitlem Days"
  4748. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4749. OrgName 993511 "Spec Vac 2 Entitlem Days" Origin Source Offset 14 Column "Spec Vac 2 Entitlem Days"
  4750. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4751. OrgName 993513 "Spec Vac 3 Entitlem Days" Origin Source Offset 15 Column "Spec Vac 3 Entitlem Days"
  4752. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4753. OrgName 993515 "Std Vac Days Car Fwd Prev Y" Origin Source Offset 16 Column "Std Vac Days Car Fwd Prev Y"
  4754. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4755. OrgName 993517 "Handic Vac 1 Days Car Fwd" Origin Source Offset 17 Column "Handic Vac 1 Days Car Fwd"
  4756. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4757. OrgName 993519 "Special Vac 2 Days Car Fwd" Origin Source Offset 18 Column "Special Vac 2 Days Car Fwd"
  4758. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4759. OrgName 993521 "Special Vac 3 Days Car Fwd" Origin Source Offset 19 Column "Special Vac 3 Days Car Fwd"
  4760. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4761. OrgName 993523 "Rem Vac Days Taken" Origin Source Offset 20 Column "Rem Vac Days Taken"
  4762. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4763. OrgName 993525 "Rem Vac Days Planned" Origin Source Offset 21 Column "Rem Vac Days Planned"
  4764. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4765. OrgName 993527 "Standard Vac Entitlement Hrs" Origin Source Offset 22 Column "Standard Vac Entitlement Hrs"
  4766. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4767. OrgName 993529 "Handic Vac 1 Entitlement Hrs" Origin Source Offset 23 Column "Handic Vac 1 Entitlement Hrs"
  4768. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4769. OrgName 993531 "Special Vac 2 Entitlement (h)" Origin Source Offset 24
  4770. Column "Special Vac 2 Entitlement (h)" Storage Float64 Scale 0 Size 8 Decimals 0
  4771. Class Quantity InputScale 0 TimeArray Off
  4772. OrgName 993533 "Std Vac Car Fwd Prev Y (h)" Origin Source Offset 25 Column "Std Vac Car Fwd Prev Y (h)"
  4773. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4774. OrgName 993535 "Handic Vac 1 Hours Car Fwd" Origin Source Offset 26 Column "Handic Vac 1 Hours Car Fwd"
  4775. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4776. OrgName 993537 "Spec Vac 2 Hours Car Fwd" Origin Source Offset 27 Column "Spec Vac 2 Hours Car Fwd"
  4777. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4778. OrgName 993539 "Rem Vac Hours Taken" Origin Source Offset 28 Column "Rem Vac Hours Taken"
  4779. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4780. OrgName 993541 "Rem Vac Hrs Planned" Origin Source Offset 29 Column "Rem Vac Hrs Planned"
  4781. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4782. OrgName 993543 "Rem Handic Vac Days Taken" Origin Source Offset 30 Column "Rem Handic Vac Days Taken"
  4783. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4784. OrgName 993545 "Rem Handic Vac Days Planned" Origin Source Offset 31 Column "Rem Handic Vac Days Planned"
  4785. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4786. OrgName 993547 "Values Car Fwd Inactive" Origin Source Offset 32 Column "Values Car Fwd Inactive"
  4787. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4788. OrgName 993549 "Present" Origin Source Offset 33 Column "Present" Storage Int16
  4789. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4790. OrgName 993551 "Absent" Origin Source Offset 34 Column "Absent" Storage Int16
  4791. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4792. OrgName 993553 "Department Code" Origin Source Offset 35 Column "Department Code"
  4793. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4794. TimeArray Off
  4795. OrgName 993555 "Task Type Group" Origin Source Offset 36 Column "Task Type Group"
  4796. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4797. TimeArray Off
  4798. OrgName 993557 "Efficiency %" Origin Source Offset 37 Column "Efficiency %"
  4799. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  4800. TimeArray Off
  4801. OrgName 993559 "Resource No" Origin Source Offset 38 Column "Resource No"
  4802. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  4803. TimeArray Off
  4804. OrgName 993561 "Rating Pereas" Origin Source Offset 39 Column "Rating Pereas"
  4805. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  4806. TimeArray Off
  4807. OrgName 993563 "Employee No" Origin Source Offset 40 Column "Employee No"
  4808. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  4809. TimeArray Off
  4810. OrgName 993565 "Datum" Origin Source Offset 41 Column "Datum" Storage Int32
  4811. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4812. OrgName 993567 "Department No" Origin Source Offset 42 Column "(2) Department No"
  4813. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4814. TimeArray Off
  4815. OrgName 993569 "Order No" Origin Source Offset 43 Column "Order No" Storage Text
  4816. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  4817. OrgName 993571 "Time Account No" Origin Source Offset 44 Column "Time Account No"
  4818. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4819. TimeArray Off
  4820. OrgName 993573 "Time Account Value" Origin Source Offset 45 Column "Time Account Value"
  4821. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4822. OrgName 993575 "Ta Class (general)" Origin Source Offset 46 Column "Ta Class (general)"
  4823. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4824. OrgName 993577 "Ta Class (statistics)" Origin Source Offset 47 Column "Ta Class (statistics)"
  4825. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4826. OrgName 993579 "Ta Class (absent Days)" Origin Source Offset 48 Column "Ta Class (absent Days)"
  4827. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4828. OrgName 993581 "Ta Class (time Processing)" Origin Source Offset 49 Column "Ta Class (time Processing)"
  4829. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4830. OrgName 993583 "Ta Class (individual)" Origin Source Offset 50 Column "Ta Class (individual)"
  4831. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4832. OrgName 993585 "Ta Class (employee Info)" Origin Source Offset 51 Column "Ta Class (employee Info)"
  4833. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4834. OrgName 993587 "Ta Class (vacation Reduction)" Origin Source Offset 52
  4835. Column "Ta Class (vacation Reduction)" Storage Int32 Scale 0 Size 4 Decimals 0
  4836. Class Quantity InputScale 0 TimeArray Off
  4837. OrgName 993589 "Ta Formatting" Origin Source Offset 53 Column "Ta Formatting"
  4838. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4839. OrgName 993591 "Generating Function" Origin Source Offset 54 Column "Generating Function"
  4840. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4841. OrgName 993593 "Record Protected" Origin Source Offset 55 Column "Record Protected"
  4842. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4843. OrgName 993595 "No" Origin Source Offset 56 Column "(2) No" Storage Int32
  4844. Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4845. OrgName 993597 "Description" Origin Source Offset 57 Column "Description"
  4846. Storage Text Scale 0 Size 52 Decimals 0 Class Description InputScale 0
  4847. TimeArray Off
  4848. OrgName 993599 "Description 2" Origin Source Offset 58 Column "Description 2"
  4849. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4850. TimeArray Off
  4851. OrgName 993601 "Symbol" Origin Source Offset 59 Column "Symbol" Storage Text
  4852. Scale 0 Size 5 Decimals 0 Class Description InputScale 0 TimeArray Off
  4853. OrgName 993603 "Character" Origin Source Offset 60 Column "Character" Storage Text
  4854. Scale 0 Size 3 Decimals 0 Class Description InputScale 0 TimeArray Off
  4855. OrgName 993605 "Pay Type 1" Origin Source Offset 61 Column "Pay Type 1"
  4856. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4857. TimeArray Off
  4858. OrgName 993607 "Hauptbetrieb" Origin Source Offset 62 Column "Hauptbetrieb"
  4859. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  4860. OrgName 993609 "Standort" Origin Source Offset 63 Column "Standort" Storage Text
  4861. Scale 0 Size 4 Decimals 0 Class Description InputScale 0 TimeArray Off
  4862. OrgName 993611 "Monteur_Gruppe_ori" Origin Source Offset 64 Column "Monteur_Gruppe_ori"
  4863. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  4864. TimeArray Off
  4865. OrgName 993613 "Heute" Origin Source Offset 65 Column "Heute" Storage Int32
  4866. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4867. OrgName 993615 "Tage Heute Leaving Date" Origin Source Offset 66 Column "Tage Heute Leaving Date"
  4868. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4869. OrgName 993617 "Monteur_Gruppe" Origin Source Offset 67 Column "Monteur_Gruppe"
  4870. Storage Text Scale 0 Size 25 Decimals 0 Class Description InputScale 0
  4871. TimeArray Off
  4872. OrgName 993619 "produktiv/unproduktiv" Origin Source Offset 68 Column "produktiv/unproduktiv"
  4873. Storage Text Scale 0 Size 18 Decimals 0 Class Description InputScale 0
  4874. TimeArray Off
  4875. OrgName 993621 "Monatserster" Origin Source Offset 69 Column "Monatserster"
  4876. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4877. OrgName 993623 "Monatsletzter" Origin Source Offset 70 Column "Monatsletzter"
  4878. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4879. OrgName 993625 "Datum Tagesbericht" Origin Source Offset 71 Column "Datum Tagesbericht"
  4880. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  4881. OrgName 993627 "Order Number" Origin Source Offset 72 Column "Order Number"
  4882. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  4883. OrgName 993629 "Monteur" Origin Source Offset 73 Column "Monteur" Storage Text
  4884. Scale 0 Size 63 Decimals 0 Class Description InputScale 0 TimeArray Off
  4885. OrgName 993631 "ausbezahlte Überstunden" Origin Source Offset 74 Column "ausbezahlte Überstunden"
  4886. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4887. OrgName 993633 "Überstunden" Origin Source Offset 75 Column "Überstunden"
  4888. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  4889. DataSource 993639 "AHA_Zeit_Mitarbeiter_Ueberstunden_lfd_Monat" Separator " "
  4890. SourceType DataSource CharacterSet Default DecimalSep "," Thousandsep "."
  4891. Columns True Timing PopYesCreateDefault Source "D:\GAPS_BMW\Portal\System\IQD\AHA\Zeit\AHA_Zeit_Mitarbeiter_Ueberstunden_lfd_Monat.iqd"
  4892. SQL 'select T1."No_" as c1,
  4893. T1."ID No_" as c2,
  4894. T1."Name" as c3,
  4895. '
  4896. 'T1."Last Name" as c4,
  4897. T1."First Name" as c5,
  4898. T1."Employment Dat'
  4899. 'e" as c6,
  4900. T1."Leaving Date" as c7,
  4901. T1."Department No_" as c8,
  4902. '
  4903. ' T1."Group No_ 1" as c9,
  4904. T1."Group No_ 2" as c10,
  4905. T1."Group N'
  4906. 'o_ 3" as c11,
  4907. T1."Time Object No_" as c12,
  4908. (cast_float(T1."Std_'
  4909. ' Vac_ Entitlem_ Days")) as c13,
  4910. (cast_float(T1."Handic_ Vac_ Entitl'
  4911. 'em_ Days")) as c14,
  4912. (cast_float(T1."Spec_ Vac_2 Entitlem_ Days")) a'
  4913. 's c15,
  4914. (cast_float(T1."Spec_ Vac_3 Entitlem_ Days")) as c16,
  4915. (c'
  4916. 'ast_float(T1."Std_Vac_Days Car_Fwd_Prev_Y_")) as c17,
  4917. (cast_float(T'
  4918. '1."Handic_ Vac_1 Days Car_ Fwd_")) as c18,
  4919. (cast_float(T1."Special '
  4920. 'Vac_2 Days Car_ Fwd_")) as c19,
  4921. (cast_float(T1."Special Vac_3 Days '
  4922. 'Car_ Fwd_")) as c20,
  4923. (cast_float(T1."Rem_ Vac_ Days taken")) as c21'
  4924. ',
  4925. (cast_float(T1."Rem_ Vac_ Days planned")) as c22,
  4926. (cast_float'
  4927. '(T1."Standard Vac_ Entitlement Hrs_")) as c23,
  4928. (cast_float(T1."Hand'
  4929. 'ic_ Vac_1 Entitlement Hrs_")) as c24,
  4930. (cast_float(T1."Special Vac_2'
  4931. ' Entitlement (H)")) as c25,
  4932. (cast_float(T1."Std_ Vac_Car_Fwd_Prev_Y'
  4933. '_(H)")) as c26,
  4934. (cast_float(T1."Handic_ Vac_1 Hours Car_ Fwd_")) as'
  4935. ' c27,
  4936. (cast_float(T1."Spec_ Vac_2 Hours Car_ Fwd_")) as c28,
  4937. (c'
  4938. 'ast_float(T1."Rem_ Vac_ Hours taken")) as c29,
  4939. (cast_float(T1."Rem_'
  4940. ' Vac_ Hrs_ Planned")) as c30,
  4941. (cast_float(T1."Rem_ Handic_ Vac_ Day'
  4942. 's taken")) as c31,
  4943. (cast_float(T1."Rem_ Handic_ Vac_ Days planned")'
  4944. ') as c32,
  4945. T1."Values Car_ Fwd_ Inactive" as c33,
  4946. T1."Present" a'
  4947. 's c34,
  4948. T1."Absent" as c35,
  4949. T1."Department Code" as c36,
  4950. T1.'
  4951. '"Task Type Group" as c37,
  4952. T1."Efficiency %" as c38,
  4953. T1."Resourc'
  4954. 'e No_" as c39,
  4955. T1."Rating PEREAS" as c40,
  4956. T2."Employee No_" as '
  4957. 'c41,
  4958. T2."Current Date" as c42,
  4959. T2."Department No_" as c43,
  4960. '
  4961. 'T2."Order No_" as c44,
  4962. T2."Time Account No_" as c45,
  4963. (cast_floa'
  4964. 't(T2."Time Account Value")) as c46,
  4965. T2."TA Class (General)" as c47,'
  4966. '
  4967. T2."TA Class (Statistics)" as c48,
  4968. T2."TA Class (Absent Days)"'
  4969. ' as c49,
  4970. T2."TA Class (Time Processing)" as c50,
  4971. T2."TA Class ('
  4972. 'Individual)" as c51,
  4973. T2."TA Class (Employee Info)" as c52,
  4974. T2."'
  4975. 'TA Class (Vacation Reduction)" as c53,
  4976. T2."TA Formatting" as c54,
  4977. '
  4978. ' T2."Generating Function" as c55,
  4979. T2."Record protected" as c56,
  4980. '
  4981. ' T3."No_" as c57,
  4982. T3."Description" as c58,
  4983. T3."Description 2"'
  4984. ' as c59,
  4985. T3."Symbol" as c60,
  4986. T3."Character" as c61,
  4987. T3."Pay'
  4988. ' Type 1" as c62,
  4989. ' "'2' as c63,
  4990. (od_left(T1." '"Department No_",2)) as c64,
  4991. T1."Pay Group No_" as c65,
  4992. (now())'
  4993. " - INTERVAL '001 10:00:00.000' as c66,
  4994. (extract(DAY FROM (now()) - "
  4995. 'T1."Leaving Date")) as c67,
  4996. CASE WHEN ((((extract(DAY FROM (now()) '
  4997. '- T1."Leaving Date"))) > 0) and (T1."Leaving Date" <> TIMESTAMP ' "'1753-01-01 00:00:00.000')) THEN ('augetretene Mitarbeiter') WHEN (T1."
  4998. '"Pay Group No_" = ' "'WMOZ') THEN ('WMOM') ELSE (T1." '"Pay Group No_") END as c68,
  4999. CASE WHEN (T1."Pay Group No_" IN ('
  5000. "'AZG1','AZG2','AZG3','WMOE','WMOK','WMOM','AZG4','WMOZ')) THEN ('prod. "
  5001. "Personal') ELSE ('unprod. Personal') END as c69,
  5002. (cdatetime(T2." '"Current Date" - cinterval(extract(DAY FROM T2."Current Date") - 1))) a'
  5003. 's c70,
  5004. (cdatetime(lastday(cdate(T2."Current Date")))) as c71,
  5005. C'
  5006. "ASE WHEN (((now()) - INTERVAL '001 10:00:00.000') BETWEEN ((cdatetime(T"
  5007. '2."Current Date" - cinterval(extract(DAY FROM T2."Current Date") - 1)))'
  5008. ') AND ((cdatetime(lastday(cdate(T2."Current Date")))))) THEN (T2."Curre'
  5009. 'nt Date") ELSE null END as c72,
  5010. ' "'' as c73,
  5011. T1." '"First Name" || '
  5012. "' ' || T1." '"Last Name" as c74,
  5013. CASE WHEN (T2."Time Account No_" IN ('
  5014. "'3500')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c75,
  5015. CASE WHEN (T2."Time A'
  5016. 'ccount No_" IN (' "'1090')) THEN (((cast_float(T2." '"Time Account Value")))) ELSE (0) END as c76
  5017. from "DMS1"."dbo"."AH Augs'
  5018. 'burg$Employee_T" T1,
  5019. "DMS1"."dbo"."AH Augsburg$Time Entry_T" T2,
  5020. "DMS'
  5021. '1"."dbo"."AH Augsburg$Time Account_T" T3
  5022. where (T1."No_" = T2."Employee'
  5023. ' No_") and (T2."Time Account No_" = (cast_numberToString(cast_integer(T'
  5024. '3."No_"))))
  5025. and (((((T2."Current Date" >= T1."Employment Date") and ((T'
  5026. '1."Leaving Date" >= (@CURRENT_DATE)) or (T1."Leaving Date" = TIMESTAMP '
  5027. "'1753-01-01 00:00:00.000'))) and (T2." '"Current Date" = (@CURRENT_DATE) - INTERVAL '
  5028. "'001 00:00:00.000')) and (T2." '"Time Account No_" IN (' "'1090'))) and (T1."
  5029. '"No_" <> ' "'65517'))
  5030. order by c42 asc,c3 asc,c45 asc
  5031. " Isolation 0 UserEditable False
  5032. SourceSignonList 643419 EndList ImrName "D:\GAPS_BMW\Portal\System\IQD\AHA\Zeit\AHA_Zeit_Mitarbeiter_Ueberstunden_lfd_Monat.imr"
  5033. Stamp 1476875526 EnableMultiProcess False SetCurrent False ServerSource False
  5034. Speed False Presummarized False
  5035. OrgName 993641 "No" Origin Source Offset 0 Column "No" Storage Text Scale 0
  5036. Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  5037. OrgName 993643 "Id No" Origin Source Offset 1 Column "Id No" Storage Text
  5038. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  5039. OrgName 993645 "Name" Origin Source Offset 2 Column "Name" Storage Text
  5040. Scale 0 Size 52 Decimals 0 Class Description InputScale 0 TimeArray Off
  5041. OrgName 993647 "Last Name" Origin Source Offset 3 Column "Last Name" Storage Text
  5042. Scale 0 Size 32 Decimals 0 Class Description InputScale 0 TimeArray Off
  5043. OrgName 993649 "First Name" Origin Source Offset 4 Column "First Name"
  5044. Storage Text Scale 0 Size 32 Decimals 0 Class Description InputScale 0
  5045. TimeArray Off
  5046. OrgName 993651 "Employment Date" Origin Source Offset 5 Column "Employment Date"
  5047. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  5048. OrgName 993653 "Leaving Date" Origin Source Offset 6 Column "Leaving Date"
  5049. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  5050. OrgName 993655 "Department No" Origin Source Offset 7 Column "Department No"
  5051. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  5052. TimeArray Off
  5053. OrgName 993657 "Group No 1" Origin Source Offset 8 Column "Group No 1"
  5054. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  5055. TimeArray Off
  5056. OrgName 993659 "Group No 2" Origin Source Offset 9 Column "Group No 2"
  5057. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  5058. TimeArray Off
  5059. OrgName 993661 "Group No 3" Origin Source Offset 10 Column "Group No 3"
  5060. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  5061. TimeArray Off
  5062. OrgName 993663 "Time Object No" Origin Source Offset 11 Column "Time Object No"
  5063. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  5064. TimeArray Off
  5065. OrgName 993665 "Std Vac Entitlem Days" Origin Source Offset 12 Column "Std Vac Entitlem Days"
  5066. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5067. OrgName 993667 "Handic Vac Entitlem Days" Origin Source Offset 13 Column "Handic Vac Entitlem Days"
  5068. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5069. OrgName 993669 "Spec Vac 2 Entitlem Days" Origin Source Offset 14 Column "Spec Vac 2 Entitlem Days"
  5070. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5071. OrgName 993671 "Spec Vac 3 Entitlem Days" Origin Source Offset 15 Column "Spec Vac 3 Entitlem Days"
  5072. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5073. OrgName 993673 "Std Vac Days Car Fwd Prev Y" Origin Source Offset 16 Column "Std Vac Days Car Fwd Prev Y"
  5074. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5075. OrgName 993675 "Handic Vac 1 Days Car Fwd" Origin Source Offset 17 Column "Handic Vac 1 Days Car Fwd"
  5076. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5077. OrgName 993677 "Special Vac 2 Days Car Fwd" Origin Source Offset 18 Column "Special Vac 2 Days Car Fwd"
  5078. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5079. OrgName 993679 "Special Vac 3 Days Car Fwd" Origin Source Offset 19 Column "Special Vac 3 Days Car Fwd"
  5080. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5081. OrgName 993681 "Rem Vac Days Taken" Origin Source Offset 20 Column "Rem Vac Days Taken"
  5082. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5083. OrgName 993683 "Rem Vac Days Planned" Origin Source Offset 21 Column "Rem Vac Days Planned"
  5084. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5085. OrgName 993685 "Standard Vac Entitlement Hrs" Origin Source Offset 22 Column "Standard Vac Entitlement Hrs"
  5086. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5087. OrgName 993687 "Handic Vac 1 Entitlement Hrs" Origin Source Offset 23 Column "Handic Vac 1 Entitlement Hrs"
  5088. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5089. OrgName 993689 "Special Vac 2 Entitlement (h)" Origin Source Offset 24
  5090. Column "Special Vac 2 Entitlement (h)" Storage Float64 Scale 0 Size 8 Decimals 0
  5091. Class Quantity InputScale 0 TimeArray Off
  5092. OrgName 993691 "Std Vac Car Fwd Prev Y (h)" Origin Source Offset 25 Column "Std Vac Car Fwd Prev Y (h)"
  5093. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5094. OrgName 993693 "Handic Vac 1 Hours Car Fwd" Origin Source Offset 26 Column "Handic Vac 1 Hours Car Fwd"
  5095. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5096. OrgName 993695 "Spec Vac 2 Hours Car Fwd" Origin Source Offset 27 Column "Spec Vac 2 Hours Car Fwd"
  5097. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5098. OrgName 993697 "Rem Vac Hours Taken" Origin Source Offset 28 Column "Rem Vac Hours Taken"
  5099. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5100. OrgName 993699 "Rem Vac Hrs Planned" Origin Source Offset 29 Column "Rem Vac Hrs Planned"
  5101. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5102. OrgName 993701 "Rem Handic Vac Days Taken" Origin Source Offset 30 Column "Rem Handic Vac Days Taken"
  5103. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5104. OrgName 993703 "Rem Handic Vac Days Planned" Origin Source Offset 31 Column "Rem Handic Vac Days Planned"
  5105. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5106. OrgName 993705 "Values Car Fwd Inactive" Origin Source Offset 32 Column "Values Car Fwd Inactive"
  5107. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5108. OrgName 993707 "Present" Origin Source Offset 33 Column "Present" Storage Int16
  5109. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5110. OrgName 993709 "Absent" Origin Source Offset 34 Column "Absent" Storage Int16
  5111. Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5112. OrgName 993711 "Department Code" Origin Source Offset 35 Column "Department Code"
  5113. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  5114. TimeArray Off
  5115. OrgName 993713 "Task Type Group" Origin Source Offset 36 Column "Task Type Group"
  5116. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  5117. TimeArray Off
  5118. OrgName 993715 "Efficiency %" Origin Source Offset 37 Column "Efficiency %"
  5119. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  5120. TimeArray Off
  5121. OrgName 993717 "Resource No" Origin Source Offset 38 Column "Resource No"
  5122. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  5123. TimeArray Off
  5124. OrgName 993719 "Rating Pereas" Origin Source Offset 39 Column "Rating Pereas"
  5125. Storage Float64 Scale 16 Size 20 Decimals 9 Class Quantity InputScale 0
  5126. TimeArray Off
  5127. OrgName 993721 "Employee No" Origin Source Offset 40 Column "Employee No"
  5128. Storage Text Scale 0 Size 22 Decimals 0 Class Description InputScale 0
  5129. TimeArray Off
  5130. OrgName 993723 "Datum" Origin Source Offset 41 Column "Datum" Storage Int32
  5131. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  5132. OrgName 993725 "Department No" Origin Source Offset 42 Column "(2) Department No"
  5133. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  5134. TimeArray Off
  5135. OrgName 993727 "Order No" Origin Source Offset 43 Column "Order No" Storage Text
  5136. Scale 0 Size 22 Decimals 0 Class Description InputScale 0 TimeArray Off
  5137. OrgName 993729 "Time Account No" Origin Source Offset 44 Column "Time Account No"
  5138. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  5139. TimeArray Off
  5140. OrgName 993731 "Time Account Value" Origin Source Offset 45 Column "Time Account Value"
  5141. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5142. OrgName 993733 "Ta Class (general)" Origin Source Offset 46 Column "Ta Class (general)"
  5143. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5144. OrgName 993735 "Ta Class (statistics)" Origin Source Offset 47 Column "Ta Class (statistics)"
  5145. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5146. OrgName 993737 "Ta Class (absent Days)" Origin Source Offset 48 Column "Ta Class (absent Days)"
  5147. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5148. OrgName 993739 "Ta Class (time Processing)" Origin Source Offset 49 Column "Ta Class (time Processing)"
  5149. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5150. OrgName 993741 "Ta Class (individual)" Origin Source Offset 50 Column "Ta Class (individual)"
  5151. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5152. OrgName 993743 "Ta Class (employee Info)" Origin Source Offset 51 Column "Ta Class (employee Info)"
  5153. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5154. OrgName 993745 "Ta Class (vacation Reduction)" Origin Source Offset 52
  5155. Column "Ta Class (vacation Reduction)" Storage Int32 Scale 0 Size 4 Decimals 0
  5156. Class Quantity InputScale 0 TimeArray Off
  5157. OrgName 993747 "Ta Formatting" Origin Source Offset 53 Column "Ta Formatting"
  5158. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5159. OrgName 993749 "Generating Function" Origin Source Offset 54 Column "Generating Function"
  5160. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5161. OrgName 993751 "Record Protected" Origin Source Offset 55 Column "Record Protected"
  5162. Storage Int16 Scale 0 Size 2 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5163. OrgName 993753 "No" Origin Source Offset 56 Column "(2) No" Storage Int32
  5164. Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5165. OrgName 993755 "Description" Origin Source Offset 57 Column "Description"
  5166. Storage Text Scale 0 Size 52 Decimals 0 Class Description InputScale 0
  5167. TimeArray Off
  5168. OrgName 993757 "Description 2" Origin Source Offset 58 Column "Description 2"
  5169. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  5170. TimeArray Off
  5171. OrgName 993759 "Symbol" Origin Source Offset 59 Column "Symbol" Storage Text
  5172. Scale 0 Size 5 Decimals 0 Class Description InputScale 0 TimeArray Off
  5173. OrgName 993761 "Character" Origin Source Offset 60 Column "Character" Storage Text
  5174. Scale 0 Size 3 Decimals 0 Class Description InputScale 0 TimeArray Off
  5175. OrgName 993763 "Pay Type 1" Origin Source Offset 61 Column "Pay Type 1"
  5176. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  5177. TimeArray Off
  5178. OrgName 993765 "Hauptbetrieb" Origin Source Offset 62 Column "Hauptbetrieb"
  5179. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  5180. OrgName 993767 "Standort" Origin Source Offset 63 Column "Standort" Storage Text
  5181. Scale 0 Size 4 Decimals 0 Class Description InputScale 0 TimeArray Off
  5182. OrgName 993769 "Monteur_Gruppe_ori" Origin Source Offset 64 Column "Monteur_Gruppe_ori"
  5183. Storage Text Scale 0 Size 12 Decimals 0 Class Description InputScale 0
  5184. TimeArray Off
  5185. OrgName 993771 "Heute" Origin Source Offset 65 Column "Heute" Storage Int32
  5186. Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  5187. OrgName 993773 "Tage Heute Leaving Date" Origin Source Offset 66 Column "Tage Heute Leaving Date"
  5188. Storage Int32 Scale 0 Size 4 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5189. OrgName 993775 "Monteur_Gruppe" Origin Source Offset 67 Column "Monteur_Gruppe"
  5190. Storage Text Scale 0 Size 25 Decimals 0 Class Description InputScale 0
  5191. TimeArray Off
  5192. OrgName 993777 "produktiv/unproduktiv" Origin Source Offset 68 Column "produktiv/unproduktiv"
  5193. Storage Text Scale 0 Size 18 Decimals 0 Class Description InputScale 0
  5194. TimeArray Off
  5195. OrgName 993779 "Monatserster" Origin Source Offset 69 Column "Monatserster"
  5196. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  5197. OrgName 993781 "Monatsletzter" Origin Source Offset 70 Column "Monatsletzter"
  5198. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  5199. OrgName 993783 "Datum Tagesbericht" Origin Source Offset 71 Column "Datum Tagesbericht"
  5200. Storage Int32 Scale 0 Size 8 Decimals 0 Class Date InputScale 0 TimeArray Off
  5201. OrgName 993785 "Order Number" Origin Source Offset 72 Column "Order Number"
  5202. Storage Text Scale 0 Size 1 Decimals 0 Class Description InputScale 0 TimeArray Off
  5203. OrgName 993787 "Monteur" Origin Source Offset 73 Column "Monteur" Storage Text
  5204. Scale 0 Size 63 Decimals 0 Class Description InputScale 0 TimeArray Off
  5205. OrgName 993789 "ausbezahlte Überstunden" Origin Source Offset 74 Column "ausbezahlte Überstunden"
  5206. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5207. OrgName 993791 "Überstunden" Origin Source Offset 75 Column "Überstunden"
  5208. Storage Float64 Scale 0 Size 8 Decimals 0 Class Quantity InputScale 0 TimeArray Off
  5209. Dimension 408601 "Zeit" DimType Date EarliestDate 19010101 LatestDate 21001231
  5210. ManualPeriods False DaysInWeek 127 NewCatsLock False ExcludeAutoPartitioning False
  5211. DimDefaultCategory 0
  5212. Categories
  5213. Root 408605 "Zeit" Inclusion Generate Lastuse 20230125 Date 0 Filtered False
  5214. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  5215. Blanks False
  5216. Drill 408607 "Nach Zeit" Inclusion Suppress Filtered False Suppressed True
  5217. PrimaryDrill True HideValue False YearBegins 20090101 PartialWeek Split
  5218. ExtraWeek None WeekBegins Sunday
  5219. Levels 408613 "Jahr" Blanks "( Leerstelle )" Inclusion Generate DateFunction Year
  5220. Generate Need RefreshLabel False RefreshDescription False RefreshShortName False
  5221. NewCatsLock False CatLabFormat "YYYY" Timerank 10 UniqueCategories True
  5222. UniqueMove False Associations 408615 "Datum" AssociationType Type_Query
  5223. AssociationRole Role_Source AssociationReferenced "Datum"
  5224. Associations 408617 "Datum" AssociationContext 408607 AssociationType Type_Query
  5225. AssociationRole Role_OrderBy AssociationReferenced "Datum" SortOrder Int16
  5226. SortAs Ascending
  5227. Levels 408619 "Quartal" Blanks "( Leerstelle )" Inclusion Generate DateFunction Quarter
  5228. Generate All RefreshLabel False RefreshDescription False RefreshShortName False
  5229. NewCatsLock False CatLabFormat 'Q". Q." YYYY' Timerank 20 UniqueCategories True
  5230. UniqueMove False Associations 408621 "Datum" AssociationType Type_Query
  5231. AssociationRole Role_Source AssociationReferenced "Datum"
  5232. Associations 408623 "Datum" AssociationContext 408607 AssociationType Type_Query
  5233. AssociationRole Role_OrderBy AssociationReferenced "Datum" SortOrder Int16
  5234. SortAs Ascending
  5235. Levels 408625 "Monat" Blanks "( Leerstelle )" Inclusion Generate DateFunction Month
  5236. Generate All RefreshLabel False RefreshDescription False RefreshShortName False
  5237. NewCatsLock False CatLabFormat "MMM/YYYY" Timerank 30 UniqueCategories True
  5238. UniqueMove False Associations 408627 "Datum" AssociationType Type_Query
  5239. AssociationRole Role_Source AssociationReferenced "Datum"
  5240. Associations 408629 "Datum" AssociationContext 408607 AssociationType Type_Query
  5241. AssociationRole Role_OrderBy AssociationReferenced "Datum" SortOrder Int16
  5242. SortAs Ascending
  5243. Levels 408631 "Tag" Blanks "( Leerstelle )" Inclusion Generate DateFunction Day
  5244. Generate All RefreshLabel False RefreshDescription False RefreshShortName False
  5245. NewCatsLock False CatLabFormat "DD/MM/YYYY" Timerank 50 UniqueCategories True
  5246. UniqueMove False Associations 408633 "Datum" AssociationType Type_Query
  5247. AssociationRole Role_Source AssociationReferenced "Datum"
  5248. Associations 408635 "Datum" AssociationContext 408607 AssociationType Type_Query
  5249. AssociationRole Role_OrderBy AssociationReferenced "Datum" SortOrder Int16
  5250. SortAs Ascending
  5251. Category 993943 "20230101-20231231" Parent 408607 Levels 408613 OrderBy Drill 408607
  5252. Value "2023" Label "2023" Lastuse 20230125 SourceValue "2023" Date 20230101
  5253. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5254. IsTruncated False Blanks False
  5255. Category 993945 "20230101-20230331" Parent 993943 Levels 408619 OrderBy Drill 408607
  5256. Value "20230101" Label "1. Q. 2023" Lastuse 20230125 SourceValue "20230101"
  5257. Date 20230101 Filtered False Suppressed False Sign False HideValue False
  5258. IsKeyOrphanage False IsTruncated False Blanks False
  5259. Category 993947 "20230101-20230131" Parent 993945 Levels 408625 OrderBy Drill 408607
  5260. Value "202301" Label "Jan./2023" Lastuse 20230125 SourceValue "202301"
  5261. Date 20230101 Filtered False Suppressed False Sign False HideValue False
  5262. IsKeyOrphanage False IsTruncated False Blanks False
  5263. Category 993949 "20230101" Parent 993947 Levels 408631 OrderBy Drill 408607
  5264. Value "20230101" Label "01/01/2023" Lastuse 20230125 SourceValue "20230101"
  5265. Date 20230101 Filtered False Suppressed False Sign False HideValue False
  5266. IsKeyOrphanage False IsTruncated False Blanks False
  5267. Category 993951 "20230102" Parent 993947 Levels 408631 OrderBy Drill 408607
  5268. Value "20230102" Label "02/01/2023" Lastuse 20230125 SourceValue "20230102"
  5269. Date 20230102 Filtered False Suppressed False Sign False HideValue False
  5270. IsKeyOrphanage False IsTruncated False Blanks False
  5271. Category 993953 "20230103" Parent 993947 Levels 408631 OrderBy Drill 408607
  5272. Value "20230103" Label "03/01/2023" Lastuse 20230125 SourceValue "20230103"
  5273. Date 20230103 Filtered False Suppressed False Sign False HideValue False
  5274. IsKeyOrphanage False IsTruncated False Blanks False
  5275. Category 993955 "20230104" Parent 993947 Levels 408631 OrderBy Drill 408607
  5276. Value "20230104" Label "04/01/2023" Lastuse 20230125 SourceValue "20230104"
  5277. Date 20230104 Filtered False Suppressed False Sign False HideValue False
  5278. IsKeyOrphanage False IsTruncated False Blanks False
  5279. Category 993957 "20230105" Parent 993947 Levels 408631 OrderBy Drill 408607
  5280. Value "20230105" Label "05/01/2023" Lastuse 20230125 SourceValue "20230105"
  5281. Date 20230105 Filtered False Suppressed False Sign False HideValue False
  5282. IsKeyOrphanage False IsTruncated False Blanks False
  5283. Category 993959 "20230106" Parent 993947 Levels 408631 OrderBy Drill 408607
  5284. Value "20230106" Label "06/01/2023" Lastuse 20230125 SourceValue "20230106"
  5285. Date 20230106 Filtered False Suppressed False Sign False HideValue False
  5286. IsKeyOrphanage False IsTruncated False Blanks False
  5287. Category 993961 "20230107" Parent 993947 Levels 408631 OrderBy Drill 408607
  5288. Value "20230107" Label "07/01/2023" Lastuse 20230125 SourceValue "20230107"
  5289. Date 20230107 Filtered False Suppressed False Sign False HideValue False
  5290. IsKeyOrphanage False IsTruncated False Blanks False
  5291. Category 993963 "20230108" Parent 993947 Levels 408631 OrderBy Drill 408607
  5292. Value "20230108" Label "08/01/2023" Lastuse 20230125 SourceValue "20230108"
  5293. Date 20230108 Filtered False Suppressed False Sign False HideValue False
  5294. IsKeyOrphanage False IsTruncated False Blanks False
  5295. Category 993965 "20230109" Parent 993947 Levels 408631 OrderBy Drill 408607
  5296. Value "20230109" Label "09/01/2023" Lastuse 20230125 SourceValue "20230109"
  5297. Date 20230109 Filtered False Suppressed False Sign False HideValue False
  5298. IsKeyOrphanage False IsTruncated False Blanks False
  5299. Category 993967 "20230110" Parent 993947 Levels 408631 OrderBy Drill 408607
  5300. Value "20230110" Label "10/01/2023" Lastuse 20230125 SourceValue "20230110"
  5301. Date 20230110 Filtered False Suppressed False Sign False HideValue False
  5302. IsKeyOrphanage False IsTruncated False Blanks False
  5303. Category 993969 "20230111" Parent 993947 Levels 408631 OrderBy Drill 408607
  5304. Value "20230111" Label "11/01/2023" Lastuse 20230125 SourceValue "20230111"
  5305. Date 20230111 Filtered False Suppressed False Sign False HideValue False
  5306. IsKeyOrphanage False IsTruncated False Blanks False
  5307. Category 993971 "20230112" Parent 993947 Levels 408631 OrderBy Drill 408607
  5308. Value "20230112" Label "12/01/2023" Lastuse 20230125 SourceValue "20230112"
  5309. Date 20230112 Filtered False Suppressed False Sign False HideValue False
  5310. IsKeyOrphanage False IsTruncated False Blanks False
  5311. Category 993973 "20230113" Parent 993947 Levels 408631 OrderBy Drill 408607
  5312. Value "20230113" Label "13/01/2023" Lastuse 20230125 SourceValue "20230113"
  5313. Date 20230113 Filtered False Suppressed False Sign False HideValue False
  5314. IsKeyOrphanage False IsTruncated False Blanks False
  5315. Category 993975 "20230114" Parent 993947 Levels 408631 OrderBy Drill 408607
  5316. Value "20230114" Label "14/01/2023" Lastuse 20230125 SourceValue "20230114"
  5317. Date 20230114 Filtered False Suppressed False Sign False HideValue False
  5318. IsKeyOrphanage False IsTruncated False Blanks False
  5319. Category 993977 "20230115" Parent 993947 Levels 408631 OrderBy Drill 408607
  5320. Value "20230115" Label "15/01/2023" Lastuse 20230125 SourceValue "20230115"
  5321. Date 20230115 Filtered False Suppressed False Sign False HideValue False
  5322. IsKeyOrphanage False IsTruncated False Blanks False
  5323. Category 993979 "20230116" Parent 993947 Levels 408631 OrderBy Drill 408607
  5324. Value "20230116" Label "16/01/2023" Lastuse 20230125 SourceValue "20230116"
  5325. Date 20230116 Filtered False Suppressed False Sign False HideValue False
  5326. IsKeyOrphanage False IsTruncated False Blanks False
  5327. Category 993981 "20230117" Parent 993947 Levels 408631 OrderBy Drill 408607
  5328. Value "20230117" Label "17/01/2023" Lastuse 20230125 SourceValue "20230117"
  5329. Date 20230117 Filtered False Suppressed False Sign False HideValue False
  5330. IsKeyOrphanage False IsTruncated False Blanks False
  5331. Category 993983 "20230118" Parent 993947 Levels 408631 OrderBy Drill 408607
  5332. Value "20230118" Label "18/01/2023" Lastuse 20230125 SourceValue "20230118"
  5333. Date 20230118 Filtered False Suppressed False Sign False HideValue False
  5334. IsKeyOrphanage False IsTruncated False Blanks False
  5335. Category 993985 "20230119" Parent 993947 Levels 408631 OrderBy Drill 408607
  5336. Value "20230119" Label "19/01/2023" Lastuse 20230125 SourceValue "20230119"
  5337. Date 20230119 Filtered False Suppressed False Sign False HideValue False
  5338. IsKeyOrphanage False IsTruncated False Blanks False
  5339. Category 993987 "20230120" Parent 993947 Levels 408631 OrderBy Drill 408607
  5340. Value "20230120" Label "20/01/2023" Lastuse 20230125 SourceValue "20230120"
  5341. Date 20230120 Filtered False Suppressed False Sign False HideValue False
  5342. IsKeyOrphanage False IsTruncated False Blanks False
  5343. Category 993989 "20230121" Parent 993947 Levels 408631 OrderBy Drill 408607
  5344. Value "20230121" Label "21/01/2023" Lastuse 20230125 SourceValue "20230121"
  5345. Date 20230121 Filtered False Suppressed False Sign False HideValue False
  5346. IsKeyOrphanage False IsTruncated False Blanks False
  5347. Category 993991 "20230122" Parent 993947 Levels 408631 OrderBy Drill 408607
  5348. Value "20230122" Label "22/01/2023" Lastuse 20230125 SourceValue "20230122"
  5349. Date 20230122 Filtered False Suppressed False Sign False HideValue False
  5350. IsKeyOrphanage False IsTruncated False Blanks False
  5351. Category 993993 "20230123" Parent 993947 Levels 408631 OrderBy Drill 408607
  5352. Value "20230123" Label "23/01/2023" Lastuse 20230125 SourceValue "20230123"
  5353. Date 20230123 Filtered False Suppressed False Sign False HideValue False
  5354. IsKeyOrphanage False IsTruncated False Blanks False
  5355. Category 993995 "20230124" Parent 993947 Levels 408631 OrderBy Drill 408607
  5356. Value "20230124" Label "24/01/2023" Lastuse 20230125 SourceValue "20230124"
  5357. Date 20230124 Current Filtered False Suppressed False Sign False HideValue False
  5358. IsKeyOrphanage False IsTruncated False Blanks False
  5359. Category 993997 "20230125" Parent 993947 Levels 408631 OrderBy Drill 408607
  5360. Value "20230125" Label "25/01/2023" Lastuse 20230125 SourceValue "20230125"
  5361. Date 20230125 Filtered False Suppressed False Sign False HideValue False
  5362. IsKeyOrphanage False IsTruncated False Blanks False
  5363. Category 993999 "20230126" Parent 993947 Levels 408631 OrderBy Drill 408607
  5364. Value "20230126" Label "26/01/2023" Lastuse 20230125 SourceValue "20230126"
  5365. Date 20230126 Filtered False Suppressed False Sign False HideValue False
  5366. IsKeyOrphanage False IsTruncated False Blanks False
  5367. Category 994001 "20230127" Parent 993947 Levels 408631 OrderBy Drill 408607
  5368. Value "20230127" Label "27/01/2023" Lastuse 20230125 SourceValue "20230127"
  5369. Date 20230127 Filtered False Suppressed False Sign False HideValue False
  5370. IsKeyOrphanage False IsTruncated False Blanks False
  5371. Category 994003 "20230128" Parent 993947 Levels 408631 OrderBy Drill 408607
  5372. Value "20230128" Label "28/01/2023" Lastuse 20230125 SourceValue "20230128"
  5373. Date 20230128 Filtered False Suppressed False Sign False HideValue False
  5374. IsKeyOrphanage False IsTruncated False Blanks False
  5375. Category 994005 "20230129" Parent 993947 Levels 408631 OrderBy Drill 408607
  5376. Value "20230129" Label "29/01/2023" Lastuse 20230125 SourceValue "20230129"
  5377. Date 20230129 Filtered False Suppressed False Sign False HideValue False
  5378. IsKeyOrphanage False IsTruncated False Blanks False
  5379. Category 994007 "20230130" Parent 993947 Levels 408631 OrderBy Drill 408607
  5380. Value "20230130" Label "30/01/2023" Lastuse 20230125 SourceValue "20230130"
  5381. Date 20230130 Filtered False Suppressed False Sign False HideValue False
  5382. IsKeyOrphanage False IsTruncated False Blanks False
  5383. Category 994009 "20230131" Parent 993947 Levels 408631 OrderBy Drill 408607
  5384. Value "20230131" Label "31/01/2023" Lastuse 20230125 SourceValue "20230131"
  5385. Date 20230131 Filtered False Suppressed False Sign False HideValue False
  5386. IsKeyOrphanage False IsTruncated False Blanks False
  5387. Category 994011 "20230201-20230228" Parent 993945 Levels 408625 OrderBy Drill 408607
  5388. Value "202302" Label "Feb./2023" Lastuse 20230125 SourceValue "202302"
  5389. Date 20230201 Filtered False Suppressed False Sign False HideValue False
  5390. IsKeyOrphanage False IsTruncated False Blanks False
  5391. Category 994013 "20230201" Parent 994011 Levels 408631 OrderBy Drill 408607
  5392. Value "20230201" Label "01/02/2023" Lastuse 20230125 SourceValue "20230201"
  5393. Date 20230201 Filtered False Suppressed False Sign False HideValue False
  5394. IsKeyOrphanage False IsTruncated False Blanks False
  5395. Category 994015 "20230202" Parent 994011 Levels 408631 OrderBy Drill 408607
  5396. Value "20230202" Label "02/02/2023" Lastuse 20230125 SourceValue "20230202"
  5397. Date 20230202 Filtered False Suppressed False Sign False HideValue False
  5398. IsKeyOrphanage False IsTruncated False Blanks False
  5399. Category 994017 "20230203" Parent 994011 Levels 408631 OrderBy Drill 408607
  5400. Value "20230203" Label "03/02/2023" Lastuse 20230125 SourceValue "20230203"
  5401. Date 20230203 Filtered False Suppressed False Sign False HideValue False
  5402. IsKeyOrphanage False IsTruncated False Blanks False
  5403. Category 994019 "20230204" Parent 994011 Levels 408631 OrderBy Drill 408607
  5404. Value "20230204" Label "04/02/2023" Lastuse 20230125 SourceValue "20230204"
  5405. Date 20230204 Filtered False Suppressed False Sign False HideValue False
  5406. IsKeyOrphanage False IsTruncated False Blanks False
  5407. Category 994021 "20230205" Parent 994011 Levels 408631 OrderBy Drill 408607
  5408. Value "20230205" Label "05/02/2023" Lastuse 20230125 SourceValue "20230205"
  5409. Date 20230205 Filtered False Suppressed False Sign False HideValue False
  5410. IsKeyOrphanage False IsTruncated False Blanks False
  5411. Category 994023 "20230206" Parent 994011 Levels 408631 OrderBy Drill 408607
  5412. Value "20230206" Label "06/02/2023" Lastuse 20230125 SourceValue "20230206"
  5413. Date 20230206 Filtered False Suppressed False Sign False HideValue False
  5414. IsKeyOrphanage False IsTruncated False Blanks False
  5415. Category 994025 "20230207" Parent 994011 Levels 408631 OrderBy Drill 408607
  5416. Value "20230207" Label "07/02/2023" Lastuse 20230125 SourceValue "20230207"
  5417. Date 20230207 Filtered False Suppressed False Sign False HideValue False
  5418. IsKeyOrphanage False IsTruncated False Blanks False
  5419. Category 994027 "20230208" Parent 994011 Levels 408631 OrderBy Drill 408607
  5420. Value "20230208" Label "08/02/2023" Lastuse 20230125 SourceValue "20230208"
  5421. Date 20230208 Filtered False Suppressed False Sign False HideValue False
  5422. IsKeyOrphanage False IsTruncated False Blanks False
  5423. Category 994029 "20230209" Parent 994011 Levels 408631 OrderBy Drill 408607
  5424. Value "20230209" Label "09/02/2023" Lastuse 20230125 SourceValue "20230209"
  5425. Date 20230209 Filtered False Suppressed False Sign False HideValue False
  5426. IsKeyOrphanage False IsTruncated False Blanks False
  5427. Category 994031 "20230210" Parent 994011 Levels 408631 OrderBy Drill 408607
  5428. Value "20230210" Label "10/02/2023" Lastuse 20230125 SourceValue "20230210"
  5429. Date 20230210 Filtered False Suppressed False Sign False HideValue False
  5430. IsKeyOrphanage False IsTruncated False Blanks False
  5431. Category 994033 "20230211" Parent 994011 Levels 408631 OrderBy Drill 408607
  5432. Value "20230211" Label "11/02/2023" Lastuse 20230125 SourceValue "20230211"
  5433. Date 20230211 Filtered False Suppressed False Sign False HideValue False
  5434. IsKeyOrphanage False IsTruncated False Blanks False
  5435. Category 994035 "20230212" Parent 994011 Levels 408631 OrderBy Drill 408607
  5436. Value "20230212" Label "12/02/2023" Lastuse 20230125 SourceValue "20230212"
  5437. Date 20230212 Filtered False Suppressed False Sign False HideValue False
  5438. IsKeyOrphanage False IsTruncated False Blanks False
  5439. Category 994037 "20230213" Parent 994011 Levels 408631 OrderBy Drill 408607
  5440. Value "20230213" Label "13/02/2023" Lastuse 20230125 SourceValue "20230213"
  5441. Date 20230213 Filtered False Suppressed False Sign False HideValue False
  5442. IsKeyOrphanage False IsTruncated False Blanks False
  5443. Category 994039 "20230214" Parent 994011 Levels 408631 OrderBy Drill 408607
  5444. Value "20230214" Label "14/02/2023" Lastuse 20230125 SourceValue "20230214"
  5445. Date 20230214 Filtered False Suppressed False Sign False HideValue False
  5446. IsKeyOrphanage False IsTruncated False Blanks False
  5447. Category 994041 "20230215" Parent 994011 Levels 408631 OrderBy Drill 408607
  5448. Value "20230215" Label "15/02/2023" Lastuse 20230125 SourceValue "20230215"
  5449. Date 20230215 Filtered False Suppressed False Sign False HideValue False
  5450. IsKeyOrphanage False IsTruncated False Blanks False
  5451. Category 994043 "20230216" Parent 994011 Levels 408631 OrderBy Drill 408607
  5452. Value "20230216" Label "16/02/2023" Lastuse 20230125 SourceValue "20230216"
  5453. Date 20230216 Filtered False Suppressed False Sign False HideValue False
  5454. IsKeyOrphanage False IsTruncated False Blanks False
  5455. Category 994045 "20230217" Parent 994011 Levels 408631 OrderBy Drill 408607
  5456. Value "20230217" Label "17/02/2023" Lastuse 20230125 SourceValue "20230217"
  5457. Date 20230217 Filtered False Suppressed False Sign False HideValue False
  5458. IsKeyOrphanage False IsTruncated False Blanks False
  5459. Category 994047 "20230218" Parent 994011 Levels 408631 OrderBy Drill 408607
  5460. Value "20230218" Label "18/02/2023" Lastuse 20230125 SourceValue "20230218"
  5461. Date 20230218 Filtered False Suppressed False Sign False HideValue False
  5462. IsKeyOrphanage False IsTruncated False Blanks False
  5463. Category 994049 "20230219" Parent 994011 Levels 408631 OrderBy Drill 408607
  5464. Value "20230219" Label "19/02/2023" Lastuse 20230125 SourceValue "20230219"
  5465. Date 20230219 Filtered False Suppressed False Sign False HideValue False
  5466. IsKeyOrphanage False IsTruncated False Blanks False
  5467. Category 994051 "20230220" Parent 994011 Levels 408631 OrderBy Drill 408607
  5468. Value "20230220" Label "20/02/2023" Lastuse 20230125 SourceValue "20230220"
  5469. Date 20230220 Filtered False Suppressed False Sign False HideValue False
  5470. IsKeyOrphanage False IsTruncated False Blanks False
  5471. Category 994053 "20230221" Parent 994011 Levels 408631 OrderBy Drill 408607
  5472. Value "20230221" Label "21/02/2023" Lastuse 20230125 SourceValue "20230221"
  5473. Date 20230221 Filtered False Suppressed False Sign False HideValue False
  5474. IsKeyOrphanage False IsTruncated False Blanks False
  5475. Category 994055 "20230222" Parent 994011 Levels 408631 OrderBy Drill 408607
  5476. Value "20230222" Label "22/02/2023" Lastuse 20230125 SourceValue "20230222"
  5477. Date 20230222 Filtered False Suppressed False Sign False HideValue False
  5478. IsKeyOrphanage False IsTruncated False Blanks False
  5479. Category 994057 "20230223" Parent 994011 Levels 408631 OrderBy Drill 408607
  5480. Value "20230223" Label "23/02/2023" Lastuse 20230125 SourceValue "20230223"
  5481. Date 20230223 Filtered False Suppressed False Sign False HideValue False
  5482. IsKeyOrphanage False IsTruncated False Blanks False
  5483. Category 994059 "20230224" Parent 994011 Levels 408631 OrderBy Drill 408607
  5484. Value "20230224" Label "24/02/2023" Lastuse 20230125 SourceValue "20230224"
  5485. Date 20230224 Filtered False Suppressed False Sign False HideValue False
  5486. IsKeyOrphanage False IsTruncated False Blanks False
  5487. Category 994061 "20230225" Parent 994011 Levels 408631 OrderBy Drill 408607
  5488. Value "20230225" Label "25/02/2023" Lastuse 20230125 SourceValue "20230225"
  5489. Date 20230225 Filtered False Suppressed False Sign False HideValue False
  5490. IsKeyOrphanage False IsTruncated False Blanks False
  5491. Category 994063 "20230226" Parent 994011 Levels 408631 OrderBy Drill 408607
  5492. Value "20230226" Label "26/02/2023" Lastuse 20230125 SourceValue "20230226"
  5493. Date 20230226 Filtered False Suppressed False Sign False HideValue False
  5494. IsKeyOrphanage False IsTruncated False Blanks False
  5495. Category 994065 "20230227" Parent 994011 Levels 408631 OrderBy Drill 408607
  5496. Value "20230227" Label "27/02/2023" Lastuse 20230125 SourceValue "20230227"
  5497. Date 20230227 Filtered False Suppressed False Sign False HideValue False
  5498. IsKeyOrphanage False IsTruncated False Blanks False
  5499. Category 994067 "20230228" Parent 994011 Levels 408631 OrderBy Drill 408607
  5500. Value "20230228" Label "28/02/2023" Lastuse 20230125 SourceValue "20230228"
  5501. Date 20230228 Filtered False Suppressed False Sign False HideValue False
  5502. IsKeyOrphanage False IsTruncated False Blanks False
  5503. Category 994069 "20230301-20230331" Parent 993945 Levels 408625 OrderBy Drill 408607
  5504. Value "202303" Label "März/2023" Lastuse 20230125 SourceValue "202303"
  5505. Date 20230301 Filtered False Suppressed False Sign False HideValue False
  5506. IsKeyOrphanage False IsTruncated False Blanks False
  5507. Category 994071 "20230301" Parent 994069 Levels 408631 OrderBy Drill 408607
  5508. Value "20230301" Label "01/03/2023" Lastuse 20230125 SourceValue "20230301"
  5509. Date 20230301 Filtered False Suppressed False Sign False HideValue False
  5510. IsKeyOrphanage False IsTruncated False Blanks False
  5511. Category 994073 "20230302" Parent 994069 Levels 408631 OrderBy Drill 408607
  5512. Value "20230302" Label "02/03/2023" Lastuse 20230125 SourceValue "20230302"
  5513. Date 20230302 Filtered False Suppressed False Sign False HideValue False
  5514. IsKeyOrphanage False IsTruncated False Blanks False
  5515. Category 994075 "20230303" Parent 994069 Levels 408631 OrderBy Drill 408607
  5516. Value "20230303" Label "03/03/2023" Lastuse 20230125 SourceValue "20230303"
  5517. Date 20230303 Filtered False Suppressed False Sign False HideValue False
  5518. IsKeyOrphanage False IsTruncated False Blanks False
  5519. Category 994077 "20230304" Parent 994069 Levels 408631 OrderBy Drill 408607
  5520. Value "20230304" Label "04/03/2023" Lastuse 20230125 SourceValue "20230304"
  5521. Date 20230304 Filtered False Suppressed False Sign False HideValue False
  5522. IsKeyOrphanage False IsTruncated False Blanks False
  5523. Category 994079 "20230305" Parent 994069 Levels 408631 OrderBy Drill 408607
  5524. Value "20230305" Label "05/03/2023" Lastuse 20230125 SourceValue "20230305"
  5525. Date 20230305 Filtered False Suppressed False Sign False HideValue False
  5526. IsKeyOrphanage False IsTruncated False Blanks False
  5527. Category 994081 "20230306" Parent 994069 Levels 408631 OrderBy Drill 408607
  5528. Value "20230306" Label "06/03/2023" Lastuse 20230125 SourceValue "20230306"
  5529. Date 20230306 Filtered False Suppressed False Sign False HideValue False
  5530. IsKeyOrphanage False IsTruncated False Blanks False
  5531. Category 994083 "20230307" Parent 994069 Levels 408631 OrderBy Drill 408607
  5532. Value "20230307" Label "07/03/2023" Lastuse 20230125 SourceValue "20230307"
  5533. Date 20230307 Filtered False Suppressed False Sign False HideValue False
  5534. IsKeyOrphanage False IsTruncated False Blanks False
  5535. Category 994085 "20230308" Parent 994069 Levels 408631 OrderBy Drill 408607
  5536. Value "20230308" Label "08/03/2023" Lastuse 20230125 SourceValue "20230308"
  5537. Date 20230308 Filtered False Suppressed False Sign False HideValue False
  5538. IsKeyOrphanage False IsTruncated False Blanks False
  5539. Category 994087 "20230309" Parent 994069 Levels 408631 OrderBy Drill 408607
  5540. Value "20230309" Label "09/03/2023" Lastuse 20230125 SourceValue "20230309"
  5541. Date 20230309 Filtered False Suppressed False Sign False HideValue False
  5542. IsKeyOrphanage False IsTruncated False Blanks False
  5543. Category 994089 "20230310" Parent 994069 Levels 408631 OrderBy Drill 408607
  5544. Value "20230310" Label "10/03/2023" Lastuse 20230125 SourceValue "20230310"
  5545. Date 20230310 Filtered False Suppressed False Sign False HideValue False
  5546. IsKeyOrphanage False IsTruncated False Blanks False
  5547. Category 994091 "20230311" Parent 994069 Levels 408631 OrderBy Drill 408607
  5548. Value "20230311" Label "11/03/2023" Lastuse 20230125 SourceValue "20230311"
  5549. Date 20230311 Filtered False Suppressed False Sign False HideValue False
  5550. IsKeyOrphanage False IsTruncated False Blanks False
  5551. Category 994093 "20230312" Parent 994069 Levels 408631 OrderBy Drill 408607
  5552. Value "20230312" Label "12/03/2023" Lastuse 20230125 SourceValue "20230312"
  5553. Date 20230312 Filtered False Suppressed False Sign False HideValue False
  5554. IsKeyOrphanage False IsTruncated False Blanks False
  5555. Category 994095 "20230313" Parent 994069 Levels 408631 OrderBy Drill 408607
  5556. Value "20230313" Label "13/03/2023" Lastuse 20230125 SourceValue "20230313"
  5557. Date 20230313 Filtered False Suppressed False Sign False HideValue False
  5558. IsKeyOrphanage False IsTruncated False Blanks False
  5559. Category 994097 "20230314" Parent 994069 Levels 408631 OrderBy Drill 408607
  5560. Value "20230314" Label "14/03/2023" Lastuse 20230125 SourceValue "20230314"
  5561. Date 20230314 Filtered False Suppressed False Sign False HideValue False
  5562. IsKeyOrphanage False IsTruncated False Blanks False
  5563. Category 994099 "20230315" Parent 994069 Levels 408631 OrderBy Drill 408607
  5564. Value "20230315" Label "15/03/2023" Lastuse 20230125 SourceValue "20230315"
  5565. Date 20230315 Filtered False Suppressed False Sign False HideValue False
  5566. IsKeyOrphanage False IsTruncated False Blanks False
  5567. Category 994101 "20230316" Parent 994069 Levels 408631 OrderBy Drill 408607
  5568. Value "20230316" Label "16/03/2023" Lastuse 20230125 SourceValue "20230316"
  5569. Date 20230316 Filtered False Suppressed False Sign False HideValue False
  5570. IsKeyOrphanage False IsTruncated False Blanks False
  5571. Category 994103 "20230317" Parent 994069 Levels 408631 OrderBy Drill 408607
  5572. Value "20230317" Label "17/03/2023" Lastuse 20230125 SourceValue "20230317"
  5573. Date 20230317 Filtered False Suppressed False Sign False HideValue False
  5574. IsKeyOrphanage False IsTruncated False Blanks False
  5575. Category 994105 "20230318" Parent 994069 Levels 408631 OrderBy Drill 408607
  5576. Value "20230318" Label "18/03/2023" Lastuse 20230125 SourceValue "20230318"
  5577. Date 20230318 Filtered False Suppressed False Sign False HideValue False
  5578. IsKeyOrphanage False IsTruncated False Blanks False
  5579. Category 994107 "20230319" Parent 994069 Levels 408631 OrderBy Drill 408607
  5580. Value "20230319" Label "19/03/2023" Lastuse 20230125 SourceValue "20230319"
  5581. Date 20230319 Filtered False Suppressed False Sign False HideValue False
  5582. IsKeyOrphanage False IsTruncated False Blanks False
  5583. Category 994109 "20230320" Parent 994069 Levels 408631 OrderBy Drill 408607
  5584. Value "20230320" Label "20/03/2023" Lastuse 20230125 SourceValue "20230320"
  5585. Date 20230320 Filtered False Suppressed False Sign False HideValue False
  5586. IsKeyOrphanage False IsTruncated False Blanks False
  5587. Category 994111 "20230321" Parent 994069 Levels 408631 OrderBy Drill 408607
  5588. Value "20230321" Label "21/03/2023" Lastuse 20230125 SourceValue "20230321"
  5589. Date 20230321 Filtered False Suppressed False Sign False HideValue False
  5590. IsKeyOrphanage False IsTruncated False Blanks False
  5591. Category 994113 "20230322" Parent 994069 Levels 408631 OrderBy Drill 408607
  5592. Value "20230322" Label "22/03/2023" Lastuse 20230125 SourceValue "20230322"
  5593. Date 20230322 Filtered False Suppressed False Sign False HideValue False
  5594. IsKeyOrphanage False IsTruncated False Blanks False
  5595. Category 994115 "20230323" Parent 994069 Levels 408631 OrderBy Drill 408607
  5596. Value "20230323" Label "23/03/2023" Lastuse 20230125 SourceValue "20230323"
  5597. Date 20230323 Filtered False Suppressed False Sign False HideValue False
  5598. IsKeyOrphanage False IsTruncated False Blanks False
  5599. Category 994117 "20230324" Parent 994069 Levels 408631 OrderBy Drill 408607
  5600. Value "20230324" Label "24/03/2023" Lastuse 20230125 SourceValue "20230324"
  5601. Date 20230324 Filtered False Suppressed False Sign False HideValue False
  5602. IsKeyOrphanage False IsTruncated False Blanks False
  5603. Category 994119 "20230325" Parent 994069 Levels 408631 OrderBy Drill 408607
  5604. Value "20230325" Label "25/03/2023" Lastuse 20230125 SourceValue "20230325"
  5605. Date 20230325 Filtered False Suppressed False Sign False HideValue False
  5606. IsKeyOrphanage False IsTruncated False Blanks False
  5607. Category 994121 "20230326" Parent 994069 Levels 408631 OrderBy Drill 408607
  5608. Value "20230326" Label "26/03/2023" Lastuse 20230125 SourceValue "20230326"
  5609. Date 20230326 Filtered False Suppressed False Sign False HideValue False
  5610. IsKeyOrphanage False IsTruncated False Blanks False
  5611. Category 994123 "20230327" Parent 994069 Levels 408631 OrderBy Drill 408607
  5612. Value "20230327" Label "27/03/2023" Lastuse 20230125 SourceValue "20230327"
  5613. Date 20230327 Filtered False Suppressed False Sign False HideValue False
  5614. IsKeyOrphanage False IsTruncated False Blanks False
  5615. Category 994125 "20230328" Parent 994069 Levels 408631 OrderBy Drill 408607
  5616. Value "20230328" Label "28/03/2023" Lastuse 20230125 SourceValue "20230328"
  5617. Date 20230328 Filtered False Suppressed False Sign False HideValue False
  5618. IsKeyOrphanage False IsTruncated False Blanks False
  5619. Category 994127 "20230329" Parent 994069 Levels 408631 OrderBy Drill 408607
  5620. Value "20230329" Label "29/03/2023" Lastuse 20230125 SourceValue "20230329"
  5621. Date 20230329 Filtered False Suppressed False Sign False HideValue False
  5622. IsKeyOrphanage False IsTruncated False Blanks False
  5623. Category 994129 "20230330" Parent 994069 Levels 408631 OrderBy Drill 408607
  5624. Value "20230330" Label "30/03/2023" Lastuse 20230125 SourceValue "20230330"
  5625. Date 20230330 Filtered False Suppressed False Sign False HideValue False
  5626. IsKeyOrphanage False IsTruncated False Blanks False
  5627. Category 994131 "20230331" Parent 994069 Levels 408631 OrderBy Drill 408607
  5628. Value "20230331" Label "31/03/2023" Lastuse 20230125 SourceValue "20230331"
  5629. Date 20230331 Filtered False Suppressed False Sign False HideValue False
  5630. IsKeyOrphanage False IsTruncated False Blanks False
  5631. Category 994133 "20230401-20230630" Parent 993943 Levels 408619 OrderBy Drill 408607
  5632. Value "20230401" Label "2. Q. 2023" Lastuse 20230125 SourceValue "20230401"
  5633. Date 20230401 Filtered False Suppressed False Sign False HideValue False
  5634. IsKeyOrphanage False IsTruncated False Blanks False
  5635. Category 994135 "20230401-20230430" Parent 994133 Levels 408625 OrderBy Drill 408607
  5636. Value "202304" Label "Apr./2023" Lastuse 20230125 SourceValue "202304"
  5637. Date 20230401 Filtered False Suppressed False Sign False HideValue False
  5638. IsKeyOrphanage False IsTruncated False Blanks False
  5639. Category 994137 "20230401" Parent 994135 Levels 408631 OrderBy Drill 408607
  5640. Value "20230401" Label "01/04/2023" Lastuse 20230125 SourceValue "20230401"
  5641. Date 20230401 Filtered False Suppressed False Sign False HideValue False
  5642. IsKeyOrphanage False IsTruncated False Blanks False
  5643. Category 994139 "20230402" Parent 994135 Levels 408631 OrderBy Drill 408607
  5644. Value "20230402" Label "02/04/2023" Lastuse 20230125 SourceValue "20230402"
  5645. Date 20230402 Filtered False Suppressed False Sign False HideValue False
  5646. IsKeyOrphanage False IsTruncated False Blanks False
  5647. Category 994141 "20230403" Parent 994135 Levels 408631 OrderBy Drill 408607
  5648. Value "20230403" Label "03/04/2023" Lastuse 20230125 SourceValue "20230403"
  5649. Date 20230403 Filtered False Suppressed False Sign False HideValue False
  5650. IsKeyOrphanage False IsTruncated False Blanks False
  5651. Category 994143 "20230404" Parent 994135 Levels 408631 OrderBy Drill 408607
  5652. Value "20230404" Label "04/04/2023" Lastuse 20230125 SourceValue "20230404"
  5653. Date 20230404 Filtered False Suppressed False Sign False HideValue False
  5654. IsKeyOrphanage False IsTruncated False Blanks False
  5655. Category 994145 "20230405" Parent 994135 Levels 408631 OrderBy Drill 408607
  5656. Value "20230405" Label "05/04/2023" Lastuse 20230125 SourceValue "20230405"
  5657. Date 20230405 Filtered False Suppressed False Sign False HideValue False
  5658. IsKeyOrphanage False IsTruncated False Blanks False
  5659. Category 994147 "20230406" Parent 994135 Levels 408631 OrderBy Drill 408607
  5660. Value "20230406" Label "06/04/2023" Lastuse 20230125 SourceValue "20230406"
  5661. Date 20230406 Filtered False Suppressed False Sign False HideValue False
  5662. IsKeyOrphanage False IsTruncated False Blanks False
  5663. Category 994149 "20230407" Parent 994135 Levels 408631 OrderBy Drill 408607
  5664. Value "20230407" Label "07/04/2023" Lastuse 20230125 SourceValue "20230407"
  5665. Date 20230407 Filtered False Suppressed False Sign False HideValue False
  5666. IsKeyOrphanage False IsTruncated False Blanks False
  5667. Category 994151 "20230408" Parent 994135 Levels 408631 OrderBy Drill 408607
  5668. Value "20230408" Label "08/04/2023" Lastuse 20230125 SourceValue "20230408"
  5669. Date 20230408 Filtered False Suppressed False Sign False HideValue False
  5670. IsKeyOrphanage False IsTruncated False Blanks False
  5671. Category 994153 "20230409" Parent 994135 Levels 408631 OrderBy Drill 408607
  5672. Value "20230409" Label "09/04/2023" Lastuse 20230125 SourceValue "20230409"
  5673. Date 20230409 Filtered False Suppressed False Sign False HideValue False
  5674. IsKeyOrphanage False IsTruncated False Blanks False
  5675. Category 994155 "20230410" Parent 994135 Levels 408631 OrderBy Drill 408607
  5676. Value "20230410" Label "10/04/2023" Lastuse 20230125 SourceValue "20230410"
  5677. Date 20230410 Filtered False Suppressed False Sign False HideValue False
  5678. IsKeyOrphanage False IsTruncated False Blanks False
  5679. Category 994157 "20230411" Parent 994135 Levels 408631 OrderBy Drill 408607
  5680. Value "20230411" Label "11/04/2023" Lastuse 20230125 SourceValue "20230411"
  5681. Date 20230411 Filtered False Suppressed False Sign False HideValue False
  5682. IsKeyOrphanage False IsTruncated False Blanks False
  5683. Category 994159 "20230412" Parent 994135 Levels 408631 OrderBy Drill 408607
  5684. Value "20230412" Label "12/04/2023" Lastuse 20230125 SourceValue "20230412"
  5685. Date 20230412 Filtered False Suppressed False Sign False HideValue False
  5686. IsKeyOrphanage False IsTruncated False Blanks False
  5687. Category 994161 "20230413" Parent 994135 Levels 408631 OrderBy Drill 408607
  5688. Value "20230413" Label "13/04/2023" Lastuse 20230125 SourceValue "20230413"
  5689. Date 20230413 Filtered False Suppressed False Sign False HideValue False
  5690. IsKeyOrphanage False IsTruncated False Blanks False
  5691. Category 994163 "20230414" Parent 994135 Levels 408631 OrderBy Drill 408607
  5692. Value "20230414" Label "14/04/2023" Lastuse 20230125 SourceValue "20230414"
  5693. Date 20230414 Filtered False Suppressed False Sign False HideValue False
  5694. IsKeyOrphanage False IsTruncated False Blanks False
  5695. Category 994165 "20230415" Parent 994135 Levels 408631 OrderBy Drill 408607
  5696. Value "20230415" Label "15/04/2023" Lastuse 20230125 SourceValue "20230415"
  5697. Date 20230415 Filtered False Suppressed False Sign False HideValue False
  5698. IsKeyOrphanage False IsTruncated False Blanks False
  5699. Category 994167 "20230416" Parent 994135 Levels 408631 OrderBy Drill 408607
  5700. Value "20230416" Label "16/04/2023" Lastuse 20230125 SourceValue "20230416"
  5701. Date 20230416 Filtered False Suppressed False Sign False HideValue False
  5702. IsKeyOrphanage False IsTruncated False Blanks False
  5703. Category 994169 "20230417" Parent 994135 Levels 408631 OrderBy Drill 408607
  5704. Value "20230417" Label "17/04/2023" Lastuse 20230125 SourceValue "20230417"
  5705. Date 20230417 Filtered False Suppressed False Sign False HideValue False
  5706. IsKeyOrphanage False IsTruncated False Blanks False
  5707. Category 994171 "20230418" Parent 994135 Levels 408631 OrderBy Drill 408607
  5708. Value "20230418" Label "18/04/2023" Lastuse 20230125 SourceValue "20230418"
  5709. Date 20230418 Filtered False Suppressed False Sign False HideValue False
  5710. IsKeyOrphanage False IsTruncated False Blanks False
  5711. Category 994173 "20230419" Parent 994135 Levels 408631 OrderBy Drill 408607
  5712. Value "20230419" Label "19/04/2023" Lastuse 20230125 SourceValue "20230419"
  5713. Date 20230419 Filtered False Suppressed False Sign False HideValue False
  5714. IsKeyOrphanage False IsTruncated False Blanks False
  5715. Category 994175 "20230420" Parent 994135 Levels 408631 OrderBy Drill 408607
  5716. Value "20230420" Label "20/04/2023" Lastuse 20230125 SourceValue "20230420"
  5717. Date 20230420 Filtered False Suppressed False Sign False HideValue False
  5718. IsKeyOrphanage False IsTruncated False Blanks False
  5719. Category 994177 "20230421" Parent 994135 Levels 408631 OrderBy Drill 408607
  5720. Value "20230421" Label "21/04/2023" Lastuse 20230125 SourceValue "20230421"
  5721. Date 20230421 Filtered False Suppressed False Sign False HideValue False
  5722. IsKeyOrphanage False IsTruncated False Blanks False
  5723. Category 994179 "20230422" Parent 994135 Levels 408631 OrderBy Drill 408607
  5724. Value "20230422" Label "22/04/2023" Lastuse 20230125 SourceValue "20230422"
  5725. Date 20230422 Filtered False Suppressed False Sign False HideValue False
  5726. IsKeyOrphanage False IsTruncated False Blanks False
  5727. Category 994181 "20230423" Parent 994135 Levels 408631 OrderBy Drill 408607
  5728. Value "20230423" Label "23/04/2023" Lastuse 20230125 SourceValue "20230423"
  5729. Date 20230423 Filtered False Suppressed False Sign False HideValue False
  5730. IsKeyOrphanage False IsTruncated False Blanks False
  5731. Category 994183 "20230424" Parent 994135 Levels 408631 OrderBy Drill 408607
  5732. Value "20230424" Label "24/04/2023" Lastuse 20230125 SourceValue "20230424"
  5733. Date 20230424 Filtered False Suppressed False Sign False HideValue False
  5734. IsKeyOrphanage False IsTruncated False Blanks False
  5735. Category 994185 "20230425" Parent 994135 Levels 408631 OrderBy Drill 408607
  5736. Value "20230425" Label "25/04/2023" Lastuse 20230125 SourceValue "20230425"
  5737. Date 20230425 Filtered False Suppressed False Sign False HideValue False
  5738. IsKeyOrphanage False IsTruncated False Blanks False
  5739. Category 994187 "20230426" Parent 994135 Levels 408631 OrderBy Drill 408607
  5740. Value "20230426" Label "26/04/2023" Lastuse 20230125 SourceValue "20230426"
  5741. Date 20230426 Filtered False Suppressed False Sign False HideValue False
  5742. IsKeyOrphanage False IsTruncated False Blanks False
  5743. Category 994189 "20230427" Parent 994135 Levels 408631 OrderBy Drill 408607
  5744. Value "20230427" Label "27/04/2023" Lastuse 20230125 SourceValue "20230427"
  5745. Date 20230427 Filtered False Suppressed False Sign False HideValue False
  5746. IsKeyOrphanage False IsTruncated False Blanks False
  5747. Category 994191 "20230428" Parent 994135 Levels 408631 OrderBy Drill 408607
  5748. Value "20230428" Label "28/04/2023" Lastuse 20230125 SourceValue "20230428"
  5749. Date 20230428 Filtered False Suppressed False Sign False HideValue False
  5750. IsKeyOrphanage False IsTruncated False Blanks False
  5751. Category 994193 "20230429" Parent 994135 Levels 408631 OrderBy Drill 408607
  5752. Value "20230429" Label "29/04/2023" Lastuse 20230125 SourceValue "20230429"
  5753. Date 20230429 Filtered False Suppressed False Sign False HideValue False
  5754. IsKeyOrphanage False IsTruncated False Blanks False
  5755. Category 994195 "20230430" Parent 994135 Levels 408631 OrderBy Drill 408607
  5756. Value "20230430" Label "30/04/2023" Lastuse 20230125 SourceValue "20230430"
  5757. Date 20230430 Filtered False Suppressed False Sign False HideValue False
  5758. IsKeyOrphanage False IsTruncated False Blanks False
  5759. Category 994197 "20230501-20230531" Parent 994133 Levels 408625 OrderBy Drill 408607
  5760. Value "202305" Label "Mai/2023" Lastuse 20230125 SourceValue "202305" Date 20230501
  5761. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  5762. IsTruncated False Blanks False
  5763. Category 994199 "20230501" Parent 994197 Levels 408631 OrderBy Drill 408607
  5764. Value "20230501" Label "01/05/2023" Lastuse 20230125 SourceValue "20230501"
  5765. Date 20230501 Filtered False Suppressed False Sign False HideValue False
  5766. IsKeyOrphanage False IsTruncated False Blanks False
  5767. Category 994201 "20230502" Parent 994197 Levels 408631 OrderBy Drill 408607
  5768. Value "20230502" Label "02/05/2023" Lastuse 20230125 SourceValue "20230502"
  5769. Date 20230502 Filtered False Suppressed False Sign False HideValue False
  5770. IsKeyOrphanage False IsTruncated False Blanks False
  5771. Category 994203 "20230503" Parent 994197 Levels 408631 OrderBy Drill 408607
  5772. Value "20230503" Label "03/05/2023" Lastuse 20230125 SourceValue "20230503"
  5773. Date 20230503 Filtered False Suppressed False Sign False HideValue False
  5774. IsKeyOrphanage False IsTruncated False Blanks False
  5775. Category 994205 "20230504" Parent 994197 Levels 408631 OrderBy Drill 408607
  5776. Value "20230504" Label "04/05/2023" Lastuse 20230125 SourceValue "20230504"
  5777. Date 20230504 Filtered False Suppressed False Sign False HideValue False
  5778. IsKeyOrphanage False IsTruncated False Blanks False
  5779. Category 994207 "20230505" Parent 994197 Levels 408631 OrderBy Drill 408607
  5780. Value "20230505" Label "05/05/2023" Lastuse 20230125 SourceValue "20230505"
  5781. Date 20230505 Filtered False Suppressed False Sign False HideValue False
  5782. IsKeyOrphanage False IsTruncated False Blanks False
  5783. Category 994209 "20230506" Parent 994197 Levels 408631 OrderBy Drill 408607
  5784. Value "20230506" Label "06/05/2023" Lastuse 20230125 SourceValue "20230506"
  5785. Date 20230506 Filtered False Suppressed False Sign False HideValue False
  5786. IsKeyOrphanage False IsTruncated False Blanks False
  5787. Category 994211 "20230507" Parent 994197 Levels 408631 OrderBy Drill 408607
  5788. Value "20230507" Label "07/05/2023" Lastuse 20230125 SourceValue "20230507"
  5789. Date 20230507 Filtered False Suppressed False Sign False HideValue False
  5790. IsKeyOrphanage False IsTruncated False Blanks False
  5791. Category 994213 "20230508" Parent 994197 Levels 408631 OrderBy Drill 408607
  5792. Value "20230508" Label "08/05/2023" Lastuse 20230125 SourceValue "20230508"
  5793. Date 20230508 Filtered False Suppressed False Sign False HideValue False
  5794. IsKeyOrphanage False IsTruncated False Blanks False
  5795. Category 994215 "20230509" Parent 994197 Levels 408631 OrderBy Drill 408607
  5796. Value "20230509" Label "09/05/2023" Lastuse 20230125 SourceValue "20230509"
  5797. Date 20230509 Filtered False Suppressed False Sign False HideValue False
  5798. IsKeyOrphanage False IsTruncated False Blanks False
  5799. Category 994217 "20230510" Parent 994197 Levels 408631 OrderBy Drill 408607
  5800. Value "20230510" Label "10/05/2023" Lastuse 20230125 SourceValue "20230510"
  5801. Date 20230510 Filtered False Suppressed False Sign False HideValue False
  5802. IsKeyOrphanage False IsTruncated False Blanks False
  5803. Category 994219 "20230511" Parent 994197 Levels 408631 OrderBy Drill 408607
  5804. Value "20230511" Label "11/05/2023" Lastuse 20230125 SourceValue "20230511"
  5805. Date 20230511 Filtered False Suppressed False Sign False HideValue False
  5806. IsKeyOrphanage False IsTruncated False Blanks False
  5807. Category 994221 "20230512" Parent 994197 Levels 408631 OrderBy Drill 408607
  5808. Value "20230512" Label "12/05/2023" Lastuse 20230125 SourceValue "20230512"
  5809. Date 20230512 Filtered False Suppressed False Sign False HideValue False
  5810. IsKeyOrphanage False IsTruncated False Blanks False
  5811. Category 994223 "20230513" Parent 994197 Levels 408631 OrderBy Drill 408607
  5812. Value "20230513" Label "13/05/2023" Lastuse 20230125 SourceValue "20230513"
  5813. Date 20230513 Filtered False Suppressed False Sign False HideValue False
  5814. IsKeyOrphanage False IsTruncated False Blanks False
  5815. Category 994225 "20230514" Parent 994197 Levels 408631 OrderBy Drill 408607
  5816. Value "20230514" Label "14/05/2023" Lastuse 20230125 SourceValue "20230514"
  5817. Date 20230514 Filtered False Suppressed False Sign False HideValue False
  5818. IsKeyOrphanage False IsTruncated False Blanks False
  5819. Category 994227 "20230515" Parent 994197 Levels 408631 OrderBy Drill 408607
  5820. Value "20230515" Label "15/05/2023" Lastuse 20230125 SourceValue "20230515"
  5821. Date 20230515 Filtered False Suppressed False Sign False HideValue False
  5822. IsKeyOrphanage False IsTruncated False Blanks False
  5823. Category 994229 "20230516" Parent 994197 Levels 408631 OrderBy Drill 408607
  5824. Value "20230516" Label "16/05/2023" Lastuse 20230125 SourceValue "20230516"
  5825. Date 20230516 Filtered False Suppressed False Sign False HideValue False
  5826. IsKeyOrphanage False IsTruncated False Blanks False
  5827. Category 994231 "20230517" Parent 994197 Levels 408631 OrderBy Drill 408607
  5828. Value "20230517" Label "17/05/2023" Lastuse 20230125 SourceValue "20230517"
  5829. Date 20230517 Filtered False Suppressed False Sign False HideValue False
  5830. IsKeyOrphanage False IsTruncated False Blanks False
  5831. Category 994233 "20230518" Parent 994197 Levels 408631 OrderBy Drill 408607
  5832. Value "20230518" Label "18/05/2023" Lastuse 20230125 SourceValue "20230518"
  5833. Date 20230518 Filtered False Suppressed False Sign False HideValue False
  5834. IsKeyOrphanage False IsTruncated False Blanks False
  5835. Category 994235 "20230519" Parent 994197 Levels 408631 OrderBy Drill 408607
  5836. Value "20230519" Label "19/05/2023" Lastuse 20230125 SourceValue "20230519"
  5837. Date 20230519 Filtered False Suppressed False Sign False HideValue False
  5838. IsKeyOrphanage False IsTruncated False Blanks False
  5839. Category 994237 "20230520" Parent 994197 Levels 408631 OrderBy Drill 408607
  5840. Value "20230520" Label "20/05/2023" Lastuse 20230125 SourceValue "20230520"
  5841. Date 20230520 Filtered False Suppressed False Sign False HideValue False
  5842. IsKeyOrphanage False IsTruncated False Blanks False
  5843. Category 994239 "20230521" Parent 994197 Levels 408631 OrderBy Drill 408607
  5844. Value "20230521" Label "21/05/2023" Lastuse 20230125 SourceValue "20230521"
  5845. Date 20230521 Filtered False Suppressed False Sign False HideValue False
  5846. IsKeyOrphanage False IsTruncated False Blanks False
  5847. Category 994241 "20230522" Parent 994197 Levels 408631 OrderBy Drill 408607
  5848. Value "20230522" Label "22/05/2023" Lastuse 20230125 SourceValue "20230522"
  5849. Date 20230522 Filtered False Suppressed False Sign False HideValue False
  5850. IsKeyOrphanage False IsTruncated False Blanks False
  5851. Category 994243 "20230523" Parent 994197 Levels 408631 OrderBy Drill 408607
  5852. Value "20230523" Label "23/05/2023" Lastuse 20230125 SourceValue "20230523"
  5853. Date 20230523 Filtered False Suppressed False Sign False HideValue False
  5854. IsKeyOrphanage False IsTruncated False Blanks False
  5855. Category 994245 "20230524" Parent 994197 Levels 408631 OrderBy Drill 408607
  5856. Value "20230524" Label "24/05/2023" Lastuse 20230125 SourceValue "20230524"
  5857. Date 20230524 Filtered False Suppressed False Sign False HideValue False
  5858. IsKeyOrphanage False IsTruncated False Blanks False
  5859. Category 994247 "20230525" Parent 994197 Levels 408631 OrderBy Drill 408607
  5860. Value "20230525" Label "25/05/2023" Lastuse 20230125 SourceValue "20230525"
  5861. Date 20230525 Filtered False Suppressed False Sign False HideValue False
  5862. IsKeyOrphanage False IsTruncated False Blanks False
  5863. Category 994249 "20230526" Parent 994197 Levels 408631 OrderBy Drill 408607
  5864. Value "20230526" Label "26/05/2023" Lastuse 20230125 SourceValue "20230526"
  5865. Date 20230526 Filtered False Suppressed False Sign False HideValue False
  5866. IsKeyOrphanage False IsTruncated False Blanks False
  5867. Category 994251 "20230527" Parent 994197 Levels 408631 OrderBy Drill 408607
  5868. Value "20230527" Label "27/05/2023" Lastuse 20230125 SourceValue "20230527"
  5869. Date 20230527 Filtered False Suppressed False Sign False HideValue False
  5870. IsKeyOrphanage False IsTruncated False Blanks False
  5871. Category 994253 "20230528" Parent 994197 Levels 408631 OrderBy Drill 408607
  5872. Value "20230528" Label "28/05/2023" Lastuse 20230125 SourceValue "20230528"
  5873. Date 20230528 Filtered False Suppressed False Sign False HideValue False
  5874. IsKeyOrphanage False IsTruncated False Blanks False
  5875. Category 994255 "20230529" Parent 994197 Levels 408631 OrderBy Drill 408607
  5876. Value "20230529" Label "29/05/2023" Lastuse 20230125 SourceValue "20230529"
  5877. Date 20230529 Filtered False Suppressed False Sign False HideValue False
  5878. IsKeyOrphanage False IsTruncated False Blanks False
  5879. Category 994257 "20230530" Parent 994197 Levels 408631 OrderBy Drill 408607
  5880. Value "20230530" Label "30/05/2023" Lastuse 20230125 SourceValue "20230530"
  5881. Date 20230530 Filtered False Suppressed False Sign False HideValue False
  5882. IsKeyOrphanage False IsTruncated False Blanks False
  5883. Category 994259 "20230531" Parent 994197 Levels 408631 OrderBy Drill 408607
  5884. Value "20230531" Label "31/05/2023" Lastuse 20230125 SourceValue "20230531"
  5885. Date 20230531 Filtered False Suppressed False Sign False HideValue False
  5886. IsKeyOrphanage False IsTruncated False Blanks False
  5887. Category 994261 "20230601-20230630" Parent 994133 Levels 408625 OrderBy Drill 408607
  5888. Value "202306" Label "Juni/2023" Lastuse 20230125 SourceValue "202306"
  5889. Date 20230601 Filtered False Suppressed False Sign False HideValue False
  5890. IsKeyOrphanage False IsTruncated False Blanks False
  5891. Category 994263 "20230601" Parent 994261 Levels 408631 OrderBy Drill 408607
  5892. Value "20230601" Label "01/06/2023" Lastuse 20230125 SourceValue "20230601"
  5893. Date 20230601 Filtered False Suppressed False Sign False HideValue False
  5894. IsKeyOrphanage False IsTruncated False Blanks False
  5895. Category 994265 "20230602" Parent 994261 Levels 408631 OrderBy Drill 408607
  5896. Value "20230602" Label "02/06/2023" Lastuse 20230125 SourceValue "20230602"
  5897. Date 20230602 Filtered False Suppressed False Sign False HideValue False
  5898. IsKeyOrphanage False IsTruncated False Blanks False
  5899. Category 994267 "20230603" Parent 994261 Levels 408631 OrderBy Drill 408607
  5900. Value "20230603" Label "03/06/2023" Lastuse 20230125 SourceValue "20230603"
  5901. Date 20230603 Filtered False Suppressed False Sign False HideValue False
  5902. IsKeyOrphanage False IsTruncated False Blanks False
  5903. Category 994269 "20230604" Parent 994261 Levels 408631 OrderBy Drill 408607
  5904. Value "20230604" Label "04/06/2023" Lastuse 20230125 SourceValue "20230604"
  5905. Date 20230604 Filtered False Suppressed False Sign False HideValue False
  5906. IsKeyOrphanage False IsTruncated False Blanks False
  5907. Category 994271 "20230605" Parent 994261 Levels 408631 OrderBy Drill 408607
  5908. Value "20230605" Label "05/06/2023" Lastuse 20230125 SourceValue "20230605"
  5909. Date 20230605 Filtered False Suppressed False Sign False HideValue False
  5910. IsKeyOrphanage False IsTruncated False Blanks False
  5911. Category 994273 "20230606" Parent 994261 Levels 408631 OrderBy Drill 408607
  5912. Value "20230606" Label "06/06/2023" Lastuse 20230125 SourceValue "20230606"
  5913. Date 20230606 Filtered False Suppressed False Sign False HideValue False
  5914. IsKeyOrphanage False IsTruncated False Blanks False
  5915. Category 994275 "20230607" Parent 994261 Levels 408631 OrderBy Drill 408607
  5916. Value "20230607" Label "07/06/2023" Lastuse 20230125 SourceValue "20230607"
  5917. Date 20230607 Filtered False Suppressed False Sign False HideValue False
  5918. IsKeyOrphanage False IsTruncated False Blanks False
  5919. Category 994277 "20230608" Parent 994261 Levels 408631 OrderBy Drill 408607
  5920. Value "20230608" Label "08/06/2023" Lastuse 20230125 SourceValue "20230608"
  5921. Date 20230608 Filtered False Suppressed False Sign False HideValue False
  5922. IsKeyOrphanage False IsTruncated False Blanks False
  5923. Category 994279 "20230609" Parent 994261 Levels 408631 OrderBy Drill 408607
  5924. Value "20230609" Label "09/06/2023" Lastuse 20230125 SourceValue "20230609"
  5925. Date 20230609 Filtered False Suppressed False Sign False HideValue False
  5926. IsKeyOrphanage False IsTruncated False Blanks False
  5927. Category 994281 "20230610" Parent 994261 Levels 408631 OrderBy Drill 408607
  5928. Value "20230610" Label "10/06/2023" Lastuse 20230125 SourceValue "20230610"
  5929. Date 20230610 Filtered False Suppressed False Sign False HideValue False
  5930. IsKeyOrphanage False IsTruncated False Blanks False
  5931. Category 994283 "20230611" Parent 994261 Levels 408631 OrderBy Drill 408607
  5932. Value "20230611" Label "11/06/2023" Lastuse 20230125 SourceValue "20230611"
  5933. Date 20230611 Filtered False Suppressed False Sign False HideValue False
  5934. IsKeyOrphanage False IsTruncated False Blanks False
  5935. Category 994285 "20230612" Parent 994261 Levels 408631 OrderBy Drill 408607
  5936. Value "20230612" Label "12/06/2023" Lastuse 20230125 SourceValue "20230612"
  5937. Date 20230612 Filtered False Suppressed False Sign False HideValue False
  5938. IsKeyOrphanage False IsTruncated False Blanks False
  5939. Category 994287 "20230613" Parent 994261 Levels 408631 OrderBy Drill 408607
  5940. Value "20230613" Label "13/06/2023" Lastuse 20230125 SourceValue "20230613"
  5941. Date 20230613 Filtered False Suppressed False Sign False HideValue False
  5942. IsKeyOrphanage False IsTruncated False Blanks False
  5943. Category 994289 "20230614" Parent 994261 Levels 408631 OrderBy Drill 408607
  5944. Value "20230614" Label "14/06/2023" Lastuse 20230125 SourceValue "20230614"
  5945. Date 20230614 Filtered False Suppressed False Sign False HideValue False
  5946. IsKeyOrphanage False IsTruncated False Blanks False
  5947. Category 994291 "20230615" Parent 994261 Levels 408631 OrderBy Drill 408607
  5948. Value "20230615" Label "15/06/2023" Lastuse 20230125 SourceValue "20230615"
  5949. Date 20230615 Filtered False Suppressed False Sign False HideValue False
  5950. IsKeyOrphanage False IsTruncated False Blanks False
  5951. Category 994293 "20230616" Parent 994261 Levels 408631 OrderBy Drill 408607
  5952. Value "20230616" Label "16/06/2023" Lastuse 20230125 SourceValue "20230616"
  5953. Date 20230616 Filtered False Suppressed False Sign False HideValue False
  5954. IsKeyOrphanage False IsTruncated False Blanks False
  5955. Category 994295 "20230617" Parent 994261 Levels 408631 OrderBy Drill 408607
  5956. Value "20230617" Label "17/06/2023" Lastuse 20230125 SourceValue "20230617"
  5957. Date 20230617 Filtered False Suppressed False Sign False HideValue False
  5958. IsKeyOrphanage False IsTruncated False Blanks False
  5959. Category 994297 "20230618" Parent 994261 Levels 408631 OrderBy Drill 408607
  5960. Value "20230618" Label "18/06/2023" Lastuse 20230125 SourceValue "20230618"
  5961. Date 20230618 Filtered False Suppressed False Sign False HideValue False
  5962. IsKeyOrphanage False IsTruncated False Blanks False
  5963. Category 994299 "20230619" Parent 994261 Levels 408631 OrderBy Drill 408607
  5964. Value "20230619" Label "19/06/2023" Lastuse 20230125 SourceValue "20230619"
  5965. Date 20230619 Filtered False Suppressed False Sign False HideValue False
  5966. IsKeyOrphanage False IsTruncated False Blanks False
  5967. Category 994301 "20230620" Parent 994261 Levels 408631 OrderBy Drill 408607
  5968. Value "20230620" Label "20/06/2023" Lastuse 20230125 SourceValue "20230620"
  5969. Date 20230620 Filtered False Suppressed False Sign False HideValue False
  5970. IsKeyOrphanage False IsTruncated False Blanks False
  5971. Category 994303 "20230621" Parent 994261 Levels 408631 OrderBy Drill 408607
  5972. Value "20230621" Label "21/06/2023" Lastuse 20230125 SourceValue "20230621"
  5973. Date 20230621 Filtered False Suppressed False Sign False HideValue False
  5974. IsKeyOrphanage False IsTruncated False Blanks False
  5975. Category 994305 "20230622" Parent 994261 Levels 408631 OrderBy Drill 408607
  5976. Value "20230622" Label "22/06/2023" Lastuse 20230125 SourceValue "20230622"
  5977. Date 20230622 Filtered False Suppressed False Sign False HideValue False
  5978. IsKeyOrphanage False IsTruncated False Blanks False
  5979. Category 994307 "20230623" Parent 994261 Levels 408631 OrderBy Drill 408607
  5980. Value "20230623" Label "23/06/2023" Lastuse 20230125 SourceValue "20230623"
  5981. Date 20230623 Filtered False Suppressed False Sign False HideValue False
  5982. IsKeyOrphanage False IsTruncated False Blanks False
  5983. Category 994309 "20230624" Parent 994261 Levels 408631 OrderBy Drill 408607
  5984. Value "20230624" Label "24/06/2023" Lastuse 20230125 SourceValue "20230624"
  5985. Date 20230624 Filtered False Suppressed False Sign False HideValue False
  5986. IsKeyOrphanage False IsTruncated False Blanks False
  5987. Category 994311 "20230625" Parent 994261 Levels 408631 OrderBy Drill 408607
  5988. Value "20230625" Label "25/06/2023" Lastuse 20230125 SourceValue "20230625"
  5989. Date 20230625 Filtered False Suppressed False Sign False HideValue False
  5990. IsKeyOrphanage False IsTruncated False Blanks False
  5991. Category 994313 "20230626" Parent 994261 Levels 408631 OrderBy Drill 408607
  5992. Value "20230626" Label "26/06/2023" Lastuse 20230125 SourceValue "20230626"
  5993. Date 20230626 Filtered False Suppressed False Sign False HideValue False
  5994. IsKeyOrphanage False IsTruncated False Blanks False
  5995. Category 994315 "20230627" Parent 994261 Levels 408631 OrderBy Drill 408607
  5996. Value "20230627" Label "27/06/2023" Lastuse 20230125 SourceValue "20230627"
  5997. Date 20230627 Filtered False Suppressed False Sign False HideValue False
  5998. IsKeyOrphanage False IsTruncated False Blanks False
  5999. Category 994317 "20230628" Parent 994261 Levels 408631 OrderBy Drill 408607
  6000. Value "20230628" Label "28/06/2023" Lastuse 20230125 SourceValue "20230628"
  6001. Date 20230628 Filtered False Suppressed False Sign False HideValue False
  6002. IsKeyOrphanage False IsTruncated False Blanks False
  6003. Category 994319 "20230629" Parent 994261 Levels 408631 OrderBy Drill 408607
  6004. Value "20230629" Label "29/06/2023" Lastuse 20230125 SourceValue "20230629"
  6005. Date 20230629 Filtered False Suppressed False Sign False HideValue False
  6006. IsKeyOrphanage False IsTruncated False Blanks False
  6007. Category 994321 "20230630" Parent 994261 Levels 408631 OrderBy Drill 408607
  6008. Value "20230630" Label "30/06/2023" Lastuse 20230125 SourceValue "20230630"
  6009. Date 20230630 Filtered False Suppressed False Sign False HideValue False
  6010. IsKeyOrphanage False IsTruncated False Blanks False
  6011. Category 994323 "20230701-20230930" Parent 993943 Levels 408619 OrderBy Drill 408607
  6012. Value "20230701" Label "3. Q. 2023" Lastuse 20230125 SourceValue "20230701"
  6013. Date 20230701 Filtered False Suppressed False Sign False HideValue False
  6014. IsKeyOrphanage False IsTruncated False Blanks False
  6015. Category 994325 "20230701-20230731" Parent 994323 Levels 408625 OrderBy Drill 408607
  6016. Value "202307" Label "Juli/2023" Lastuse 20230125 SourceValue "202307"
  6017. Date 20230701 Filtered False Suppressed False Sign False HideValue False
  6018. IsKeyOrphanage False IsTruncated False Blanks False
  6019. Category 994327 "20230701" Parent 994325 Levels 408631 OrderBy Drill 408607
  6020. Value "20230701" Label "01/07/2023" Lastuse 20230125 SourceValue "20230701"
  6021. Date 20230701 Filtered False Suppressed False Sign False HideValue False
  6022. IsKeyOrphanage False IsTruncated False Blanks False
  6023. Category 994329 "20230702" Parent 994325 Levels 408631 OrderBy Drill 408607
  6024. Value "20230702" Label "02/07/2023" Lastuse 20230125 SourceValue "20230702"
  6025. Date 20230702 Filtered False Suppressed False Sign False HideValue False
  6026. IsKeyOrphanage False IsTruncated False Blanks False
  6027. Category 994331 "20230703" Parent 994325 Levels 408631 OrderBy Drill 408607
  6028. Value "20230703" Label "03/07/2023" Lastuse 20230125 SourceValue "20230703"
  6029. Date 20230703 Filtered False Suppressed False Sign False HideValue False
  6030. IsKeyOrphanage False IsTruncated False Blanks False
  6031. Category 994333 "20230704" Parent 994325 Levels 408631 OrderBy Drill 408607
  6032. Value "20230704" Label "04/07/2023" Lastuse 20230125 SourceValue "20230704"
  6033. Date 20230704 Filtered False Suppressed False Sign False HideValue False
  6034. IsKeyOrphanage False IsTruncated False Blanks False
  6035. Category 994335 "20230705" Parent 994325 Levels 408631 OrderBy Drill 408607
  6036. Value "20230705" Label "05/07/2023" Lastuse 20230125 SourceValue "20230705"
  6037. Date 20230705 Filtered False Suppressed False Sign False HideValue False
  6038. IsKeyOrphanage False IsTruncated False Blanks False
  6039. Category 994337 "20230706" Parent 994325 Levels 408631 OrderBy Drill 408607
  6040. Value "20230706" Label "06/07/2023" Lastuse 20230125 SourceValue "20230706"
  6041. Date 20230706 Filtered False Suppressed False Sign False HideValue False
  6042. IsKeyOrphanage False IsTruncated False Blanks False
  6043. Category 994339 "20230707" Parent 994325 Levels 408631 OrderBy Drill 408607
  6044. Value "20230707" Label "07/07/2023" Lastuse 20230125 SourceValue "20230707"
  6045. Date 20230707 Filtered False Suppressed False Sign False HideValue False
  6046. IsKeyOrphanage False IsTruncated False Blanks False
  6047. Category 994341 "20230708" Parent 994325 Levels 408631 OrderBy Drill 408607
  6048. Value "20230708" Label "08/07/2023" Lastuse 20230125 SourceValue "20230708"
  6049. Date 20230708 Filtered False Suppressed False Sign False HideValue False
  6050. IsKeyOrphanage False IsTruncated False Blanks False
  6051. Category 994343 "20230709" Parent 994325 Levels 408631 OrderBy Drill 408607
  6052. Value "20230709" Label "09/07/2023" Lastuse 20230125 SourceValue "20230709"
  6053. Date 20230709 Filtered False Suppressed False Sign False HideValue False
  6054. IsKeyOrphanage False IsTruncated False Blanks False
  6055. Category 994345 "20230710" Parent 994325 Levels 408631 OrderBy Drill 408607
  6056. Value "20230710" Label "10/07/2023" Lastuse 20230125 SourceValue "20230710"
  6057. Date 20230710 Filtered False Suppressed False Sign False HideValue False
  6058. IsKeyOrphanage False IsTruncated False Blanks False
  6059. Category 994347 "20230711" Parent 994325 Levels 408631 OrderBy Drill 408607
  6060. Value "20230711" Label "11/07/2023" Lastuse 20230125 SourceValue "20230711"
  6061. Date 20230711 Filtered False Suppressed False Sign False HideValue False
  6062. IsKeyOrphanage False IsTruncated False Blanks False
  6063. Category 994349 "20230712" Parent 994325 Levels 408631 OrderBy Drill 408607
  6064. Value "20230712" Label "12/07/2023" Lastuse 20230125 SourceValue "20230712"
  6065. Date 20230712 Filtered False Suppressed False Sign False HideValue False
  6066. IsKeyOrphanage False IsTruncated False Blanks False
  6067. Category 994351 "20230713" Parent 994325 Levels 408631 OrderBy Drill 408607
  6068. Value "20230713" Label "13/07/2023" Lastuse 20230125 SourceValue "20230713"
  6069. Date 20230713 Filtered False Suppressed False Sign False HideValue False
  6070. IsKeyOrphanage False IsTruncated False Blanks False
  6071. Category 994353 "20230714" Parent 994325 Levels 408631 OrderBy Drill 408607
  6072. Value "20230714" Label "14/07/2023" Lastuse 20230125 SourceValue "20230714"
  6073. Date 20230714 Filtered False Suppressed False Sign False HideValue False
  6074. IsKeyOrphanage False IsTruncated False Blanks False
  6075. Category 994355 "20230715" Parent 994325 Levels 408631 OrderBy Drill 408607
  6076. Value "20230715" Label "15/07/2023" Lastuse 20230125 SourceValue "20230715"
  6077. Date 20230715 Filtered False Suppressed False Sign False HideValue False
  6078. IsKeyOrphanage False IsTruncated False Blanks False
  6079. Category 994357 "20230716" Parent 994325 Levels 408631 OrderBy Drill 408607
  6080. Value "20230716" Label "16/07/2023" Lastuse 20230125 SourceValue "20230716"
  6081. Date 20230716 Filtered False Suppressed False Sign False HideValue False
  6082. IsKeyOrphanage False IsTruncated False Blanks False
  6083. Category 994359 "20230717" Parent 994325 Levels 408631 OrderBy Drill 408607
  6084. Value "20230717" Label "17/07/2023" Lastuse 20230125 SourceValue "20230717"
  6085. Date 20230717 Filtered False Suppressed False Sign False HideValue False
  6086. IsKeyOrphanage False IsTruncated False Blanks False
  6087. Category 994361 "20230718" Parent 994325 Levels 408631 OrderBy Drill 408607
  6088. Value "20230718" Label "18/07/2023" Lastuse 20230125 SourceValue "20230718"
  6089. Date 20230718 Filtered False Suppressed False Sign False HideValue False
  6090. IsKeyOrphanage False IsTruncated False Blanks False
  6091. Category 994363 "20230719" Parent 994325 Levels 408631 OrderBy Drill 408607
  6092. Value "20230719" Label "19/07/2023" Lastuse 20230125 SourceValue "20230719"
  6093. Date 20230719 Filtered False Suppressed False Sign False HideValue False
  6094. IsKeyOrphanage False IsTruncated False Blanks False
  6095. Category 994365 "20230720" Parent 994325 Levels 408631 OrderBy Drill 408607
  6096. Value "20230720" Label "20/07/2023" Lastuse 20230125 SourceValue "20230720"
  6097. Date 20230720 Filtered False Suppressed False Sign False HideValue False
  6098. IsKeyOrphanage False IsTruncated False Blanks False
  6099. Category 994367 "20230721" Parent 994325 Levels 408631 OrderBy Drill 408607
  6100. Value "20230721" Label "21/07/2023" Lastuse 20230125 SourceValue "20230721"
  6101. Date 20230721 Filtered False Suppressed False Sign False HideValue False
  6102. IsKeyOrphanage False IsTruncated False Blanks False
  6103. Category 994369 "20230722" Parent 994325 Levels 408631 OrderBy Drill 408607
  6104. Value "20230722" Label "22/07/2023" Lastuse 20230125 SourceValue "20230722"
  6105. Date 20230722 Filtered False Suppressed False Sign False HideValue False
  6106. IsKeyOrphanage False IsTruncated False Blanks False
  6107. Category 994371 "20230723" Parent 994325 Levels 408631 OrderBy Drill 408607
  6108. Value "20230723" Label "23/07/2023" Lastuse 20230125 SourceValue "20230723"
  6109. Date 20230723 Filtered False Suppressed False Sign False HideValue False
  6110. IsKeyOrphanage False IsTruncated False Blanks False
  6111. Category 994373 "20230724" Parent 994325 Levels 408631 OrderBy Drill 408607
  6112. Value "20230724" Label "24/07/2023" Lastuse 20230125 SourceValue "20230724"
  6113. Date 20230724 Filtered False Suppressed False Sign False HideValue False
  6114. IsKeyOrphanage False IsTruncated False Blanks False
  6115. Category 994375 "20230725" Parent 994325 Levels 408631 OrderBy Drill 408607
  6116. Value "20230725" Label "25/07/2023" Lastuse 20230125 SourceValue "20230725"
  6117. Date 20230725 Filtered False Suppressed False Sign False HideValue False
  6118. IsKeyOrphanage False IsTruncated False Blanks False
  6119. Category 994377 "20230726" Parent 994325 Levels 408631 OrderBy Drill 408607
  6120. Value "20230726" Label "26/07/2023" Lastuse 20230125 SourceValue "20230726"
  6121. Date 20230726 Filtered False Suppressed False Sign False HideValue False
  6122. IsKeyOrphanage False IsTruncated False Blanks False
  6123. Category 994379 "20230727" Parent 994325 Levels 408631 OrderBy Drill 408607
  6124. Value "20230727" Label "27/07/2023" Lastuse 20230125 SourceValue "20230727"
  6125. Date 20230727 Filtered False Suppressed False Sign False HideValue False
  6126. IsKeyOrphanage False IsTruncated False Blanks False
  6127. Category 994381 "20230728" Parent 994325 Levels 408631 OrderBy Drill 408607
  6128. Value "20230728" Label "28/07/2023" Lastuse 20230125 SourceValue "20230728"
  6129. Date 20230728 Filtered False Suppressed False Sign False HideValue False
  6130. IsKeyOrphanage False IsTruncated False Blanks False
  6131. Category 994383 "20230729" Parent 994325 Levels 408631 OrderBy Drill 408607
  6132. Value "20230729" Label "29/07/2023" Lastuse 20230125 SourceValue "20230729"
  6133. Date 20230729 Filtered False Suppressed False Sign False HideValue False
  6134. IsKeyOrphanage False IsTruncated False Blanks False
  6135. Category 994385 "20230730" Parent 994325 Levels 408631 OrderBy Drill 408607
  6136. Value "20230730" Label "30/07/2023" Lastuse 20230125 SourceValue "20230730"
  6137. Date 20230730 Filtered False Suppressed False Sign False HideValue False
  6138. IsKeyOrphanage False IsTruncated False Blanks False
  6139. Category 994387 "20230731" Parent 994325 Levels 408631 OrderBy Drill 408607
  6140. Value "20230731" Label "31/07/2023" Lastuse 20230125 SourceValue "20230731"
  6141. Date 20230731 Filtered False Suppressed False Sign False HideValue False
  6142. IsKeyOrphanage False IsTruncated False Blanks False
  6143. Category 994389 "20230801-20230831" Parent 994323 Levels 408625 OrderBy Drill 408607
  6144. Value "202308" Label "Aug./2023" Lastuse 20230125 SourceValue "202308"
  6145. Date 20230801 Filtered False Suppressed False Sign False HideValue False
  6146. IsKeyOrphanage False IsTruncated False Blanks False
  6147. Category 994391 "20230801" Parent 994389 Levels 408631 OrderBy Drill 408607
  6148. Value "20230801" Label "01/08/2023" Lastuse 20230125 SourceValue "20230801"
  6149. Date 20230801 Filtered False Suppressed False Sign False HideValue False
  6150. IsKeyOrphanage False IsTruncated False Blanks False
  6151. Category 994393 "20230802" Parent 994389 Levels 408631 OrderBy Drill 408607
  6152. Value "20230802" Label "02/08/2023" Lastuse 20230125 SourceValue "20230802"
  6153. Date 20230802 Filtered False Suppressed False Sign False HideValue False
  6154. IsKeyOrphanage False IsTruncated False Blanks False
  6155. Category 994395 "20230803" Parent 994389 Levels 408631 OrderBy Drill 408607
  6156. Value "20230803" Label "03/08/2023" Lastuse 20230125 SourceValue "20230803"
  6157. Date 20230803 Filtered False Suppressed False Sign False HideValue False
  6158. IsKeyOrphanage False IsTruncated False Blanks False
  6159. Category 994397 "20230804" Parent 994389 Levels 408631 OrderBy Drill 408607
  6160. Value "20230804" Label "04/08/2023" Lastuse 20230125 SourceValue "20230804"
  6161. Date 20230804 Filtered False Suppressed False Sign False HideValue False
  6162. IsKeyOrphanage False IsTruncated False Blanks False
  6163. Category 994399 "20230805" Parent 994389 Levels 408631 OrderBy Drill 408607
  6164. Value "20230805" Label "05/08/2023" Lastuse 20230125 SourceValue "20230805"
  6165. Date 20230805 Filtered False Suppressed False Sign False HideValue False
  6166. IsKeyOrphanage False IsTruncated False Blanks False
  6167. Category 994401 "20230806" Parent 994389 Levels 408631 OrderBy Drill 408607
  6168. Value "20230806" Label "06/08/2023" Lastuse 20230125 SourceValue "20230806"
  6169. Date 20230806 Filtered False Suppressed False Sign False HideValue False
  6170. IsKeyOrphanage False IsTruncated False Blanks False
  6171. Category 994403 "20230807" Parent 994389 Levels 408631 OrderBy Drill 408607
  6172. Value "20230807" Label "07/08/2023" Lastuse 20230125 SourceValue "20230807"
  6173. Date 20230807 Filtered False Suppressed False Sign False HideValue False
  6174. IsKeyOrphanage False IsTruncated False Blanks False
  6175. Category 994405 "20230808" Parent 994389 Levels 408631 OrderBy Drill 408607
  6176. Value "20230808" Label "08/08/2023" Lastuse 20230125 SourceValue "20230808"
  6177. Date 20230808 Filtered False Suppressed False Sign False HideValue False
  6178. IsKeyOrphanage False IsTruncated False Blanks False
  6179. Category 994407 "20230809" Parent 994389 Levels 408631 OrderBy Drill 408607
  6180. Value "20230809" Label "09/08/2023" Lastuse 20230125 SourceValue "20230809"
  6181. Date 20230809 Filtered False Suppressed False Sign False HideValue False
  6182. IsKeyOrphanage False IsTruncated False Blanks False
  6183. Category 994409 "20230810" Parent 994389 Levels 408631 OrderBy Drill 408607
  6184. Value "20230810" Label "10/08/2023" Lastuse 20230125 SourceValue "20230810"
  6185. Date 20230810 Filtered False Suppressed False Sign False HideValue False
  6186. IsKeyOrphanage False IsTruncated False Blanks False
  6187. Category 994411 "20230811" Parent 994389 Levels 408631 OrderBy Drill 408607
  6188. Value "20230811" Label "11/08/2023" Lastuse 20230125 SourceValue "20230811"
  6189. Date 20230811 Filtered False Suppressed False Sign False HideValue False
  6190. IsKeyOrphanage False IsTruncated False Blanks False
  6191. Category 994413 "20230812" Parent 994389 Levels 408631 OrderBy Drill 408607
  6192. Value "20230812" Label "12/08/2023" Lastuse 20230125 SourceValue "20230812"
  6193. Date 20230812 Filtered False Suppressed False Sign False HideValue False
  6194. IsKeyOrphanage False IsTruncated False Blanks False
  6195. Category 994415 "20230813" Parent 994389 Levels 408631 OrderBy Drill 408607
  6196. Value "20230813" Label "13/08/2023" Lastuse 20230125 SourceValue "20230813"
  6197. Date 20230813 Filtered False Suppressed False Sign False HideValue False
  6198. IsKeyOrphanage False IsTruncated False Blanks False
  6199. Category 994417 "20230814" Parent 994389 Levels 408631 OrderBy Drill 408607
  6200. Value "20230814" Label "14/08/2023" Lastuse 20230125 SourceValue "20230814"
  6201. Date 20230814 Filtered False Suppressed False Sign False HideValue False
  6202. IsKeyOrphanage False IsTruncated False Blanks False
  6203. Category 994419 "20230815" Parent 994389 Levels 408631 OrderBy Drill 408607
  6204. Value "20230815" Label "15/08/2023" Lastuse 20230125 SourceValue "20230815"
  6205. Date 20230815 Filtered False Suppressed False Sign False HideValue False
  6206. IsKeyOrphanage False IsTruncated False Blanks False
  6207. Category 994421 "20230816" Parent 994389 Levels 408631 OrderBy Drill 408607
  6208. Value "20230816" Label "16/08/2023" Lastuse 20230125 SourceValue "20230816"
  6209. Date 20230816 Filtered False Suppressed False Sign False HideValue False
  6210. IsKeyOrphanage False IsTruncated False Blanks False
  6211. Category 994423 "20230817" Parent 994389 Levels 408631 OrderBy Drill 408607
  6212. Value "20230817" Label "17/08/2023" Lastuse 20230125 SourceValue "20230817"
  6213. Date 20230817 Filtered False Suppressed False Sign False HideValue False
  6214. IsKeyOrphanage False IsTruncated False Blanks False
  6215. Category 994425 "20230818" Parent 994389 Levels 408631 OrderBy Drill 408607
  6216. Value "20230818" Label "18/08/2023" Lastuse 20230125 SourceValue "20230818"
  6217. Date 20230818 Filtered False Suppressed False Sign False HideValue False
  6218. IsKeyOrphanage False IsTruncated False Blanks False
  6219. Category 994427 "20230819" Parent 994389 Levels 408631 OrderBy Drill 408607
  6220. Value "20230819" Label "19/08/2023" Lastuse 20230125 SourceValue "20230819"
  6221. Date 20230819 Filtered False Suppressed False Sign False HideValue False
  6222. IsKeyOrphanage False IsTruncated False Blanks False
  6223. Category 994429 "20230820" Parent 994389 Levels 408631 OrderBy Drill 408607
  6224. Value "20230820" Label "20/08/2023" Lastuse 20230125 SourceValue "20230820"
  6225. Date 20230820 Filtered False Suppressed False Sign False HideValue False
  6226. IsKeyOrphanage False IsTruncated False Blanks False
  6227. Category 994431 "20230821" Parent 994389 Levels 408631 OrderBy Drill 408607
  6228. Value "20230821" Label "21/08/2023" Lastuse 20230125 SourceValue "20230821"
  6229. Date 20230821 Filtered False Suppressed False Sign False HideValue False
  6230. IsKeyOrphanage False IsTruncated False Blanks False
  6231. Category 994433 "20230822" Parent 994389 Levels 408631 OrderBy Drill 408607
  6232. Value "20230822" Label "22/08/2023" Lastuse 20230125 SourceValue "20230822"
  6233. Date 20230822 Filtered False Suppressed False Sign False HideValue False
  6234. IsKeyOrphanage False IsTruncated False Blanks False
  6235. Category 994435 "20230823" Parent 994389 Levels 408631 OrderBy Drill 408607
  6236. Value "20230823" Label "23/08/2023" Lastuse 20230125 SourceValue "20230823"
  6237. Date 20230823 Filtered False Suppressed False Sign False HideValue False
  6238. IsKeyOrphanage False IsTruncated False Blanks False
  6239. Category 994437 "20230824" Parent 994389 Levels 408631 OrderBy Drill 408607
  6240. Value "20230824" Label "24/08/2023" Lastuse 20230125 SourceValue "20230824"
  6241. Date 20230824 Filtered False Suppressed False Sign False HideValue False
  6242. IsKeyOrphanage False IsTruncated False Blanks False
  6243. Category 994439 "20230825" Parent 994389 Levels 408631 OrderBy Drill 408607
  6244. Value "20230825" Label "25/08/2023" Lastuse 20230125 SourceValue "20230825"
  6245. Date 20230825 Filtered False Suppressed False Sign False HideValue False
  6246. IsKeyOrphanage False IsTruncated False Blanks False
  6247. Category 994441 "20230826" Parent 994389 Levels 408631 OrderBy Drill 408607
  6248. Value "20230826" Label "26/08/2023" Lastuse 20230125 SourceValue "20230826"
  6249. Date 20230826 Filtered False Suppressed False Sign False HideValue False
  6250. IsKeyOrphanage False IsTruncated False Blanks False
  6251. Category 994443 "20230827" Parent 994389 Levels 408631 OrderBy Drill 408607
  6252. Value "20230827" Label "27/08/2023" Lastuse 20230125 SourceValue "20230827"
  6253. Date 20230827 Filtered False Suppressed False Sign False HideValue False
  6254. IsKeyOrphanage False IsTruncated False Blanks False
  6255. Category 994445 "20230828" Parent 994389 Levels 408631 OrderBy Drill 408607
  6256. Value "20230828" Label "28/08/2023" Lastuse 20230125 SourceValue "20230828"
  6257. Date 20230828 Filtered False Suppressed False Sign False HideValue False
  6258. IsKeyOrphanage False IsTruncated False Blanks False
  6259. Category 994447 "20230829" Parent 994389 Levels 408631 OrderBy Drill 408607
  6260. Value "20230829" Label "29/08/2023" Lastuse 20230125 SourceValue "20230829"
  6261. Date 20230829 Filtered False Suppressed False Sign False HideValue False
  6262. IsKeyOrphanage False IsTruncated False Blanks False
  6263. Category 994449 "20230830" Parent 994389 Levels 408631 OrderBy Drill 408607
  6264. Value "20230830" Label "30/08/2023" Lastuse 20230125 SourceValue "20230830"
  6265. Date 20230830 Filtered False Suppressed False Sign False HideValue False
  6266. IsKeyOrphanage False IsTruncated False Blanks False
  6267. Category 994451 "20230831" Parent 994389 Levels 408631 OrderBy Drill 408607
  6268. Value "20230831" Label "31/08/2023" Lastuse 20230125 SourceValue "20230831"
  6269. Date 20230831 Filtered False Suppressed False Sign False HideValue False
  6270. IsKeyOrphanage False IsTruncated False Blanks False
  6271. Category 994453 "20230901-20230930" Parent 994323 Levels 408625 OrderBy Drill 408607
  6272. Value "202309" Label "Sep./2023" Lastuse 20230125 SourceValue "202309"
  6273. Date 20230901 Filtered False Suppressed False Sign False HideValue False
  6274. IsKeyOrphanage False IsTruncated False Blanks False
  6275. Category 994455 "20230901" Parent 994453 Levels 408631 OrderBy Drill 408607
  6276. Value "20230901" Label "01/09/2023" Lastuse 20230125 SourceValue "20230901"
  6277. Date 20230901 Filtered False Suppressed False Sign False HideValue False
  6278. IsKeyOrphanage False IsTruncated False Blanks False
  6279. Category 994457 "20230902" Parent 994453 Levels 408631 OrderBy Drill 408607
  6280. Value "20230902" Label "02/09/2023" Lastuse 20230125 SourceValue "20230902"
  6281. Date 20230902 Filtered False Suppressed False Sign False HideValue False
  6282. IsKeyOrphanage False IsTruncated False Blanks False
  6283. Category 994459 "20230903" Parent 994453 Levels 408631 OrderBy Drill 408607
  6284. Value "20230903" Label "03/09/2023" Lastuse 20230125 SourceValue "20230903"
  6285. Date 20230903 Filtered False Suppressed False Sign False HideValue False
  6286. IsKeyOrphanage False IsTruncated False Blanks False
  6287. Category 994461 "20230904" Parent 994453 Levels 408631 OrderBy Drill 408607
  6288. Value "20230904" Label "04/09/2023" Lastuse 20230125 SourceValue "20230904"
  6289. Date 20230904 Filtered False Suppressed False Sign False HideValue False
  6290. IsKeyOrphanage False IsTruncated False Blanks False
  6291. Category 994463 "20230905" Parent 994453 Levels 408631 OrderBy Drill 408607
  6292. Value "20230905" Label "05/09/2023" Lastuse 20230125 SourceValue "20230905"
  6293. Date 20230905 Filtered False Suppressed False Sign False HideValue False
  6294. IsKeyOrphanage False IsTruncated False Blanks False
  6295. Category 994465 "20230906" Parent 994453 Levels 408631 OrderBy Drill 408607
  6296. Value "20230906" Label "06/09/2023" Lastuse 20230125 SourceValue "20230906"
  6297. Date 20230906 Filtered False Suppressed False Sign False HideValue False
  6298. IsKeyOrphanage False IsTruncated False Blanks False
  6299. Category 994467 "20230907" Parent 994453 Levels 408631 OrderBy Drill 408607
  6300. Value "20230907" Label "07/09/2023" Lastuse 20230125 SourceValue "20230907"
  6301. Date 20230907 Filtered False Suppressed False Sign False HideValue False
  6302. IsKeyOrphanage False IsTruncated False Blanks False
  6303. Category 994469 "20230908" Parent 994453 Levels 408631 OrderBy Drill 408607
  6304. Value "20230908" Label "08/09/2023" Lastuse 20230125 SourceValue "20230908"
  6305. Date 20230908 Filtered False Suppressed False Sign False HideValue False
  6306. IsKeyOrphanage False IsTruncated False Blanks False
  6307. Category 994471 "20230909" Parent 994453 Levels 408631 OrderBy Drill 408607
  6308. Value "20230909" Label "09/09/2023" Lastuse 20230125 SourceValue "20230909"
  6309. Date 20230909 Filtered False Suppressed False Sign False HideValue False
  6310. IsKeyOrphanage False IsTruncated False Blanks False
  6311. Category 994473 "20230910" Parent 994453 Levels 408631 OrderBy Drill 408607
  6312. Value "20230910" Label "10/09/2023" Lastuse 20230125 SourceValue "20230910"
  6313. Date 20230910 Filtered False Suppressed False Sign False HideValue False
  6314. IsKeyOrphanage False IsTruncated False Blanks False
  6315. Category 994475 "20230911" Parent 994453 Levels 408631 OrderBy Drill 408607
  6316. Value "20230911" Label "11/09/2023" Lastuse 20230125 SourceValue "20230911"
  6317. Date 20230911 Filtered False Suppressed False Sign False HideValue False
  6318. IsKeyOrphanage False IsTruncated False Blanks False
  6319. Category 994477 "20230912" Parent 994453 Levels 408631 OrderBy Drill 408607
  6320. Value "20230912" Label "12/09/2023" Lastuse 20230125 SourceValue "20230912"
  6321. Date 20230912 Filtered False Suppressed False Sign False HideValue False
  6322. IsKeyOrphanage False IsTruncated False Blanks False
  6323. Category 994479 "20230913" Parent 994453 Levels 408631 OrderBy Drill 408607
  6324. Value "20230913" Label "13/09/2023" Lastuse 20230125 SourceValue "20230913"
  6325. Date 20230913 Filtered False Suppressed False Sign False HideValue False
  6326. IsKeyOrphanage False IsTruncated False Blanks False
  6327. Category 994481 "20230914" Parent 994453 Levels 408631 OrderBy Drill 408607
  6328. Value "20230914" Label "14/09/2023" Lastuse 20230125 SourceValue "20230914"
  6329. Date 20230914 Filtered False Suppressed False Sign False HideValue False
  6330. IsKeyOrphanage False IsTruncated False Blanks False
  6331. Category 994483 "20230915" Parent 994453 Levels 408631 OrderBy Drill 408607
  6332. Value "20230915" Label "15/09/2023" Lastuse 20230125 SourceValue "20230915"
  6333. Date 20230915 Filtered False Suppressed False Sign False HideValue False
  6334. IsKeyOrphanage False IsTruncated False Blanks False
  6335. Category 994485 "20230916" Parent 994453 Levels 408631 OrderBy Drill 408607
  6336. Value "20230916" Label "16/09/2023" Lastuse 20230125 SourceValue "20230916"
  6337. Date 20230916 Filtered False Suppressed False Sign False HideValue False
  6338. IsKeyOrphanage False IsTruncated False Blanks False
  6339. Category 994487 "20230917" Parent 994453 Levels 408631 OrderBy Drill 408607
  6340. Value "20230917" Label "17/09/2023" Lastuse 20230125 SourceValue "20230917"
  6341. Date 20230917 Filtered False Suppressed False Sign False HideValue False
  6342. IsKeyOrphanage False IsTruncated False Blanks False
  6343. Category 994489 "20230918" Parent 994453 Levels 408631 OrderBy Drill 408607
  6344. Value "20230918" Label "18/09/2023" Lastuse 20230125 SourceValue "20230918"
  6345. Date 20230918 Filtered False Suppressed False Sign False HideValue False
  6346. IsKeyOrphanage False IsTruncated False Blanks False
  6347. Category 994491 "20230919" Parent 994453 Levels 408631 OrderBy Drill 408607
  6348. Value "20230919" Label "19/09/2023" Lastuse 20230125 SourceValue "20230919"
  6349. Date 20230919 Filtered False Suppressed False Sign False HideValue False
  6350. IsKeyOrphanage False IsTruncated False Blanks False
  6351. Category 994493 "20230920" Parent 994453 Levels 408631 OrderBy Drill 408607
  6352. Value "20230920" Label "20/09/2023" Lastuse 20230125 SourceValue "20230920"
  6353. Date 20230920 Filtered False Suppressed False Sign False HideValue False
  6354. IsKeyOrphanage False IsTruncated False Blanks False
  6355. Category 994495 "20230921" Parent 994453 Levels 408631 OrderBy Drill 408607
  6356. Value "20230921" Label "21/09/2023" Lastuse 20230125 SourceValue "20230921"
  6357. Date 20230921 Filtered False Suppressed False Sign False HideValue False
  6358. IsKeyOrphanage False IsTruncated False Blanks False
  6359. Category 994497 "20230922" Parent 994453 Levels 408631 OrderBy Drill 408607
  6360. Value "20230922" Label "22/09/2023" Lastuse 20230125 SourceValue "20230922"
  6361. Date 20230922 Filtered False Suppressed False Sign False HideValue False
  6362. IsKeyOrphanage False IsTruncated False Blanks False
  6363. Category 994499 "20230923" Parent 994453 Levels 408631 OrderBy Drill 408607
  6364. Value "20230923" Label "23/09/2023" Lastuse 20230125 SourceValue "20230923"
  6365. Date 20230923 Filtered False Suppressed False Sign False HideValue False
  6366. IsKeyOrphanage False IsTruncated False Blanks False
  6367. Category 994501 "20230924" Parent 994453 Levels 408631 OrderBy Drill 408607
  6368. Value "20230924" Label "24/09/2023" Lastuse 20230125 SourceValue "20230924"
  6369. Date 20230924 Filtered False Suppressed False Sign False HideValue False
  6370. IsKeyOrphanage False IsTruncated False Blanks False
  6371. Category 994503 "20230925" Parent 994453 Levels 408631 OrderBy Drill 408607
  6372. Value "20230925" Label "25/09/2023" Lastuse 20230125 SourceValue "20230925"
  6373. Date 20230925 Filtered False Suppressed False Sign False HideValue False
  6374. IsKeyOrphanage False IsTruncated False Blanks False
  6375. Category 994505 "20230926" Parent 994453 Levels 408631 OrderBy Drill 408607
  6376. Value "20230926" Label "26/09/2023" Lastuse 20230125 SourceValue "20230926"
  6377. Date 20230926 Filtered False Suppressed False Sign False HideValue False
  6378. IsKeyOrphanage False IsTruncated False Blanks False
  6379. Category 994507 "20230927" Parent 994453 Levels 408631 OrderBy Drill 408607
  6380. Value "20230927" Label "27/09/2023" Lastuse 20230125 SourceValue "20230927"
  6381. Date 20230927 Filtered False Suppressed False Sign False HideValue False
  6382. IsKeyOrphanage False IsTruncated False Blanks False
  6383. Category 994509 "20230928" Parent 994453 Levels 408631 OrderBy Drill 408607
  6384. Value "20230928" Label "28/09/2023" Lastuse 20230125 SourceValue "20230928"
  6385. Date 20230928 Filtered False Suppressed False Sign False HideValue False
  6386. IsKeyOrphanage False IsTruncated False Blanks False
  6387. Category 994511 "20230929" Parent 994453 Levels 408631 OrderBy Drill 408607
  6388. Value "20230929" Label "29/09/2023" Lastuse 20230125 SourceValue "20230929"
  6389. Date 20230929 Filtered False Suppressed False Sign False HideValue False
  6390. IsKeyOrphanage False IsTruncated False Blanks False
  6391. Category 994513 "20230930" Parent 994453 Levels 408631 OrderBy Drill 408607
  6392. Value "20230930" Label "30/09/2023" Lastuse 20230125 SourceValue "20230930"
  6393. Date 20230930 Filtered False Suppressed False Sign False HideValue False
  6394. IsKeyOrphanage False IsTruncated False Blanks False
  6395. Category 994515 "20231001-20231231" Parent 993943 Levels 408619 OrderBy Drill 408607
  6396. Value "20231001" Label "4. Q. 2023" Lastuse 20230125 SourceValue "20231001"
  6397. Date 20231001 Filtered False Suppressed False Sign False HideValue False
  6398. IsKeyOrphanage False IsTruncated False Blanks False
  6399. Category 994517 "20231001-20231031" Parent 994515 Levels 408625 OrderBy Drill 408607
  6400. Value "202310" Label "Okt./2023" Lastuse 20230125 SourceValue "202310"
  6401. Date 20231001 Filtered False Suppressed False Sign False HideValue False
  6402. IsKeyOrphanage False IsTruncated False Blanks False
  6403. Category 994519 "20231001" Parent 994517 Levels 408631 OrderBy Drill 408607
  6404. Value "20231001" Label "01/10/2023" Lastuse 20230125 SourceValue "20231001"
  6405. Date 20231001 Filtered False Suppressed False Sign False HideValue False
  6406. IsKeyOrphanage False IsTruncated False Blanks False
  6407. Category 994521 "20231002" Parent 994517 Levels 408631 OrderBy Drill 408607
  6408. Value "20231002" Label "02/10/2023" Lastuse 20230125 SourceValue "20231002"
  6409. Date 20231002 Filtered False Suppressed False Sign False HideValue False
  6410. IsKeyOrphanage False IsTruncated False Blanks False
  6411. Category 994523 "20231003" Parent 994517 Levels 408631 OrderBy Drill 408607
  6412. Value "20231003" Label "03/10/2023" Lastuse 20230125 SourceValue "20231003"
  6413. Date 20231003 Filtered False Suppressed False Sign False HideValue False
  6414. IsKeyOrphanage False IsTruncated False Blanks False
  6415. Category 994525 "20231004" Parent 994517 Levels 408631 OrderBy Drill 408607
  6416. Value "20231004" Label "04/10/2023" Lastuse 20230125 SourceValue "20231004"
  6417. Date 20231004 Filtered False Suppressed False Sign False HideValue False
  6418. IsKeyOrphanage False IsTruncated False Blanks False
  6419. Category 994527 "20231005" Parent 994517 Levels 408631 OrderBy Drill 408607
  6420. Value "20231005" Label "05/10/2023" Lastuse 20230125 SourceValue "20231005"
  6421. Date 20231005 Filtered False Suppressed False Sign False HideValue False
  6422. IsKeyOrphanage False IsTruncated False Blanks False
  6423. Category 994529 "20231006" Parent 994517 Levels 408631 OrderBy Drill 408607
  6424. Value "20231006" Label "06/10/2023" Lastuse 20230125 SourceValue "20231006"
  6425. Date 20231006 Filtered False Suppressed False Sign False HideValue False
  6426. IsKeyOrphanage False IsTruncated False Blanks False
  6427. Category 994531 "20231007" Parent 994517 Levels 408631 OrderBy Drill 408607
  6428. Value "20231007" Label "07/10/2023" Lastuse 20230125 SourceValue "20231007"
  6429. Date 20231007 Filtered False Suppressed False Sign False HideValue False
  6430. IsKeyOrphanage False IsTruncated False Blanks False
  6431. Category 994533 "20231008" Parent 994517 Levels 408631 OrderBy Drill 408607
  6432. Value "20231008" Label "08/10/2023" Lastuse 20230125 SourceValue "20231008"
  6433. Date 20231008 Filtered False Suppressed False Sign False HideValue False
  6434. IsKeyOrphanage False IsTruncated False Blanks False
  6435. Category 994535 "20231009" Parent 994517 Levels 408631 OrderBy Drill 408607
  6436. Value "20231009" Label "09/10/2023" Lastuse 20230125 SourceValue "20231009"
  6437. Date 20231009 Filtered False Suppressed False Sign False HideValue False
  6438. IsKeyOrphanage False IsTruncated False Blanks False
  6439. Category 994537 "20231010" Parent 994517 Levels 408631 OrderBy Drill 408607
  6440. Value "20231010" Label "10/10/2023" Lastuse 20230125 SourceValue "20231010"
  6441. Date 20231010 Filtered False Suppressed False Sign False HideValue False
  6442. IsKeyOrphanage False IsTruncated False Blanks False
  6443. Category 994539 "20231011" Parent 994517 Levels 408631 OrderBy Drill 408607
  6444. Value "20231011" Label "11/10/2023" Lastuse 20230125 SourceValue "20231011"
  6445. Date 20231011 Filtered False Suppressed False Sign False HideValue False
  6446. IsKeyOrphanage False IsTruncated False Blanks False
  6447. Category 994541 "20231012" Parent 994517 Levels 408631 OrderBy Drill 408607
  6448. Value "20231012" Label "12/10/2023" Lastuse 20230125 SourceValue "20231012"
  6449. Date 20231012 Filtered False Suppressed False Sign False HideValue False
  6450. IsKeyOrphanage False IsTruncated False Blanks False
  6451. Category 994543 "20231013" Parent 994517 Levels 408631 OrderBy Drill 408607
  6452. Value "20231013" Label "13/10/2023" Lastuse 20230125 SourceValue "20231013"
  6453. Date 20231013 Filtered False Suppressed False Sign False HideValue False
  6454. IsKeyOrphanage False IsTruncated False Blanks False
  6455. Category 994545 "20231014" Parent 994517 Levels 408631 OrderBy Drill 408607
  6456. Value "20231014" Label "14/10/2023" Lastuse 20230125 SourceValue "20231014"
  6457. Date 20231014 Filtered False Suppressed False Sign False HideValue False
  6458. IsKeyOrphanage False IsTruncated False Blanks False
  6459. Category 994547 "20231015" Parent 994517 Levels 408631 OrderBy Drill 408607
  6460. Value "20231015" Label "15/10/2023" Lastuse 20230125 SourceValue "20231015"
  6461. Date 20231015 Filtered False Suppressed False Sign False HideValue False
  6462. IsKeyOrphanage False IsTruncated False Blanks False
  6463. Category 994549 "20231016" Parent 994517 Levels 408631 OrderBy Drill 408607
  6464. Value "20231016" Label "16/10/2023" Lastuse 20230125 SourceValue "20231016"
  6465. Date 20231016 Filtered False Suppressed False Sign False HideValue False
  6466. IsKeyOrphanage False IsTruncated False Blanks False
  6467. Category 994551 "20231017" Parent 994517 Levels 408631 OrderBy Drill 408607
  6468. Value "20231017" Label "17/10/2023" Lastuse 20230125 SourceValue "20231017"
  6469. Date 20231017 Filtered False Suppressed False Sign False HideValue False
  6470. IsKeyOrphanage False IsTruncated False Blanks False
  6471. Category 994553 "20231018" Parent 994517 Levels 408631 OrderBy Drill 408607
  6472. Value "20231018" Label "18/10/2023" Lastuse 20230125 SourceValue "20231018"
  6473. Date 20231018 Filtered False Suppressed False Sign False HideValue False
  6474. IsKeyOrphanage False IsTruncated False Blanks False
  6475. Category 994555 "20231019" Parent 994517 Levels 408631 OrderBy Drill 408607
  6476. Value "20231019" Label "19/10/2023" Lastuse 20230125 SourceValue "20231019"
  6477. Date 20231019 Filtered False Suppressed False Sign False HideValue False
  6478. IsKeyOrphanage False IsTruncated False Blanks False
  6479. Category 994557 "20231020" Parent 994517 Levels 408631 OrderBy Drill 408607
  6480. Value "20231020" Label "20/10/2023" Lastuse 20230125 SourceValue "20231020"
  6481. Date 20231020 Filtered False Suppressed False Sign False HideValue False
  6482. IsKeyOrphanage False IsTruncated False Blanks False
  6483. Category 994559 "20231021" Parent 994517 Levels 408631 OrderBy Drill 408607
  6484. Value "20231021" Label "21/10/2023" Lastuse 20230125 SourceValue "20231021"
  6485. Date 20231021 Filtered False Suppressed False Sign False HideValue False
  6486. IsKeyOrphanage False IsTruncated False Blanks False
  6487. Category 994561 "20231022" Parent 994517 Levels 408631 OrderBy Drill 408607
  6488. Value "20231022" Label "22/10/2023" Lastuse 20230125 SourceValue "20231022"
  6489. Date 20231022 Filtered False Suppressed False Sign False HideValue False
  6490. IsKeyOrphanage False IsTruncated False Blanks False
  6491. Category 994563 "20231023" Parent 994517 Levels 408631 OrderBy Drill 408607
  6492. Value "20231023" Label "23/10/2023" Lastuse 20230125 SourceValue "20231023"
  6493. Date 20231023 Filtered False Suppressed False Sign False HideValue False
  6494. IsKeyOrphanage False IsTruncated False Blanks False
  6495. Category 994565 "20231024" Parent 994517 Levels 408631 OrderBy Drill 408607
  6496. Value "20231024" Label "24/10/2023" Lastuse 20230125 SourceValue "20231024"
  6497. Date 20231024 Filtered False Suppressed False Sign False HideValue False
  6498. IsKeyOrphanage False IsTruncated False Blanks False
  6499. Category 994567 "20231025" Parent 994517 Levels 408631 OrderBy Drill 408607
  6500. Value "20231025" Label "25/10/2023" Lastuse 20230125 SourceValue "20231025"
  6501. Date 20231025 Filtered False Suppressed False Sign False HideValue False
  6502. IsKeyOrphanage False IsTruncated False Blanks False
  6503. Category 994569 "20231026" Parent 994517 Levels 408631 OrderBy Drill 408607
  6504. Value "20231026" Label "26/10/2023" Lastuse 20230125 SourceValue "20231026"
  6505. Date 20231026 Filtered False Suppressed False Sign False HideValue False
  6506. IsKeyOrphanage False IsTruncated False Blanks False
  6507. Category 994571 "20231027" Parent 994517 Levels 408631 OrderBy Drill 408607
  6508. Value "20231027" Label "27/10/2023" Lastuse 20230125 SourceValue "20231027"
  6509. Date 20231027 Filtered False Suppressed False Sign False HideValue False
  6510. IsKeyOrphanage False IsTruncated False Blanks False
  6511. Category 994573 "20231028" Parent 994517 Levels 408631 OrderBy Drill 408607
  6512. Value "20231028" Label "28/10/2023" Lastuse 20230125 SourceValue "20231028"
  6513. Date 20231028 Filtered False Suppressed False Sign False HideValue False
  6514. IsKeyOrphanage False IsTruncated False Blanks False
  6515. Category 994575 "20231029" Parent 994517 Levels 408631 OrderBy Drill 408607
  6516. Value "20231029" Label "29/10/2023" Lastuse 20230125 SourceValue "20231029"
  6517. Date 20231029 Filtered False Suppressed False Sign False HideValue False
  6518. IsKeyOrphanage False IsTruncated False Blanks False
  6519. Category 994577 "20231030" Parent 994517 Levels 408631 OrderBy Drill 408607
  6520. Value "20231030" Label "30/10/2023" Lastuse 20230125 SourceValue "20231030"
  6521. Date 20231030 Filtered False Suppressed False Sign False HideValue False
  6522. IsKeyOrphanage False IsTruncated False Blanks False
  6523. Category 994579 "20231031" Parent 994517 Levels 408631 OrderBy Drill 408607
  6524. Value "20231031" Label "31/10/2023" Lastuse 20230125 SourceValue "20231031"
  6525. Date 20231031 Filtered False Suppressed False Sign False HideValue False
  6526. IsKeyOrphanage False IsTruncated False Blanks False
  6527. Category 994581 "20231101-20231130" Parent 994515 Levels 408625 OrderBy Drill 408607
  6528. Value "202311" Label "Nov./2023" Lastuse 20230125 SourceValue "202311"
  6529. Date 20231101 Filtered False Suppressed False Sign False HideValue False
  6530. IsKeyOrphanage False IsTruncated False Blanks False
  6531. Category 994583 "20231101" Parent 994581 Levels 408631 OrderBy Drill 408607
  6532. Value "20231101" Label "01/11/2023" Lastuse 20230125 SourceValue "20231101"
  6533. Date 20231101 Filtered False Suppressed False Sign False HideValue False
  6534. IsKeyOrphanage False IsTruncated False Blanks False
  6535. Category 994585 "20231102" Parent 994581 Levels 408631 OrderBy Drill 408607
  6536. Value "20231102" Label "02/11/2023" Lastuse 20230125 SourceValue "20231102"
  6537. Date 20231102 Filtered False Suppressed False Sign False HideValue False
  6538. IsKeyOrphanage False IsTruncated False Blanks False
  6539. Category 994587 "20231103" Parent 994581 Levels 408631 OrderBy Drill 408607
  6540. Value "20231103" Label "03/11/2023" Lastuse 20230125 SourceValue "20231103"
  6541. Date 20231103 Filtered False Suppressed False Sign False HideValue False
  6542. IsKeyOrphanage False IsTruncated False Blanks False
  6543. Category 994589 "20231104" Parent 994581 Levels 408631 OrderBy Drill 408607
  6544. Value "20231104" Label "04/11/2023" Lastuse 20230125 SourceValue "20231104"
  6545. Date 20231104 Filtered False Suppressed False Sign False HideValue False
  6546. IsKeyOrphanage False IsTruncated False Blanks False
  6547. Category 994591 "20231105" Parent 994581 Levels 408631 OrderBy Drill 408607
  6548. Value "20231105" Label "05/11/2023" Lastuse 20230125 SourceValue "20231105"
  6549. Date 20231105 Filtered False Suppressed False Sign False HideValue False
  6550. IsKeyOrphanage False IsTruncated False Blanks False
  6551. Category 994593 "20231106" Parent 994581 Levels 408631 OrderBy Drill 408607
  6552. Value "20231106" Label "06/11/2023" Lastuse 20230125 SourceValue "20231106"
  6553. Date 20231106 Filtered False Suppressed False Sign False HideValue False
  6554. IsKeyOrphanage False IsTruncated False Blanks False
  6555. Category 994595 "20231107" Parent 994581 Levels 408631 OrderBy Drill 408607
  6556. Value "20231107" Label "07/11/2023" Lastuse 20230125 SourceValue "20231107"
  6557. Date 20231107 Filtered False Suppressed False Sign False HideValue False
  6558. IsKeyOrphanage False IsTruncated False Blanks False
  6559. Category 994597 "20231108" Parent 994581 Levels 408631 OrderBy Drill 408607
  6560. Value "20231108" Label "08/11/2023" Lastuse 20230125 SourceValue "20231108"
  6561. Date 20231108 Filtered False Suppressed False Sign False HideValue False
  6562. IsKeyOrphanage False IsTruncated False Blanks False
  6563. Category 994599 "20231109" Parent 994581 Levels 408631 OrderBy Drill 408607
  6564. Value "20231109" Label "09/11/2023" Lastuse 20230125 SourceValue "20231109"
  6565. Date 20231109 Filtered False Suppressed False Sign False HideValue False
  6566. IsKeyOrphanage False IsTruncated False Blanks False
  6567. Category 994601 "20231110" Parent 994581 Levels 408631 OrderBy Drill 408607
  6568. Value "20231110" Label "10/11/2023" Lastuse 20230125 SourceValue "20231110"
  6569. Date 20231110 Filtered False Suppressed False Sign False HideValue False
  6570. IsKeyOrphanage False IsTruncated False Blanks False
  6571. Category 994603 "20231111" Parent 994581 Levels 408631 OrderBy Drill 408607
  6572. Value "20231111" Label "11/11/2023" Lastuse 20230125 SourceValue "20231111"
  6573. Date 20231111 Filtered False Suppressed False Sign False HideValue False
  6574. IsKeyOrphanage False IsTruncated False Blanks False
  6575. Category 994605 "20231112" Parent 994581 Levels 408631 OrderBy Drill 408607
  6576. Value "20231112" Label "12/11/2023" Lastuse 20230125 SourceValue "20231112"
  6577. Date 20231112 Filtered False Suppressed False Sign False HideValue False
  6578. IsKeyOrphanage False IsTruncated False Blanks False
  6579. Category 994607 "20231113" Parent 994581 Levels 408631 OrderBy Drill 408607
  6580. Value "20231113" Label "13/11/2023" Lastuse 20230125 SourceValue "20231113"
  6581. Date 20231113 Filtered False Suppressed False Sign False HideValue False
  6582. IsKeyOrphanage False IsTruncated False Blanks False
  6583. Category 994609 "20231114" Parent 994581 Levels 408631 OrderBy Drill 408607
  6584. Value "20231114" Label "14/11/2023" Lastuse 20230125 SourceValue "20231114"
  6585. Date 20231114 Filtered False Suppressed False Sign False HideValue False
  6586. IsKeyOrphanage False IsTruncated False Blanks False
  6587. Category 994611 "20231115" Parent 994581 Levels 408631 OrderBy Drill 408607
  6588. Value "20231115" Label "15/11/2023" Lastuse 20230125 SourceValue "20231115"
  6589. Date 20231115 Filtered False Suppressed False Sign False HideValue False
  6590. IsKeyOrphanage False IsTruncated False Blanks False
  6591. Category 994613 "20231116" Parent 994581 Levels 408631 OrderBy Drill 408607
  6592. Value "20231116" Label "16/11/2023" Lastuse 20230125 SourceValue "20231116"
  6593. Date 20231116 Filtered False Suppressed False Sign False HideValue False
  6594. IsKeyOrphanage False IsTruncated False Blanks False
  6595. Category 994615 "20231117" Parent 994581 Levels 408631 OrderBy Drill 408607
  6596. Value "20231117" Label "17/11/2023" Lastuse 20230125 SourceValue "20231117"
  6597. Date 20231117 Filtered False Suppressed False Sign False HideValue False
  6598. IsKeyOrphanage False IsTruncated False Blanks False
  6599. Category 994617 "20231118" Parent 994581 Levels 408631 OrderBy Drill 408607
  6600. Value "20231118" Label "18/11/2023" Lastuse 20230125 SourceValue "20231118"
  6601. Date 20231118 Filtered False Suppressed False Sign False HideValue False
  6602. IsKeyOrphanage False IsTruncated False Blanks False
  6603. Category 994619 "20231119" Parent 994581 Levels 408631 OrderBy Drill 408607
  6604. Value "20231119" Label "19/11/2023" Lastuse 20230125 SourceValue "20231119"
  6605. Date 20231119 Filtered False Suppressed False Sign False HideValue False
  6606. IsKeyOrphanage False IsTruncated False Blanks False
  6607. Category 994621 "20231120" Parent 994581 Levels 408631 OrderBy Drill 408607
  6608. Value "20231120" Label "20/11/2023" Lastuse 20230125 SourceValue "20231120"
  6609. Date 20231120 Filtered False Suppressed False Sign False HideValue False
  6610. IsKeyOrphanage False IsTruncated False Blanks False
  6611. Category 994623 "20231121" Parent 994581 Levels 408631 OrderBy Drill 408607
  6612. Value "20231121" Label "21/11/2023" Lastuse 20230125 SourceValue "20231121"
  6613. Date 20231121 Filtered False Suppressed False Sign False HideValue False
  6614. IsKeyOrphanage False IsTruncated False Blanks False
  6615. Category 994625 "20231122" Parent 994581 Levels 408631 OrderBy Drill 408607
  6616. Value "20231122" Label "22/11/2023" Lastuse 20230125 SourceValue "20231122"
  6617. Date 20231122 Filtered False Suppressed False Sign False HideValue False
  6618. IsKeyOrphanage False IsTruncated False Blanks False
  6619. Category 994627 "20231123" Parent 994581 Levels 408631 OrderBy Drill 408607
  6620. Value "20231123" Label "23/11/2023" Lastuse 20230125 SourceValue "20231123"
  6621. Date 20231123 Filtered False Suppressed False Sign False HideValue False
  6622. IsKeyOrphanage False IsTruncated False Blanks False
  6623. Category 994629 "20231124" Parent 994581 Levels 408631 OrderBy Drill 408607
  6624. Value "20231124" Label "24/11/2023" Lastuse 20230125 SourceValue "20231124"
  6625. Date 20231124 Filtered False Suppressed False Sign False HideValue False
  6626. IsKeyOrphanage False IsTruncated False Blanks False
  6627. Category 994631 "20231125" Parent 994581 Levels 408631 OrderBy Drill 408607
  6628. Value "20231125" Label "25/11/2023" Lastuse 20230125 SourceValue "20231125"
  6629. Date 20231125 Filtered False Suppressed False Sign False HideValue False
  6630. IsKeyOrphanage False IsTruncated False Blanks False
  6631. Category 994633 "20231126" Parent 994581 Levels 408631 OrderBy Drill 408607
  6632. Value "20231126" Label "26/11/2023" Lastuse 20230125 SourceValue "20231126"
  6633. Date 20231126 Filtered False Suppressed False Sign False HideValue False
  6634. IsKeyOrphanage False IsTruncated False Blanks False
  6635. Category 994635 "20231127" Parent 994581 Levels 408631 OrderBy Drill 408607
  6636. Value "20231127" Label "27/11/2023" Lastuse 20230125 SourceValue "20231127"
  6637. Date 20231127 Filtered False Suppressed False Sign False HideValue False
  6638. IsKeyOrphanage False IsTruncated False Blanks False
  6639. Category 994637 "20231128" Parent 994581 Levels 408631 OrderBy Drill 408607
  6640. Value "20231128" Label "28/11/2023" Lastuse 20230125 SourceValue "20231128"
  6641. Date 20231128 Filtered False Suppressed False Sign False HideValue False
  6642. IsKeyOrphanage False IsTruncated False Blanks False
  6643. Category 994639 "20231129" Parent 994581 Levels 408631 OrderBy Drill 408607
  6644. Value "20231129" Label "29/11/2023" Lastuse 20230125 SourceValue "20231129"
  6645. Date 20231129 Filtered False Suppressed False Sign False HideValue False
  6646. IsKeyOrphanage False IsTruncated False Blanks False
  6647. Category 994641 "20231130" Parent 994581 Levels 408631 OrderBy Drill 408607
  6648. Value "20231130" Label "30/11/2023" Lastuse 20230125 SourceValue "20231130"
  6649. Date 20231130 Filtered False Suppressed False Sign False HideValue False
  6650. IsKeyOrphanage False IsTruncated False Blanks False
  6651. Category 994643 "20231201-20231231" Parent 994515 Levels 408625 OrderBy Drill 408607
  6652. Value "202312" Label "Dez./2023" Lastuse 20230125 SourceValue "202312"
  6653. Date 20231201 Filtered False Suppressed False Sign False HideValue False
  6654. IsKeyOrphanage False IsTruncated False Blanks False
  6655. Category 994645 "20231201" Parent 994643 Levels 408631 OrderBy Drill 408607
  6656. Value "20231201" Label "01/12/2023" Lastuse 20230125 SourceValue "20231201"
  6657. Date 20231201 Filtered False Suppressed False Sign False HideValue False
  6658. IsKeyOrphanage False IsTruncated False Blanks False
  6659. Category 994647 "20231202" Parent 994643 Levels 408631 OrderBy Drill 408607
  6660. Value "20231202" Label "02/12/2023" Lastuse 20230125 SourceValue "20231202"
  6661. Date 20231202 Filtered False Suppressed False Sign False HideValue False
  6662. IsKeyOrphanage False IsTruncated False Blanks False
  6663. Category 994649 "20231203" Parent 994643 Levels 408631 OrderBy Drill 408607
  6664. Value "20231203" Label "03/12/2023" Lastuse 20230125 SourceValue "20231203"
  6665. Date 20231203 Filtered False Suppressed False Sign False HideValue False
  6666. IsKeyOrphanage False IsTruncated False Blanks False
  6667. Category 994651 "20231204" Parent 994643 Levels 408631 OrderBy Drill 408607
  6668. Value "20231204" Label "04/12/2023" Lastuse 20230125 SourceValue "20231204"
  6669. Date 20231204 Filtered False Suppressed False Sign False HideValue False
  6670. IsKeyOrphanage False IsTruncated False Blanks False
  6671. Category 994653 "20231205" Parent 994643 Levels 408631 OrderBy Drill 408607
  6672. Value "20231205" Label "05/12/2023" Lastuse 20230125 SourceValue "20231205"
  6673. Date 20231205 Filtered False Suppressed False Sign False HideValue False
  6674. IsKeyOrphanage False IsTruncated False Blanks False
  6675. Category 994655 "20231206" Parent 994643 Levels 408631 OrderBy Drill 408607
  6676. Value "20231206" Label "06/12/2023" Lastuse 20230125 SourceValue "20231206"
  6677. Date 20231206 Filtered False Suppressed False Sign False HideValue False
  6678. IsKeyOrphanage False IsTruncated False Blanks False
  6679. Category 994657 "20231207" Parent 994643 Levels 408631 OrderBy Drill 408607
  6680. Value "20231207" Label "07/12/2023" Lastuse 20230125 SourceValue "20231207"
  6681. Date 20231207 Filtered False Suppressed False Sign False HideValue False
  6682. IsKeyOrphanage False IsTruncated False Blanks False
  6683. Category 994659 "20231208" Parent 994643 Levels 408631 OrderBy Drill 408607
  6684. Value "20231208" Label "08/12/2023" Lastuse 20230125 SourceValue "20231208"
  6685. Date 20231208 Filtered False Suppressed False Sign False HideValue False
  6686. IsKeyOrphanage False IsTruncated False Blanks False
  6687. Category 994661 "20231209" Parent 994643 Levels 408631 OrderBy Drill 408607
  6688. Value "20231209" Label "09/12/2023" Lastuse 20230125 SourceValue "20231209"
  6689. Date 20231209 Filtered False Suppressed False Sign False HideValue False
  6690. IsKeyOrphanage False IsTruncated False Blanks False
  6691. Category 994663 "20231210" Parent 994643 Levels 408631 OrderBy Drill 408607
  6692. Value "20231210" Label "10/12/2023" Lastuse 20230125 SourceValue "20231210"
  6693. Date 20231210 Filtered False Suppressed False Sign False HideValue False
  6694. IsKeyOrphanage False IsTruncated False Blanks False
  6695. Category 994665 "20231211" Parent 994643 Levels 408631 OrderBy Drill 408607
  6696. Value "20231211" Label "11/12/2023" Lastuse 20230125 SourceValue "20231211"
  6697. Date 20231211 Filtered False Suppressed False Sign False HideValue False
  6698. IsKeyOrphanage False IsTruncated False Blanks False
  6699. Category 994667 "20231212" Parent 994643 Levels 408631 OrderBy Drill 408607
  6700. Value "20231212" Label "12/12/2023" Lastuse 20230125 SourceValue "20231212"
  6701. Date 20231212 Filtered False Suppressed False Sign False HideValue False
  6702. IsKeyOrphanage False IsTruncated False Blanks False
  6703. Category 994669 "20231213" Parent 994643 Levels 408631 OrderBy Drill 408607
  6704. Value "20231213" Label "13/12/2023" Lastuse 20230125 SourceValue "20231213"
  6705. Date 20231213 Filtered False Suppressed False Sign False HideValue False
  6706. IsKeyOrphanage False IsTruncated False Blanks False
  6707. Category 994671 "20231214" Parent 994643 Levels 408631 OrderBy Drill 408607
  6708. Value "20231214" Label "14/12/2023" Lastuse 20230125 SourceValue "20231214"
  6709. Date 20231214 Filtered False Suppressed False Sign False HideValue False
  6710. IsKeyOrphanage False IsTruncated False Blanks False
  6711. Category 994673 "20231215" Parent 994643 Levels 408631 OrderBy Drill 408607
  6712. Value "20231215" Label "15/12/2023" Lastuse 20230125 SourceValue "20231215"
  6713. Date 20231215 Filtered False Suppressed False Sign False HideValue False
  6714. IsKeyOrphanage False IsTruncated False Blanks False
  6715. Category 994675 "20231216" Parent 994643 Levels 408631 OrderBy Drill 408607
  6716. Value "20231216" Label "16/12/2023" Lastuse 20230125 SourceValue "20231216"
  6717. Date 20231216 Filtered False Suppressed False Sign False HideValue False
  6718. IsKeyOrphanage False IsTruncated False Blanks False
  6719. Category 994677 "20231217" Parent 994643 Levels 408631 OrderBy Drill 408607
  6720. Value "20231217" Label "17/12/2023" Lastuse 20230125 SourceValue "20231217"
  6721. Date 20231217 Filtered False Suppressed False Sign False HideValue False
  6722. IsKeyOrphanage False IsTruncated False Blanks False
  6723. Category 994679 "20231218" Parent 994643 Levels 408631 OrderBy Drill 408607
  6724. Value "20231218" Label "18/12/2023" Lastuse 20230125 SourceValue "20231218"
  6725. Date 20231218 Filtered False Suppressed False Sign False HideValue False
  6726. IsKeyOrphanage False IsTruncated False Blanks False
  6727. Category 994681 "20231219" Parent 994643 Levels 408631 OrderBy Drill 408607
  6728. Value "20231219" Label "19/12/2023" Lastuse 20230125 SourceValue "20231219"
  6729. Date 20231219 Filtered False Suppressed False Sign False HideValue False
  6730. IsKeyOrphanage False IsTruncated False Blanks False
  6731. Category 994683 "20231220" Parent 994643 Levels 408631 OrderBy Drill 408607
  6732. Value "20231220" Label "20/12/2023" Lastuse 20230125 SourceValue "20231220"
  6733. Date 20231220 Filtered False Suppressed False Sign False HideValue False
  6734. IsKeyOrphanage False IsTruncated False Blanks False
  6735. Category 994685 "20231221" Parent 994643 Levels 408631 OrderBy Drill 408607
  6736. Value "20231221" Label "21/12/2023" Lastuse 20230125 SourceValue "20231221"
  6737. Date 20231221 Filtered False Suppressed False Sign False HideValue False
  6738. IsKeyOrphanage False IsTruncated False Blanks False
  6739. Category 994687 "20231222" Parent 994643 Levels 408631 OrderBy Drill 408607
  6740. Value "20231222" Label "22/12/2023" Lastuse 20230125 SourceValue "20231222"
  6741. Date 20231222 Filtered False Suppressed False Sign False HideValue False
  6742. IsKeyOrphanage False IsTruncated False Blanks False
  6743. Category 994689 "20231223" Parent 994643 Levels 408631 OrderBy Drill 408607
  6744. Value "20231223" Label "23/12/2023" Lastuse 20230125 SourceValue "20231223"
  6745. Date 20231223 Filtered False Suppressed False Sign False HideValue False
  6746. IsKeyOrphanage False IsTruncated False Blanks False
  6747. Category 994691 "20231224" Parent 994643 Levels 408631 OrderBy Drill 408607
  6748. Value "20231224" Label "24/12/2023" Lastuse 20230125 SourceValue "20231224"
  6749. Date 20231224 Filtered False Suppressed False Sign False HideValue False
  6750. IsKeyOrphanage False IsTruncated False Blanks False
  6751. Category 994693 "20231225" Parent 994643 Levels 408631 OrderBy Drill 408607
  6752. Value "20231225" Label "25/12/2023" Lastuse 20230125 SourceValue "20231225"
  6753. Date 20231225 Filtered False Suppressed False Sign False HideValue False
  6754. IsKeyOrphanage False IsTruncated False Blanks False
  6755. Category 994695 "20231226" Parent 994643 Levels 408631 OrderBy Drill 408607
  6756. Value "20231226" Label "26/12/2023" Lastuse 20230125 SourceValue "20231226"
  6757. Date 20231226 Filtered False Suppressed False Sign False HideValue False
  6758. IsKeyOrphanage False IsTruncated False Blanks False
  6759. Category 994697 "20231227" Parent 994643 Levels 408631 OrderBy Drill 408607
  6760. Value "20231227" Label "27/12/2023" Lastuse 20230125 SourceValue "20231227"
  6761. Date 20231227 Filtered False Suppressed False Sign False HideValue False
  6762. IsKeyOrphanage False IsTruncated False Blanks False
  6763. Category 994699 "20231228" Parent 994643 Levels 408631 OrderBy Drill 408607
  6764. Value "20231228" Label "28/12/2023" Lastuse 20230125 SourceValue "20231228"
  6765. Date 20231228 Filtered False Suppressed False Sign False HideValue False
  6766. IsKeyOrphanage False IsTruncated False Blanks False
  6767. Category 994701 "20231229" Parent 994643 Levels 408631 OrderBy Drill 408607
  6768. Value "20231229" Label "29/12/2023" Lastuse 20230125 SourceValue "20231229"
  6769. Date 20231229 Filtered False Suppressed False Sign False HideValue False
  6770. IsKeyOrphanage False IsTruncated False Blanks False
  6771. Category 994703 "20231230" Parent 994643 Levels 408631 OrderBy Drill 408607
  6772. Value "20231230" Label "30/12/2023" Lastuse 20230125 SourceValue "20231230"
  6773. Date 20231230 Filtered False Suppressed False Sign False HideValue False
  6774. IsKeyOrphanage False IsTruncated False Blanks False
  6775. Category 994705 "20231231" Parent 994643 Levels 408631 OrderBy Drill 408607
  6776. Value "20231231" Label "31/12/2023" Lastuse 20230125 SourceValue "20231231"
  6777. Date 20231231 Filtered False Suppressed False Sign False HideValue False
  6778. IsKeyOrphanage False IsTruncated False Blanks False
  6779. SpecialCategory 408637 "Aktueller Tag" Parent 408605 Levels 0 Lastuse 20230125
  6780. Rollup True TimeAggregate Single RunningPeriods 0 TargetOffset 0 TargetLevel "Tag"
  6781. ContextOffset 0 DateDrill 408607 Primary 993995 Filtered False Suppressed False
  6782. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6783. SpecialCategory 408639 "Gestern" Parent 408605 Levels 0 Lastuse 20230125
  6784. Rollup True TimeAggregate Single RunningPeriods 0 TargetOffset -1 TargetLevel "Tag"
  6785. ContextOffset 0 DateDrill 408607 Primary 993993 Filtered False Suppressed False
  6786. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6787. SpecialCategory 408641 "M bisher" Parent 408605 Levels 0 Lastuse 20230125
  6788. Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Monat" TargetOffset 0
  6789. TargetLevel "Tag" ContextOffset 0 DateDrill 408607 Primary 993949 Primary 993951
  6790. Primary 993953 Primary 993955 Primary 993957 Primary 993959 Primary 993961
  6791. Primary 993963 Primary 993965 Primary 993967 Primary 993969 Primary 993971
  6792. Primary 993973 Primary 993975 Primary 993977 Primary 993979 Primary 993981
  6793. Primary 993983 Primary 993985 Primary 993987 Primary 993989 Primary 993991
  6794. Primary 993993 Primary 993995 Filtered False Suppressed False Sign False
  6795. IsKeyOrphanage False IsTruncated False Blanks False
  6796. SpecialCategory 408643 "Voriger M bisher" Parent 408605 Levels 0 Lastuse 20230125
  6797. Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Monat" TargetOffset 0
  6798. TargetLevel "Tag" ContextOffset -1 ContextLevel "Monat" DateDrill 408607
  6799. Filtered False Suppressed False Sign False IsKeyOrphanage False IsTruncated False
  6800. Blanks False
  6801. SpecialCategory 408645 "M bisher gruppiert" Parent 408605 Levels 0 Lastuse 20230125
  6802. Rollup True TimeAggregate ToDate_Grp RunningPeriods 0 ToDateLevel "Monat"
  6803. TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Monat"
  6804. DateDrill 408607 Primary 409563 Primary 409561 Primary 409565 Primary 409567
  6805. Filtered False Suppressed False Sign False IsKeyOrphanage False IsTruncated False
  6806. Blanks False
  6807. SpecialCategory 409563 "M bisher gruppiert~Voriger M bisher" Parent 408645
  6808. Levels 0 Label "Voriger M bisher" Lastuse 20230125 Rollup False TimeAggregate ToDate
  6809. RunningPeriods 0 ToDateLevel "Monat" TargetOffset 0 TargetLevel "Tag" ContextOffset -1
  6810. ContextLevel "Monat" DateDrill 408607 Filtered False Suppressed False Sign False
  6811. IsKeyOrphanage False IsTruncated False Blanks False
  6812. SpecialCategory 409561 "M bisher gruppiert~M bisher" Parent 408645 Levels 0
  6813. Label "M bisher" Lastuse 20230125 Rollup False TimeAggregate ToDate RunningPeriods 0
  6814. ToDateLevel "Monat" TargetOffset 0 TargetLevel "Tag" ContextOffset 0 DateDrill 408607
  6815. Primary 993949 Primary 993951 Primary 993953 Primary 993955 Primary 993957
  6816. Primary 993959 Primary 993961 Primary 993963 Primary 993965 Primary 993967
  6817. Primary 993969 Primary 993971 Primary 993973 Primary 993975 Primary 993977
  6818. Primary 993979 Primary 993981 Primary 993983 Primary 993985 Primary 993987
  6819. Primary 993989 Primary 993991 Primary 993993 Primary 993995 Filtered False
  6820. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6821. SpecialCategory 409565 'M bisher gruppiert~ÄNDERUNG ( "Voriger M bisher" , "M bisher" )'
  6822. Parent 408645 Levels 0 Label "M bisher Änderung" Lastuse 20230125 Rollup False
  6823. RunningPeriods 0 TargetOffset 0 ContextOffset 0 DateDrill 0 Calc change ( "M bisher gruppiert~Voriger M bisher@409563" , "M bisher gruppiert~M bisher@409561" ) Filtered False
  6824. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6825. SpecialCategory 409567 'M bisher gruppiert~PROZENTZUWACHS ( "Voriger M bisher" , "M bisher" )'
  6826. Parent 408645 Levels 0 Label "M bisher Zuwachs" Lastuse 20230125 Rollup False
  6827. RunningPeriods 0 TargetOffset 0 ContextOffset 0 DateDrill 0 Calc percent-growth ( "M bisher gruppiert~Voriger M bisher@409563" , "M bisher gruppiert~M bisher@409561" ) Format "0%~2"
  6828. Filtered False Suppressed False Sign False IsKeyOrphanage False IsTruncated False
  6829. Blanks False
  6830. SpecialCategory 408647 "Q bisher" Parent 408605 Levels 0 Lastuse 20230125
  6831. Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Quartal"
  6832. TargetOffset 0 TargetLevel "Tag" ContextOffset 0 DateDrill 408607 Primary 994707
  6833. Filtered False Suppressed False Sign False IsKeyOrphanage False IsTruncated False
  6834. Blanks False
  6835. SpecialCategory 994707 "Q bisher~Monat1" Parent 408647 Levels 0 Label "Jan./2023"
  6836. Inclusion Generate Lastuse 20230125 Rollup True RunningPeriods 0 TargetOffset 0
  6837. ContextOffset 0 Primary 993949 Primary 993951 Primary 993953 Primary 993955
  6838. Primary 993957 Primary 993959 Primary 993961 Primary 993963 Primary 993965
  6839. Primary 993967 Primary 993969 Primary 993971 Primary 993973 Primary 993975
  6840. Primary 993977 Primary 993979 Primary 993981 Primary 993983 Primary 993985
  6841. Primary 993987 Primary 993989 Primary 993991 Primary 993993 Primary 993995
  6842. Filtered False Suppressed False Sign False IsKeyOrphanage False IsTruncated False
  6843. Blanks False
  6844. SpecialCategory 408649 "Voriges Q bisher" Parent 408605 Levels 0 Lastuse 20230125
  6845. Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Quartal"
  6846. TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Quartal"
  6847. DateDrill 408607 Primary 994709 Filtered False Suppressed False Sign False
  6848. IsKeyOrphanage False IsTruncated False Blanks False
  6849. SpecialCategory 994709 "Voriges Q bisher~Monat1" Parent 408649 Levels 0
  6850. Label "Okt./2019" Inclusion Generate Lastuse 20230125 Rollup True RunningPeriods 0
  6851. TargetOffset 0 ContextOffset 0 Filtered False Suppressed False Sign False
  6852. IsKeyOrphanage False IsTruncated False Blanks False
  6853. SpecialCategory 408651 "Q bisher gruppiert" Parent 408605 Levels 0 Lastuse 20230125
  6854. Rollup True TimeAggregate ToDate_Grp RunningPeriods 0 ToDateLevel "Quartal"
  6855. TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Quartal"
  6856. DateDrill 408607 Primary 409577 Primary 409573 Primary 409581 Primary 409583
  6857. Filtered False Suppressed False Sign False IsKeyOrphanage False IsTruncated False
  6858. Blanks False
  6859. SpecialCategory 409577 "Q bisher gruppiert~Voriges Q bisher" Parent 408651
  6860. Levels 0 Label "Voriges Q bisher" Lastuse 20230125 Rollup False TimeAggregate ToDate
  6861. RunningPeriods 0 ToDateLevel "Quartal" TargetOffset 0 TargetLevel "Tag"
  6862. ContextOffset -1 ContextLevel "Quartal" DateDrill 408607 Primary 994711
  6863. Filtered False Suppressed False Sign False IsKeyOrphanage False IsTruncated False
  6864. Blanks False
  6865. SpecialCategory 994711 "Q bisher gruppiert~Voriges Q bisher~Monat1" Parent 409577
  6866. Levels 0 Label "Okt./2019" Inclusion Generate Lastuse 20230125 Rollup True
  6867. RunningPeriods 0 TargetOffset 0 ContextOffset 0 Filtered False Suppressed False
  6868. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6869. SpecialCategory 409573 "Q bisher gruppiert~Q bisher" Parent 408651 Levels 0
  6870. Label "Q bisher" Lastuse 20230125 Rollup False TimeAggregate ToDate RunningPeriods 0
  6871. ToDateLevel "Quartal" TargetOffset 0 TargetLevel "Tag" ContextOffset 0
  6872. DateDrill 408607 Primary 994713 Filtered False Suppressed False Sign False
  6873. IsKeyOrphanage False IsTruncated False Blanks False
  6874. SpecialCategory 994713 "Q bisher gruppiert~Q bisher~Monat1" Parent 409573
  6875. Levels 0 Label "Jan./2023" Inclusion Generate Lastuse 20230125 Rollup True
  6876. RunningPeriods 0 TargetOffset 0 ContextOffset 0 Primary 993949 Primary 993951
  6877. Primary 993953 Primary 993955 Primary 993957 Primary 993959 Primary 993961
  6878. Primary 993963 Primary 993965 Primary 993967 Primary 993969 Primary 993971
  6879. Primary 993973 Primary 993975 Primary 993977 Primary 993979 Primary 993981
  6880. Primary 993983 Primary 993985 Primary 993987 Primary 993989 Primary 993991
  6881. Primary 993993 Primary 993995 Filtered False Suppressed False Sign False
  6882. IsKeyOrphanage False IsTruncated False Blanks False
  6883. SpecialCategory 409581 'Q bisher gruppiert~ÄNDERUNG ( "Voriges Q bisher" , "Q bisher" )'
  6884. Parent 408651 Levels 0 Label "Q bisher Änderung" Lastuse 20230125 Rollup False
  6885. RunningPeriods 0 TargetOffset 0 ContextOffset 0 DateDrill 0 Calc change ( "Q bisher gruppiert~Voriges Q bisher@409577" , "Q bisher gruppiert~Q bisher@409573" ) Filtered False
  6886. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6887. SpecialCategory 409583 'Q bisher gruppiert~PROZENTZUWACHS ( "Voriges Q bisher" , "Q bisher" )'
  6888. Parent 408651 Levels 0 Label "Q bisher Zuwachs" Lastuse 20230125 Rollup False
  6889. RunningPeriods 0 TargetOffset 0 ContextOffset 0 DateDrill 0 Calc percent-growth ( "Q bisher gruppiert~Voriges Q bisher@409577" , "Q bisher gruppiert~Q bisher@409573" ) Format "0%~2"
  6890. Filtered False Suppressed False Sign False IsKeyOrphanage False IsTruncated False
  6891. Blanks False
  6892. SpecialCategory 408653 "J bisher" Parent 408605 Levels 0 Lastuse 20230125
  6893. Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Jahr" TargetOffset 0
  6894. TargetLevel "Tag" ContextOffset 0 DateDrill 408607 Primary 994715 Filtered False
  6895. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6896. SpecialCategory 994715 "J bisher~Quartal1" Parent 408653 Levels 0 Label "1. Q. 2023"
  6897. Inclusion Generate Lastuse 20230125 Rollup True RunningPeriods 0 TargetOffset 0
  6898. ContextOffset 0 Primary 994717 Filtered False Suppressed False Sign False
  6899. IsKeyOrphanage False IsTruncated False Blanks False
  6900. SpecialCategory 994717 "J bisher~Quartal1~Monat1" Parent 994715 Levels 0
  6901. Label "Jan./2023" Inclusion Generate Lastuse 20230125 Rollup True RunningPeriods 0
  6902. TargetOffset 0 ContextOffset 0 Primary 993949 Primary 993951 Primary 993953
  6903. Primary 993955 Primary 993957 Primary 993959 Primary 993961 Primary 993963
  6904. Primary 993965 Primary 993967 Primary 993969 Primary 993971 Primary 993973
  6905. Primary 993975 Primary 993977 Primary 993979 Primary 993981 Primary 993983
  6906. Primary 993985 Primary 993987 Primary 993989 Primary 993991 Primary 993993
  6907. Primary 993995 Filtered False Suppressed False Sign False IsKeyOrphanage False
  6908. IsTruncated False Blanks False
  6909. SpecialCategory 408655 "Voriges J bisher" Parent 408605 Levels 0 Lastuse 20230125
  6910. Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Jahr" TargetOffset 0
  6911. TargetLevel "Tag" ContextOffset -1 ContextLevel "Jahr" DateDrill 408607
  6912. Primary 994719 Filtered False Suppressed False Sign False IsKeyOrphanage False
  6913. IsTruncated False Blanks False
  6914. SpecialCategory 994719 "Voriges J bisher~Quartal1" Parent 408655 Levels 0
  6915. Label "1. Q. 2019" Inclusion Generate Lastuse 20230125 Rollup True RunningPeriods 0
  6916. TargetOffset 0 ContextOffset 0 Primary 994721 Filtered False Suppressed False
  6917. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6918. SpecialCategory 994721 "Voriges J bisher~Quartal1~Monat1" Parent 994719
  6919. Levels 0 Label "Jan./2019" Inclusion Generate Lastuse 20230125 Rollup True
  6920. RunningPeriods 0 TargetOffset 0 ContextOffset 0 Filtered False Suppressed False
  6921. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6922. SpecialCategory 408657 "J bisher gruppiert" Parent 408605 Levels 0 Lastuse 20230125
  6923. Rollup True TimeAggregate ToDate_Grp RunningPeriods 0 ToDateLevel "Jahr"
  6924. TargetOffset 0 TargetLevel "Tag" ContextOffset -1 ContextLevel "Jahr" DateDrill 408607
  6925. Primary 409595 Primary 409589 Primary 409597 Primary 409599 Filtered False
  6926. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6927. SpecialCategory 409595 "J bisher gruppiert~Voriges J bisher" Parent 408657
  6928. Levels 0 Label "Voriges J bisher" Lastuse 20230125 Rollup False TimeAggregate ToDate
  6929. RunningPeriods 0 ToDateLevel "Jahr" TargetOffset 0 TargetLevel "Tag" ContextOffset -1
  6930. ContextLevel "Jahr" DateDrill 408607 Primary 994723 Filtered False Suppressed False
  6931. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6932. SpecialCategory 994723 "J bisher gruppiert~Voriges J bisher~Quartal1" Parent 409595
  6933. Levels 0 Label "1. Q. 2019" Inclusion Generate Lastuse 20230125 Rollup True
  6934. RunningPeriods 0 TargetOffset 0 ContextOffset 0 Primary 994725 Filtered False
  6935. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6936. SpecialCategory 994725 "J bisher gruppiert~Voriges J bisher~Quartal1~Monat1"
  6937. Parent 994723 Levels 0 Label "Jan./2019" Inclusion Generate Lastuse 20230125
  6938. Rollup True RunningPeriods 0 TargetOffset 0 ContextOffset 0 Filtered False
  6939. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6940. SpecialCategory 409589 "J bisher gruppiert~J bisher" Parent 408657 Levels 0
  6941. Label "J bisher" Lastuse 20230125 Rollup False TimeAggregate ToDate RunningPeriods 0
  6942. ToDateLevel "Jahr" TargetOffset 0 TargetLevel "Tag" ContextOffset 0 DateDrill 408607
  6943. Primary 994727 Filtered False Suppressed False Sign False IsKeyOrphanage False
  6944. IsTruncated False Blanks False
  6945. SpecialCategory 994727 "J bisher gruppiert~J bisher~Quartal1" Parent 409589
  6946. Levels 0 Label "1. Q. 2023" Inclusion Generate Lastuse 20230125 Rollup True
  6947. RunningPeriods 0 TargetOffset 0 ContextOffset 0 Primary 994729 Filtered False
  6948. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6949. SpecialCategory 994729 "J bisher gruppiert~J bisher~Quartal1~Monat1" Parent 994727
  6950. Levels 0 Label "Jan./2023" Inclusion Generate Lastuse 20230125 Rollup True
  6951. RunningPeriods 0 TargetOffset 0 ContextOffset 0 Primary 993949 Primary 993951
  6952. Primary 993953 Primary 993955 Primary 993957 Primary 993959 Primary 993961
  6953. Primary 993963 Primary 993965 Primary 993967 Primary 993969 Primary 993971
  6954. Primary 993973 Primary 993975 Primary 993977 Primary 993979 Primary 993981
  6955. Primary 993983 Primary 993985 Primary 993987 Primary 993989 Primary 993991
  6956. Primary 993993 Primary 993995 Filtered False Suppressed False Sign False
  6957. IsKeyOrphanage False IsTruncated False Blanks False
  6958. SpecialCategory 409597 'J bisher gruppiert~ÄNDERUNG ( "Voriges J bisher" , "J bisher" )'
  6959. Parent 408657 Levels 0 Label "J bisher Änderung" Lastuse 20230125 Rollup False
  6960. RunningPeriods 0 TargetOffset 0 ContextOffset 0 DateDrill 0 Calc change ( "J bisher gruppiert~Voriges J bisher@409595" , "J bisher gruppiert~J bisher@409589" ) Filtered False
  6961. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6962. SpecialCategory 409599 'J bisher gruppiert~PROZENTZUWACHS ( "Voriges J bisher" , "J bisher" )'
  6963. Parent 408657 Levels 0 Label "J bisher Zuwachs" Lastuse 20230125 Rollup False
  6964. RunningPeriods 0 TargetOffset 0 ContextOffset 0 DateDrill 0 Calc percent-growth ( "J bisher gruppiert~Voriges J bisher@409595" , "J bisher gruppiert~J bisher@409589" ) Format "0%~2"
  6965. Filtered False Suppressed False Sign False IsKeyOrphanage False IsTruncated False
  6966. Blanks False
  6967. SpecialCategory 408781 "408781" Parent 408605 Levels 0 Label "Vormonat (-1)"
  6968. Lastuse 20230125 Rollup True TimeAggregate Single RunningPeriods 0 TargetOffset -1
  6969. TargetLevel "Monat" ContextOffset 0 DateDrill 408607 Filtered False Suppressed False
  6970. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6971. SpecialCategory 408783 "408783" Parent 408605 Levels 0 Label "Vormonat (-2)"
  6972. Lastuse 20230125 Rollup True TimeAggregate Single RunningPeriods 0 TargetOffset -2
  6973. TargetLevel "Monat" ContextOffset 0 DateDrill 408607 Filtered False Suppressed False
  6974. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6975. SpecialCategory 408785 "408785" Parent 408605 Levels 0 Label "per Vormonat (-1)"
  6976. Lastuse 20230125 Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Jahr"
  6977. TargetOffset -1 TargetLevel "Monat" ContextOffset 0 DateDrill 408607 Filtered False
  6978. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6979. SpecialCategory 408787 "408787" Parent 408605 Levels 0 Label "per Vormonat (-2)"
  6980. Lastuse 20230125 Rollup True TimeAggregate ToDate RunningPeriods 0 ToDateLevel "Jahr"
  6981. TargetOffset -2 TargetLevel "Monat" ContextOffset 0 DateDrill 408607 Primary 994731
  6982. Filtered False Suppressed False Sign False IsKeyOrphanage False IsTruncated False
  6983. Blanks False
  6984. SpecialCategory 994731 "408787~Quartal1" Parent 408787 Levels 0 Label "4. Q. 2019"
  6985. Inclusion Generate Lastuse 20230125 Rollup True RunningPeriods 0 TargetOffset 0
  6986. ContextOffset 0 Filtered False Suppressed False Sign False IsKeyOrphanage False
  6987. IsTruncated False Blanks False
  6988. SpecialCategory 408789 "408789" Parent 408605 Levels 0 Label "letzte 12 Monate"
  6989. Lastuse 20230125 Rollup True TimeAggregate Running RunningPeriods 12 TargetOffset -1
  6990. TargetLevel "Monat" ContextOffset 0 DateDrill 408607 Filtered False Suppressed False
  6991. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6992. SpecialCategory 408791 "408791" Parent 408605 Levels 0 Label "aktueller Monat"
  6993. Lastuse 20230125 Rollup True TimeAggregate Single RunningPeriods 0 TargetOffset 0
  6994. TargetLevel "Monat" ContextOffset 0 DateDrill 408607 Primary 993947 Filtered False
  6995. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  6996. SpecialCategory 992923 "982599" Parent 408605 Levels 0 Label "letztes Jahr"
  6997. Lastuse 20230125 Rollup True TimeAggregate Single RunningPeriods 0 TargetOffset -1
  6998. TargetLevel "Jahr" ContextOffset 0 DateDrill 408607 Filtered False Suppressed False
  6999. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  7000. MapDrills
  7001. MapDrill 408607
  7002. ViewName 408609 "Alle Kategorien" Type All ViewUserClass 0
  7003. ViewName 408611 "Dimension auslassen" Type Omit ViewUserClass 0
  7004. Dimension 791 "AH-Gruppe" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  7005. DimDefaultCategory 0
  7006. Categories
  7007. Root 793 "Hauptbetrieb" Inclusion Generate Lastuse 20150818 Filtered False
  7008. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7009. Blanks False
  7010. Drill 795 "Nach Hauptbetrieb" Inclusion Suppress Filtered False Suppressed True
  7011. PrimaryDrill True HideValue False
  7012. Levels 801 "Hauptbetrieb" Blanks "( Leerstelle )" DateFunction None Generate None
  7013. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  7014. Timerank 0 UniqueCategories False UniqueMove False Associations 803 "Hauptbetrieb"
  7015. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Hauptbetrieb"
  7016. Levels 805 "Standort" Blanks "( Leerstelle )" DateFunction None Generate None
  7017. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  7018. Timerank 0 UniqueCategories False UniqueMove False Associations 807 "Standort"
  7019. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Standort"
  7020. Levels 982677 "Department No" Blanks "( Leerstelle )" DateFunction None
  7021. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  7022. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 982679
  7023. "Department No" AssociationType Type_Query AssociationRole Role_Source
  7024. AssociationReferenced "Department No"
  7025. Levels 987287 "produktiv/unproduktiv" Blanks "( Leerstelle )" DateFunction None
  7026. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  7027. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 987289
  7028. "produktiv/unproduktiv" AssociationType Type_Query AssociationRole Role_Source
  7029. AssociationReferenced "produktiv/unproduktiv"
  7030. Associations 987291 "produktiv/unproduktiv" AssociationContext 795 AssociationType Type_Query
  7031. AssociationRole Role_OrderBy AssociationReferenced "produktiv/unproduktiv"
  7032. SortOrder Text SortAs Ascending
  7033. Levels 408663 "Monteur" Blanks "( Leerstelle )" DateFunction None Generate None
  7034. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  7035. Timerank 0 UniqueCategories False UniqueMove False Associations 408665
  7036. "Monteur" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Monteur"
  7037. Associations 688155 "Last Name" AssociationContext 795 AssociationType Type_Query
  7038. AssociationRole Role_OrderBy AssociationReferenced "Last Name" SortOrder Text
  7039. SortAs Ascending
  7040. Category 221867 "1" Parent 795 Levels 801 Label "AHR" Lastuse 20150818
  7041. SourceValue "1" Filtered False Suppressed False Sign False HideValue False
  7042. IsKeyOrphanage False IsTruncated False Blanks False
  7043. Category 221869 "01" Parent 221867 Levels 805 Label "MM" Lastuse 20150818
  7044. SourceValue "10" Filtered False Suppressed False Sign False HideValue False
  7045. IsKeyOrphanage False IsTruncated False Blanks False
  7046. Category 982683 "1010" Parent 221869 Levels 982677 Label "NA" Lastuse 20150818
  7047. SourceValue "1010" Filtered False Suppressed False Sign False HideValue False
  7048. IsKeyOrphanage False IsTruncated False Blanks False
  7049. Category 988099 "unprod. Personal" Parent 982683 Levels 987287 OrderBy Drill 795
  7050. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7051. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7052. IsTruncated False Blanks False
  7053. Category 987267 "1011" Parent 221869 Levels 982677 Label "NA Flotte" Inclusion Generate
  7054. Lastuse 20150818 SourceValue "1011" Filtered False Suppressed False Sign False
  7055. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7056. Category 988295 "( Leerstelle )~39310" Parent 987267 Levels 987287 OrderBy Drill 795
  7057. Value "( Leerstelle )" Inclusion Suppress Lastuse 20150818 SourceValue "( Leerstelle )"
  7058. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7059. IsTruncated False Blanks True
  7060. Category 988281 "unprod. Personal~39309" Parent 987267 Levels 987287 OrderBy Drill 795
  7061. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7062. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7063. IsTruncated False Blanks False
  7064. Category 982779 "1020" Parent 221869 Levels 982677 Label "GA" Lastuse 20150818
  7065. SourceValue "1020" Filtered False Suppressed False Sign False HideValue False
  7066. IsKeyOrphanage False IsTruncated False Blanks False
  7067. Category 988193 "unprod. Personal~39307" Parent 982779 Levels 987287 OrderBy Drill 795
  7068. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7069. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7070. IsTruncated False Blanks False
  7071. Category 983109 "1040" Parent 221869 Levels 982677 Label "SC" Lastuse 20150818
  7072. SourceValue "1040" Filtered False Suppressed False Sign False HideValue False
  7073. IsKeyOrphanage False IsTruncated False Blanks False
  7074. Category 988789 "prod. Personal" Parent 983109 Levels 987287 OrderBy Drill 795
  7075. Value "prod. Personal" Lastuse 20150818 SourceValue "prod. Personal" Filtered False
  7076. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7077. Blanks False
  7078. Category 988517 "unprod. Personal~39313" Parent 983109 Levels 987287 OrderBy Drill 795
  7079. Value "unprod. Personal" Lastuse 20150818 SourceValue "unprod. Personal"
  7080. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7081. IsTruncated False Blanks False
  7082. Category 983295 "1050" Parent 221869 Levels 982677 Label "TUZ" Lastuse 20150818
  7083. SourceValue "1050" Filtered False Suppressed False Sign False HideValue False
  7084. IsKeyOrphanage False IsTruncated False Blanks False
  7085. Category 988767 "unprod. Personal~39314" Parent 983295 Levels 987287 OrderBy Drill 795
  7086. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7087. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7088. IsTruncated False Blanks False
  7089. Category 982729 "1080" Parent 221869 Levels 982677 Label "KM" Lastuse 20150818
  7090. SourceValue "1080" Filtered False Suppressed False Sign False HideValue False
  7091. IsKeyOrphanage False IsTruncated False Blanks False
  7092. Category 988081 "( Leerstelle )~39304" Parent 982729 Levels 987287 OrderBy Drill 795
  7093. Value "( Leerstelle )" Inclusion Suppress Lastuse 20150818 SourceValue "( Leerstelle )"
  7094. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7095. IsTruncated False Blanks True
  7096. Category 988149 "unprod. Personal~39305" Parent 982729 Levels 987287 OrderBy Drill 795
  7097. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7098. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7099. IsTruncated False Blanks False
  7100. Category 982973 "1090" Parent 221869 Levels 982677 Label "VWM" Lastuse 20150818
  7101. SourceValue "1090" Filtered False Suppressed False Sign False HideValue False
  7102. IsKeyOrphanage False IsTruncated False Blanks False
  7103. Category 988381 "( Leerstelle )~39311" Parent 982973 Levels 987287 OrderBy Drill 795
  7104. Value "( Leerstelle )" Inclusion Suppress Lastuse 20150818 SourceValue "( Leerstelle )"
  7105. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7106. IsTruncated False Blanks True
  7107. Category 988399 "unprod. Personal~39312" Parent 982973 Levels 987287 OrderBy Drill 795
  7108. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7109. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7110. IsTruncated False Blanks False
  7111. Category 671687 "20" Parent 221867 Levels 805 Label "VÖH" Lastuse 20120518
  7112. SourceValue "20" Filtered False Suppressed False Sign False HideValue False
  7113. IsKeyOrphanage False IsTruncated False Blanks False
  7114. Category 671689 "30" Parent 221867 Levels 805 Label "KRU" Lastuse 20150818
  7115. SourceValue "30" Filtered False Suppressed False Sign False HideValue False
  7116. IsKeyOrphanage False IsTruncated False Blanks False
  7117. Category 983961 "3010" Parent 671689 Levels 982677 Label "NA" Lastuse 20150818
  7118. SourceValue "3010" Filtered False Suppressed False Sign False HideValue False
  7119. IsKeyOrphanage False IsTruncated False Blanks False
  7120. Category 989535 "unprod. Personal~39323" Parent 983961 Levels 987287 OrderBy Drill 795
  7121. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7122. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7123. IsTruncated False Blanks False
  7124. Category 983689 "3020" Parent 671689 Levels 982677 Label "GA" Lastuse 20150818
  7125. SourceValue "3020" Filtered False Suppressed False Sign False HideValue False
  7126. IsKeyOrphanage False IsTruncated False Blanks False
  7127. Category 989275 "unprod. Personal~39317" Parent 983689 Levels 987287 OrderBy Drill 795
  7128. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7129. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7130. IsTruncated False Blanks False
  7131. Category 983095 "3040" Parent 671689 Levels 982677 Label "SC" Lastuse 20150818
  7132. SourceValue "3040" Filtered False Suppressed False Sign False HideValue False
  7133. IsKeyOrphanage False IsTruncated False Blanks False
  7134. Category 990879 "( Leerstelle )~39331" Parent 983095 Levels 987287 OrderBy Drill 795
  7135. Value "( Leerstelle )" Lastuse 20150818 SourceValue "( Leerstelle )" Filtered False
  7136. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7137. Blanks True
  7138. Category 989437 "prod. Personal~39322" Parent 983095 Levels 987287 OrderBy Drill 795
  7139. Value "prod. Personal" Lastuse 20150818 SourceValue "prod. Personal" Filtered False
  7140. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7141. Blanks False
  7142. Category 989385 "unprod. Personal~39320" Parent 983095 Levels 987287 OrderBy Drill 795
  7143. Value "unprod. Personal" Lastuse 20150818 SourceValue "unprod. Personal"
  7144. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7145. IsTruncated False Blanks False
  7146. Category 983837 "3050" Parent 671689 Levels 982677 Label "TUZ" Lastuse 20150818
  7147. SourceValue "3050" Filtered False Suppressed False Sign False HideValue False
  7148. IsKeyOrphanage False IsTruncated False Blanks False
  7149. Category 989375 "unprod. Personal~39319" Parent 983837 Levels 987287 OrderBy Drill 795
  7150. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7151. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7152. IsTruncated False Blanks False
  7153. Category 983863 "3090" Parent 671689 Levels 982677 Label "VWM" Lastuse 20150818
  7154. SourceValue "3090" Filtered False Suppressed False Sign False HideValue False
  7155. IsKeyOrphanage False IsTruncated False Blanks False
  7156. Category 989403 "unprod. Personal~39321" Parent 983863 Levels 987287 OrderBy Drill 795
  7157. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7158. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7159. IsTruncated False Blanks False
  7160. Category 671691 "40" Parent 221867 Levels 805 Label "ULM" Lastuse 20150818
  7161. SourceValue "40" Filtered False Suppressed False Sign False HideValue False
  7162. IsKeyOrphanage False IsTruncated False Blanks False
  7163. Category 982887 "4010" Parent 671691 Levels 982677 Label "NA" Lastuse 20150818
  7164. SourceValue "4010" Filtered False Suppressed False Sign False HideValue False
  7165. IsKeyOrphanage False IsTruncated False Blanks False
  7166. Category 988263 "unprod. Personal~39308" Parent 982887 Levels 987287 OrderBy Drill 795
  7167. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7168. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7169. IsTruncated False Blanks False
  7170. Category 983987 "4020" Parent 671691 Levels 982677 Label "GA" Lastuse 20150818
  7171. SourceValue "4020" Filtered False Suppressed False Sign False HideValue False
  7172. IsKeyOrphanage False IsTruncated False Blanks False
  7173. Category 989561 "unprod. Personal~39324" Parent 983987 Levels 987287 OrderBy Drill 795
  7174. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7175. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7176. IsTruncated False Blanks False
  7177. Category 983329 "4040" Parent 671691 Levels 982677 Label "SC" Lastuse 20150818
  7178. SourceValue "4040" Filtered False Suppressed False Sign False HideValue False
  7179. IsKeyOrphanage False IsTruncated False Blanks False
  7180. Category 989285 "prod. Personal~39318" Parent 983329 Levels 987287 OrderBy Drill 795
  7181. Value "prod. Personal" Lastuse 20150818 SourceValue "prod. Personal" Filtered False
  7182. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7183. Blanks False
  7184. Category 989249 "unprod. Personal~39316" Parent 983329 Levels 987287 OrderBy Drill 795
  7185. Value "unprod. Personal" Lastuse 20150818 SourceValue "unprod. Personal"
  7186. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7187. IsTruncated False Blanks False
  7188. Category 983663 "4050" Parent 671691 Levels 982677 Label "TUZ" Lastuse 20150818
  7189. SourceValue "4050" Filtered False Suppressed False Sign False HideValue False
  7190. IsKeyOrphanage False IsTruncated False Blanks False
  7191. Category 989239 "unprod. Personal~39315" Parent 983663 Levels 987287 OrderBy Drill 795
  7192. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7193. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7194. IsTruncated False Blanks False
  7195. Category 984197 "4090" Parent 671691 Levels 982677 Label "VWM" Lastuse 20150818
  7196. SourceValue "4090" Filtered False Suppressed False Sign False HideValue False
  7197. IsKeyOrphanage False IsTruncated False Blanks False
  7198. Category 989731 "unprod. Personal~39325" Parent 984197 Levels 987287 OrderBy Drill 795
  7199. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7200. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7201. IsTruncated False Blanks False
  7202. Category 671799 "50" Parent 221867 Levels 805 Label "LL" Lastuse 20150818
  7203. SourceValue "50" Filtered False Suppressed False Sign False HideValue False
  7204. IsKeyOrphanage False IsTruncated False Blanks True
  7205. Category 984603 "5010" Parent 671799 Levels 982677 Label "NA" Lastuse 20150818
  7206. SourceValue "5010" Filtered False Suppressed False Sign False HideValue False
  7207. IsKeyOrphanage False IsTruncated False Blanks False
  7208. Category 990181 "unprod. Personal~39326" Parent 984603 Levels 987287 OrderBy Drill 795
  7209. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7210. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7211. IsTruncated False Blanks False
  7212. Category 984633 "5020" Parent 671799 Levels 982677 Label "GA" Lastuse 20150818
  7213. SourceValue "5020" Filtered False Suppressed False Sign False HideValue False
  7214. IsKeyOrphanage False IsTruncated False Blanks False
  7215. Category 990207 "unprod. Personal~39327" Parent 984633 Levels 987287 OrderBy Drill 795
  7216. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7217. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7218. IsTruncated False Blanks False
  7219. Category 984699 "5040" Parent 671799 Levels 982677 Label "SC" Lastuse 20150818
  7220. SourceValue "5040" Filtered False Suppressed False Sign False HideValue False
  7221. IsKeyOrphanage False IsTruncated False Blanks False
  7222. Category 990969 "( Leerstelle )~39332" Parent 984699 Levels 987287 OrderBy Drill 795
  7223. Value "( Leerstelle )" Lastuse 20150818 SourceValue "( Leerstelle )" Filtered False
  7224. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7225. Blanks True
  7226. Category 990335 "prod. Personal~39329" Parent 984699 Levels 987287 OrderBy Drill 795
  7227. Value "prod. Personal" Lastuse 20150818 SourceValue "prod. Personal" Filtered False
  7228. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7229. Blanks False
  7230. Category 990265 "unprod. Personal~39328" Parent 984699 Levels 987287 OrderBy Drill 795
  7231. Value "unprod. Personal" Lastuse 20150818 SourceValue "unprod. Personal"
  7232. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7233. IsTruncated False Blanks False
  7234. Category 983827 "5050" Parent 671799 Levels 982677 Label "TUZ" Lastuse 20150818
  7235. SourceValue "5050" Filtered False Suppressed False Sign False HideValue False
  7236. IsKeyOrphanage False IsTruncated False Blanks False
  7237. Category 990637 "unprod. Personal~39330" Parent 983827 Levels 987287 OrderBy Drill 795
  7238. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7239. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7240. IsTruncated False Blanks False
  7241. Category 982793 "5090" Parent 671799 Levels 982677 Label "VWM" Lastuse 20150818
  7242. SourceValue "5090" Filtered False Suppressed False Sign False HideValue False
  7243. IsKeyOrphanage False IsTruncated False Blanks False
  7244. Category 988179 "unprod. Personal~39306" Parent 982793 Levels 987287 OrderBy Drill 795
  7245. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7246. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7247. IsTruncated False Blanks False
  7248. Category 993793 "55" Parent 221867 Levels 805 Label "GZ" Inclusion Generate
  7249. Lastuse 20180822 SourceValue "55" Filtered False Suppressed False Sign False
  7250. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7251. Category 993795 "993795" Parent 993793 Levels 982677 Label "NA" Inclusion Generate
  7252. Lastuse 20181012 SourceValue "9010" Filtered False Suppressed False Sign False
  7253. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7254. Category 993797 "993797" Parent 993793 Levels 982677 Label "GA" Lastuse 20181012
  7255. SourceValue "9020" Filtered False Suppressed False Sign False HideValue False
  7256. IsKeyOrphanage False IsTruncated False Blanks False
  7257. Category 993799 "993799" Parent 993793 Levels 982677 Label "SC" Inclusion Generate
  7258. Lastuse 20181012 SourceValue "9040" Filtered False Suppressed False Sign False
  7259. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7260. Category 993801 "993801" Parent 993793 Levels 982677 Label "TUZ" Inclusion Generate
  7261. Lastuse 20181012 SourceValue "9050" Filtered False Suppressed False Sign False
  7262. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7263. Category 993803 "993803" Parent 993793 Levels 982677 Label "VWM" Inclusion Generate
  7264. Lastuse 20181012 SourceValue "9090" Filtered False Suppressed False Sign False
  7265. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7266. Category 985013 "( Leerstelle )" Parent 221867 Levels 805 Lastuse 20150818
  7267. SourceValue "( Leerstelle )" Filtered False Suppressed False Sign False
  7268. HideValue False IsKeyOrphanage False IsTruncated False Blanks True
  7269. Category 985015 "( Leerstelle )~39280" Parent 985013 Levels 982677 Lastuse 20150818
  7270. SourceValue "( Leerstelle )" Filtered False Suppressed False Sign False
  7271. HideValue False IsKeyOrphanage False IsTruncated False Blanks True
  7272. Category 988057 "( Leerstelle )~39299" Parent 985015 Levels 987287 OrderBy Drill 795
  7273. Value "( Leerstelle )" Inclusion Suppress Lastuse 20150818 SourceValue "( Leerstelle )"
  7274. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7275. IsTruncated False Blanks True
  7276. Category 985169 "2" Parent 795 Levels 801 Label "AAM" Lastuse 20200824
  7277. SourceValue "2" Filtered False Suppressed False Sign False HideValue False
  7278. IsKeyOrphanage False IsTruncated False Blanks False
  7279. Category 985171 "60" Parent 985169 Levels 805 Label "AAM" Lastuse 20210413
  7280. SourceValue "60" Filtered False Suppressed False Sign False HideValue False
  7281. IsKeyOrphanage False IsTruncated False Blanks False
  7282. Category 985177 "6010" Parent 985171 Levels 982677 Label "NA" Lastuse 20150818
  7283. SourceValue "6010" Filtered False Suppressed False Sign False HideValue False
  7284. IsKeyOrphanage False IsTruncated False Blanks False
  7285. Category 991041 "( Leerstelle )~39334" Parent 985177 Levels 987287 OrderBy Drill 795
  7286. Value "( Leerstelle )" Inclusion Suppress Lastuse 20150818 SourceValue "( Leerstelle )"
  7287. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7288. IsTruncated False Blanks True
  7289. Category 991023 "unprod. Personal~39333" Parent 985177 Levels 987287 OrderBy Drill 795
  7290. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7291. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7292. IsTruncated False Blanks False
  7293. Category 985293 "6020" Parent 985171 Levels 982677 Label "GA" Lastuse 20150818
  7294. SourceValue "6020" Filtered False Suppressed False Sign False HideValue False
  7295. IsKeyOrphanage False IsTruncated False Blanks False
  7296. Category 991397 "( Leerstelle )~39348" Parent 985293 Levels 987287 OrderBy Drill 795
  7297. Value "( Leerstelle )" Inclusion Suppress Lastuse 20150818 SourceValue "( Leerstelle )"
  7298. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7299. IsTruncated False Blanks True
  7300. Category 991113 "unprod. Personal~39338" Parent 985293 Levels 987287 OrderBy Drill 795
  7301. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7302. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7303. IsTruncated False Blanks False
  7304. Category 985605 "6040" Parent 985171 Levels 982677 Label "SC" Lastuse 20150818
  7305. SourceValue "6040" Filtered False Suppressed False Sign False HideValue False
  7306. IsKeyOrphanage False IsTruncated False Blanks False
  7307. Category 991215 "( Leerstelle )~39341" Parent 985605 Levels 987287 OrderBy Drill 795
  7308. Value "( Leerstelle )" Lastuse 20150818 SourceValue "( Leerstelle )" Filtered False
  7309. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7310. Blanks True
  7311. Category 991323 "prod. Personal~39347" Parent 985605 Levels 987287 OrderBy Drill 795
  7312. Value "prod. Personal" Lastuse 20150818 SourceValue "prod. Personal" Filtered False
  7313. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7314. Blanks False
  7315. Category 991083 "unprod. Personal~39335" Parent 985605 Levels 987287 OrderBy Drill 795
  7316. Value "unprod. Personal" Lastuse 20150818 SourceValue "unprod. Personal"
  7317. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7318. IsTruncated False Blanks False
  7319. Category 985545 "6050" Parent 985171 Levels 982677 Label "TUZ" Lastuse 20150818
  7320. SourceValue "6050" Filtered False Suppressed False Sign False HideValue False
  7321. IsKeyOrphanage False IsTruncated False Blanks False
  7322. Category 991225 "unprod. Personal~39342" Parent 985545 Levels 987287 OrderBy Drill 795
  7323. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7324. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7325. IsTruncated False Blanks False
  7326. Category 985281 "6080" Parent 985171 Levels 982677 Label "KM" Lastuse 20130905
  7327. SourceValue "6080" Filtered False Suppressed False Sign False HideValue False
  7328. IsKeyOrphanage False IsTruncated False Blanks False
  7329. Category 985421 "6090" Parent 985171 Levels 982677 Label "VWM" Lastuse 20150818
  7330. SourceValue "6090" Filtered False Suppressed False Sign False HideValue False
  7331. IsKeyOrphanage False IsTruncated False Blanks False
  7332. Category 991205 "unprod. Personal~39340" Parent 985421 Levels 987287 OrderBy Drill 795
  7333. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7334. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7335. IsTruncated False Blanks False
  7336. Category 985173 "80" Parent 985169 Levels 805 Label "WTB" Lastuse 20150818
  7337. SourceValue "80" Filtered False Suppressed False Sign False HideValue False
  7338. IsKeyOrphanage False IsTruncated False Blanks False
  7339. Category 985333 "8010" Parent 985173 Levels 982677 Label "NA" Lastuse 20150818
  7340. SourceValue "8010" Filtered False Suppressed False Sign False HideValue False
  7341. IsKeyOrphanage False IsTruncated False Blanks False
  7342. Category 991725 "unprod. Personal~39360" Parent 985333 Levels 987287 OrderBy Drill 795
  7343. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7344. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7345. IsTruncated False Blanks False
  7346. Category 986373 "8020" Parent 985173 Levels 982677 Label "GA" Lastuse 20150818
  7347. SourceValue "8020" Filtered False Suppressed False Sign False HideValue False
  7348. IsKeyOrphanage False IsTruncated False Blanks False
  7349. Category 992023 "unprod. Personal~39369" Parent 986373 Levels 987287 OrderBy Drill 795
  7350. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7351. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7352. IsTruncated False Blanks False
  7353. Category 985385 "8040" Parent 985173 Levels 982677 Label "SC" Lastuse 20150818
  7354. SourceValue "8040" Filtered False Suppressed False Sign False HideValue False
  7355. IsKeyOrphanage False IsTruncated False Blanks False
  7356. Category 991179 "( Leerstelle )~39339" Parent 985385 Levels 987287 OrderBy Drill 795
  7357. Value "( Leerstelle )" Lastuse 20150818 SourceValue "( Leerstelle )" Filtered False
  7358. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7359. Blanks True
  7360. Category 991431 "prod. Personal~39349" Parent 985385 Levels 987287 OrderBy Drill 795
  7361. Value "prod. Personal" Lastuse 20150818 SourceValue "prod. Personal" Filtered False
  7362. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7363. Blanks False
  7364. Category 991305 "unprod. Personal~39346" Parent 985385 Levels 987287 OrderBy Drill 795
  7365. Value "unprod. Personal" Lastuse 20150818 SourceValue "unprod. Personal"
  7366. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7367. IsTruncated False Blanks False
  7368. Category 986385 "8050" Parent 985173 Levels 982677 Label "TUZ" Lastuse 20150818
  7369. SourceValue "8050" Filtered False Suppressed False Sign False HideValue False
  7370. IsKeyOrphanage False IsTruncated False Blanks False
  7371. Category 991285 "unprod. Personal~39344" Parent 986385 Levels 987287 OrderBy Drill 795
  7372. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7373. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7374. IsTruncated False Blanks False
  7375. Category 985369 "8090" Parent 985173 Levels 982677 Label "VWM" Lastuse 20130905
  7376. SourceValue "8090" Filtered False Suppressed False Sign False HideValue False
  7377. IsKeyOrphanage False IsTruncated False Blanks False
  7378. Category 985175 "70" Parent 985169 Levels 805 Label "LEH" Lastuse 20150818
  7379. SourceValue "70" Filtered False Suppressed False Sign False HideValue False
  7380. IsKeyOrphanage False IsTruncated False Blanks False
  7381. Category 985949 "7010" Parent 985175 Levels 982677 Label "NA" Lastuse 20150818
  7382. SourceValue "7010" Filtered False Suppressed False Sign False HideValue False
  7383. IsKeyOrphanage False IsTruncated False Blanks False
  7384. Category 991667 "unprod. Personal~39359" Parent 985949 Levels 987287 OrderBy Drill 795
  7385. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7386. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7387. IsTruncated False Blanks False
  7388. Category 985409 "7020" Parent 985175 Levels 982677 Label "GA" Lastuse 20150818
  7389. SourceValue "7020" Filtered False Suppressed False Sign False HideValue False
  7390. IsKeyOrphanage False IsTruncated False Blanks False
  7391. Category 991657 "( Leerstelle )~39358" Parent 985409 Levels 987287 OrderBy Drill 795
  7392. Value "( Leerstelle )" Inclusion Suppress Lastuse 20150818 SourceValue "( Leerstelle )"
  7393. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7394. IsTruncated False Blanks True
  7395. Category 991103 "unprod. Personal~39337" Parent 985409 Levels 987287 OrderBy Drill 795
  7396. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7397. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7398. IsTruncated False Blanks False
  7399. Category 986037 "7040" Parent 985175 Levels 982677 Label "SC" Lastuse 20150818
  7400. SourceValue "7040" Filtered False Suppressed False Sign False HideValue False
  7401. IsKeyOrphanage False IsTruncated False Blanks False
  7402. Category 991813 "( Leerstelle )~39368" Parent 986037 Levels 987287 OrderBy Drill 795
  7403. Value "( Leerstelle )" Lastuse 20150818 SourceValue "( Leerstelle )" Filtered False
  7404. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7405. Blanks True
  7406. Category 991743 "prod. Personal~39361" Parent 986037 Levels 987287 OrderBy Drill 795
  7407. Value "prod. Personal" Lastuse 20150818 SourceValue "prod. Personal" Filtered False
  7408. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7409. Blanks False
  7410. Category 991093 "unprod. Personal~39336" Parent 986037 Levels 987287 OrderBy Drill 795
  7411. Value "unprod. Personal" Lastuse 20150818 SourceValue "unprod. Personal"
  7412. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7413. IsTruncated False Blanks False
  7414. Category 986057 "7050" Parent 985175 Levels 982677 Label "TUZ" Lastuse 20150818
  7415. SourceValue "7050" Filtered False Suppressed False Sign False HideValue False
  7416. IsKeyOrphanage False IsTruncated False Blanks False
  7417. Category 991243 "( Leerstelle )~39343" Parent 986057 Levels 987287 OrderBy Drill 795
  7418. Value "( Leerstelle )" Inclusion Suppress Lastuse 20150818 SourceValue "( Leerstelle )"
  7419. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7420. IsTruncated False Blanks True
  7421. Category 991295 "unprod. Personal~39345" Parent 986057 Levels 987287 OrderBy Drill 795
  7422. Value "unprod. Personal" Inclusion Suppress Lastuse 20150818 SourceValue "unprod. Personal"
  7423. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7424. IsTruncated False Blanks False
  7425. Category 985265 "7080" Parent 985175 Levels 982677 Label "KM" Lastuse 20130905
  7426. SourceValue "7080" Filtered False Suppressed False Sign False HideValue False
  7427. IsKeyOrphanage False IsTruncated False Blanks False
  7428. Category 986017 "7090" Parent 985175 Levels 982677 Label "VWM" Lastuse 20130905
  7429. SourceValue "7090" Filtered False Suppressed False Sign False HideValue False
  7430. IsKeyOrphanage False IsTruncated False Blanks False
  7431. Category 986597 "( Leerstelle )~39285" Parent 985169 Levels 805 Lastuse 20150818
  7432. SourceValue "( Leerstelle )" Filtered False Suppressed False Sign False
  7433. HideValue False IsKeyOrphanage False IsTruncated False Blanks True
  7434. Category 992233 "( Leerstelle )~39374" Parent 986597 Levels 982677 Lastuse 20150818
  7435. SourceValue "( Leerstelle )" Filtered False Suppressed False Sign False
  7436. HideValue False IsKeyOrphanage False IsTruncated False Blanks True
  7437. Category 992235 "( Leerstelle )~39375" Parent 992233 Levels 987287 OrderBy Drill 795
  7438. Value "( Leerstelle )" Inclusion Suppress Lastuse 20150818 SourceValue "( Leerstelle )"
  7439. Filtered False Suppressed True Sign False HideValue False IsKeyOrphanage False
  7440. IsTruncated False Blanks True
  7441. MapDrills
  7442. MapDrill 795
  7443. ViewName 797 "Alle Kategorien" Type All ViewUserClass 0
  7444. ViewName 799 "Dimension auslassen" Type Omit ViewUserClass 0
  7445. Dimension 408759 "Monteur_Gruppe" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  7446. DimDefaultCategory 0
  7447. Categories
  7448. Root 408761 "Monteur_Gruppe" Inclusion Generate Lastuse 20150818 Filtered False
  7449. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7450. Blanks False
  7451. Drill 408763 "Nach Monteur_Gruppe" Inclusion Suppress Filtered False Suppressed True
  7452. PrimaryDrill True HideValue False
  7453. Levels 408769 "Monteur_Gruppe" Blanks "( Leerstelle )" DateFunction None
  7454. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  7455. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 408771
  7456. "Monteur_Gruppe" AssociationType Type_Query AssociationRole Role_Source
  7457. AssociationReferenced "Monteur_Gruppe"
  7458. Levels 408773 "Monteur" Blanks "( Leerstelle )" DateFunction None Generate None
  7459. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  7460. Timerank 0 UniqueCategories False UniqueMove False Associations 408775
  7461. "Monteur" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Monteur"
  7462. Associations 688153 "Last Name" AssociationContext 408763 AssociationType Type_Query
  7463. AssociationRole Role_OrderBy AssociationReferenced "Last Name" SortOrder Text
  7464. SortAs Ascending
  7465. Category 992935 "AZIT" Parent 408763 Levels 408769 Inclusion Generate Lastuse 20181031
  7466. SourceValue "AZIT" Filtered False Suppressed False Sign False HideValue False
  7467. IsKeyOrphanage False IsTruncated False Blanks False
  7468. Category 992943 "AZG4" Parent 408763 Levels 408769 Inclusion Generate Lastuse 20180903
  7469. SourceValue "AZG4" Filtered False Suppressed False Sign False HideValue False
  7470. IsKeyOrphanage False IsTruncated False Blanks False
  7471. Category 993833 "AZB" Parent 408763 Levels 408769 Inclusion Generate Lastuse 20181031
  7472. SourceValue "AZB" Filtered False Suppressed False Sign False HideValue False
  7473. IsKeyOrphanage False IsTruncated False Blanks False
  7474. Category 993837 "AZE" Parent 408763 Levels 408769 Inclusion Generate Lastuse 20181031
  7475. SourceValue "AZE" Filtered False Suppressed False Sign False HideValue False
  7476. IsKeyOrphanage False IsTruncated False Blanks False
  7477. Category 993859 "TL PEV" Parent 408763 Levels 408769 Inclusion Generate
  7478. Lastuse 20181031 SourceValue "TL PEV" Filtered False Suppressed False Sign False
  7479. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7480. Category 993865 "KML" Parent 408763 Levels 408769 Inclusion Generate Lastuse 20181031
  7481. SourceValue "KML" Filtered False Suppressed False Sign False HideValue False
  7482. IsKeyOrphanage False IsTruncated False Blanks False
  7483. Category 993887 "WMOZ" Parent 408763 Levels 408769 Lastuse 20190207 SourceValue "WMOZ"
  7484. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7485. IsTruncated False Blanks False
  7486. Category 993889 "WSL Z" Parent 408763 Levels 408769 Inclusion Generate
  7487. Lastuse 20190207 SourceValue "WSL Z" Filtered False Suppressed False Sign False
  7488. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7489. Category 993893 "NZV" Parent 408763 Levels 408769 Inclusion Generate Lastuse 20190207
  7490. SourceValue "NZV" Filtered False Suppressed False Sign False HideValue False
  7491. IsKeyOrphanage False IsTruncated False Blanks False
  7492. Category 993895 "GZV" Parent 408763 Levels 408769 Inclusion Generate Lastuse 20190207
  7493. SourceValue "GZV" Filtered False Suppressed False Sign False HideValue False
  7494. IsKeyOrphanage False IsTruncated False Blanks False
  7495. Category 993897 "AZZ" Parent 408763 Levels 408769 Inclusion Generate Lastuse 20190207
  7496. SourceValue "AZZ" Filtered False Suppressed False Sign False HideValue False
  7497. IsKeyOrphanage False IsTruncated False Blanks False
  7498. Category 988061 "( Leerstelle )" Parent 408763 Levels 408769 Lastuse 20150818
  7499. SourceValue "( Leerstelle )" Filtered False Suppressed False Sign False
  7500. HideValue False IsKeyOrphanage False IsTruncated False Blanks True
  7501. Category 988307 "AUSHILFE" Parent 408763 Levels 408769 Lastuse 20150818
  7502. SourceValue "AUSHILFE" Filtered False Suppressed False Sign False HideValue False
  7503. IsKeyOrphanage False IsTruncated False Blanks False
  7504. Category 989101 "AZG1" Parent 408763 Levels 408769 Inclusion Generate Lastuse 20180903
  7505. SourceValue "AZG1" Filtered False Suppressed False Sign False HideValue False
  7506. IsKeyOrphanage False IsTruncated False Blanks False
  7507. Category 989037 "AZG2" Parent 408763 Levels 408769 Inclusion Generate Lastuse 20180903
  7508. SourceValue "AZG2" Filtered False Suppressed False Sign False HideValue False
  7509. IsKeyOrphanage False IsTruncated False Blanks False
  7510. Category 989057 "AZG3" Parent 408763 Levels 408769 Inclusion Generate Lastuse 20180903
  7511. SourceValue "AZG3" Filtered False Suppressed False Sign False HideValue False
  7512. IsKeyOrphanage False IsTruncated False Blanks False
  7513. Category 988733 "AZK1" Parent 408763 Levels 408769 Inclusion Generate Lastuse 20180903
  7514. SourceValue "AZK1" Filtered False Suppressed False Sign False HideValue False
  7515. IsKeyOrphanage False IsTruncated False Blanks False
  7516. Category 988697 "AZK2" Parent 408763 Levels 408769 Inclusion Generate Lastuse 20180903
  7517. SourceValue "AZK2" Filtered False Suppressed False Sign False HideValue False
  7518. IsKeyOrphanage False IsTruncated False Blanks False
  7519. Category 988669 "AZK3" Parent 408763 Levels 408769 Inclusion Generate Lastuse 20180903
  7520. SourceValue "AZK3" Filtered False Suppressed False Sign False HideValue False
  7521. IsKeyOrphanage False IsTruncated False Blanks False
  7522. Category 988127 "DL" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "DL"
  7523. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7524. IsTruncated False Blanks False
  7525. Category 988205 "GAD" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "GAD"
  7526. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7527. IsTruncated False Blanks False
  7528. Category 990277 "GADT" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "GADT"
  7529. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7530. IsTruncated False Blanks False
  7531. Category 988217 "GAV" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "GAV"
  7532. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7533. IsTruncated False Blanks False
  7534. Category 988229 "GAVE" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "GAVE"
  7535. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7536. IsTruncated False Blanks False
  7537. Category 988415 "GF" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "GF"
  7538. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7539. IsTruncated False Blanks False
  7540. Category 988183 "GL" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "GL"
  7541. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7542. IsTruncated False Blanks False
  7543. Category 988491 "GLA" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "GLA"
  7544. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7545. IsTruncated False Blanks False
  7546. Category 989229 "GWL" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "GWL"
  7547. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7548. IsTruncated False Blanks False
  7549. Category 988403 "HSM" Parent 408763 Levels 408769 Inclusion Generate Lastuse 20190207
  7550. SourceValue "HSM" Filtered False Suppressed False Sign False HideValue False
  7551. IsKeyOrphanage False IsTruncated False Blanks False
  7552. Category 988545 "ITS" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "ITS"
  7553. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7554. IsTruncated False Blanks False
  7555. Category 993939 "KBE E" Parent 408763 Levels 408769 Inclusion Generate
  7556. Lastuse 20201208 SourceValue "KBE E" Filtered False Suppressed False Sign False
  7557. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7558. Category 993941 "KBE P" Parent 408763 Levels 408769 Inclusion Generate
  7559. Lastuse 20201208 SourceValue "KBE P" Filtered False Suppressed False Sign False
  7560. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7561. Category 988153 "KMM" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "KMM"
  7562. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7563. IsTruncated False Blanks False
  7564. Category 988589 "MV" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "MV"
  7565. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7566. IsTruncated False Blanks False
  7567. Category 988103 "NAD" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "NAD"
  7568. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7569. IsTruncated False Blanks False
  7570. Category 988285 "NAG" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "NAG"
  7571. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7572. IsTruncated False Blanks False
  7573. Category 988139 "NAV" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "NAV"
  7574. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7575. IsTruncated False Blanks False
  7576. Category 988533 "PEV" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "PEV"
  7577. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7578. IsTruncated False Blanks False
  7579. Category 988641 "PRODEX" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "PRODEX"
  7580. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7581. IsTruncated False Blanks False
  7582. Category 988479 "QMA" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "QMA"
  7583. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7584. IsTruncated False Blanks False
  7585. Category 988521 "SCA" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "SCA"
  7586. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7587. IsTruncated False Blanks False
  7588. Category 988841 "SCB" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "SCB"
  7589. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7590. IsTruncated False Blanks False
  7591. Category 988877 "SCBI" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "SCBI"
  7592. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7593. IsTruncated False Blanks False
  7594. Category 988921 "SCL" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "SCL"
  7595. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7596. IsTruncated False Blanks False
  7597. Category 989177 "TZL" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "TZL"
  7598. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7599. IsTruncated False Blanks False
  7600. Category 988771 "TZM" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "TZM"
  7601. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7602. IsTruncated False Blanks False
  7603. Category 988115 "VKL" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "VKL"
  7604. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7605. IsTruncated False Blanks False
  7606. Category 988427 "VWM" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "VWM"
  7607. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7608. IsTruncated False Blanks False
  7609. Category 988941 "WMOE" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "WMOE"
  7610. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7611. IsTruncated False Blanks False
  7612. Category 988977 "WMOK" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "WMOK"
  7613. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7614. IsTruncated False Blanks False
  7615. Category 990347 "WMOL" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "WMOL"
  7616. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7617. IsTruncated False Blanks False
  7618. Category 988805 "WMOM" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "WMOM"
  7619. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7620. IsTruncated False Blanks False
  7621. Category 988793 "WSL" Parent 408763 Levels 408769 Lastuse 20150818 SourceValue "WSL"
  7622. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7623. IsTruncated False Blanks False
  7624. SpecialCategory 671535 "671535" Parent 408761 Levels 0 Label "Summe ME, EL, KA, NAGA"
  7625. Lastuse 20110906 Rollup True Filtered False Suppressed False Sign False
  7626. IsKeyOrphanage False IsTruncated False Blanks False
  7627. SpecialCategory 992933 "992933" Parent 408761 Levels 0 Label "AZUBI" Lastuse 20151111
  7628. Rollup True Primary 992937 Primary 992939 Filtered False Suppressed False
  7629. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  7630. SpecialCategory 992937 "992937" Parent 992933 Levels 0 Label "AZUBI gew."
  7631. Lastuse 20151111 Rollup True Primary 989101 Primary 989037 Primary 989057
  7632. Primary 992943 Filtered False Suppressed False Sign False IsKeyOrphanage False
  7633. IsTruncated False Blanks False
  7634. SpecialCategory 992939 "992939" Parent 992933 Levels 0 Label "AZUBI kfm."
  7635. Lastuse 20151111 Rollup True Primary 988733 Primary 988697 Primary 988669
  7636. Primary 992935 Filtered False Suppressed False Sign False IsKeyOrphanage False
  7637. IsTruncated False Blanks False
  7638. SpecialCategory 993827 "993827" Parent 408761 Levels 0 Label "Werkstatt"
  7639. Lastuse 20181031 Rollup True Primary 988805 Primary 993873 Primary 988941
  7640. Primary 993875 Primary 988977 Primary 993877 Primary 990347 Primary 993879
  7641. Primary 988793 Primary 993881 Filtered False Suppressed False Sign False
  7642. IsKeyOrphanage False IsTruncated False Blanks False
  7643. SpecialCategory 993873 "993873" Parent 993827 Levels 0 Label "WMOM" Lastuse 20181031
  7644. Rollup True Calc "WMOM@988805" Filtered False Suppressed False Sign False
  7645. IsKeyOrphanage False IsTruncated False Blanks False
  7646. SpecialCategory 993875 "993875" Parent 993827 Levels 0 Label "WMOE" Lastuse 20181031
  7647. Rollup True Calc "WMOE@988941" Filtered False Suppressed False Sign False
  7648. IsKeyOrphanage False IsTruncated False Blanks False
  7649. SpecialCategory 993877 "993877" Parent 993827 Levels 0 Label "WMOK" Lastuse 20181031
  7650. Rollup True Calc "WMOK@988977" Filtered False Suppressed False Sign False
  7651. IsKeyOrphanage False IsTruncated False Blanks False
  7652. SpecialCategory 993879 "993879" Parent 993827 Levels 0 Label "WMOL" Lastuse 20181031
  7653. Rollup True Calc "WMOL@990347" Filtered False Suppressed False Sign False
  7654. IsKeyOrphanage False IsTruncated False Blanks False
  7655. SpecialCategory 993881 "993881" Parent 993827 Levels 0 Label "WSL" Lastuse 20181031
  7656. Rollup True Calc "WSL@988793" Filtered False Suppressed False Sign False
  7657. IsKeyOrphanage False IsTruncated False Blanks False
  7658. SpecialCategory 993829 "993829" Parent 408761 Levels 0 Label "AZG" Lastuse 20181031
  7659. Rollup True Primary 989101 Primary 989037 Primary 989057 Primary 992943
  7660. Filtered False Suppressed False Sign False IsKeyOrphanage False IsTruncated False
  7661. Blanks False
  7662. SpecialCategory 993831 "993831" Parent 408761 Levels 0 Label "AZK" Lastuse 20181031
  7663. Rollup True Primary 988733 Primary 988697 Primary 988669 Filtered False
  7664. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  7665. SpecialCategory 993835 "993835" Parent 408761 Levels 0 Label "FIBU-AZ"
  7666. Lastuse 20181031 Rollup True Primary 993833 Filtered False Suppressed False
  7667. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  7668. SpecialCategory 993839 "993839" Parent 408761 Levels 0 Label "TuZ-AZ" Lastuse 20181031
  7669. Rollup True Primary 993837 Filtered False Suppressed False Sign False IsKeyOrphanage False
  7670. IsTruncated False Blanks False
  7671. SpecialCategory 993841 "993841" Parent 408761 Levels 0 Label "IT-AZ" Lastuse 20181031
  7672. Rollup True Primary 992935 Filtered False Suppressed False Sign False IsKeyOrphanage False
  7673. IsTruncated False Blanks False
  7674. SpecialCategory 993843 "993843" Parent 408761 Levels 0 Label "Disposition"
  7675. Lastuse 20181031 Rollup True Primary 988127 Primary 988205 Primary 990277
  7676. Primary 988103 Filtered False Suppressed False Sign False IsKeyOrphanage False
  7677. IsTruncated False Blanks False
  7678. SpecialCategory 993845 "993845" Parent 408761 Levels 0 Label "Service-GWL-SCA"
  7679. Lastuse 20181031 Rollup True Primary 989229 Primary 988521 Primary 993939
  7680. Primary 993941 Filtered False Suppressed False Sign False IsKeyOrphanage False
  7681. IsTruncated False Blanks False
  7682. SpecialCategory 993883 "993883" Parent 408761 Levels 0 Label "Service-SCB-SCL"
  7683. Lastuse 20181031 Rollup True Primary 988841 Primary 988877 Primary 988921
  7684. Filtered False Suppressed False Sign False IsKeyOrphanage False IsTruncated False
  7685. Blanks False
  7686. SpecialCategory 993847 "993847" Parent 408761 Levels 0 Label "TuZ" Lastuse 20181031
  7687. Rollup True Primary 989177 Primary 988771 Filtered False Suppressed False
  7688. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  7689. SpecialCategory 993849 "993849" Parent 408761 Levels 0 Label "GAV" Lastuse 20181031
  7690. Rollup True Primary 988217 Primary 988229 Primary 988115 Filtered False
  7691. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  7692. SpecialCategory 993851 "993851" Parent 408761 Levels 0 Label "NAV" Lastuse 20181031
  7693. Rollup True Primary 988139 Primary 988641 Primary 988115 Filtered False
  7694. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  7695. SpecialCategory 993853 "993853" Parent 408761 Levels 0 Label "NAG" Lastuse 20181031
  7696. Rollup True Primary 988285 Filtered False Suppressed False Sign False IsKeyOrphanage False
  7697. IsTruncated False Blanks False
  7698. SpecialCategory 993855 "993855" Parent 408761 Levels 0 Label "FIBU" Lastuse 20181031
  7699. Rollup True Primary 988427 Filtered False Suppressed False Sign False IsKeyOrphanage False
  7700. IsTruncated False Blanks False
  7701. SpecialCategory 993857 "993857" Parent 408761 Levels 0 Label "PEV" Lastuse 20181031
  7702. Rollup True Primary 988533 Primary 993859 Filtered False Suppressed False
  7703. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  7704. SpecialCategory 993861 "993861" Parent 408761 Levels 0 Label "IT" Lastuse 20181031
  7705. Rollup True Primary 988545 Filtered False Suppressed False Sign False IsKeyOrphanage False
  7706. IsTruncated False Blanks False
  7707. SpecialCategory 993863 "993863" Parent 408761 Levels 0 Label "KMM" Lastuse 20181031
  7708. Rollup True Primary 988153 Primary 993865 Primary 988589 Filtered False
  7709. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  7710. SpecialCategory 993867 "993867" Parent 408761 Levels 0 Label "GL" Lastuse 20181031
  7711. Rollup True Primary 988491 Filtered False Suppressed False Sign False IsKeyOrphanage False
  7712. IsTruncated False Blanks False
  7713. SpecialCategory 993869 "993869" Parent 408761 Levels 0 Label "HSM" Lastuse 20181031
  7714. Rollup True Primary 988403 Filtered False Suppressed False Sign False IsKeyOrphanage False
  7715. IsTruncated False Blanks False
  7716. SpecialCategory 993871 "993871" Parent 408761 Levels 0 Label "QMA" Lastuse 20181031
  7717. Rollup True Primary 988479 Filtered False Suppressed False Sign False IsKeyOrphanage False
  7718. IsTruncated False Blanks False
  7719. SpecialCategory 993885 "993885" Parent 408761 Levels 0 Label "Mot. WMOZ/WSL Z"
  7720. Lastuse 20190207 Rollup True Primary 993887 Primary 993889 Filtered False
  7721. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  7722. SpecialCategory 993891 "993891" Parent 408761 Levels 0 Label "Mot. NZV/GZV"
  7723. Lastuse 20190207 Rollup True Primary 993893 Primary 993895 Filtered False
  7724. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  7725. SpecialCategory 993899 "993899" Parent 408761 Levels 0 Label "Mot. AZG/AZZ"
  7726. Lastuse 20190207 Rollup True Primary 993897 Filtered False Suppressed False
  7727. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  7728. MapDrills
  7729. MapDrill 408763
  7730. ViewName 408765 "Alle Kategorien" Type All ViewUserClass 0
  7731. ViewName 408767 "Dimension auslassen" Type Omit ViewUserClass 0
  7732. Dimension 671057 "Monteur Tagesbericht" DimType Regular NewCatsLock False
  7733. ExcludeAutoPartitioning False DimDefaultCategory 0
  7734. Categories
  7735. Root 671059 "Standort" Inclusion Generate Lastuse 20150818 Filtered False
  7736. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7737. Blanks False
  7738. Drill 671061 "Nach Standort" Inclusion Suppress Filtered False Suppressed True
  7739. PrimaryDrill True HideValue False
  7740. Levels 671071 "Monteur_Gruppe" Blanks "( Leerstelle )" DateFunction None
  7741. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  7742. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 671073
  7743. "Monteur_Gruppe" AssociationType Type_Query AssociationRole Role_Source
  7744. AssociationReferenced "Monteur_Gruppe"
  7745. Associations 992453 "Monteur_Gruppe" AssociationContext 671061 AssociationType Type_Query
  7746. AssociationRole Role_OrderBy AssociationReferenced "Monteur_Gruppe" SortOrder Text
  7747. SortAs Ascending
  7748. Levels 671079 "Monteur" Blanks "( Leerstelle )" DateFunction None Generate None
  7749. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  7750. Timerank 0 UniqueCategories False UniqueMove False Associations 671081
  7751. "Monteur" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Monteur"
  7752. Associations 688151 "Last Name" AssociationContext 671061 AssociationType Type_Query
  7753. AssociationRole Role_OrderBy AssociationReferenced "Last Name" SortOrder Text
  7754. SortAs Ascending
  7755. Category 988065 "( Leerstelle )" Parent 671061 Levels 671071 OrderBy Drill 671061
  7756. Value "( Leerstelle )" Lastuse 20150818 SourceValue "( Leerstelle )" Filtered False
  7757. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7758. Blanks True
  7759. Category 988311 "AUSHILFE" Parent 671061 Levels 671071 OrderBy Drill 671061
  7760. Value "AUSHILFE" Lastuse 20150818 SourceValue "AUSHILFE" Filtered False
  7761. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7762. Blanks False
  7763. Category 989105 "AZG1" Parent 671061 Levels 671071 OrderBy Drill 671061
  7764. Value "AZG1" Lastuse 20150818 SourceValue "AZG1" Filtered False Suppressed False
  7765. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7766. Category 989041 "AZG2" Parent 671061 Levels 671071 OrderBy Drill 671061
  7767. Value "AZG2" Lastuse 20150818 SourceValue "AZG2" Filtered False Suppressed False
  7768. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7769. Category 989061 "AZG3" Parent 671061 Levels 671071 OrderBy Drill 671061
  7770. Value "AZG3" Lastuse 20150818 SourceValue "AZG3" Filtered False Suppressed False
  7771. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7772. Category 988737 "AZK1" Parent 671061 Levels 671071 OrderBy Drill 671061
  7773. Value "AZK1" Lastuse 20150818 SourceValue "AZK1" Filtered False Suppressed False
  7774. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7775. Category 988701 "AZK2" Parent 671061 Levels 671071 OrderBy Drill 671061
  7776. Value "AZK2" Lastuse 20150818 SourceValue "AZK2" Filtered False Suppressed False
  7777. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7778. Category 988673 "AZK3" Parent 671061 Levels 671071 OrderBy Drill 671061
  7779. Value "AZK3" Lastuse 20150818 SourceValue "AZK3" Filtered False Suppressed False
  7780. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7781. Category 988131 "DL" Parent 671061 Levels 671071 OrderBy Drill 671061 Value "DL"
  7782. Lastuse 20150818 SourceValue "DL" Filtered False Suppressed False Sign False
  7783. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7784. Category 988209 "GAD" Parent 671061 Levels 671071 OrderBy Drill 671061
  7785. Value "GAD" Lastuse 20150818 SourceValue "GAD" Filtered False Suppressed False
  7786. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7787. Category 990281 "GADT" Parent 671061 Levels 671071 OrderBy Drill 671061
  7788. Value "GADT" Lastuse 20150818 SourceValue "GADT" Filtered False Suppressed False
  7789. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7790. Category 988221 "GAV" Parent 671061 Levels 671071 OrderBy Drill 671061
  7791. Value "GAV" Lastuse 20150818 SourceValue "GAV" Filtered False Suppressed False
  7792. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7793. Category 988233 "GAVE" Parent 671061 Levels 671071 OrderBy Drill 671061
  7794. Value "GAVE" Lastuse 20150818 SourceValue "GAVE" Filtered False Suppressed False
  7795. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7796. Category 988419 "GF" Parent 671061 Levels 671071 OrderBy Drill 671061 Value "GF"
  7797. Lastuse 20150818 SourceValue "GF" Filtered False Suppressed False Sign False
  7798. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7799. Category 988187 "GL" Parent 671061 Levels 671071 OrderBy Drill 671061 Value "GL"
  7800. Lastuse 20150818 SourceValue "GL" Filtered False Suppressed False Sign False
  7801. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7802. Category 988495 "GLA" Parent 671061 Levels 671071 OrderBy Drill 671061
  7803. Value "GLA" Lastuse 20150818 SourceValue "GLA" Filtered False Suppressed False
  7804. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7805. Category 989233 "GWL" Parent 671061 Levels 671071 OrderBy Drill 671061
  7806. Value "GWL" Lastuse 20150818 SourceValue "GWL" Filtered False Suppressed False
  7807. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7808. Category 988407 "HSM" Parent 671061 Levels 671071 OrderBy Drill 671061
  7809. Value "HSM" Lastuse 20150818 SourceValue "HSM" Filtered False Suppressed False
  7810. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7811. Category 988549 "ITS" Parent 671061 Levels 671071 OrderBy Drill 671061
  7812. Value "ITS" Lastuse 20150818 SourceValue "ITS" Filtered False Suppressed False
  7813. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7814. Category 988157 "KMM" Parent 671061 Levels 671071 OrderBy Drill 671061
  7815. Value "KMM" Lastuse 20150818 SourceValue "KMM" Filtered False Suppressed False
  7816. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7817. Category 988593 "MV" Parent 671061 Levels 671071 OrderBy Drill 671061 Value "MV"
  7818. Lastuse 20150818 SourceValue "MV" Filtered False Suppressed False Sign False
  7819. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7820. Category 988107 "NAD" Parent 671061 Levels 671071 OrderBy Drill 671061
  7821. Value "NAD" Lastuse 20150818 SourceValue "NAD" Filtered False Suppressed False
  7822. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7823. Category 988289 "NAG" Parent 671061 Levels 671071 OrderBy Drill 671061
  7824. Value "NAG" Lastuse 20150818 SourceValue "NAG" Filtered False Suppressed False
  7825. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7826. Category 988143 "NAV" Parent 671061 Levels 671071 OrderBy Drill 671061
  7827. Value "NAV" Lastuse 20150818 SourceValue "NAV" Filtered False Suppressed False
  7828. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7829. Category 988537 "PEV" Parent 671061 Levels 671071 OrderBy Drill 671061
  7830. Value "PEV" Lastuse 20150818 SourceValue "PEV" Filtered False Suppressed False
  7831. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7832. Category 988645 "PRODEX" Parent 671061 Levels 671071 OrderBy Drill 671061
  7833. Value "PRODEX" Lastuse 20150818 SourceValue "PRODEX" Filtered False Suppressed False
  7834. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7835. Category 988483 "QMA" Parent 671061 Levels 671071 OrderBy Drill 671061
  7836. Value "QMA" Lastuse 20150818 SourceValue "QMA" Filtered False Suppressed False
  7837. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7838. Category 988525 "SCA" Parent 671061 Levels 671071 OrderBy Drill 671061
  7839. Value "SCA" Lastuse 20150818 SourceValue "SCA" Filtered False Suppressed False
  7840. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7841. Category 988845 "SCB" Parent 671061 Levels 671071 OrderBy Drill 671061
  7842. Value "SCB" Lastuse 20150818 SourceValue "SCB" Filtered False Suppressed False
  7843. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7844. Category 988881 "SCBI" Parent 671061 Levels 671071 OrderBy Drill 671061
  7845. Value "SCBI" Lastuse 20150818 SourceValue "SCBI" Filtered False Suppressed False
  7846. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7847. Category 988925 "SCL" Parent 671061 Levels 671071 OrderBy Drill 671061
  7848. Value "SCL" Lastuse 20150818 SourceValue "SCL" Filtered False Suppressed False
  7849. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7850. Category 989181 "TZL" Parent 671061 Levels 671071 OrderBy Drill 671061
  7851. Value "TZL" Lastuse 20150818 SourceValue "TZL" Filtered False Suppressed False
  7852. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7853. Category 988775 "TZM" Parent 671061 Levels 671071 OrderBy Drill 671061
  7854. Value "TZM" Lastuse 20150818 SourceValue "TZM" Filtered False Suppressed False
  7855. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7856. Category 988119 "VKL" Parent 671061 Levels 671071 OrderBy Drill 671061
  7857. Value "VKL" Lastuse 20150818 SourceValue "VKL" Filtered False Suppressed False
  7858. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7859. Category 988431 "VWM" Parent 671061 Levels 671071 OrderBy Drill 671061
  7860. Value "VWM" Lastuse 20150818 SourceValue "VWM" Filtered False Suppressed False
  7861. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7862. Category 988945 "WMOE" Parent 671061 Levels 671071 OrderBy Drill 671061
  7863. Value "WMOE" Lastuse 20150818 SourceValue "WMOE" Filtered False Suppressed False
  7864. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7865. Category 988981 "WMOK" Parent 671061 Levels 671071 OrderBy Drill 671061
  7866. Value "WMOK" Lastuse 20150818 SourceValue "WMOK" Filtered False Suppressed False
  7867. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7868. Category 990351 "WMOL" Parent 671061 Levels 671071 OrderBy Drill 671061
  7869. Value "WMOL" Lastuse 20150818 SourceValue "WMOL" Filtered False Suppressed False
  7870. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7871. Category 988809 "WMOM" Parent 671061 Levels 671071 OrderBy Drill 671061
  7872. Value "WMOM" Lastuse 20150818 SourceValue "WMOM" Filtered False Suppressed False
  7873. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7874. Category 988797 "WSL" Parent 671061 Levels 671071 OrderBy Drill 671061
  7875. Value "WSL" Lastuse 20150818 SourceValue "WSL" Filtered False Suppressed False
  7876. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  7877. MapDrills
  7878. MapDrill 671061
  7879. ViewName 671063 "Alle Kategorien" Type All ViewUserClass 0
  7880. ViewName 671065 "Dimension auslassen" Type Omit ViewUserClass 0
  7881. Dimension 688321 "Kostenstelle" DimType Regular NewCatsLock False ExcludeAutoPartitioning False
  7882. DimDefaultCategory 0
  7883. Categories
  7884. Root 688323 "Department No" Inclusion Generate Lastuse 20150818 Filtered False
  7885. Suppressed False Sign False HideValue False IsKeyOrphanage False IsTruncated False
  7886. Blanks False
  7887. Drill 688325 "Nach Department No" Inclusion Suppress Filtered False Suppressed True
  7888. PrimaryDrill True HideValue False
  7889. Levels 688331 "Department No" Blanks "( Leerstelle )" DateFunction None
  7890. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  7891. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 688333
  7892. "Department No" AssociationType Type_Query AssociationRole Role_Source
  7893. AssociationReferenced "Department No"
  7894. Levels 688335 "Monteur" Blanks "( Leerstelle )" DateFunction None Generate None
  7895. RefreshLabel False RefreshDescription False RefreshShortName False NewCatsLock False
  7896. Timerank 0 UniqueCategories False UniqueMove False Associations 688337
  7897. "Monteur" AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Monteur"
  7898. Associations 688339 "Last Name" AssociationContext 688325 AssociationType Type_Query
  7899. AssociationRole Role_OrderBy AssociationReferenced "Last Name" SortOrder Text
  7900. SortAs Ascending
  7901. Category 985023 "( Leerstelle )" Parent 688325 Levels 688331 Lastuse 20150818
  7902. SourceValue "( Leerstelle )" Filtered False Suppressed False Sign False
  7903. HideValue False IsKeyOrphanage False IsTruncated False Blanks True
  7904. Category 688561 "1010" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "1010"
  7905. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7906. IsTruncated False Blanks False
  7907. Category 987277 "1011" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "1011"
  7908. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7909. IsTruncated False Blanks False
  7910. Category 689037 "1020" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "1020"
  7911. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7912. IsTruncated False Blanks False
  7913. Category 688447 "1040" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "1040"
  7914. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7915. IsTruncated False Blanks False
  7916. Category 688545 "1050" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "1050"
  7917. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7918. IsTruncated False Blanks False
  7919. Category 689485 "1080" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "1080"
  7920. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7921. IsTruncated False Blanks False
  7922. Category 688529 "1090" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "1090"
  7923. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7924. IsTruncated False Blanks False
  7925. Category 688961 "3010" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "3010"
  7926. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7927. IsTruncated False Blanks False
  7928. Category 689767 "3020" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "3020"
  7929. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7930. IsTruncated False Blanks False
  7931. Category 688863 "3040" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "3040"
  7932. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7933. IsTruncated False Blanks False
  7934. Category 689427 "3050" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "3050"
  7935. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7936. IsTruncated False Blanks False
  7937. Category 689723 "3090" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "3090"
  7938. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7939. IsTruncated False Blanks False
  7940. Category 688577 "4010" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "4010"
  7941. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7942. IsTruncated False Blanks False
  7943. Category 689943 "4020" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "4020"
  7944. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7945. IsTruncated False Blanks False
  7946. Category 688431 "4040" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "4040"
  7947. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7948. IsTruncated False Blanks False
  7949. Category 688763 "4050" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "4050"
  7950. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7951. IsTruncated False Blanks False
  7952. Category 690265 "4090" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "4090"
  7953. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7954. IsTruncated False Blanks False
  7955. Category 688719 "5010" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "5010"
  7956. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7957. IsTruncated False Blanks False
  7958. Category 689053 "5020" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "5020"
  7959. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7960. IsTruncated False Blanks False
  7961. Category 688593 "5040" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "5040"
  7962. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7963. IsTruncated False Blanks False
  7964. Category 688893 "5050" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "5050"
  7965. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7966. IsTruncated False Blanks False
  7967. Category 688825 "5090" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "5090"
  7968. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7969. IsTruncated False Blanks False
  7970. Category 985189 "6010" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "6010"
  7971. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7972. IsTruncated False Blanks False
  7973. Category 985305 "6020" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "6020"
  7974. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7975. IsTruncated False Blanks False
  7976. Category 985613 "6040" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "6040"
  7977. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7978. IsTruncated False Blanks False
  7979. Category 985557 "6050" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "6050"
  7980. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7981. IsTruncated False Blanks False
  7982. Category 985289 "6080" Parent 688325 Levels 688331 Lastuse 20130905 SourceValue "6080"
  7983. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7984. IsTruncated False Blanks False
  7985. Category 985433 "6090" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "6090"
  7986. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7987. IsTruncated False Blanks False
  7988. Category 985957 "7010" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "7010"
  7989. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7990. IsTruncated False Blanks False
  7991. Category 985417 "7020" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "7020"
  7992. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7993. IsTruncated False Blanks False
  7994. Category 986045 "7040" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "7040"
  7995. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7996. IsTruncated False Blanks False
  7997. Category 986065 "7050" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "7050"
  7998. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  7999. IsTruncated False Blanks False
  8000. Category 985277 "7080" Parent 688325 Levels 688331 Lastuse 20130905 SourceValue "7080"
  8001. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  8002. IsTruncated False Blanks False
  8003. Category 986025 "7090" Parent 688325 Levels 688331 Lastuse 20130905 SourceValue "7090"
  8004. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  8005. IsTruncated False Blanks False
  8006. Category 985345 "8010" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "8010"
  8007. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  8008. IsTruncated False Blanks False
  8009. Category 986381 "8020" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "8020"
  8010. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  8011. IsTruncated False Blanks False
  8012. Category 985397 "8040" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "8040"
  8013. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  8014. IsTruncated False Blanks False
  8015. Category 986393 "8050" Parent 688325 Levels 688331 Lastuse 20150818 SourceValue "8050"
  8016. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  8017. IsTruncated False Blanks False
  8018. Category 985381 "8090" Parent 688325 Levels 688331 Lastuse 20130905 SourceValue "8090"
  8019. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  8020. IsTruncated False Blanks False
  8021. Category 993805 "993805" Parent 688325 Levels 688331 Inclusion Generate
  8022. Lastuse 20181012 SourceValue "9010" Filtered False Suppressed False Sign False
  8023. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  8024. Category 993807 "993807" Parent 688325 Levels 688331 Inclusion Generate
  8025. Lastuse 20181012 SourceValue "9020" Filtered False Suppressed False Sign False
  8026. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  8027. Category 993809 "993809" Parent 688325 Levels 688331 Inclusion Generate
  8028. Lastuse 20181012 SourceValue "9040" Filtered False Suppressed False Sign False
  8029. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  8030. Category 993811 "993811" Parent 688325 Levels 688331 Inclusion Generate
  8031. Lastuse 20181012 SourceValue "9050" Filtered False Suppressed False Sign False
  8032. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  8033. Category 993813 "993813" Parent 688325 Levels 688331 Inclusion Generate
  8034. Lastuse 20181012 SourceValue "9090" Filtered False Suppressed False Sign False
  8035. HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  8036. SpecialCategory 982495 "982495" Parent 688323 Levels 0 Label "Kostenstellen"
  8037. Lastuse 20150818 Rollup True Primary 982497 Primary 985055 Primary 982499
  8038. Primary 982501 Primary 982503 Primary 982505 Filtered False Suppressed False
  8039. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  8040. SpecialCategory 982497 "982497" Parent 982495 Levels 0 Label "NA" Lastuse 20150818
  8041. Rollup True Primary 688561 Primary 987277 Primary 688961 Primary 688577
  8042. Primary 688719 Primary 985189 Primary 985957 Primary 985345 Primary 993805
  8043. Filtered False Suppressed False Sign False IsKeyOrphanage False IsTruncated False
  8044. Blanks False
  8045. SpecialCategory 985055 "985055" Parent 982495 Levels 0 Label "GA" Lastuse 20150818
  8046. Rollup True Primary 689037 Primary 689767 Primary 689943 Primary 689053
  8047. Primary 985305 Primary 985417 Primary 986381 Primary 993807 Filtered False
  8048. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  8049. SpecialCategory 982499 "982499" Parent 982495 Levels 0 Label "SC" Lastuse 20150818
  8050. Rollup True Primary 688447 Primary 688863 Primary 688431 Primary 688593
  8051. Primary 985613 Primary 986045 Primary 985397 Primary 993809 Filtered False
  8052. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  8053. SpecialCategory 982501 "982501" Parent 982495 Levels 0 Label "TUZ" Lastuse 20150818
  8054. Rollup True Primary 688545 Primary 689427 Primary 688763 Primary 688893
  8055. Primary 985557 Primary 986065 Primary 986393 Primary 993811 Filtered False
  8056. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  8057. SpecialCategory 982503 "982503" Parent 982495 Levels 0 Label "KM" Lastuse 20150818
  8058. Rollup True Primary 689485 Primary 985289 Primary 985277 Filtered False
  8059. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  8060. SpecialCategory 982505 "982505" Parent 982495 Levels 0 Label "VWM" Lastuse 20150818
  8061. Rollup True Primary 688529 Primary 689723 Primary 690265 Primary 688825
  8062. Primary 985433 Primary 986025 Primary 985381 Primary 993813 Filtered False
  8063. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  8064. SpecialCategory 982617 "982617" Parent 688323 Levels 0 Label "AHR" Lastuse 20150818
  8065. Rollup True Primary 982621 Primary 982623 Primary 982625 Primary 982627
  8066. Primary 993815 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8067. IsTruncated False Blanks False
  8068. SpecialCategory 982621 "982621" Parent 982617 Levels 0 Label "MM" Lastuse 20150818
  8069. Rollup True Primary 982629 Primary 982631 Primary 982633 Primary 982635
  8070. Primary 982645 Primary 982647 Filtered False Suppressed False Sign False
  8071. IsKeyOrphanage False IsTruncated False Blanks False
  8072. SpecialCategory 982629 "982629" Parent 982621 Levels 0 Label "NA" Lastuse 20150818
  8073. Rollup True Primary 688561 Primary 987277 Filtered False Suppressed False
  8074. Sign False IsKeyOrphanage False IsTruncated False Blanks False
  8075. SpecialCategory 982631 "982631" Parent 982621 Levels 0 Label "GA" Lastuse 20150818
  8076. Rollup True Primary 689037 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8077. IsTruncated False Blanks False
  8078. SpecialCategory 982633 "982633" Parent 982621 Levels 0 Label "TUZ" Lastuse 20150818
  8079. Rollup True Primary 688545 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8080. IsTruncated False Blanks False
  8081. SpecialCategory 982635 "982635" Parent 982621 Levels 0 Label "SC" Lastuse 20150818
  8082. Rollup True Primary 688447 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8083. IsTruncated False Blanks False
  8084. SpecialCategory 982645 "982645" Parent 982621 Levels 0 Label "KM" Lastuse 20150818
  8085. Rollup True Primary 689485 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8086. IsTruncated False Blanks False
  8087. SpecialCategory 982647 "982647" Parent 982621 Levels 0 Label "VWM" Lastuse 20150818
  8088. Rollup True Primary 688529 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8089. IsTruncated False Blanks False
  8090. SpecialCategory 982623 "982623" Parent 982617 Levels 0 Label "KRU" Lastuse 20150818
  8091. Rollup True Primary 982637 Primary 982639 Primary 982641 Primary 982643
  8092. Primary 982649 Primary 982651 Filtered False Suppressed False Sign False
  8093. IsKeyOrphanage False IsTruncated False Blanks False
  8094. SpecialCategory 982637 "982637" Parent 982623 Levels 0 Label "NA" Lastuse 20150818
  8095. Rollup True Primary 688961 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8096. IsTruncated False Blanks False
  8097. SpecialCategory 982639 "982639" Parent 982623 Levels 0 Label "GA" Lastuse 20150818
  8098. Rollup True Primary 689767 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8099. IsTruncated False Blanks False
  8100. SpecialCategory 982641 "982641" Parent 982623 Levels 0 Label "TUZ" Lastuse 20150818
  8101. Rollup True Primary 689427 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8102. IsTruncated False Blanks False
  8103. SpecialCategory 982643 "982643" Parent 982623 Levels 0 Label "SC" Lastuse 20150818
  8104. Rollup True Primary 688863 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8105. IsTruncated False Blanks False
  8106. SpecialCategory 982649 "982649" Parent 982623 Levels 0 Label "KM" Lastuse 20120816
  8107. Rollup True Filtered False Suppressed False Sign False IsKeyOrphanage False
  8108. IsTruncated False Blanks False
  8109. SpecialCategory 982651 "982651" Parent 982623 Levels 0 Label "VWM" Lastuse 20150818
  8110. Rollup True Primary 689723 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8111. IsTruncated False Blanks False
  8112. SpecialCategory 982625 "982625" Parent 982617 Levels 0 Label "ULM" Lastuse 20150818
  8113. Rollup True Primary 982653 Primary 982655 Primary 982657 Primary 982659
  8114. Primary 982661 Primary 982663 Filtered False Suppressed False Sign False
  8115. IsKeyOrphanage False IsTruncated False Blanks False
  8116. SpecialCategory 982653 "982653" Parent 982625 Levels 0 Label "NA" Lastuse 20150818
  8117. Rollup True Primary 688577 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8118. IsTruncated False Blanks False
  8119. SpecialCategory 982655 "982655" Parent 982625 Levels 0 Label "GA" Lastuse 20150818
  8120. Rollup True Primary 689943 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8121. IsTruncated False Blanks False
  8122. SpecialCategory 982657 "982657" Parent 982625 Levels 0 Label "TUZ" Lastuse 20150818
  8123. Rollup True Primary 688763 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8124. IsTruncated False Blanks False
  8125. SpecialCategory 982659 "982659" Parent 982625 Levels 0 Label "SC" Lastuse 20150818
  8126. Rollup True Primary 688431 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8127. IsTruncated False Blanks False
  8128. SpecialCategory 982661 "982661" Parent 982625 Levels 0 Label "KM" Lastuse 20120816
  8129. Rollup True Filtered False Suppressed False Sign False IsKeyOrphanage False
  8130. IsTruncated False Blanks False
  8131. SpecialCategory 982663 "982663" Parent 982625 Levels 0 Label "VWM" Lastuse 20150818
  8132. Rollup True Primary 690265 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8133. IsTruncated False Blanks False
  8134. SpecialCategory 982627 "982627" Parent 982617 Levels 0 Label "LL" Lastuse 20150818
  8135. Rollup True Primary 982665 Primary 982667 Primary 982669 Primary 982671
  8136. Primary 982673 Primary 982675 Filtered False Suppressed False Sign False
  8137. IsKeyOrphanage False IsTruncated False Blanks False
  8138. SpecialCategory 982665 "982665" Parent 982627 Levels 0 Label "NA" Lastuse 20150818
  8139. Rollup True Primary 688719 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8140. IsTruncated False Blanks False
  8141. SpecialCategory 982667 "982667" Parent 982627 Levels 0 Label "GA" Lastuse 20150818
  8142. Rollup True Primary 689053 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8143. IsTruncated False Blanks False
  8144. SpecialCategory 982669 "982669" Parent 982627 Levels 0 Label "TUZ" Lastuse 20150818
  8145. Rollup True Primary 688763 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8146. IsTruncated False Blanks False
  8147. SpecialCategory 982671 "982671" Parent 982627 Levels 0 Label "SC" Lastuse 20150818
  8148. Rollup True Primary 688593 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8149. IsTruncated False Blanks False
  8150. SpecialCategory 982673 "982673" Parent 982627 Levels 0 Label "KM" Lastuse 20120816
  8151. Rollup True Filtered False Suppressed False Sign False IsKeyOrphanage False
  8152. IsTruncated False Blanks False
  8153. SpecialCategory 982675 "982675" Parent 982627 Levels 0 Label "VWM" Lastuse 20150818
  8154. Rollup True Primary 688825 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8155. IsTruncated False Blanks False
  8156. SpecialCategory 993815 "993815" Parent 982617 Levels 0 Label "GZ" Lastuse 20181012
  8157. Rollup True Primary 993817 Primary 993819 Primary 993823 Primary 993821
  8158. Primary 993825 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8159. IsTruncated False Blanks False
  8160. SpecialCategory 993817 "993817" Parent 993815 Levels 0 Label "NA" Lastuse 20181012
  8161. Rollup True Primary 993805 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8162. IsTruncated False Blanks False
  8163. SpecialCategory 993819 "993819" Parent 993815 Levels 0 Label "GA" Lastuse 20181012
  8164. Rollup True Primary 993807 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8165. IsTruncated False Blanks False
  8166. SpecialCategory 993823 "993823" Parent 993815 Levels 0 Label "SC" Lastuse 20181012
  8167. Rollup True Primary 993809 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8168. IsTruncated False Blanks False
  8169. SpecialCategory 993821 "993821" Parent 993815 Levels 0 Label "TUZ" Lastuse 20181012
  8170. Rollup True Primary 993811 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8171. IsTruncated False Blanks False
  8172. SpecialCategory 993825 "993825" Parent 993815 Levels 0 Label "VWM" Lastuse 20181012
  8173. Rollup True Primary 993813 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8174. IsTruncated False Blanks False
  8175. SpecialCategory 986653 "986653" Parent 688323 Levels 0 Label "AHA" Lastuse 20150818
  8176. Rollup True Primary 986655 Primary 986657 Primary 986659 Filtered False
  8177. Suppressed False Sign False IsKeyOrphanage False IsTruncated False Blanks False
  8178. SpecialCategory 986655 "986655" Parent 986653 Levels 0 Label "GÖG" Lastuse 20150818
  8179. Rollup True Primary 986661 Primary 986663 Primary 986665 Primary 986667
  8180. Primary 986669 Primary 986671 Filtered False Suppressed False Sign False
  8181. IsKeyOrphanage False IsTruncated False Blanks False
  8182. SpecialCategory 986661 "986661" Parent 986655 Levels 0 Label "NA" Lastuse 20150818
  8183. Rollup True Primary 985189 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8184. IsTruncated False Blanks False
  8185. SpecialCategory 986663 "986663" Parent 986655 Levels 0 Label "GA" Lastuse 20150818
  8186. Rollup True Primary 985305 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8187. IsTruncated False Blanks False
  8188. SpecialCategory 986665 "986665" Parent 986655 Levels 0 Label "TUZ" Lastuse 20150818
  8189. Rollup True Primary 985557 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8190. IsTruncated False Blanks False
  8191. SpecialCategory 986667 "986667" Parent 986655 Levels 0 Label "SC" Lastuse 20150818
  8192. Rollup True Primary 985613 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8193. IsTruncated False Blanks False
  8194. SpecialCategory 986669 "986669" Parent 986655 Levels 0 Label "KM" Lastuse 20150818
  8195. Rollup True Primary 985289 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8196. IsTruncated False Blanks False
  8197. SpecialCategory 986671 "986671" Parent 986655 Levels 0 Label "VWM" Lastuse 20150818
  8198. Rollup True Primary 985433 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8199. IsTruncated False Blanks False
  8200. SpecialCategory 986657 "986657" Parent 986653 Levels 0 Label "WTB" Lastuse 20150818
  8201. Rollup True Primary 986673 Primary 986675 Primary 986677 Primary 986679
  8202. Primary 986681 Primary 986683 Filtered False Suppressed False Sign False
  8203. IsKeyOrphanage False IsTruncated False Blanks False
  8204. SpecialCategory 986673 "986673" Parent 986657 Levels 0 Label "NA" Lastuse 20150818
  8205. Rollup True Primary 985345 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8206. IsTruncated False Blanks False
  8207. SpecialCategory 986675 "986675" Parent 986657 Levels 0 Label "GA" Lastuse 20150818
  8208. Rollup True Primary 986381 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8209. IsTruncated False Blanks False
  8210. SpecialCategory 986677 "986677" Parent 986657 Levels 0 Label "TUZ" Lastuse 20150818
  8211. Rollup True Primary 986393 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8212. IsTruncated False Blanks False
  8213. SpecialCategory 986679 "986679" Parent 986657 Levels 0 Label "SC" Lastuse 20150818
  8214. Rollup True Primary 985397 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8215. IsTruncated False Blanks False
  8216. SpecialCategory 986681 "986681" Parent 986657 Levels 0 Label "KM" Lastuse 20130905
  8217. Rollup True Filtered False Suppressed False Sign False IsKeyOrphanage False
  8218. IsTruncated False Blanks False
  8219. SpecialCategory 986683 "986683" Parent 986657 Levels 0 Label "VWM" Lastuse 20150818
  8220. Rollup True Primary 985381 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8221. IsTruncated False Blanks False
  8222. SpecialCategory 986659 "986659" Parent 986653 Levels 0 Label "LEH" Lastuse 20150818
  8223. Rollup True Primary 986685 Primary 986687 Primary 986689 Primary 986691
  8224. Primary 986693 Primary 986695 Filtered False Suppressed False Sign False
  8225. IsKeyOrphanage False IsTruncated False Blanks False
  8226. SpecialCategory 986685 "986685" Parent 986659 Levels 0 Label "NA" Lastuse 20150818
  8227. Rollup True Primary 985957 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8228. IsTruncated False Blanks False
  8229. SpecialCategory 986687 "986687" Parent 986659 Levels 0 Label "GA" Lastuse 20150818
  8230. Rollup True Primary 985417 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8231. IsTruncated False Blanks False
  8232. SpecialCategory 986689 "986689" Parent 986659 Levels 0 Label "TUZ" Lastuse 20150818
  8233. Rollup True Primary 986065 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8234. IsTruncated False Blanks False
  8235. SpecialCategory 986691 "986691" Parent 986659 Levels 0 Label "SC" Lastuse 20150818
  8236. Rollup True Primary 986045 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8237. IsTruncated False Blanks False
  8238. SpecialCategory 986693 "986693" Parent 986659 Levels 0 Label "KM" Lastuse 20150818
  8239. Rollup True Primary 985277 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8240. IsTruncated False Blanks False
  8241. SpecialCategory 986695 "986695" Parent 986659 Levels 0 Label "VWM" Lastuse 20150818
  8242. Rollup True Primary 986025 Filtered False Suppressed False Sign False IsKeyOrphanage False
  8243. IsTruncated False Blanks False
  8244. MapDrills
  8245. MapDrill 688325
  8246. ViewName 688327 "Alle Kategorien" Type All ViewUserClass 0
  8247. ViewName 688329 "Dimension auslassen" Type Omit ViewUserClass 0
  8248. Dimension 986983 "produktiv/unproduktiv" DimType Regular NewCatsLock False
  8249. ExcludeAutoPartitioning False DimDefaultCategory 0
  8250. Categories
  8251. Root 986985 "produktiv/unproduktiv" Inclusion Generate Lastuse 20150818
  8252. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  8253. IsTruncated False Blanks False
  8254. Drill 986987 "Nach produktiv/unproduktiv" Inclusion Suppress Filtered False
  8255. Suppressed True PrimaryDrill True HideValue False
  8256. Levels 986993 "produktiv/unproduktiv" Blanks "( Leerstelle )" DateFunction None
  8257. Generate None RefreshLabel False RefreshDescription False RefreshShortName False
  8258. NewCatsLock False Timerank 0 UniqueCategories False UniqueMove False Associations 986995
  8259. "produktiv/unproduktiv" AssociationType Type_Query AssociationRole Role_Source
  8260. AssociationReferenced "produktiv/unproduktiv"
  8261. Category 986997 "prod. Personal" Parent 986987 Levels 986993 Inclusion Generate
  8262. Lastuse 20150818 SourceValue "prod. Personal" Filtered False Suppressed False
  8263. Sign False HideValue False IsKeyOrphanage False IsTruncated False Blanks False
  8264. Category 986999 "986999" Parent 986987 Levels 986993 Lastuse 20150818 SourceValue "unprod. Personal"
  8265. Filtered False Suppressed False Sign False HideValue False IsKeyOrphanage False
  8266. IsTruncated False Blanks False
  8267. Category 988071 "( Leerstelle )" Parent 986987 Levels 986993 Lastuse 20150818
  8268. SourceValue "( Leerstelle )" Filtered False Suppressed False Sign False
  8269. HideValue False IsKeyOrphanage False IsTruncated False Blanks True
  8270. MapDrills
  8271. MapDrill 986987
  8272. ViewName 986989 "Alle Kategorien" Type All ViewUserClass 0
  8273. ViewName 986991 "Dimension auslassen" Type Omit ViewUserClass 0
  8274. Measure 688341 "Urlaubsanspruch" IgnoreMissingValue False Storage Float64
  8275. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8276. Format "#,##0~1" DrillThrough False EndList Associations 688343 "Urlaubsanspruch"
  8277. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Urlaubsanspruch"
  8278. Measure 688345 "Urlaubsübertrag Vorjahr" IgnoreMissingValue False Storage Float64
  8279. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8280. Format "#,##0~1" DrillThrough False EndList Associations 688347 "Urlaubsübertrag Vorjahr"
  8281. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Urlaubsübertrag Vorjahr"
  8282. Measure 688357 "bisher genommener Urlaub" IgnoreMissingValue False Storage Float64
  8283. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8284. Format "#,##0~1" DrillThrough False EndList Associations 688359 "bisher genommener Urlaub"
  8285. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "bisher genommener Urlaub"
  8286. Measure 688353 "Resturlaub" IgnoreMissingValue False Storage Float64 OutPutScale 0
  8287. Decimals 3 ReverseSign False IsCurrency False IsFolder False Format "#,##0~1"
  8288. DrillThrough False EndList Associations 688355 "Resturlaub" AssociationType Type_Query
  8289. AssociationRole Role_Source AssociationReferenced "Resturlaub"
  8290. Measure 688349 "Gesamturlaubsanspruch" IgnoreMissingValue False Storage Float64
  8291. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8292. Format "#,##0~1" DrillThrough False EndList Associations 688351 "Gesamturlaubsanspruch"
  8293. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Gesamturlaubsanspruch"
  8294. Measure 688365 "geplanter Urlaub" IgnoreMissingValue False Storage Float64
  8295. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8296. Format "#,##0~1" DrillThrough False EndList Associations 688367 "geplanter Urlaub"
  8297. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "geplanter Urlaub"
  8298. Measure 688361 "Resturlaub bis Jahresende" IgnoreMissingValue False Storage Float64
  8299. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8300. Format "#,##0~1" DrillThrough False EndList Associations 688363 "Resturlaub bis Jahresende"
  8301. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Resturlaub bis Jahresende"
  8302. Measure 986943 "Krank gesamt" IgnoreMissingValue False Storage Float64
  8303. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8304. Format "#,##0~2" DrillThrough False EndList Associations 986945 "Krank gesamt"
  8305. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Krank gesamt"
  8306. Measure 986947 "Urlaub gesamt" IgnoreMissingValue False Storage Float64
  8307. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8308. Format "#,##0~2" DrillThrough False EndList Associations 986949 "Urlaub gesamt"
  8309. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Urlaub gesamt"
  8310. Measure 986951 "Schulung extern" IgnoreMissingValue False Storage Float64
  8311. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8312. Format "#,##0~2" DrillThrough False EndList Associations 986953 "Schulung extern"
  8313. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Schulung extern"
  8314. Measure 986955 "Krank Tage" IgnoreMissingValue False Storage Float64 OutPutScale 0
  8315. Decimals 3 ReverseSign False IsCurrency False IsFolder False Format "#,##0~1"
  8316. DrillThrough False EndList Associations 986957 "Krank Tage bereinigt" AssociationType Type_Query
  8317. AssociationRole Role_Source AssociationReferenced "Krank Tage bereinigt"
  8318. Measure 986959 "Krank Tage ohne AUB" IgnoreMissingValue False Storage Float64
  8319. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8320. Format "#,##0~1" DrillThrough False EndList Associations 986961 "Krank Tage ohne AUB bereinigt"
  8321. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Krank Tage ohne AUB bereinigt"
  8322. Measure 986963 "Krank Tage ohne LFZ" IgnoreMissingValue False Storage Float64
  8323. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8324. Format "#,##0~1" DrillThrough False EndList Associations 986965 "Krank Tage ohne LFZ bereinigt"
  8325. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Krank Tage ohne LFZ bereinigt"
  8326. Measure 986967 "Krank Tage Kur" IgnoreMissingValue False Storage Float64
  8327. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8328. Format "#,##0~1" DrillThrough False EndList Associations 986969 "Krank Tage Kur bereinigt"
  8329. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Krank Tage Kur bereinigt"
  8330. Measure 987001 "Sollzeit" IgnoreMissingValue False Storage Float64 OutPutScale 0
  8331. Decimals 3 ReverseSign False IsCurrency False IsFolder False Format "#,##0~2"
  8332. DrillThrough False EndList Associations 987003 "Sollzeit" AssociationType Type_Query
  8333. AssociationRole Role_Source AssociationReferenced "Sollzeit"
  8334. Measure 987005 "Summe Sollzeit für Tag" IgnoreMissingValue False Storage Float64
  8335. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8336. Format "#,##0~2" DrillThrough False EndList Associations 987007 "Summe Sollzeit für Tag"
  8337. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Summe Sollzeit für Tag"
  8338. Measure 987009 "Anwesenheit" IgnoreMissingValue False Storage Float64 OutPutScale 0
  8339. Decimals 3 ReverseSign False IsCurrency False IsFolder False Format "#,##0~2"
  8340. DrillThrough False EndList Associations 987011 "Anwesenheit" AssociationType Type_Query
  8341. AssociationRole Role_Source AssociationReferenced "Anwesenheit"
  8342. Measure 987265 "Krank Tage Gesamt" Calc "Krank Tage@986955" + "Krank Tage ohne AUB@986959" + "Krank Tage ohne LFZ@986963" + "Krank Tage Kur@986967" IgnoreMissingValue False
  8343. Storage Default OutPutScale 0 Decimals 0 ReverseSign False IsCurrency False
  8344. IsFolder False Format "#,##0~1" DrillThrough False EndList
  8345. Measure 987273 "Schulung extern Tage" IgnoreMissingValue False Storage Float64
  8346. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8347. Format "#,##0~1" DrillThrough False EndList Associations 987275 "Schulung extern Tage"
  8348. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Schulung extern Tage"
  8349. Measure 992683 "Überstunden" IgnoreMissingValue False Storage Float64 OutPutScale 0
  8350. Decimals 3 ReverseSign False IsCurrency False IsFolder False Format "#,##0~2"
  8351. DrillThrough False EndList Associations 992685 "Überstunden" AssociationType Type_Query
  8352. AssociationRole Role_Source AssociationReferenced "Überstunden"
  8353. Measure 992687 "ausbezahlte Überstunden" IgnoreMissingValue False Storage Float64
  8354. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8355. Format "#,##0~2" DrillThrough False EndList Associations 992689 "ausbezahlte Überstunden"
  8356. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "ausbezahlte Überstunden"
  8357. Measure 992929 "Sollzeit in Tagen" IgnoreMissingValue False Storage Float64
  8358. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8359. Format "#,##0~0" DrillThrough False EndList Associations 992931 "Sollzeit in Tagen"
  8360. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Sollzeit in Tagen"
  8361. Measure 993911 "Krank Tage bereinigt" IgnoreMissingValue False Storage Float64
  8362. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8363. Format "#,##0~1" DrillThrough False EndList Associations 993913 "Krank Tage bereinigt"
  8364. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Krank Tage bereinigt"
  8365. Measure 993915 "Krank Tage ohne AUB bereinigt" IgnoreMissingValue False
  8366. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  8367. IsFolder False Format "#,##0~1" DrillThrough False EndList Associations 993917
  8368. "Krank Tage ohne AUB bereinigt" AssociationType Type_Query AssociationRole Role_Source
  8369. AssociationReferenced "Krank Tage ohne AUB bereinigt"
  8370. Measure 993921 "Krank Tage ohne LFZ bereinigt" IgnoreMissingValue False
  8371. Storage Float64 OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False
  8372. IsFolder False Format "#,##0~1" DrillThrough False EndList Associations 993923
  8373. "Krank Tage ohne LFZ bereinigt" AssociationType Type_Query AssociationRole Role_Source
  8374. AssociationReferenced "Krank Tage ohne LFZ bereinigt"
  8375. Measure 993925 "Krank Tage Kur bereinigt" IgnoreMissingValue False Storage Float64
  8376. OutPutScale 0 Decimals 3 ReverseSign False IsCurrency False IsFolder False
  8377. Format "#,##0~1" DrillThrough False EndList Associations 993927 "Krank Tage Kur bereinigt"
  8378. AssociationType Type_Query AssociationRole Role_Source AssociationReferenced "Krank Tage Kur bereinigt"
  8379. Signon 220821 "Kalender"
  8380. FullDb "BDF5A3AECA95D3018CD2B77EE30389352219537E1F1CF380EC06AF5C044D6E9B34742E9"
  8381. "E32F22493462580C2D56996C280F189B0E214E6B07218FFC384F0A25749BD3E782D7725"
  8382. "1DEA0A669CC384F0A20B68957CF7F6C83053C35BA293010DA2FB42D2327D2DA15819B32"
  8383. "42C98EBC7DE72975BD9FAAA95C1DC4E161985807A74206099C4A1205AE50DDD98C284F6"
  8384. "AF514A786C8DF1619ACC82C687F2DD87BB2919BA4ECEF355C5E0037CD5BC4FD6BC11960"
  8385. "8184C35968089DDB401D67FCB876EC712ED352B6BD650453A9ABBBD271B9BC2C48213A1"
  8386. "D21F78CC278119D7CF9670C5F9EA02528211922D61F783B65A0F2559CB2D89A932F6CC8"
  8387. "879DC6D50BDDE6" DbType "OD" DatabaseSubType BDE PromptForPassword False
  8388. Signon 643419 "Navision2" UserId "sa"
  8389. FullDb "BDF5A3AEC0F5F153AF605721C18FE5C49245E4842A15BF4365CD6696E61BD3FA746E79C"
  8390. "5946D82F58795FDC908A330790417E30BF8494B9047F2CEF776567F2414B830791CB032"
  8391. "7D76314EFE9CC881FDA45247B0DF2FF84345F28D43EF9EE49773F37D5044B4C58B67B45"
  8392. "778A12760B99B8970BB7020357FA4AC7FE9A0DCE6BF35E30FD6C5B592AC5444A25D49BE"
  8393. "367A4072C1ED11B53178A22013ED390A5E0ADA3A8408429F02629622E8328E0F32321B6"
  8394. "41711A67C3B2EE3DBB73696879E922DB05401C2246DC78167C1DBC49A119612CA8915D6"
  8395. "791BB4CB24A6187F172127130410E45B62A10295B537388CE0B9CC28AB4C99B8B176969"
  8396. "B50C78ECC2BE5D" DbType "OD" DatabaseSubType BDE PromptForPassword True
  8397. Signon 643645 "Kalender_2"
  8398. FullDb "BDF5A3AECA95D3018CD2B77E442B669617013F8F0F63DDC5E61D85FB448BF7F084283A1"
  8399. "6BA656B2A732219E12D9881F9A153E2AF5544BC3EDC9BEC810450E30EE4AF524A96E505"
  8400. "37B0DE17D1612B1DECC7FA6B5B7860712A7929F3975FE7AB7097DBE745B838FAAF535C5"
  8401. "91AE5202E123F6895874ABADF60DE56A15AA5CF84AE5AB63A79249089792A1AEC0DD56F"
  8402. "97CB5503D5D66EB83C79227D2E1F5487B1DF6F7621D2B780D193C710B670238E707DE39"
  8403. "4E654024F2460631F89FD0E271A314C9A5349AE97EBF2A00333E53FDD65EDB30AD468E7"
  8404. "036DFF08DB7660FB76DBA46A1E48B1B727383705E82D32AA6EC0F9E75DD2147480233D1"
  8405. "50480FA831AE1E" DbType "OD" DatabaseSubType BDE PromptForPassword False
  8406. Signon 673755 "2_Reis_2008" UserId "reisacher"
  8407. FullDb "BDF5A3AEA5C9C6ACA0F2F14E00DE68B6E82DF98F8F2CE87D2C58A97D426D9DF0BED95E5"
  8408. "57AC712B543E801A92302165DF5D06A9B91F8915EE51EEBAAF5D16BF5067A5049040D09"
  8409. "114DBCA30FCF80FCA3FBE9D9787353BAD7CDABFDD793219687F2A1F3D26B9BEF0ED8859"
  8410. "A7329F807BFFC819454DF6F98CB14C0EBAE991606DB6F9FCC8BF8BE3D387121B6377E24"
  8411. "1BE53D2E0380D69ACC8DEE0EDD675AD27740B033D6E88FFBED3E7F249A34DC805E33286"
  8412. "249A55913C90755633C71C2F5E8C6103735245D208E6F9B968663CF3EE38C57F8A9E5DA"
  8413. "15EBC0F610E7E8201387C9FC047529664608A61A18D9E55FAC2E3095098BAEDE85B838A"
  8414. "4CE24179E4766E" DbType "OD" DatabaseSubType BDE PromptForPassword True
  8415. Cube 817 "AHR_AHA_Zeit_Abwesenheit" MdcFile "d:\gaps_bmw\portal\system\cube_out\AHR_AHA_zeit_Abwesenheit.mdc"
  8416. EncryptedPW "" Status OK CubeCreation On Optimize Default ConsolidatedRecords 10000000
  8417. PartitionSize 500000 PassesNumber 5 Compress False DatabaseInfo "Local;"
  8418. IncrementalUpdate False ServerCube False CubeStamp 1339312726 CubeCycle 42
  8419. BlockParentTotals False Caching False UseAlternateFileName False DrillThrough False
  8420. EndList
  8421. DimensionView 408601 "All Categories" DimensionView 791 "All Categories"
  8422. DimensionView 408759 "All Categories" DimensionView 671057 "All Categories"
  8423. DimensionView 688321 "All Categories" DimensionView 986983 "All Categories"
  8424. MeasureInclude 688341 Yes MeasureInclude 688345 Yes MeasureInclude 688357
  8425. Yes MeasureInclude 688353 Yes MeasureInclude 688349 Yes MeasureInclude 688365
  8426. Yes MeasureInclude 688361 Yes MeasureInclude 986943 Yes MeasureInclude 986947
  8427. Yes MeasureInclude 986951 Yes MeasureInclude 986955 Yes MeasureInclude 986959
  8428. Yes MeasureInclude 986963 Yes MeasureInclude 986967 Yes MeasureInclude 987001
  8429. Yes MeasureInclude 987005 Yes MeasureInclude 987009 Yes MeasureInclude 987265
  8430. Yes MeasureInclude 987273 Yes MeasureInclude 992683 Yes MeasureInclude 992687
  8431. Yes MeasureInclude 992929 Yes MeasureInclude 993911 Yes MeasureInclude 993915
  8432. Yes MeasureInclude 993921 Yes MeasureInclude 993925 Yes
  8433. AllocationAdd Measure 688341 Type Default
  8434. AllocationAdd Measure 688345 Type Default
  8435. AllocationAdd Measure 688357 Type Default
  8436. AllocationAdd Measure 688353 Type Default
  8437. AllocationAdd Measure 688349 Type Default
  8438. AllocationAdd Measure 688365 Type Default
  8439. AllocationAdd Measure 688361 Type Default
  8440. AllocationAdd Measure 986943 Type Default
  8441. AllocationAdd Measure 986947 Type Default
  8442. AllocationAdd Measure 986951 Type Default
  8443. AllocationAdd Measure 986955 Type Default
  8444. AllocationAdd Measure 986959 Type Default
  8445. AllocationAdd Measure 986963 Type Default
  8446. AllocationAdd Measure 986967 Type Default
  8447. AllocationAdd Measure 987001 Type Default
  8448. AllocationAdd Measure 987005 Type Default
  8449. AllocationAdd Measure 987009 Type Default
  8450. AllocationAdd Measure 987265 Type Default
  8451. AllocationAdd Measure 987273 Type Default
  8452. AllocationAdd Measure 992683 Type Default
  8453. AllocationAdd Measure 992687 Type Default
  8454. AllocationAdd Measure 992929 Type Default
  8455. AllocationAdd Measure 993911 Type Default
  8456. AllocationAdd Measure 993915 Type Default
  8457. AllocationAdd Measure 993921 Type Default
  8458. AllocationAdd Measure 993925 Type Default