Verkauf.ktr 164 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331
  1. <transformation>
  2. <info>
  3. <name>Verkauf</name>
  4. <description/>
  5. <extended_description/>
  6. <trans_version/>
  7. <trans_type>Normal</trans_type>
  8. <trans_status>0</trans_status>
  9. <directory>/3_GC_DWH/OPTIMA</directory>
  10. <parameters>
  11. </parameters>
  12. <log>
  13. <trans-log-table>
  14. <connection/>
  15. <schema/>
  16. <table/>
  17. <size_limit_lines/>
  18. <interval/>
  19. <timeout_days/>
  20. <field>
  21. <id>ID_BATCH</id>
  22. <enabled>Y</enabled>
  23. <name>ID_BATCH</name>
  24. </field>
  25. <field>
  26. <id>CHANNEL_ID</id>
  27. <enabled>Y</enabled>
  28. <name>CHANNEL_ID</name>
  29. </field>
  30. <field>
  31. <id>TRANSNAME</id>
  32. <enabled>Y</enabled>
  33. <name>TRANSNAME</name>
  34. </field>
  35. <field>
  36. <id>STATUS</id>
  37. <enabled>Y</enabled>
  38. <name>STATUS</name>
  39. </field>
  40. <field>
  41. <id>LINES_READ</id>
  42. <enabled>Y</enabled>
  43. <name>LINES_READ</name>
  44. <subject/>
  45. </field>
  46. <field>
  47. <id>LINES_WRITTEN</id>
  48. <enabled>Y</enabled>
  49. <name>LINES_WRITTEN</name>
  50. <subject/>
  51. </field>
  52. <field>
  53. <id>LINES_UPDATED</id>
  54. <enabled>Y</enabled>
  55. <name>LINES_UPDATED</name>
  56. <subject/>
  57. </field>
  58. <field>
  59. <id>LINES_INPUT</id>
  60. <enabled>Y</enabled>
  61. <name>LINES_INPUT</name>
  62. <subject/>
  63. </field>
  64. <field>
  65. <id>LINES_OUTPUT</id>
  66. <enabled>Y</enabled>
  67. <name>LINES_OUTPUT</name>
  68. <subject/>
  69. </field>
  70. <field>
  71. <id>LINES_REJECTED</id>
  72. <enabled>Y</enabled>
  73. <name>LINES_REJECTED</name>
  74. <subject/>
  75. </field>
  76. <field>
  77. <id>ERRORS</id>
  78. <enabled>Y</enabled>
  79. <name>ERRORS</name>
  80. </field>
  81. <field>
  82. <id>STARTDATE</id>
  83. <enabled>Y</enabled>
  84. <name>STARTDATE</name>
  85. </field>
  86. <field>
  87. <id>ENDDATE</id>
  88. <enabled>Y</enabled>
  89. <name>ENDDATE</name>
  90. </field>
  91. <field>
  92. <id>LOGDATE</id>
  93. <enabled>Y</enabled>
  94. <name>LOGDATE</name>
  95. </field>
  96. <field>
  97. <id>DEPDATE</id>
  98. <enabled>Y</enabled>
  99. <name>DEPDATE</name>
  100. </field>
  101. <field>
  102. <id>REPLAYDATE</id>
  103. <enabled>Y</enabled>
  104. <name>REPLAYDATE</name>
  105. </field>
  106. <field>
  107. <id>LOG_FIELD</id>
  108. <enabled>Y</enabled>
  109. <name>LOG_FIELD</name>
  110. </field>
  111. <field>
  112. <id>EXECUTING_SERVER</id>
  113. <enabled>N</enabled>
  114. <name>EXECUTING_SERVER</name>
  115. </field>
  116. <field>
  117. <id>EXECUTING_USER</id>
  118. <enabled>N</enabled>
  119. <name>EXECUTING_USER</name>
  120. </field>
  121. <field>
  122. <id>CLIENT</id>
  123. <enabled>N</enabled>
  124. <name>CLIENT</name>
  125. </field>
  126. </trans-log-table>
  127. <perf-log-table>
  128. <connection/>
  129. <schema/>
  130. <table/>
  131. <interval/>
  132. <timeout_days/>
  133. <field>
  134. <id>ID_BATCH</id>
  135. <enabled>Y</enabled>
  136. <name>ID_BATCH</name>
  137. </field>
  138. <field>
  139. <id>SEQ_NR</id>
  140. <enabled>Y</enabled>
  141. <name>SEQ_NR</name>
  142. </field>
  143. <field>
  144. <id>LOGDATE</id>
  145. <enabled>Y</enabled>
  146. <name>LOGDATE</name>
  147. </field>
  148. <field>
  149. <id>TRANSNAME</id>
  150. <enabled>Y</enabled>
  151. <name>TRANSNAME</name>
  152. </field>
  153. <field>
  154. <id>STEPNAME</id>
  155. <enabled>Y</enabled>
  156. <name>STEPNAME</name>
  157. </field>
  158. <field>
  159. <id>STEP_COPY</id>
  160. <enabled>Y</enabled>
  161. <name>STEP_COPY</name>
  162. </field>
  163. <field>
  164. <id>LINES_READ</id>
  165. <enabled>Y</enabled>
  166. <name>LINES_READ</name>
  167. </field>
  168. <field>
  169. <id>LINES_WRITTEN</id>
  170. <enabled>Y</enabled>
  171. <name>LINES_WRITTEN</name>
  172. </field>
  173. <field>
  174. <id>LINES_UPDATED</id>
  175. <enabled>Y</enabled>
  176. <name>LINES_UPDATED</name>
  177. </field>
  178. <field>
  179. <id>LINES_INPUT</id>
  180. <enabled>Y</enabled>
  181. <name>LINES_INPUT</name>
  182. </field>
  183. <field>
  184. <id>LINES_OUTPUT</id>
  185. <enabled>Y</enabled>
  186. <name>LINES_OUTPUT</name>
  187. </field>
  188. <field>
  189. <id>LINES_REJECTED</id>
  190. <enabled>Y</enabled>
  191. <name>LINES_REJECTED</name>
  192. </field>
  193. <field>
  194. <id>ERRORS</id>
  195. <enabled>Y</enabled>
  196. <name>ERRORS</name>
  197. </field>
  198. <field>
  199. <id>INPUT_BUFFER_ROWS</id>
  200. <enabled>Y</enabled>
  201. <name>INPUT_BUFFER_ROWS</name>
  202. </field>
  203. <field>
  204. <id>OUTPUT_BUFFER_ROWS</id>
  205. <enabled>Y</enabled>
  206. <name>OUTPUT_BUFFER_ROWS</name>
  207. </field>
  208. </perf-log-table>
  209. <channel-log-table>
  210. <connection/>
  211. <schema/>
  212. <table/>
  213. <timeout_days/>
  214. <field>
  215. <id>ID_BATCH</id>
  216. <enabled>Y</enabled>
  217. <name>ID_BATCH</name>
  218. </field>
  219. <field>
  220. <id>CHANNEL_ID</id>
  221. <enabled>Y</enabled>
  222. <name>CHANNEL_ID</name>
  223. </field>
  224. <field>
  225. <id>LOG_DATE</id>
  226. <enabled>Y</enabled>
  227. <name>LOG_DATE</name>
  228. </field>
  229. <field>
  230. <id>LOGGING_OBJECT_TYPE</id>
  231. <enabled>Y</enabled>
  232. <name>LOGGING_OBJECT_TYPE</name>
  233. </field>
  234. <field>
  235. <id>OBJECT_NAME</id>
  236. <enabled>Y</enabled>
  237. <name>OBJECT_NAME</name>
  238. </field>
  239. <field>
  240. <id>OBJECT_COPY</id>
  241. <enabled>Y</enabled>
  242. <name>OBJECT_COPY</name>
  243. </field>
  244. <field>
  245. <id>REPOSITORY_DIRECTORY</id>
  246. <enabled>Y</enabled>
  247. <name>REPOSITORY_DIRECTORY</name>
  248. </field>
  249. <field>
  250. <id>FILENAME</id>
  251. <enabled>Y</enabled>
  252. <name>FILENAME</name>
  253. </field>
  254. <field>
  255. <id>OBJECT_ID</id>
  256. <enabled>Y</enabled>
  257. <name>OBJECT_ID</name>
  258. </field>
  259. <field>
  260. <id>OBJECT_REVISION</id>
  261. <enabled>Y</enabled>
  262. <name>OBJECT_REVISION</name>
  263. </field>
  264. <field>
  265. <id>PARENT_CHANNEL_ID</id>
  266. <enabled>Y</enabled>
  267. <name>PARENT_CHANNEL_ID</name>
  268. </field>
  269. <field>
  270. <id>ROOT_CHANNEL_ID</id>
  271. <enabled>Y</enabled>
  272. <name>ROOT_CHANNEL_ID</name>
  273. </field>
  274. </channel-log-table>
  275. <step-log-table>
  276. <connection/>
  277. <schema/>
  278. <table/>
  279. <timeout_days/>
  280. <field>
  281. <id>ID_BATCH</id>
  282. <enabled>Y</enabled>
  283. <name>ID_BATCH</name>
  284. </field>
  285. <field>
  286. <id>CHANNEL_ID</id>
  287. <enabled>Y</enabled>
  288. <name>CHANNEL_ID</name>
  289. </field>
  290. <field>
  291. <id>LOG_DATE</id>
  292. <enabled>Y</enabled>
  293. <name>LOG_DATE</name>
  294. </field>
  295. <field>
  296. <id>TRANSNAME</id>
  297. <enabled>Y</enabled>
  298. <name>TRANSNAME</name>
  299. </field>
  300. <field>
  301. <id>STEPNAME</id>
  302. <enabled>Y</enabled>
  303. <name>STEPNAME</name>
  304. </field>
  305. <field>
  306. <id>STEP_COPY</id>
  307. <enabled>Y</enabled>
  308. <name>STEP_COPY</name>
  309. </field>
  310. <field>
  311. <id>LINES_READ</id>
  312. <enabled>Y</enabled>
  313. <name>LINES_READ</name>
  314. </field>
  315. <field>
  316. <id>LINES_WRITTEN</id>
  317. <enabled>Y</enabled>
  318. <name>LINES_WRITTEN</name>
  319. </field>
  320. <field>
  321. <id>LINES_UPDATED</id>
  322. <enabled>Y</enabled>
  323. <name>LINES_UPDATED</name>
  324. </field>
  325. <field>
  326. <id>LINES_INPUT</id>
  327. <enabled>Y</enabled>
  328. <name>LINES_INPUT</name>
  329. </field>
  330. <field>
  331. <id>LINES_OUTPUT</id>
  332. <enabled>Y</enabled>
  333. <name>LINES_OUTPUT</name>
  334. </field>
  335. <field>
  336. <id>LINES_REJECTED</id>
  337. <enabled>Y</enabled>
  338. <name>LINES_REJECTED</name>
  339. </field>
  340. <field>
  341. <id>ERRORS</id>
  342. <enabled>Y</enabled>
  343. <name>ERRORS</name>
  344. </field>
  345. <field>
  346. <id>LOG_FIELD</id>
  347. <enabled>N</enabled>
  348. <name>LOG_FIELD</name>
  349. </field>
  350. </step-log-table>
  351. <metrics-log-table>
  352. <connection/>
  353. <schema/>
  354. <table/>
  355. <timeout_days/>
  356. <field>
  357. <id>ID_BATCH</id>
  358. <enabled>Y</enabled>
  359. <name>ID_BATCH</name>
  360. </field>
  361. <field>
  362. <id>CHANNEL_ID</id>
  363. <enabled>Y</enabled>
  364. <name>CHANNEL_ID</name>
  365. </field>
  366. <field>
  367. <id>LOG_DATE</id>
  368. <enabled>Y</enabled>
  369. <name>LOG_DATE</name>
  370. </field>
  371. <field>
  372. <id>METRICS_DATE</id>
  373. <enabled>Y</enabled>
  374. <name>METRICS_DATE</name>
  375. </field>
  376. <field>
  377. <id>METRICS_CODE</id>
  378. <enabled>Y</enabled>
  379. <name>METRICS_CODE</name>
  380. </field>
  381. <field>
  382. <id>METRICS_DESCRIPTION</id>
  383. <enabled>Y</enabled>
  384. <name>METRICS_DESCRIPTION</name>
  385. </field>
  386. <field>
  387. <id>METRICS_SUBJECT</id>
  388. <enabled>Y</enabled>
  389. <name>METRICS_SUBJECT</name>
  390. </field>
  391. <field>
  392. <id>METRICS_TYPE</id>
  393. <enabled>Y</enabled>
  394. <name>METRICS_TYPE</name>
  395. </field>
  396. <field>
  397. <id>METRICS_VALUE</id>
  398. <enabled>Y</enabled>
  399. <name>METRICS_VALUE</name>
  400. </field>
  401. </metrics-log-table>
  402. </log>
  403. <maxdate>
  404. <connection/>
  405. <table/>
  406. <field/>
  407. <offset>0.0</offset>
  408. <maxdiff>0.0</maxdiff>
  409. </maxdate>
  410. <size_rowset>5000</size_rowset>
  411. <sleep_time_empty>50</sleep_time_empty>
  412. <sleep_time_full>50</sleep_time_full>
  413. <unique_connections>N</unique_connections>
  414. <feedback_shown>Y</feedback_shown>
  415. <feedback_size>5000</feedback_size>
  416. <using_thread_priorities>Y</using_thread_priorities>
  417. <shared_objects_file/>
  418. <capture_step_performance>Y</capture_step_performance>
  419. <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  420. <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  421. <dependencies>
  422. </dependencies>
  423. <partitionschemas>
  424. </partitionschemas>
  425. <slaveservers>
  426. </slaveservers>
  427. <clusterschemas>
  428. </clusterschemas>
  429. <created_user>-</created_user>
  430. <created_date>2024/07/17 12:24:15.448</created_date>
  431. <modified_user>-</modified_user>
  432. <modified_date>2024/09/20 11:21:00.492</modified_date>
  433. <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA=</key_for_session_key>
  434. <is_key_private>N</is_key_private>
  435. </info>
  436. <notepads>
  437. <notepad>
  438. <note>Menge = 1 wird als zusätzliche Info
  439. an den Unit-History-Datensatz
  440. mit der niedrigsten LINE_NO gehängt</note>
  441. <xloc>512</xloc>
  442. <yloc>1024</yloc>
  443. <width>208</width>
  444. <heigth>58</heigth>
  445. <fontname>Segoe UI</fontname>
  446. <fontsize>9</fontsize>
  447. <fontbold>N</fontbold>
  448. <fontitalic>N</fontitalic>
  449. <fontcolorred>0</fontcolorred>
  450. <fontcolorgreen>0</fontcolorgreen>
  451. <fontcolorblue>0</fontcolorblue>
  452. <backgroundcolorred>255</backgroundcolorred>
  453. <backgroundcolorgreen>205</backgroundcolorgreen>
  454. <backgroundcolorblue>112</backgroundcolorblue>
  455. <bordercolorred>100</bordercolorred>
  456. <bordercolorgreen>100</bordercolorgreen>
  457. <bordercolorblue>100</bordercolorblue>
  458. <drawshadow>Y</drawshadow>
  459. </notepad>
  460. <notepad>
  461. <note>Hilfstabelle Transaction_Code bestimmt
  462. die Zuordnung der Zeilen zu Kennzahlen</note>
  463. <xloc>896</xloc>
  464. <yloc>1088</yloc>
  465. <width>223</width>
  466. <heigth>42</heigth>
  467. <fontname>Segoe UI</fontname>
  468. <fontsize>9</fontsize>
  469. <fontbold>N</fontbold>
  470. <fontitalic>N</fontitalic>
  471. <fontcolorred>0</fontcolorred>
  472. <fontcolorgreen>0</fontcolorgreen>
  473. <fontcolorblue>0</fontcolorblue>
  474. <backgroundcolorred>255</backgroundcolorred>
  475. <backgroundcolorgreen>205</backgroundcolorgreen>
  476. <backgroundcolorblue>112</backgroundcolorblue>
  477. <bordercolorred>100</bordercolorred>
  478. <bordercolorgreen>100</bordercolorgreen>
  479. <bordercolorblue>100</bordercolorblue>
  480. <drawshadow>Y</drawshadow>
  481. </notepad>
  482. <notepad>
  483. <note>Datensätze mit Transaction_Code/Kennzahl = "Steuer" werden herausgefiltert,
  484. damit das Feld "Betrag" der Netto-Summe entspricht.</note>
  485. <xloc>1280</xloc>
  486. <yloc>896</yloc>
  487. <width>422</width>
  488. <heigth>42</heigth>
  489. <fontname>Segoe UI</fontname>
  490. <fontsize>9</fontsize>
  491. <fontbold>N</fontbold>
  492. <fontitalic>N</fontitalic>
  493. <fontcolorred>0</fontcolorred>
  494. <fontcolorgreen>0</fontcolorgreen>
  495. <fontcolorblue>0</fontcolorblue>
  496. <backgroundcolorred>255</backgroundcolorred>
  497. <backgroundcolorgreen>205</backgroundcolorgreen>
  498. <backgroundcolorblue>112</backgroundcolorblue>
  499. <bordercolorred>100</bordercolorred>
  500. <bordercolorgreen>100</bordercolorgreen>
  501. <bordercolorblue>100</bordercolorblue>
  502. <drawshadow>Y</drawshadow>
  503. </notepad>
  504. <notepad>
  505. <note>Unit_File &lt;==> Unit_History 1 : n</note>
  506. <xloc>1856</xloc>
  507. <yloc>640</yloc>
  508. <width>192</width>
  509. <heigth>26</heigth>
  510. <fontname>Segoe UI</fontname>
  511. <fontsize>9</fontsize>
  512. <fontbold>N</fontbold>
  513. <fontitalic>N</fontitalic>
  514. <fontcolorred>0</fontcolorred>
  515. <fontcolorgreen>0</fontcolorgreen>
  516. <fontcolorblue>0</fontcolorblue>
  517. <backgroundcolorred>255</backgroundcolorred>
  518. <backgroundcolorgreen>205</backgroundcolorgreen>
  519. <backgroundcolorblue>112</backgroundcolorblue>
  520. <bordercolorred>100</bordercolorred>
  521. <bordercolorgreen>100</bordercolorgreen>
  522. <bordercolorblue>100</bordercolorblue>
  523. <drawshadow>Y</drawshadow>
  524. </notepad>
  525. <notepad>
  526. <note>ECC_Status enscheidet über
  527. Status verkauft / Bestand / Vorlauf</note>
  528. <xloc>256</xloc>
  529. <yloc>256</yloc>
  530. <width>189</width>
  531. <heigth>42</heigth>
  532. <fontname>Segoe UI</fontname>
  533. <fontsize>9</fontsize>
  534. <fontbold>N</fontbold>
  535. <fontitalic>N</fontitalic>
  536. <fontcolorred>0</fontcolorred>
  537. <fontcolorgreen>0</fontcolorgreen>
  538. <fontcolorblue>0</fontcolorblue>
  539. <backgroundcolorred>255</backgroundcolorred>
  540. <backgroundcolorgreen>205</backgroundcolorgreen>
  541. <backgroundcolorblue>112</backgroundcolorblue>
  542. <bordercolorred>100</bordercolorred>
  543. <bordercolorgreen>100</bordercolorgreen>
  544. <bordercolorblue>100</bordercolorblue>
  545. <drawshadow>Y</drawshadow>
  546. </notepad>
  547. <notepad>
  548. <note>Vehicle_Type wird verwendet,
  549. um Autohaus-fremde Fahrzeuge
  550. als Fremdmarke ausblenden zu können</note>
  551. <xloc>384</xloc>
  552. <yloc>384</yloc>
  553. <width>216</width>
  554. <heigth>58</heigth>
  555. <fontname>Segoe UI</fontname>
  556. <fontsize>9</fontsize>
  557. <fontbold>N</fontbold>
  558. <fontitalic>N</fontitalic>
  559. <fontcolorred>0</fontcolorred>
  560. <fontcolorgreen>0</fontcolorgreen>
  561. <fontcolorblue>0</fontcolorblue>
  562. <backgroundcolorred>255</backgroundcolorred>
  563. <backgroundcolorgreen>205</backgroundcolorgreen>
  564. <backgroundcolorblue>112</backgroundcolorblue>
  565. <bordercolorred>100</bordercolorred>
  566. <bordercolorgreen>100</bordercolorgreen>
  567. <bordercolorblue>100</bordercolorblue>
  568. <drawshadow>Y</drawshadow>
  569. </notepad>
  570. <notepad>
  571. <note>Falls das Department mit Null oder Leer überschrieben wurde,
  572. wird der letzte nicht-leere Eintrag aus dem Archiv genommen</note>
  573. <xloc>448</xloc>
  574. <yloc>512</yloc>
  575. <width>335</width>
  576. <heigth>42</heigth>
  577. <fontname>Segoe UI</fontname>
  578. <fontsize>9</fontsize>
  579. <fontbold>N</fontbold>
  580. <fontitalic>N</fontitalic>
  581. <fontcolorred>0</fontcolorred>
  582. <fontcolorgreen>0</fontcolorgreen>
  583. <fontcolorblue>0</fontcolorblue>
  584. <backgroundcolorred>255</backgroundcolorred>
  585. <backgroundcolorgreen>205</backgroundcolorgreen>
  586. <backgroundcolorblue>112</backgroundcolorblue>
  587. <bordercolorred>100</bordercolorred>
  588. <bordercolorgreen>100</bordercolorgreen>
  589. <bordercolorblue>100</bordercolorblue>
  590. <drawshadow>Y</drawshadow>
  591. </notepad>
  592. <notepad>
  593. <note>Übersetzung von Department auf Hauptbetrieb und Standort,
  594. unabhängig von verwendetem Kontenrahmen!</note>
  595. <xloc>960</xloc>
  596. <yloc>640</yloc>
  597. <width>333</width>
  598. <heigth>42</heigth>
  599. <fontname>Segoe UI</fontname>
  600. <fontsize>9</fontsize>
  601. <fontbold>N</fontbold>
  602. <fontitalic>N</fontitalic>
  603. <fontcolorred>0</fontcolorred>
  604. <fontcolorgreen>0</fontcolorgreen>
  605. <fontcolorblue>0</fontcolorblue>
  606. <backgroundcolorred>255</backgroundcolorred>
  607. <backgroundcolorgreen>205</backgroundcolorgreen>
  608. <backgroundcolorblue>112</backgroundcolorblue>
  609. <bordercolorred>100</bordercolorred>
  610. <bordercolorgreen>100</bordercolorgreen>
  611. <bordercolorblue>100</bordercolorblue>
  612. <drawshadow>Y</drawshadow>
  613. </notepad>
  614. <notepad>
  615. <note>Übersetzung der Optima-Felder
  616. auf den DWH-Standard</note>
  617. <xloc>1920</xloc>
  618. <yloc>128</yloc>
  619. <width>180</width>
  620. <heigth>42</heigth>
  621. <fontname>Segoe UI</fontname>
  622. <fontsize>9</fontsize>
  623. <fontbold>N</fontbold>
  624. <fontitalic>N</fontitalic>
  625. <fontcolorred>0</fontcolorred>
  626. <fontcolorgreen>0</fontcolorgreen>
  627. <fontcolorblue>0</fontcolorblue>
  628. <backgroundcolorred>255</backgroundcolorred>
  629. <backgroundcolorgreen>205</backgroundcolorgreen>
  630. <backgroundcolorblue>112</backgroundcolorblue>
  631. <bordercolorred>100</bordercolorred>
  632. <bordercolorgreen>100</bordercolorgreen>
  633. <bordercolorblue>100</bordercolorblue>
  634. <drawshadow>Y</drawshadow>
  635. </notepad>
  636. <notepad>
  637. <note>Kennzahlen * Betrag</note>
  638. <xloc>1856</xloc>
  639. <yloc>896</yloc>
  640. <width>117</width>
  641. <heigth>26</heigth>
  642. <fontname>Segoe UI</fontname>
  643. <fontsize>9</fontsize>
  644. <fontbold>N</fontbold>
  645. <fontitalic>N</fontitalic>
  646. <fontcolorred>0</fontcolorred>
  647. <fontcolorgreen>0</fontcolorgreen>
  648. <fontcolorblue>0</fontcolorblue>
  649. <backgroundcolorred>255</backgroundcolorred>
  650. <backgroundcolorgreen>205</backgroundcolorgreen>
  651. <backgroundcolorblue>112</backgroundcolorblue>
  652. <bordercolorred>100</bordercolorred>
  653. <bordercolorgreen>100</bordercolorgreen>
  654. <bordercolorblue>100</bordercolorblue>
  655. <drawshadow>Y</drawshadow>
  656. </notepad>
  657. <notepad>
  658. <note>Verknüpfung zu Acct_Doc_Key über Acct_Doc_Relations
  659. Felder UNIQUE_IDENT und ACCT_NO für weitere Verarbeitung
  660. auf DWH-Ebene</note>
  661. <xloc>1280</xloc>
  662. <yloc>1152</yloc>
  663. <width>335</width>
  664. <heigth>58</heigth>
  665. <fontname>Segoe UI</fontname>
  666. <fontsize>9</fontsize>
  667. <fontbold>N</fontbold>
  668. <fontitalic>N</fontitalic>
  669. <fontcolorred>0</fontcolorred>
  670. <fontcolorgreen>0</fontcolorgreen>
  671. <fontcolorblue>0</fontcolorblue>
  672. <backgroundcolorred>255</backgroundcolorred>
  673. <backgroundcolorgreen>205</backgroundcolorgreen>
  674. <backgroundcolorblue>112</backgroundcolorblue>
  675. <bordercolorred>100</bordercolorred>
  676. <bordercolorgreen>100</bordercolorgreen>
  677. <bordercolorblue>100</bordercolorblue>
  678. <drawshadow>Y</drawshadow>
  679. </notepad>
  680. <notepad>
  681. <note>Abweichung zu bisheriger Logik:
  682. Berechnung der Standtage und "Tage seit Verkauf"
  683. auf Basis des jüngsten SALE_DATE und nicht
  684. nach dem heutigen Zeitstempel "current_date" oder "getdate()"
  685. </note>
  686. <xloc>1344</xloc>
  687. <yloc>64</yloc>
  688. <width>345</width>
  689. <heigth>89</heigth>
  690. <fontname>Segoe UI</fontname>
  691. <fontsize>9</fontsize>
  692. <fontbold>N</fontbold>
  693. <fontitalic>N</fontitalic>
  694. <fontcolorred>0</fontcolorred>
  695. <fontcolorgreen>0</fontcolorgreen>
  696. <fontcolorblue>0</fontcolorblue>
  697. <backgroundcolorred>255</backgroundcolorred>
  698. <backgroundcolorgreen>205</backgroundcolorgreen>
  699. <backgroundcolorblue>112</backgroundcolorblue>
  700. <bordercolorred>100</bordercolorred>
  701. <bordercolorgreen>100</bordercolorgreen>
  702. <bordercolorblue>100</bordercolorblue>
  703. <drawshadow>Y</drawshadow>
  704. </notepad>
  705. <notepad>
  706. <note>Menge bei Storno soll 0 sein, nicht 1</note>
  707. <xloc>448</xloc>
  708. <yloc>896</yloc>
  709. <width>201</width>
  710. <heigth>26</heigth>
  711. <fontname>Segoe UI</fontname>
  712. <fontsize>9</fontsize>
  713. <fontbold>N</fontbold>
  714. <fontitalic>N</fontitalic>
  715. <fontcolorred>0</fontcolorred>
  716. <fontcolorgreen>0</fontcolorgreen>
  717. <fontcolorblue>0</fontcolorblue>
  718. <backgroundcolorred>255</backgroundcolorred>
  719. <backgroundcolorgreen>128</backgroundcolorgreen>
  720. <backgroundcolorblue>64</backgroundcolorblue>
  721. <bordercolorred>100</bordercolorred>
  722. <bordercolorgreen>100</bordercolorgreen>
  723. <bordercolorblue>100</bordercolorblue>
  724. <drawshadow>Y</drawshadow>
  725. </notepad>
  726. </notepads>
  727. <connection>
  728. <name>GC_CONFIG</name>
  729. <server>192.168.2.43</server>
  730. <type>MSSQL</type>
  731. <access>Native</access>
  732. <database>GC_CONFIG</database>
  733. <port>1433</port>
  734. <username>sa</username>
  735. <password>Encrypted 2be98afc86aa7f2a9ad1fbb238ec3fe99</password>
  736. <servername/>
  737. <data_tablespace/>
  738. <index_tablespace/>
  739. <attributes>
  740. <attribute>
  741. <code>EXTRA_OPTION_MSSQL.instance</code>
  742. <attribute>GLOBALCUBE</attribute>
  743. </attribute>
  744. <attribute>
  745. <code>FORCE_IDENTIFIERS_TO_LOWERCASE</code>
  746. <attribute>N</attribute>
  747. </attribute>
  748. <attribute>
  749. <code>FORCE_IDENTIFIERS_TO_UPPERCASE</code>
  750. <attribute>N</attribute>
  751. </attribute>
  752. <attribute>
  753. <code>IS_CLUSTERED</code>
  754. <attribute>N</attribute>
  755. </attribute>
  756. <attribute>
  757. <code>MSSQL_DOUBLE_DECIMAL_SEPARATOR</code>
  758. <attribute>N</attribute>
  759. </attribute>
  760. <attribute>
  761. <code>PORT_NUMBER</code>
  762. <attribute>1433</attribute>
  763. </attribute>
  764. <attribute>
  765. <code>PRESERVE_RESERVED_WORD_CASE</code>
  766. <attribute>Y</attribute>
  767. </attribute>
  768. <attribute>
  769. <code>QUOTE_ALL_FIELDS</code>
  770. <attribute>N</attribute>
  771. </attribute>
  772. <attribute>
  773. <code>SUPPORTS_BOOLEAN_DATA_TYPE</code>
  774. <attribute>Y</attribute>
  775. </attribute>
  776. <attribute>
  777. <code>SUPPORTS_TIMESTAMP_DATA_TYPE</code>
  778. <attribute>Y</attribute>
  779. </attribute>
  780. <attribute>
  781. <code>USE_POOLING</code>
  782. <attribute>N</attribute>
  783. </attribute>
  784. </attributes>
  785. </connection>
  786. <connection>
  787. <name>GC_DWH</name>
  788. <server>192.168.2.43</server>
  789. <type>MSSQL</type>
  790. <access>Native</access>
  791. <database>GC_DWH</database>
  792. <port>1433</port>
  793. <username>sa</username>
  794. <password>Encrypted 2be98afc86aa7f2a9ad1fbb238ec3fe99</password>
  795. <servername/>
  796. <data_tablespace/>
  797. <index_tablespace/>
  798. <attributes>
  799. <attribute>
  800. <code>EXTRA_OPTION_MSSQL.instance</code>
  801. <attribute>GLOBALCUBE</attribute>
  802. </attribute>
  803. <attribute>
  804. <code>FORCE_IDENTIFIERS_TO_LOWERCASE</code>
  805. <attribute>N</attribute>
  806. </attribute>
  807. <attribute>
  808. <code>FORCE_IDENTIFIERS_TO_UPPERCASE</code>
  809. <attribute>N</attribute>
  810. </attribute>
  811. <attribute>
  812. <code>IS_CLUSTERED</code>
  813. <attribute>N</attribute>
  814. </attribute>
  815. <attribute>
  816. <code>MSSQL_DOUBLE_DECIMAL_SEPARATOR</code>
  817. <attribute>N</attribute>
  818. </attribute>
  819. <attribute>
  820. <code>PORT_NUMBER</code>
  821. <attribute>1433</attribute>
  822. </attribute>
  823. <attribute>
  824. <code>PRESERVE_RESERVED_WORD_CASE</code>
  825. <attribute>Y</attribute>
  826. </attribute>
  827. <attribute>
  828. <code>QUOTE_ALL_FIELDS</code>
  829. <attribute>N</attribute>
  830. </attribute>
  831. <attribute>
  832. <code>SUPPORTS_BOOLEAN_DATA_TYPE</code>
  833. <attribute>Y</attribute>
  834. </attribute>
  835. <attribute>
  836. <code>SUPPORTS_TIMESTAMP_DATA_TYPE</code>
  837. <attribute>Y</attribute>
  838. </attribute>
  839. <attribute>
  840. <code>USE_POOLING</code>
  841. <attribute>N</attribute>
  842. </attribute>
  843. </attributes>
  844. </connection>
  845. <connection>
  846. <name>OPTIMA</name>
  847. <server>192.168.2.43</server>
  848. <type>MSSQL</type>
  849. <access>Native</access>
  850. <database>OPTIMA</database>
  851. <port>1433</port>
  852. <username>sa</username>
  853. <password>Encrypted 2be98afc86aa7f2a9ad1fbb238ec3fe99</password>
  854. <servername/>
  855. <data_tablespace/>
  856. <index_tablespace/>
  857. <attributes>
  858. <attribute>
  859. <code>EXTRA_OPTION_MSSQL.instance</code>
  860. <attribute>GLOBALCUBE</attribute>
  861. </attribute>
  862. <attribute>
  863. <code>FORCE_IDENTIFIERS_TO_LOWERCASE</code>
  864. <attribute>N</attribute>
  865. </attribute>
  866. <attribute>
  867. <code>FORCE_IDENTIFIERS_TO_UPPERCASE</code>
  868. <attribute>N</attribute>
  869. </attribute>
  870. <attribute>
  871. <code>IS_CLUSTERED</code>
  872. <attribute>N</attribute>
  873. </attribute>
  874. <attribute>
  875. <code>MSSQL_DOUBLE_DECIMAL_SEPARATOR</code>
  876. <attribute>N</attribute>
  877. </attribute>
  878. <attribute>
  879. <code>PORT_NUMBER</code>
  880. <attribute>1433</attribute>
  881. </attribute>
  882. <attribute>
  883. <code>PRESERVE_RESERVED_WORD_CASE</code>
  884. <attribute>Y</attribute>
  885. </attribute>
  886. <attribute>
  887. <code>QUOTE_ALL_FIELDS</code>
  888. <attribute>N</attribute>
  889. </attribute>
  890. <attribute>
  891. <code>SUPPORTS_BOOLEAN_DATA_TYPE</code>
  892. <attribute>Y</attribute>
  893. </attribute>
  894. <attribute>
  895. <code>SUPPORTS_TIMESTAMP_DATA_TYPE</code>
  896. <attribute>Y</attribute>
  897. </attribute>
  898. <attribute>
  899. <code>USE_POOLING</code>
  900. <attribute>N</attribute>
  901. </attribute>
  902. </attributes>
  903. </connection>
  904. <order>
  905. <hop>
  906. <from>extract.UNIT_HISTORY</from>
  907. <to>Unit_History_Strings</to>
  908. <enabled>Y</enabled>
  909. </hop>
  910. <hop>
  911. <from>extract.UNIT_FILE</from>
  912. <to>Unit_File_Strings</to>
  913. <enabled>Y</enabled>
  914. </hop>
  915. <hop>
  916. <from>GC_CONFIG.optima.ECC_Status</from>
  917. <to>ECC_Status</to>
  918. <enabled>Y</enabled>
  919. </hop>
  920. <hop>
  921. <from>Unit_File_Strings</from>
  922. <to>Unit_File_ECC_Status</to>
  923. <enabled>Y</enabled>
  924. </hop>
  925. <hop>
  926. <from>ECC_Status</from>
  927. <to>Unit_File_ECC_Status</to>
  928. <enabled>Y</enabled>
  929. </hop>
  930. <hop>
  931. <from>extract.UNIT_CHANGE_HIST_Department</from>
  932. <to>Unit_Change_Hist_Department_sortiert</to>
  933. <enabled>Y</enabled>
  934. </hop>
  935. <hop>
  936. <from>GC_CONFIG.optima.Vehicle_Type</from>
  937. <to>Vehicle_Type</to>
  938. <enabled>Y</enabled>
  939. </hop>
  940. <hop>
  941. <from>Unit_File_ECC_Status</from>
  942. <to>Unit_File_Vehicle_Type</to>
  943. <enabled>Y</enabled>
  944. </hop>
  945. <hop>
  946. <from>Vehicle_Type</from>
  947. <to>Unit_File_Vehicle_Type</to>
  948. <enabled>Y</enabled>
  949. </hop>
  950. <hop>
  951. <from>Unit_File_Vehicle_Type</from>
  952. <to>Unit_File_Department</to>
  953. <enabled>Y</enabled>
  954. </hop>
  955. <hop>
  956. <from>Unit_Change_Hist_Department_sortiert</from>
  957. <to>Unit_File_Department</to>
  958. <enabled>Y</enabled>
  959. </hop>
  960. <hop>
  961. <from>Unit_File_Department</from>
  962. <to>Department</to>
  963. <enabled>Y</enabled>
  964. </hop>
  965. <hop>
  966. <from>GC_CONFIG.optima.Department</from>
  967. <to>Department_sortiert</to>
  968. <enabled>Y</enabled>
  969. </hop>
  970. <hop>
  971. <from>Department</from>
  972. <to>Department_Details</to>
  973. <enabled>Y</enabled>
  974. </hop>
  975. <hop>
  976. <from>Department_sortiert</from>
  977. <to>Department_Details</to>
  978. <enabled>Y</enabled>
  979. </hop>
  980. <hop>
  981. <from>Verkauf_Auswahl_Übersetzung</from>
  982. <to>GC_DWH.dbo.Verkauf</to>
  983. <enabled>Y</enabled>
  984. </hop>
  985. <hop>
  986. <from>GC_DWH.dbo.Verkauf</from>
  987. <to>Write to log</to>
  988. <enabled>Y</enabled>
  989. </hop>
  990. <hop>
  991. <from>Unit_History_Strings</from>
  992. <to>Unit_History_Menge</to>
  993. <enabled>Y</enabled>
  994. </hop>
  995. <hop>
  996. <from>Unit_History_Menge</from>
  997. <to>Unit_History_Transaction_Code</to>
  998. <enabled>Y</enabled>
  999. </hop>
  1000. <hop>
  1001. <from>extract.UNIT_HISTORY_Menge</from>
  1002. <to>Unit_History_Menge_bereinigt</to>
  1003. <enabled>Y</enabled>
  1004. </hop>
  1005. <hop>
  1006. <from>Unit_History_Menge_bereinigt</from>
  1007. <to>Unit_History_Menge</to>
  1008. <enabled>Y</enabled>
  1009. </hop>
  1010. <hop>
  1011. <from>GC_CONFIG.optima.Transaction_Code</from>
  1012. <to>Transaction_Code</to>
  1013. <enabled>Y</enabled>
  1014. </hop>
  1015. <hop>
  1016. <from>Transaction_Code</from>
  1017. <to>Unit_History_Transaction_Code</to>
  1018. <enabled>Y</enabled>
  1019. </hop>
  1020. <hop>
  1021. <from>Unit_History_Filter_Steuern</from>
  1022. <to>Unit_History_Kennzahlen</to>
  1023. <enabled>Y</enabled>
  1024. </hop>
  1025. <hop>
  1026. <from>Unit_History_Kennzahlen</from>
  1027. <to>Unit_File_Unit_History</to>
  1028. <enabled>Y</enabled>
  1029. </hop>
  1030. <hop>
  1031. <from>Unit_File_Unit_History</from>
  1032. <to>Verkauf_Auswahl_Übersetzung</to>
  1033. <enabled>Y</enabled>
  1034. </hop>
  1035. <hop>
  1036. <from>Einkauf_Verkauf_Datum</from>
  1037. <to>Unit_File_Unit_History</to>
  1038. <enabled>Y</enabled>
  1039. </hop>
  1040. <hop>
  1041. <from>Department_Details</from>
  1042. <to>Get variables</to>
  1043. <enabled>Y</enabled>
  1044. </hop>
  1045. <hop>
  1046. <from>Unit_File_max_Sale_Date</from>
  1047. <to>Set variables</to>
  1048. <enabled>Y</enabled>
  1049. </hop>
  1050. <hop>
  1051. <from>Get variables</from>
  1052. <to>Einkauf_Verkauf_Datum</to>
  1053. <enabled>Y</enabled>
  1054. </hop>
  1055. <hop>
  1056. <from>extract.ACCT_DOC_UNIT_HISTORY</from>
  1057. <to>Acct_Doc_Unit_History_bereinigt</to>
  1058. <enabled>Y</enabled>
  1059. </hop>
  1060. <hop>
  1061. <from>Unit_History_Transaction_Code</from>
  1062. <to>Unit_History_Acct_Doc</to>
  1063. <enabled>Y</enabled>
  1064. </hop>
  1065. <hop>
  1066. <from>Unit_History_Acct_Doc</from>
  1067. <to>Unit_History_Filter_Steuern</to>
  1068. <enabled>Y</enabled>
  1069. </hop>
  1070. <hop>
  1071. <from>Acct_Doc_Unit_History_bereinigt</from>
  1072. <to>Unit_History_Acct_Doc</to>
  1073. <enabled>Y</enabled>
  1074. </hop>
  1075. </order>
  1076. <step>
  1077. <name>Department</name>
  1078. <type>Formula</type>
  1079. <description/>
  1080. <distribute>Y</distribute>
  1081. <custom_distribution/>
  1082. <copies>1</copies>
  1083. <partitioning>
  1084. <method>none</method>
  1085. <schema_name/>
  1086. </partitioning>
  1087. <formula>
  1088. <field_name>Department</field_name>
  1089. <formula_string>IF ( OR( ISNA( [SALES_DEPARTMENT] ) ; [SALES_DEPARTMENT] = "" ) ; [DEPARTMENT_1]; [SALES_DEPARTMENT] )</formula_string>
  1090. <value_type>String</value_type>
  1091. <value_length>-1</value_length>
  1092. <value_precision>-1</value_precision>
  1093. <replace_field/>
  1094. </formula>
  1095. <attributes/>
  1096. <cluster_schema/>
  1097. <remotesteps>
  1098. <input>
  1099. </input>
  1100. <output>
  1101. </output>
  1102. </remotesteps>
  1103. <GUI>
  1104. <xloc>1024</xloc>
  1105. <yloc>192</yloc>
  1106. <draw>Y</draw>
  1107. </GUI>
  1108. </step>
  1109. <step>
  1110. <name>Department_Details</name>
  1111. <type>StreamLookup</type>
  1112. <description/>
  1113. <distribute>Y</distribute>
  1114. <custom_distribution/>
  1115. <copies>1</copies>
  1116. <partitioning>
  1117. <method>none</method>
  1118. <schema_name/>
  1119. </partitioning>
  1120. <from>Department_sortiert</from>
  1121. <input_sorted>N</input_sorted>
  1122. <preserve_memory>Y</preserve_memory>
  1123. <sorted_list>N</sorted_list>
  1124. <integer_pair>N</integer_pair>
  1125. <lookup>
  1126. <key>
  1127. <name>CLIENT_DB</name>
  1128. <field>CLIENT_DB</field>
  1129. </key>
  1130. <key>
  1131. <name>SALES_DEPARTMENT</name>
  1132. <field>SALES_DEPARTMENT</field>
  1133. </key>
  1134. <value>
  1135. <name>Hauptbetrieb_ID</name>
  1136. <rename>Hauptbetrieb_ID</rename>
  1137. <default/>
  1138. <type>String</type>
  1139. </value>
  1140. <value>
  1141. <name>Standort_ID</name>
  1142. <rename>Standort_ID</rename>
  1143. <default/>
  1144. <type>String</type>
  1145. </value>
  1146. <value>
  1147. <name>Marke_ID</name>
  1148. <rename>Marke_ID</rename>
  1149. <default/>
  1150. <type>String</type>
  1151. </value>
  1152. <value>
  1153. <name>Kostenstelle_ID</name>
  1154. <rename>Kostenstelle_ID</rename>
  1155. <default/>
  1156. <type>String</type>
  1157. </value>
  1158. </lookup>
  1159. <attributes/>
  1160. <cluster_schema/>
  1161. <remotesteps>
  1162. <input>
  1163. </input>
  1164. <output>
  1165. </output>
  1166. </remotesteps>
  1167. <GUI>
  1168. <xloc>1216</xloc>
  1169. <yloc>192</yloc>
  1170. <draw>Y</draw>
  1171. </GUI>
  1172. </step>
  1173. <step>
  1174. <name>Department_sortiert</name>
  1175. <type>Dummy</type>
  1176. <description/>
  1177. <distribute>Y</distribute>
  1178. <custom_distribution/>
  1179. <copies>1</copies>
  1180. <partitioning>
  1181. <method>none</method>
  1182. <schema_name/>
  1183. </partitioning>
  1184. <attributes/>
  1185. <cluster_schema/>
  1186. <remotesteps>
  1187. <input>
  1188. </input>
  1189. <output>
  1190. </output>
  1191. </remotesteps>
  1192. <GUI>
  1193. <xloc>1216</xloc>
  1194. <yloc>704</yloc>
  1195. <draw>Y</draw>
  1196. </GUI>
  1197. </step>
  1198. <step>
  1199. <name>ECC_Status</name>
  1200. <type>Dummy</type>
  1201. <description/>
  1202. <distribute>Y</distribute>
  1203. <custom_distribution/>
  1204. <copies>1</copies>
  1205. <partitioning>
  1206. <method>none</method>
  1207. <schema_name/>
  1208. </partitioning>
  1209. <attributes/>
  1210. <cluster_schema/>
  1211. <remotesteps>
  1212. <input>
  1213. </input>
  1214. <output>
  1215. </output>
  1216. </remotesteps>
  1217. <GUI>
  1218. <xloc>448</xloc>
  1219. <yloc>320</yloc>
  1220. <draw>Y</draw>
  1221. </GUI>
  1222. </step>
  1223. <step>
  1224. <name>GC_CONFIG.optima.Department</name>
  1225. <type>TableInput</type>
  1226. <description/>
  1227. <distribute>Y</distribute>
  1228. <custom_distribution/>
  1229. <copies>1</copies>
  1230. <partitioning>
  1231. <method>none</method>
  1232. <schema_name/>
  1233. </partitioning>
  1234. <connection>GC_CONFIG</connection>
  1235. <sql>SELECT * FROM optima.Department</sql>
  1236. <limit>0</limit>
  1237. <lookup/>
  1238. <execute_each_row>N</execute_each_row>
  1239. <variables_active>N</variables_active>
  1240. <lazy_conversion_active>N</lazy_conversion_active>
  1241. <cached_row_meta_active>N</cached_row_meta_active>
  1242. <row-meta>
  1243. <value-meta>
  1244. <type>String</type>
  1245. <storagetype>normal</storagetype>
  1246. <name>CLIENT_DB</name>
  1247. <length>20</length>
  1248. <precision>-1</precision>
  1249. <origin>Table input</origin>
  1250. <comments>CLIENT_DB</comments>
  1251. <conversion_Mask/>
  1252. <decimal_symbol>,</decimal_symbol>
  1253. <grouping_symbol>.</grouping_symbol>
  1254. <currency_symbol/>
  1255. <trim_type>none</trim_type>
  1256. <case_insensitive>N</case_insensitive>
  1257. <collator_disabled>Y</collator_disabled>
  1258. <collator_strength>0</collator_strength>
  1259. <sort_descending>N</sort_descending>
  1260. <output_padding>N</output_padding>
  1261. <date_format_lenient>N</date_format_lenient>
  1262. <date_format_locale>en_US</date_format_locale>
  1263. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1264. <lenient_string_to_number>N</lenient_string_to_number>
  1265. </value-meta>
  1266. <value-meta>
  1267. <type>String</type>
  1268. <storagetype>normal</storagetype>
  1269. <name>SALES_DEPARTMENT</name>
  1270. <length>4</length>
  1271. <precision>-1</precision>
  1272. <origin>Table input</origin>
  1273. <comments>SALES_DEPARTMENT</comments>
  1274. <conversion_Mask/>
  1275. <decimal_symbol>,</decimal_symbol>
  1276. <grouping_symbol>.</grouping_symbol>
  1277. <currency_symbol/>
  1278. <trim_type>none</trim_type>
  1279. <case_insensitive>N</case_insensitive>
  1280. <collator_disabled>Y</collator_disabled>
  1281. <collator_strength>0</collator_strength>
  1282. <sort_descending>N</sort_descending>
  1283. <output_padding>N</output_padding>
  1284. <date_format_lenient>N</date_format_lenient>
  1285. <date_format_locale>en_US</date_format_locale>
  1286. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1287. <lenient_string_to_number>N</lenient_string_to_number>
  1288. </value-meta>
  1289. <value-meta>
  1290. <type>String</type>
  1291. <storagetype>normal</storagetype>
  1292. <name>NEW_DEPARTMENT</name>
  1293. <length>4</length>
  1294. <precision>-1</precision>
  1295. <origin>Table input</origin>
  1296. <comments>NEW_DEPARTMENT</comments>
  1297. <conversion_Mask/>
  1298. <decimal_symbol>,</decimal_symbol>
  1299. <grouping_symbol>.</grouping_symbol>
  1300. <currency_symbol/>
  1301. <trim_type>none</trim_type>
  1302. <case_insensitive>N</case_insensitive>
  1303. <collator_disabled>Y</collator_disabled>
  1304. <collator_strength>0</collator_strength>
  1305. <sort_descending>N</sort_descending>
  1306. <output_padding>N</output_padding>
  1307. <date_format_lenient>N</date_format_lenient>
  1308. <date_format_locale>en_US</date_format_locale>
  1309. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1310. <lenient_string_to_number>N</lenient_string_to_number>
  1311. </value-meta>
  1312. <value-meta>
  1313. <type>String</type>
  1314. <storagetype>normal</storagetype>
  1315. <name>DESCRIPTION</name>
  1316. <length>50</length>
  1317. <precision>-1</precision>
  1318. <origin>Table input</origin>
  1319. <comments>DESCRIPTION</comments>
  1320. <conversion_Mask/>
  1321. <decimal_symbol>,</decimal_symbol>
  1322. <grouping_symbol>.</grouping_symbol>
  1323. <currency_symbol/>
  1324. <trim_type>none</trim_type>
  1325. <case_insensitive>N</case_insensitive>
  1326. <collator_disabled>Y</collator_disabled>
  1327. <collator_strength>0</collator_strength>
  1328. <sort_descending>N</sort_descending>
  1329. <output_padding>N</output_padding>
  1330. <date_format_lenient>N</date_format_lenient>
  1331. <date_format_locale>en_US</date_format_locale>
  1332. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1333. <lenient_string_to_number>N</lenient_string_to_number>
  1334. </value-meta>
  1335. <value-meta>
  1336. <type>String</type>
  1337. <storagetype>normal</storagetype>
  1338. <name>DEPARTMENT_TYPE_ID</name>
  1339. <length>4</length>
  1340. <precision>-1</precision>
  1341. <origin>Table input</origin>
  1342. <comments>DEPARTMENT_TYPE_ID</comments>
  1343. <conversion_Mask/>
  1344. <decimal_symbol>,</decimal_symbol>
  1345. <grouping_symbol>.</grouping_symbol>
  1346. <currency_symbol/>
  1347. <trim_type>none</trim_type>
  1348. <case_insensitive>N</case_insensitive>
  1349. <collator_disabled>Y</collator_disabled>
  1350. <collator_strength>0</collator_strength>
  1351. <sort_descending>N</sort_descending>
  1352. <output_padding>N</output_padding>
  1353. <date_format_lenient>N</date_format_lenient>
  1354. <date_format_locale>en_US</date_format_locale>
  1355. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1356. <lenient_string_to_number>N</lenient_string_to_number>
  1357. </value-meta>
  1358. <value-meta>
  1359. <type>String</type>
  1360. <storagetype>normal</storagetype>
  1361. <name>DEPARTMENT_DESC</name>
  1362. <length>50</length>
  1363. <precision>-1</precision>
  1364. <origin>Table input</origin>
  1365. <comments>DEPARTMENT_DESC</comments>
  1366. <conversion_Mask/>
  1367. <decimal_symbol>,</decimal_symbol>
  1368. <grouping_symbol>.</grouping_symbol>
  1369. <currency_symbol/>
  1370. <trim_type>none</trim_type>
  1371. <case_insensitive>N</case_insensitive>
  1372. <collator_disabled>Y</collator_disabled>
  1373. <collator_strength>0</collator_strength>
  1374. <sort_descending>N</sort_descending>
  1375. <output_padding>N</output_padding>
  1376. <date_format_lenient>N</date_format_lenient>
  1377. <date_format_locale>en_US</date_format_locale>
  1378. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1379. <lenient_string_to_number>N</lenient_string_to_number>
  1380. </value-meta>
  1381. <value-meta>
  1382. <type>Integer</type>
  1383. <storagetype>normal</storagetype>
  1384. <name>DEPARTMENT_GROUP</name>
  1385. <length>2</length>
  1386. <precision>0</precision>
  1387. <origin>Table input</origin>
  1388. <comments>DEPARTMENT_GROUP</comments>
  1389. <conversion_Mask>####0;-####0</conversion_Mask>
  1390. <decimal_symbol>,</decimal_symbol>
  1391. <grouping_symbol>.</grouping_symbol>
  1392. <currency_symbol/>
  1393. <trim_type>none</trim_type>
  1394. <case_insensitive>N</case_insensitive>
  1395. <collator_disabled>Y</collator_disabled>
  1396. <collator_strength>0</collator_strength>
  1397. <sort_descending>N</sort_descending>
  1398. <output_padding>N</output_padding>
  1399. <date_format_lenient>N</date_format_lenient>
  1400. <date_format_locale>en_US</date_format_locale>
  1401. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1402. <lenient_string_to_number>N</lenient_string_to_number>
  1403. </value-meta>
  1404. <value-meta>
  1405. <type>String</type>
  1406. <storagetype>normal</storagetype>
  1407. <name>SITE_ID</name>
  1408. <length>10</length>
  1409. <precision>-1</precision>
  1410. <origin>Table input</origin>
  1411. <comments>SITE_ID</comments>
  1412. <conversion_Mask/>
  1413. <decimal_symbol>,</decimal_symbol>
  1414. <grouping_symbol>.</grouping_symbol>
  1415. <currency_symbol/>
  1416. <trim_type>none</trim_type>
  1417. <case_insensitive>N</case_insensitive>
  1418. <collator_disabled>Y</collator_disabled>
  1419. <collator_strength>0</collator_strength>
  1420. <sort_descending>N</sort_descending>
  1421. <output_padding>N</output_padding>
  1422. <date_format_lenient>N</date_format_lenient>
  1423. <date_format_locale>en_US</date_format_locale>
  1424. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1425. <lenient_string_to_number>N</lenient_string_to_number>
  1426. </value-meta>
  1427. <value-meta>
  1428. <type>String</type>
  1429. <storagetype>normal</storagetype>
  1430. <name>SITE_DESC</name>
  1431. <length>30</length>
  1432. <precision>-1</precision>
  1433. <origin>Table input</origin>
  1434. <comments>SITE_DESC</comments>
  1435. <conversion_Mask/>
  1436. <decimal_symbol>,</decimal_symbol>
  1437. <grouping_symbol>.</grouping_symbol>
  1438. <currency_symbol/>
  1439. <trim_type>none</trim_type>
  1440. <case_insensitive>N</case_insensitive>
  1441. <collator_disabled>Y</collator_disabled>
  1442. <collator_strength>0</collator_strength>
  1443. <sort_descending>N</sort_descending>
  1444. <output_padding>N</output_padding>
  1445. <date_format_lenient>N</date_format_lenient>
  1446. <date_format_locale>en_US</date_format_locale>
  1447. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1448. <lenient_string_to_number>N</lenient_string_to_number>
  1449. </value-meta>
  1450. <value-meta>
  1451. <type>String</type>
  1452. <storagetype>normal</storagetype>
  1453. <name>STRATEGIC_AREA_ID</name>
  1454. <length>10</length>
  1455. <precision>-1</precision>
  1456. <origin>Table input</origin>
  1457. <comments>STRATEGIC_AREA_ID</comments>
  1458. <conversion_Mask/>
  1459. <decimal_symbol>,</decimal_symbol>
  1460. <grouping_symbol>.</grouping_symbol>
  1461. <currency_symbol/>
  1462. <trim_type>none</trim_type>
  1463. <case_insensitive>N</case_insensitive>
  1464. <collator_disabled>Y</collator_disabled>
  1465. <collator_strength>0</collator_strength>
  1466. <sort_descending>N</sort_descending>
  1467. <output_padding>N</output_padding>
  1468. <date_format_lenient>N</date_format_lenient>
  1469. <date_format_locale>en_US</date_format_locale>
  1470. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1471. <lenient_string_to_number>N</lenient_string_to_number>
  1472. </value-meta>
  1473. <value-meta>
  1474. <type>String</type>
  1475. <storagetype>normal</storagetype>
  1476. <name>STRATEGIC_AREA_DESC</name>
  1477. <length>30</length>
  1478. <precision>-1</precision>
  1479. <origin>Table input</origin>
  1480. <comments>STRATEGIC_AREA_DESC</comments>
  1481. <conversion_Mask/>
  1482. <decimal_symbol>,</decimal_symbol>
  1483. <grouping_symbol>.</grouping_symbol>
  1484. <currency_symbol/>
  1485. <trim_type>none</trim_type>
  1486. <case_insensitive>N</case_insensitive>
  1487. <collator_disabled>Y</collator_disabled>
  1488. <collator_strength>0</collator_strength>
  1489. <sort_descending>N</sort_descending>
  1490. <output_padding>N</output_padding>
  1491. <date_format_lenient>N</date_format_lenient>
  1492. <date_format_locale>en_US</date_format_locale>
  1493. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1494. <lenient_string_to_number>N</lenient_string_to_number>
  1495. </value-meta>
  1496. <value-meta>
  1497. <type>Integer</type>
  1498. <storagetype>normal</storagetype>
  1499. <name>SKR51</name>
  1500. <length>9</length>
  1501. <precision>0</precision>
  1502. <origin>Table input</origin>
  1503. <comments>SKR51</comments>
  1504. <conversion_Mask>####0;-####0</conversion_Mask>
  1505. <decimal_symbol>,</decimal_symbol>
  1506. <grouping_symbol>.</grouping_symbol>
  1507. <currency_symbol/>
  1508. <trim_type>none</trim_type>
  1509. <case_insensitive>N</case_insensitive>
  1510. <collator_disabled>Y</collator_disabled>
  1511. <collator_strength>0</collator_strength>
  1512. <sort_descending>N</sort_descending>
  1513. <output_padding>N</output_padding>
  1514. <date_format_lenient>N</date_format_lenient>
  1515. <date_format_locale>en_US</date_format_locale>
  1516. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1517. <lenient_string_to_number>N</lenient_string_to_number>
  1518. </value-meta>
  1519. <value-meta>
  1520. <type>String</type>
  1521. <storagetype>normal</storagetype>
  1522. <name>Hauptbetrieb_ID</name>
  1523. <length>20</length>
  1524. <precision>-1</precision>
  1525. <origin>Table input</origin>
  1526. <comments>Hauptbetrieb_ID</comments>
  1527. <conversion_Mask/>
  1528. <decimal_symbol>,</decimal_symbol>
  1529. <grouping_symbol>.</grouping_symbol>
  1530. <currency_symbol/>
  1531. <trim_type>none</trim_type>
  1532. <case_insensitive>N</case_insensitive>
  1533. <collator_disabled>Y</collator_disabled>
  1534. <collator_strength>0</collator_strength>
  1535. <sort_descending>N</sort_descending>
  1536. <output_padding>N</output_padding>
  1537. <date_format_lenient>N</date_format_lenient>
  1538. <date_format_locale>en_US</date_format_locale>
  1539. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1540. <lenient_string_to_number>N</lenient_string_to_number>
  1541. </value-meta>
  1542. <value-meta>
  1543. <type>String</type>
  1544. <storagetype>normal</storagetype>
  1545. <name>Standort_ID</name>
  1546. <length>10</length>
  1547. <precision>-1</precision>
  1548. <origin>Table input</origin>
  1549. <comments>Standort_ID</comments>
  1550. <conversion_Mask/>
  1551. <decimal_symbol>,</decimal_symbol>
  1552. <grouping_symbol>.</grouping_symbol>
  1553. <currency_symbol/>
  1554. <trim_type>none</trim_type>
  1555. <case_insensitive>N</case_insensitive>
  1556. <collator_disabled>Y</collator_disabled>
  1557. <collator_strength>0</collator_strength>
  1558. <sort_descending>N</sort_descending>
  1559. <output_padding>N</output_padding>
  1560. <date_format_lenient>N</date_format_lenient>
  1561. <date_format_locale>en_US</date_format_locale>
  1562. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1563. <lenient_string_to_number>N</lenient_string_to_number>
  1564. </value-meta>
  1565. <value-meta>
  1566. <type>String</type>
  1567. <storagetype>normal</storagetype>
  1568. <name>Marke_ID</name>
  1569. <length>10</length>
  1570. <precision>-1</precision>
  1571. <origin>Table input</origin>
  1572. <comments>Marke_ID</comments>
  1573. <conversion_Mask/>
  1574. <decimal_symbol>,</decimal_symbol>
  1575. <grouping_symbol>.</grouping_symbol>
  1576. <currency_symbol/>
  1577. <trim_type>none</trim_type>
  1578. <case_insensitive>N</case_insensitive>
  1579. <collator_disabled>Y</collator_disabled>
  1580. <collator_strength>0</collator_strength>
  1581. <sort_descending>N</sort_descending>
  1582. <output_padding>N</output_padding>
  1583. <date_format_lenient>N</date_format_lenient>
  1584. <date_format_locale>en_US</date_format_locale>
  1585. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1586. <lenient_string_to_number>N</lenient_string_to_number>
  1587. </value-meta>
  1588. <value-meta>
  1589. <type>String</type>
  1590. <storagetype>normal</storagetype>
  1591. <name>Kostenstelle_ID</name>
  1592. <length>4</length>
  1593. <precision>-1</precision>
  1594. <origin>Table input</origin>
  1595. <comments>Kostenstelle_ID</comments>
  1596. <conversion_Mask/>
  1597. <decimal_symbol>,</decimal_symbol>
  1598. <grouping_symbol>.</grouping_symbol>
  1599. <currency_symbol/>
  1600. <trim_type>none</trim_type>
  1601. <case_insensitive>N</case_insensitive>
  1602. <collator_disabled>Y</collator_disabled>
  1603. <collator_strength>0</collator_strength>
  1604. <sort_descending>N</sort_descending>
  1605. <output_padding>N</output_padding>
  1606. <date_format_lenient>N</date_format_lenient>
  1607. <date_format_locale>en_US</date_format_locale>
  1608. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1609. <lenient_string_to_number>N</lenient_string_to_number>
  1610. </value-meta>
  1611. </row-meta>
  1612. <attributes/>
  1613. <cluster_schema/>
  1614. <remotesteps>
  1615. <input>
  1616. </input>
  1617. <output>
  1618. </output>
  1619. </remotesteps>
  1620. <GUI>
  1621. <xloc>128</xloc>
  1622. <yloc>704</yloc>
  1623. <draw>Y</draw>
  1624. </GUI>
  1625. </step>
  1626. <step>
  1627. <name>GC_CONFIG.optima.ECC_Status</name>
  1628. <type>TableInput</type>
  1629. <description/>
  1630. <distribute>Y</distribute>
  1631. <custom_distribution/>
  1632. <copies>1</copies>
  1633. <partitioning>
  1634. <method>none</method>
  1635. <schema_name/>
  1636. </partitioning>
  1637. <connection>GC_CONFIG</connection>
  1638. <sql>SELECT *
  1639. FROM [optima].[ECC_Status]</sql>
  1640. <limit>0</limit>
  1641. <lookup/>
  1642. <execute_each_row>N</execute_each_row>
  1643. <variables_active>N</variables_active>
  1644. <lazy_conversion_active>N</lazy_conversion_active>
  1645. <cached_row_meta_active>N</cached_row_meta_active>
  1646. <row-meta>
  1647. <value-meta>
  1648. <type>String</type>
  1649. <storagetype>normal</storagetype>
  1650. <name>CLIENT_DB</name>
  1651. <length>20</length>
  1652. <precision>-1</precision>
  1653. <origin>GC_CONFIG.optima.Vehicle_Type 2</origin>
  1654. <comments>CLIENT_DB</comments>
  1655. <conversion_Mask/>
  1656. <decimal_symbol>,</decimal_symbol>
  1657. <grouping_symbol>.</grouping_symbol>
  1658. <currency_symbol/>
  1659. <trim_type>none</trim_type>
  1660. <case_insensitive>N</case_insensitive>
  1661. <collator_disabled>Y</collator_disabled>
  1662. <collator_strength>0</collator_strength>
  1663. <sort_descending>N</sort_descending>
  1664. <output_padding>N</output_padding>
  1665. <date_format_lenient>N</date_format_lenient>
  1666. <date_format_locale>en_US</date_format_locale>
  1667. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1668. <lenient_string_to_number>N</lenient_string_to_number>
  1669. </value-meta>
  1670. <value-meta>
  1671. <type>String</type>
  1672. <storagetype>normal</storagetype>
  1673. <name>ECC_STATUS</name>
  1674. <length>10</length>
  1675. <precision>-1</precision>
  1676. <origin>GC_CONFIG.optima.Vehicle_Type 2</origin>
  1677. <comments>ECC_STATUS</comments>
  1678. <conversion_Mask/>
  1679. <decimal_symbol>,</decimal_symbol>
  1680. <grouping_symbol>.</grouping_symbol>
  1681. <currency_symbol/>
  1682. <trim_type>none</trim_type>
  1683. <case_insensitive>N</case_insensitive>
  1684. <collator_disabled>Y</collator_disabled>
  1685. <collator_strength>0</collator_strength>
  1686. <sort_descending>N</sort_descending>
  1687. <output_padding>N</output_padding>
  1688. <date_format_lenient>N</date_format_lenient>
  1689. <date_format_locale>en_US</date_format_locale>
  1690. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1691. <lenient_string_to_number>N</lenient_string_to_number>
  1692. </value-meta>
  1693. <value-meta>
  1694. <type>String</type>
  1695. <storagetype>normal</storagetype>
  1696. <name>SPECIFY</name>
  1697. <length>50</length>
  1698. <precision>-1</precision>
  1699. <origin>GC_CONFIG.optima.Vehicle_Type 2</origin>
  1700. <comments>SPECIFY</comments>
  1701. <conversion_Mask/>
  1702. <decimal_symbol>,</decimal_symbol>
  1703. <grouping_symbol>.</grouping_symbol>
  1704. <currency_symbol/>
  1705. <trim_type>none</trim_type>
  1706. <case_insensitive>N</case_insensitive>
  1707. <collator_disabled>Y</collator_disabled>
  1708. <collator_strength>0</collator_strength>
  1709. <sort_descending>N</sort_descending>
  1710. <output_padding>N</output_padding>
  1711. <date_format_lenient>N</date_format_lenient>
  1712. <date_format_locale>en_US</date_format_locale>
  1713. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1714. <lenient_string_to_number>N</lenient_string_to_number>
  1715. </value-meta>
  1716. <value-meta>
  1717. <type>String</type>
  1718. <storagetype>normal</storagetype>
  1719. <name>Bereich</name>
  1720. <length>10</length>
  1721. <precision>-1</precision>
  1722. <origin>GC_CONFIG.optima.Vehicle_Type 2</origin>
  1723. <comments>Bereich</comments>
  1724. <conversion_Mask/>
  1725. <decimal_symbol>,</decimal_symbol>
  1726. <grouping_symbol>.</grouping_symbol>
  1727. <currency_symbol/>
  1728. <trim_type>none</trim_type>
  1729. <case_insensitive>N</case_insensitive>
  1730. <collator_disabled>Y</collator_disabled>
  1731. <collator_strength>0</collator_strength>
  1732. <sort_descending>N</sort_descending>
  1733. <output_padding>N</output_padding>
  1734. <date_format_lenient>N</date_format_lenient>
  1735. <date_format_locale>en_US</date_format_locale>
  1736. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1737. <lenient_string_to_number>N</lenient_string_to_number>
  1738. </value-meta>
  1739. <value-meta>
  1740. <type>String</type>
  1741. <storagetype>normal</storagetype>
  1742. <name>Auftragsstatus</name>
  1743. <length>20</length>
  1744. <precision>-1</precision>
  1745. <origin>GC_CONFIG.optima.Vehicle_Type 2</origin>
  1746. <comments>Auftragsstatus</comments>
  1747. <conversion_Mask/>
  1748. <decimal_symbol>,</decimal_symbol>
  1749. <grouping_symbol>.</grouping_symbol>
  1750. <currency_symbol/>
  1751. <trim_type>none</trim_type>
  1752. <case_insensitive>N</case_insensitive>
  1753. <collator_disabled>Y</collator_disabled>
  1754. <collator_strength>0</collator_strength>
  1755. <sort_descending>N</sort_descending>
  1756. <output_padding>N</output_padding>
  1757. <date_format_lenient>N</date_format_lenient>
  1758. <date_format_locale>en_US</date_format_locale>
  1759. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1760. <lenient_string_to_number>N</lenient_string_to_number>
  1761. </value-meta>
  1762. <value-meta>
  1763. <type>String</type>
  1764. <storagetype>normal</storagetype>
  1765. <name>Fahrzeugstatus</name>
  1766. <length>100</length>
  1767. <precision>-1</precision>
  1768. <origin>GC_CONFIG.optima.Vehicle_Type 2</origin>
  1769. <comments>Fahrzeugstatus</comments>
  1770. <conversion_Mask/>
  1771. <decimal_symbol>,</decimal_symbol>
  1772. <grouping_symbol>.</grouping_symbol>
  1773. <currency_symbol/>
  1774. <trim_type>none</trim_type>
  1775. <case_insensitive>N</case_insensitive>
  1776. <collator_disabled>Y</collator_disabled>
  1777. <collator_strength>0</collator_strength>
  1778. <sort_descending>N</sort_descending>
  1779. <output_padding>N</output_padding>
  1780. <date_format_lenient>N</date_format_lenient>
  1781. <date_format_locale>en_US</date_format_locale>
  1782. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1783. <lenient_string_to_number>N</lenient_string_to_number>
  1784. </value-meta>
  1785. <value-meta>
  1786. <type>Binary</type>
  1787. <storagetype>normal</storagetype>
  1788. <name>timestamp</name>
  1789. <length>-1</length>
  1790. <precision>0</precision>
  1791. <origin>GC_CONFIG.optima.Vehicle_Type 2</origin>
  1792. <comments>timestamp</comments>
  1793. <conversion_Mask/>
  1794. <decimal_symbol>,</decimal_symbol>
  1795. <grouping_symbol>.</grouping_symbol>
  1796. <currency_symbol/>
  1797. <trim_type>none</trim_type>
  1798. <case_insensitive>N</case_insensitive>
  1799. <collator_disabled>Y</collator_disabled>
  1800. <collator_strength>0</collator_strength>
  1801. <sort_descending>N</sort_descending>
  1802. <output_padding>N</output_padding>
  1803. <date_format_lenient>N</date_format_lenient>
  1804. <date_format_locale>en_US</date_format_locale>
  1805. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1806. <lenient_string_to_number>N</lenient_string_to_number>
  1807. </value-meta>
  1808. </row-meta>
  1809. <attributes/>
  1810. <cluster_schema/>
  1811. <remotesteps>
  1812. <input>
  1813. </input>
  1814. <output>
  1815. </output>
  1816. </remotesteps>
  1817. <GUI>
  1818. <xloc>128</xloc>
  1819. <yloc>320</yloc>
  1820. <draw>Y</draw>
  1821. </GUI>
  1822. </step>
  1823. <step>
  1824. <name>GC_CONFIG.optima.Transaction_Code</name>
  1825. <type>TableInput</type>
  1826. <description/>
  1827. <distribute>Y</distribute>
  1828. <custom_distribution/>
  1829. <copies>1</copies>
  1830. <partitioning>
  1831. <method>none</method>
  1832. <schema_name/>
  1833. </partitioning>
  1834. <connection>GC_CONFIG</connection>
  1835. <sql>SELECT *
  1836. FROM [optima].[Transaction_Code]</sql>
  1837. <limit>0</limit>
  1838. <lookup/>
  1839. <execute_each_row>N</execute_each_row>
  1840. <variables_active>N</variables_active>
  1841. <lazy_conversion_active>N</lazy_conversion_active>
  1842. <cached_row_meta_active>N</cached_row_meta_active>
  1843. <row-meta>
  1844. <value-meta>
  1845. <type>String</type>
  1846. <storagetype>normal</storagetype>
  1847. <name>CLIENT_DB</name>
  1848. <length>20</length>
  1849. <precision>-1</precision>
  1850. <origin>GC_CONFIG.optima.Transaction_Code</origin>
  1851. <comments>CLIENT_DB</comments>
  1852. <conversion_Mask/>
  1853. <decimal_symbol>,</decimal_symbol>
  1854. <grouping_symbol>.</grouping_symbol>
  1855. <currency_symbol/>
  1856. <trim_type>none</trim_type>
  1857. <case_insensitive>N</case_insensitive>
  1858. <collator_disabled>Y</collator_disabled>
  1859. <collator_strength>0</collator_strength>
  1860. <sort_descending>N</sort_descending>
  1861. <output_padding>N</output_padding>
  1862. <date_format_lenient>N</date_format_lenient>
  1863. <date_format_locale>en_US</date_format_locale>
  1864. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1865. <lenient_string_to_number>N</lenient_string_to_number>
  1866. </value-meta>
  1867. <value-meta>
  1868. <type>String</type>
  1869. <storagetype>normal</storagetype>
  1870. <name>TRANSACTION_CODE</name>
  1871. <length>12</length>
  1872. <precision>-1</precision>
  1873. <origin>GC_CONFIG.optima.Transaction_Code</origin>
  1874. <comments>TRANSACTION_CODE</comments>
  1875. <conversion_Mask/>
  1876. <decimal_symbol>,</decimal_symbol>
  1877. <grouping_symbol>.</grouping_symbol>
  1878. <currency_symbol/>
  1879. <trim_type>none</trim_type>
  1880. <case_insensitive>N</case_insensitive>
  1881. <collator_disabled>Y</collator_disabled>
  1882. <collator_strength>0</collator_strength>
  1883. <sort_descending>N</sort_descending>
  1884. <output_padding>N</output_padding>
  1885. <date_format_lenient>N</date_format_lenient>
  1886. <date_format_locale>en_US</date_format_locale>
  1887. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1888. <lenient_string_to_number>N</lenient_string_to_number>
  1889. </value-meta>
  1890. <value-meta>
  1891. <type>String</type>
  1892. <storagetype>normal</storagetype>
  1893. <name>SPECIFY</name>
  1894. <length>50</length>
  1895. <precision>-1</precision>
  1896. <origin>GC_CONFIG.optima.Transaction_Code</origin>
  1897. <comments>SPECIFY</comments>
  1898. <conversion_Mask/>
  1899. <decimal_symbol>,</decimal_symbol>
  1900. <grouping_symbol>.</grouping_symbol>
  1901. <currency_symbol/>
  1902. <trim_type>none</trim_type>
  1903. <case_insensitive>N</case_insensitive>
  1904. <collator_disabled>Y</collator_disabled>
  1905. <collator_strength>0</collator_strength>
  1906. <sort_descending>N</sort_descending>
  1907. <output_padding>N</output_padding>
  1908. <date_format_lenient>N</date_format_lenient>
  1909. <date_format_locale>en_US</date_format_locale>
  1910. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1911. <lenient_string_to_number>N</lenient_string_to_number>
  1912. </value-meta>
  1913. <value-meta>
  1914. <type>String</type>
  1915. <storagetype>normal</storagetype>
  1916. <name>TRANSFER_CODE</name>
  1917. <length>2</length>
  1918. <precision>-1</precision>
  1919. <origin>GC_CONFIG.optima.Transaction_Code</origin>
  1920. <comments>TRANSFER_CODE</comments>
  1921. <conversion_Mask/>
  1922. <decimal_symbol>,</decimal_symbol>
  1923. <grouping_symbol>.</grouping_symbol>
  1924. <currency_symbol/>
  1925. <trim_type>none</trim_type>
  1926. <case_insensitive>N</case_insensitive>
  1927. <collator_disabled>Y</collator_disabled>
  1928. <collator_strength>0</collator_strength>
  1929. <sort_descending>N</sort_descending>
  1930. <output_padding>N</output_padding>
  1931. <date_format_lenient>N</date_format_lenient>
  1932. <date_format_locale>en_US</date_format_locale>
  1933. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1934. <lenient_string_to_number>N</lenient_string_to_number>
  1935. </value-meta>
  1936. <value-meta>
  1937. <type>String</type>
  1938. <storagetype>normal</storagetype>
  1939. <name>Umsatz_Einsatz</name>
  1940. <length>7</length>
  1941. <precision>-1</precision>
  1942. <origin>GC_CONFIG.optima.Transaction_Code</origin>
  1943. <comments>Umsatz_Einsatz</comments>
  1944. <conversion_Mask/>
  1945. <decimal_symbol>,</decimal_symbol>
  1946. <grouping_symbol>.</grouping_symbol>
  1947. <currency_symbol/>
  1948. <trim_type>none</trim_type>
  1949. <case_insensitive>N</case_insensitive>
  1950. <collator_disabled>Y</collator_disabled>
  1951. <collator_strength>0</collator_strength>
  1952. <sort_descending>N</sort_descending>
  1953. <output_padding>N</output_padding>
  1954. <date_format_lenient>N</date_format_lenient>
  1955. <date_format_locale>en_US</date_format_locale>
  1956. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1957. <lenient_string_to_number>N</lenient_string_to_number>
  1958. </value-meta>
  1959. <value-meta>
  1960. <type>String</type>
  1961. <storagetype>normal</storagetype>
  1962. <name>Kennzahl</name>
  1963. <length>13</length>
  1964. <precision>-1</precision>
  1965. <origin>GC_CONFIG.optima.Transaction_Code</origin>
  1966. <comments>Kennzahl</comments>
  1967. <conversion_Mask/>
  1968. <decimal_symbol>,</decimal_symbol>
  1969. <grouping_symbol>.</grouping_symbol>
  1970. <currency_symbol/>
  1971. <trim_type>none</trim_type>
  1972. <case_insensitive>N</case_insensitive>
  1973. <collator_disabled>Y</collator_disabled>
  1974. <collator_strength>0</collator_strength>
  1975. <sort_descending>N</sort_descending>
  1976. <output_padding>N</output_padding>
  1977. <date_format_lenient>N</date_format_lenient>
  1978. <date_format_locale>en_US</date_format_locale>
  1979. <date_format_timezone>Europe/Berlin</date_format_timezone>
  1980. <lenient_string_to_number>N</lenient_string_to_number>
  1981. </value-meta>
  1982. <value-meta>
  1983. <type>String</type>
  1984. <storagetype>normal</storagetype>
  1985. <name>Kennzahl2</name>
  1986. <length>9</length>
  1987. <precision>-1</precision>
  1988. <origin>GC_CONFIG.optima.Transaction_Code</origin>
  1989. <comments>Kennzahl2</comments>
  1990. <conversion_Mask/>
  1991. <decimal_symbol>,</decimal_symbol>
  1992. <grouping_symbol>.</grouping_symbol>
  1993. <currency_symbol/>
  1994. <trim_type>none</trim_type>
  1995. <case_insensitive>N</case_insensitive>
  1996. <collator_disabled>Y</collator_disabled>
  1997. <collator_strength>0</collator_strength>
  1998. <sort_descending>N</sort_descending>
  1999. <output_padding>N</output_padding>
  2000. <date_format_lenient>N</date_format_lenient>
  2001. <date_format_locale>en_US</date_format_locale>
  2002. <date_format_timezone>Europe/Berlin</date_format_timezone>
  2003. <lenient_string_to_number>N</lenient_string_to_number>
  2004. </value-meta>
  2005. </row-meta>
  2006. <attributes/>
  2007. <cluster_schema/>
  2008. <remotesteps>
  2009. <input>
  2010. </input>
  2011. <output>
  2012. </output>
  2013. </remotesteps>
  2014. <GUI>
  2015. <xloc>128</xloc>
  2016. <yloc>1216</yloc>
  2017. <draw>Y</draw>
  2018. </GUI>
  2019. </step>
  2020. <step>
  2021. <name>GC_CONFIG.optima.Vehicle_Type</name>
  2022. <type>TableInput</type>
  2023. <description/>
  2024. <distribute>Y</distribute>
  2025. <custom_distribution/>
  2026. <copies>1</copies>
  2027. <partitioning>
  2028. <method>none</method>
  2029. <schema_name/>
  2030. </partitioning>
  2031. <connection>GC_CONFIG</connection>
  2032. <sql>SELECT *
  2033. FROM [optima].[Vehicle_Type]</sql>
  2034. <limit>0</limit>
  2035. <lookup/>
  2036. <execute_each_row>N</execute_each_row>
  2037. <variables_active>N</variables_active>
  2038. <lazy_conversion_active>N</lazy_conversion_active>
  2039. <cached_row_meta_active>N</cached_row_meta_active>
  2040. <row-meta>
  2041. <value-meta>
  2042. <type>String</type>
  2043. <storagetype>normal</storagetype>
  2044. <name>CLIENT_DB</name>
  2045. <length>20</length>
  2046. <precision>-1</precision>
  2047. <origin>extract.UNIT_FILE 2</origin>
  2048. <comments>CLIENT_DB</comments>
  2049. <conversion_Mask/>
  2050. <decimal_symbol>,</decimal_symbol>
  2051. <grouping_symbol>.</grouping_symbol>
  2052. <currency_symbol/>
  2053. <trim_type>none</trim_type>
  2054. <case_insensitive>N</case_insensitive>
  2055. <collator_disabled>Y</collator_disabled>
  2056. <collator_strength>0</collator_strength>
  2057. <sort_descending>N</sort_descending>
  2058. <output_padding>N</output_padding>
  2059. <date_format_lenient>N</date_format_lenient>
  2060. <date_format_locale>en_US</date_format_locale>
  2061. <date_format_timezone>Europe/Berlin</date_format_timezone>
  2062. <lenient_string_to_number>N</lenient_string_to_number>
  2063. </value-meta>
  2064. <value-meta>
  2065. <type>String</type>
  2066. <storagetype>normal</storagetype>
  2067. <name>VEHICLE_TYPE</name>
  2068. <length>2</length>
  2069. <precision>-1</precision>
  2070. <origin>extract.UNIT_FILE 2</origin>
  2071. <comments>VEHICLE_TYPE</comments>
  2072. <conversion_Mask/>
  2073. <decimal_symbol>,</decimal_symbol>
  2074. <grouping_symbol>.</grouping_symbol>
  2075. <currency_symbol/>
  2076. <trim_type>none</trim_type>
  2077. <case_insensitive>N</case_insensitive>
  2078. <collator_disabled>Y</collator_disabled>
  2079. <collator_strength>0</collator_strength>
  2080. <sort_descending>N</sort_descending>
  2081. <output_padding>N</output_padding>
  2082. <date_format_lenient>N</date_format_lenient>
  2083. <date_format_locale>en_US</date_format_locale>
  2084. <date_format_timezone>Europe/Berlin</date_format_timezone>
  2085. <lenient_string_to_number>N</lenient_string_to_number>
  2086. </value-meta>
  2087. <value-meta>
  2088. <type>String</type>
  2089. <storagetype>normal</storagetype>
  2090. <name>VEHICLE_TYPE_TEXT</name>
  2091. <length>30</length>
  2092. <precision>-1</precision>
  2093. <origin>extract.UNIT_FILE 2</origin>
  2094. <comments>VEHICLE_TYPE_TEXT</comments>
  2095. <conversion_Mask/>
  2096. <decimal_symbol>,</decimal_symbol>
  2097. <grouping_symbol>.</grouping_symbol>
  2098. <currency_symbol/>
  2099. <trim_type>none</trim_type>
  2100. <case_insensitive>N</case_insensitive>
  2101. <collator_disabled>Y</collator_disabled>
  2102. <collator_strength>0</collator_strength>
  2103. <sort_descending>N</sort_descending>
  2104. <output_padding>N</output_padding>
  2105. <date_format_lenient>N</date_format_lenient>
  2106. <date_format_locale>en_US</date_format_locale>
  2107. <date_format_timezone>Europe/Berlin</date_format_timezone>
  2108. <lenient_string_to_number>N</lenient_string_to_number>
  2109. </value-meta>
  2110. <value-meta>
  2111. <type>String</type>
  2112. <storagetype>normal</storagetype>
  2113. <name>Fahrzeugart</name>
  2114. <length>14</length>
  2115. <precision>-1</precision>
  2116. <origin>extract.UNIT_FILE 2</origin>
  2117. <comments>Fahrzeugart</comments>
  2118. <conversion_Mask/>
  2119. <decimal_symbol>,</decimal_symbol>
  2120. <grouping_symbol>.</grouping_symbol>
  2121. <currency_symbol/>
  2122. <trim_type>none</trim_type>
  2123. <case_insensitive>N</case_insensitive>
  2124. <collator_disabled>Y</collator_disabled>
  2125. <collator_strength>0</collator_strength>
  2126. <sort_descending>N</sort_descending>
  2127. <output_padding>N</output_padding>
  2128. <date_format_lenient>N</date_format_lenient>
  2129. <date_format_locale>en_US</date_format_locale>
  2130. <date_format_timezone>Europe/Berlin</date_format_timezone>
  2131. <lenient_string_to_number>N</lenient_string_to_number>
  2132. </value-meta>
  2133. <value-meta>
  2134. <type>String</type>
  2135. <storagetype>normal</storagetype>
  2136. <name>Fahrzeugtyp</name>
  2137. <length>35</length>
  2138. <precision>-1</precision>
  2139. <origin>extract.UNIT_FILE 2</origin>
  2140. <comments>Fahrzeugtyp</comments>
  2141. <conversion_Mask/>
  2142. <decimal_symbol>,</decimal_symbol>
  2143. <grouping_symbol>.</grouping_symbol>
  2144. <currency_symbol/>
  2145. <trim_type>none</trim_type>
  2146. <case_insensitive>N</case_insensitive>
  2147. <collator_disabled>Y</collator_disabled>
  2148. <collator_strength>0</collator_strength>
  2149. <sort_descending>N</sort_descending>
  2150. <output_padding>N</output_padding>
  2151. <date_format_lenient>N</date_format_lenient>
  2152. <date_format_locale>en_US</date_format_locale>
  2153. <date_format_timezone>Europe/Berlin</date_format_timezone>
  2154. <lenient_string_to_number>N</lenient_string_to_number>
  2155. </value-meta>
  2156. </row-meta>
  2157. <attributes/>
  2158. <cluster_schema/>
  2159. <remotesteps>
  2160. <input>
  2161. </input>
  2162. <output>
  2163. </output>
  2164. </remotesteps>
  2165. <GUI>
  2166. <xloc>128</xloc>
  2167. <yloc>448</yloc>
  2168. <draw>Y</draw>
  2169. </GUI>
  2170. </step>
  2171. <step>
  2172. <name>GC_DWH.dbo.Verkauf</name>
  2173. <type>TableOutput</type>
  2174. <description/>
  2175. <distribute>Y</distribute>
  2176. <custom_distribution/>
  2177. <copies>1</copies>
  2178. <partitioning>
  2179. <method>none</method>
  2180. <schema_name/>
  2181. </partitioning>
  2182. <connection>GC_DWH</connection>
  2183. <schema>dbo</schema>
  2184. <table>Verkauf_Pentaho</table>
  2185. <commit>5000</commit>
  2186. <truncate>Y</truncate>
  2187. <ignore_errors>N</ignore_errors>
  2188. <use_batch>Y</use_batch>
  2189. <specify_fields>N</specify_fields>
  2190. <partitioning_enabled>N</partitioning_enabled>
  2191. <partitioning_field/>
  2192. <partitioning_daily>N</partitioning_daily>
  2193. <partitioning_monthly>Y</partitioning_monthly>
  2194. <tablename_in_field>N</tablename_in_field>
  2195. <tablename_field/>
  2196. <tablename_in_table>Y</tablename_in_table>
  2197. <return_keys>N</return_keys>
  2198. <return_field/>
  2199. <fields>
  2200. </fields>
  2201. <attributes/>
  2202. <cluster_schema/>
  2203. <remotesteps>
  2204. <input>
  2205. </input>
  2206. <output>
  2207. </output>
  2208. </remotesteps>
  2209. <GUI>
  2210. <xloc>2176</xloc>
  2211. <yloc>192</yloc>
  2212. <draw>Y</draw>
  2213. </GUI>
  2214. </step>
  2215. <step>
  2216. <name>Verkauf_Auswahl_Übersetzung</name>
  2217. <type>SelectValues</type>
  2218. <description/>
  2219. <distribute>Y</distribute>
  2220. <custom_distribution/>
  2221. <copies>1</copies>
  2222. <partitioning>
  2223. <method>none</method>
  2224. <schema_name/>
  2225. </partitioning>
  2226. <fields>
  2227. <select_unspecified>N</select_unspecified>
  2228. <remove>
  2229. <name>DEPARTMENT_1</name>
  2230. </remove>
  2231. <remove>
  2232. <name>CLIENT_DB_1</name>
  2233. </remove>
  2234. <remove>
  2235. <name>UNIT_NUMBER_1</name>
  2236. </remove>
  2237. <meta>
  2238. <name>CLIENT_DB</name>
  2239. <rename>CLIENT_DB</rename>
  2240. <type>None</type>
  2241. <length>20</length>
  2242. <precision>-2</precision>
  2243. <conversion_mask/>
  2244. <date_format_lenient>false</date_format_lenient>
  2245. <date_format_locale/>
  2246. <date_format_timezone/>
  2247. <lenient_string_to_number>false</lenient_string_to_number>
  2248. <encoding/>
  2249. <decimal_symbol/>
  2250. <grouping_symbol/>
  2251. <currency_symbol/>
  2252. <storage_type/>
  2253. </meta>
  2254. <meta>
  2255. <name>UNIT_NUMBER</name>
  2256. <rename>UNIT_NUMBER</rename>
  2257. <type>None</type>
  2258. <length>10</length>
  2259. <precision>-2</precision>
  2260. <conversion_mask/>
  2261. <date_format_lenient>false</date_format_lenient>
  2262. <date_format_locale/>
  2263. <date_format_timezone/>
  2264. <lenient_string_to_number>false</lenient_string_to_number>
  2265. <encoding/>
  2266. <decimal_symbol/>
  2267. <grouping_symbol/>
  2268. <currency_symbol/>
  2269. <storage_type/>
  2270. </meta>
  2271. <meta>
  2272. <name>BASIS_NUMBER</name>
  2273. <rename>BASIS_NUMBER</rename>
  2274. <type>None</type>
  2275. <length>20</length>
  2276. <precision>-2</precision>
  2277. <conversion_mask/>
  2278. <date_format_lenient>false</date_format_lenient>
  2279. <date_format_locale/>
  2280. <date_format_timezone/>
  2281. <lenient_string_to_number>false</lenient_string_to_number>
  2282. <encoding/>
  2283. <decimal_symbol/>
  2284. <grouping_symbol/>
  2285. <currency_symbol/>
  2286. <storage_type/>
  2287. </meta>
  2288. <meta>
  2289. <name>ECC_STATUS</name>
  2290. <rename>ECC_STATUS</rename>
  2291. <type>None</type>
  2292. <length>2</length>
  2293. <precision>-2</precision>
  2294. <conversion_mask/>
  2295. <date_format_lenient>false</date_format_lenient>
  2296. <date_format_locale/>
  2297. <date_format_timezone/>
  2298. <lenient_string_to_number>false</lenient_string_to_number>
  2299. <encoding/>
  2300. <decimal_symbol/>
  2301. <grouping_symbol/>
  2302. <currency_symbol/>
  2303. <storage_type/>
  2304. </meta>
  2305. <meta>
  2306. <name>VEHICLE_TYPE</name>
  2307. <rename>VEHICLE_TYPE</rename>
  2308. <type>None</type>
  2309. <length>1</length>
  2310. <precision>-2</precision>
  2311. <conversion_mask/>
  2312. <date_format_lenient>false</date_format_lenient>
  2313. <date_format_locale/>
  2314. <date_format_timezone/>
  2315. <lenient_string_to_number>false</lenient_string_to_number>
  2316. <encoding/>
  2317. <decimal_symbol/>
  2318. <grouping_symbol/>
  2319. <currency_symbol/>
  2320. <storage_type/>
  2321. </meta>
  2322. <meta>
  2323. <name>SALE_DATE</name>
  2324. <rename>SALE_DATE</rename>
  2325. <type>None</type>
  2326. <length>3</length>
  2327. <precision>-2</precision>
  2328. <conversion_mask/>
  2329. <date_format_lenient>false</date_format_lenient>
  2330. <date_format_locale/>
  2331. <date_format_timezone/>
  2332. <lenient_string_to_number>false</lenient_string_to_number>
  2333. <encoding/>
  2334. <decimal_symbol/>
  2335. <grouping_symbol/>
  2336. <currency_symbol/>
  2337. <storage_type/>
  2338. </meta>
  2339. <meta>
  2340. <name>RECEPTION_DATE</name>
  2341. <rename>RECEPTION_DATE</rename>
  2342. <type>None</type>
  2343. <length>3</length>
  2344. <precision>-2</precision>
  2345. <conversion_mask/>
  2346. <date_format_lenient>false</date_format_lenient>
  2347. <date_format_locale/>
  2348. <date_format_timezone/>
  2349. <lenient_string_to_number>false</lenient_string_to_number>
  2350. <encoding/>
  2351. <decimal_symbol/>
  2352. <grouping_symbol/>
  2353. <currency_symbol/>
  2354. <storage_type/>
  2355. </meta>
  2356. <meta>
  2357. <name>PURCH_DATE</name>
  2358. <rename>PURCH_DATE</rename>
  2359. <type>None</type>
  2360. <length>3</length>
  2361. <precision>-2</precision>
  2362. <conversion_mask/>
  2363. <date_format_lenient>false</date_format_lenient>
  2364. <date_format_locale/>
  2365. <date_format_timezone/>
  2366. <lenient_string_to_number>false</lenient_string_to_number>
  2367. <encoding/>
  2368. <decimal_symbol/>
  2369. <grouping_symbol/>
  2370. <currency_symbol/>
  2371. <storage_type/>
  2372. </meta>
  2373. <meta>
  2374. <name>PREV_OWNER</name>
  2375. <rename>PREV_OWNER</rename>
  2376. <type>None</type>
  2377. <length>60</length>
  2378. <precision>-2</precision>
  2379. <conversion_mask/>
  2380. <date_format_lenient>false</date_format_lenient>
  2381. <date_format_locale/>
  2382. <date_format_timezone/>
  2383. <lenient_string_to_number>false</lenient_string_to_number>
  2384. <encoding/>
  2385. <decimal_symbol/>
  2386. <grouping_symbol/>
  2387. <currency_symbol/>
  2388. <storage_type/>
  2389. </meta>
  2390. <meta>
  2391. <name>ACCOUNT_SALES</name>
  2392. <rename>ACCOUNT_SALES</rename>
  2393. <type>None</type>
  2394. <length>10</length>
  2395. <precision>-2</precision>
  2396. <conversion_mask/>
  2397. <date_format_lenient>false</date_format_lenient>
  2398. <date_format_locale/>
  2399. <date_format_timezone/>
  2400. <lenient_string_to_number>false</lenient_string_to_number>
  2401. <encoding/>
  2402. <decimal_symbol/>
  2403. <grouping_symbol/>
  2404. <currency_symbol/>
  2405. <storage_type/>
  2406. </meta>
  2407. <meta>
  2408. <name>SALES_DEPARTMENT</name>
  2409. <rename>SALES_DEPARTMENT</rename>
  2410. <type>None</type>
  2411. <length>4</length>
  2412. <precision>-2</precision>
  2413. <conversion_mask/>
  2414. <date_format_lenient>false</date_format_lenient>
  2415. <date_format_locale/>
  2416. <date_format_timezone/>
  2417. <lenient_string_to_number>false</lenient_string_to_number>
  2418. <encoding/>
  2419. <decimal_symbol/>
  2420. <grouping_symbol/>
  2421. <currency_symbol/>
  2422. <storage_type/>
  2423. </meta>
  2424. <meta>
  2425. <name>SALE_SALESMAN</name>
  2426. <rename>SALE_SALESMAN</rename>
  2427. <type>None</type>
  2428. <length>20</length>
  2429. <precision>-2</precision>
  2430. <conversion_mask/>
  2431. <date_format_lenient>false</date_format_lenient>
  2432. <date_format_locale/>
  2433. <date_format_timezone/>
  2434. <lenient_string_to_number>false</lenient_string_to_number>
  2435. <encoding/>
  2436. <decimal_symbol/>
  2437. <grouping_symbol/>
  2438. <currency_symbol/>
  2439. <storage_type/>
  2440. </meta>
  2441. <meta>
  2442. <name>PURCH_SALSMAN_CODE</name>
  2443. <rename>PURCH_SALSMAN_CODE</rename>
  2444. <type>None</type>
  2445. <length>20</length>
  2446. <precision>-2</precision>
  2447. <conversion_mask/>
  2448. <date_format_lenient>false</date_format_lenient>
  2449. <date_format_locale/>
  2450. <date_format_timezone/>
  2451. <lenient_string_to_number>false</lenient_string_to_number>
  2452. <encoding/>
  2453. <decimal_symbol/>
  2454. <grouping_symbol/>
  2455. <currency_symbol/>
  2456. <storage_type/>
  2457. </meta>
  2458. <meta>
  2459. <name>SPECIFY</name>
  2460. <rename>SPECIFY</rename>
  2461. <type>None</type>
  2462. <length>50</length>
  2463. <precision>-2</precision>
  2464. <conversion_mask/>
  2465. <date_format_lenient>false</date_format_lenient>
  2466. <date_format_locale/>
  2467. <date_format_timezone/>
  2468. <lenient_string_to_number>false</lenient_string_to_number>
  2469. <encoding/>
  2470. <decimal_symbol/>
  2471. <grouping_symbol/>
  2472. <currency_symbol/>
  2473. <storage_type/>
  2474. </meta>
  2475. <meta>
  2476. <name>Bereich</name>
  2477. <rename>Bereich</rename>
  2478. <type>None</type>
  2479. <length>10</length>
  2480. <precision>-2</precision>
  2481. <conversion_mask/>
  2482. <date_format_lenient>false</date_format_lenient>
  2483. <date_format_locale/>
  2484. <date_format_timezone/>
  2485. <lenient_string_to_number>false</lenient_string_to_number>
  2486. <encoding/>
  2487. <decimal_symbol/>
  2488. <grouping_symbol/>
  2489. <currency_symbol/>
  2490. <storage_type/>
  2491. </meta>
  2492. <meta>
  2493. <name>Auftragsstatus</name>
  2494. <rename>Auftragsstatus</rename>
  2495. <type>None</type>
  2496. <length>20</length>
  2497. <precision>-2</precision>
  2498. <conversion_mask/>
  2499. <date_format_lenient>false</date_format_lenient>
  2500. <date_format_locale/>
  2501. <date_format_timezone/>
  2502. <lenient_string_to_number>false</lenient_string_to_number>
  2503. <encoding/>
  2504. <decimal_symbol/>
  2505. <grouping_symbol/>
  2506. <currency_symbol/>
  2507. <storage_type/>
  2508. </meta>
  2509. <meta>
  2510. <name>Fahrzeugstatus</name>
  2511. <rename>Fahrzeugstatus</rename>
  2512. <type>None</type>
  2513. <length>100</length>
  2514. <precision>-2</precision>
  2515. <conversion_mask/>
  2516. <date_format_lenient>false</date_format_lenient>
  2517. <date_format_locale/>
  2518. <date_format_timezone/>
  2519. <lenient_string_to_number>false</lenient_string_to_number>
  2520. <encoding/>
  2521. <decimal_symbol/>
  2522. <grouping_symbol/>
  2523. <currency_symbol/>
  2524. <storage_type/>
  2525. </meta>
  2526. <meta>
  2527. <name>timestamp</name>
  2528. <rename>timestamp</rename>
  2529. <type>None</type>
  2530. <length>-2</length>
  2531. <precision>0</precision>
  2532. <conversion_mask/>
  2533. <date_format_lenient>false</date_format_lenient>
  2534. <date_format_locale/>
  2535. <date_format_timezone/>
  2536. <lenient_string_to_number>false</lenient_string_to_number>
  2537. <encoding/>
  2538. <decimal_symbol/>
  2539. <grouping_symbol/>
  2540. <currency_symbol/>
  2541. <storage_type/>
  2542. </meta>
  2543. <meta>
  2544. <name>VEHICLE_TYPE_TEXT</name>
  2545. <rename>VEHICLE_TYPE_TEXT</rename>
  2546. <type>None</type>
  2547. <length>30</length>
  2548. <precision>-2</precision>
  2549. <conversion_mask/>
  2550. <date_format_lenient>false</date_format_lenient>
  2551. <date_format_locale/>
  2552. <date_format_timezone/>
  2553. <lenient_string_to_number>false</lenient_string_to_number>
  2554. <encoding/>
  2555. <decimal_symbol/>
  2556. <grouping_symbol/>
  2557. <currency_symbol/>
  2558. <storage_type/>
  2559. </meta>
  2560. <meta>
  2561. <name>Fahrzeugart</name>
  2562. <rename>Fahrzeugart</rename>
  2563. <type>None</type>
  2564. <length>14</length>
  2565. <precision>-2</precision>
  2566. <conversion_mask/>
  2567. <date_format_lenient>false</date_format_lenient>
  2568. <date_format_locale/>
  2569. <date_format_timezone/>
  2570. <lenient_string_to_number>false</lenient_string_to_number>
  2571. <encoding/>
  2572. <decimal_symbol/>
  2573. <grouping_symbol/>
  2574. <currency_symbol/>
  2575. <storage_type/>
  2576. </meta>
  2577. <meta>
  2578. <name>Fahrzeugtyp</name>
  2579. <rename>Fahrzeugtyp</rename>
  2580. <type>None</type>
  2581. <length>35</length>
  2582. <precision>-2</precision>
  2583. <conversion_mask/>
  2584. <date_format_lenient>false</date_format_lenient>
  2585. <date_format_locale/>
  2586. <date_format_timezone/>
  2587. <lenient_string_to_number>false</lenient_string_to_number>
  2588. <encoding/>
  2589. <decimal_symbol/>
  2590. <grouping_symbol/>
  2591. <currency_symbol/>
  2592. <storage_type/>
  2593. </meta>
  2594. <meta>
  2595. <name>Department</name>
  2596. <rename>Department</rename>
  2597. <type>None</type>
  2598. <length>-2</length>
  2599. <precision>-2</precision>
  2600. <conversion_mask/>
  2601. <date_format_lenient>false</date_format_lenient>
  2602. <date_format_locale/>
  2603. <date_format_timezone/>
  2604. <lenient_string_to_number>false</lenient_string_to_number>
  2605. <encoding/>
  2606. <decimal_symbol/>
  2607. <grouping_symbol/>
  2608. <currency_symbol/>
  2609. <storage_type/>
  2610. </meta>
  2611. <meta>
  2612. <name>Hauptbetrieb_ID</name>
  2613. <rename>Hauptbetrieb_ID</rename>
  2614. <type>None</type>
  2615. <length>20</length>
  2616. <precision>-2</precision>
  2617. <conversion_mask/>
  2618. <date_format_lenient>false</date_format_lenient>
  2619. <date_format_locale/>
  2620. <date_format_timezone/>
  2621. <lenient_string_to_number>false</lenient_string_to_number>
  2622. <encoding/>
  2623. <decimal_symbol/>
  2624. <grouping_symbol/>
  2625. <currency_symbol/>
  2626. <storage_type/>
  2627. </meta>
  2628. <meta>
  2629. <name>Standort_ID</name>
  2630. <rename>Standort_ID</rename>
  2631. <type>None</type>
  2632. <length>10</length>
  2633. <precision>-2</precision>
  2634. <conversion_mask/>
  2635. <date_format_lenient>false</date_format_lenient>
  2636. <date_format_locale/>
  2637. <date_format_timezone/>
  2638. <lenient_string_to_number>false</lenient_string_to_number>
  2639. <encoding/>
  2640. <decimal_symbol/>
  2641. <grouping_symbol/>
  2642. <currency_symbol/>
  2643. <storage_type/>
  2644. </meta>
  2645. <meta>
  2646. <name>Marke_ID</name>
  2647. <rename>Marke_ID</rename>
  2648. <type>None</type>
  2649. <length>10</length>
  2650. <precision>-2</precision>
  2651. <conversion_mask/>
  2652. <date_format_lenient>false</date_format_lenient>
  2653. <date_format_locale/>
  2654. <date_format_timezone/>
  2655. <lenient_string_to_number>false</lenient_string_to_number>
  2656. <encoding/>
  2657. <decimal_symbol/>
  2658. <grouping_symbol/>
  2659. <currency_symbol/>
  2660. <storage_type/>
  2661. </meta>
  2662. <meta>
  2663. <name>Kostenstelle_ID</name>
  2664. <rename>Kostenstelle_ID</rename>
  2665. <type>None</type>
  2666. <length>4</length>
  2667. <precision>-2</precision>
  2668. <conversion_mask/>
  2669. <date_format_lenient>false</date_format_lenient>
  2670. <date_format_locale/>
  2671. <date_format_timezone/>
  2672. <lenient_string_to_number>false</lenient_string_to_number>
  2673. <encoding/>
  2674. <decimal_symbol/>
  2675. <grouping_symbol/>
  2676. <currency_symbol/>
  2677. <storage_type/>
  2678. </meta>
  2679. <meta>
  2680. <name>LINE_NO</name>
  2681. <rename>LINE_NO</rename>
  2682. <type>None</type>
  2683. <length>4</length>
  2684. <precision>0</precision>
  2685. <conversion_mask/>
  2686. <date_format_lenient>false</date_format_lenient>
  2687. <date_format_locale/>
  2688. <date_format_timezone/>
  2689. <lenient_string_to_number>false</lenient_string_to_number>
  2690. <encoding/>
  2691. <decimal_symbol/>
  2692. <grouping_symbol/>
  2693. <currency_symbol/>
  2694. <storage_type/>
  2695. </meta>
  2696. <meta>
  2697. <name>DOCUMENT_NR</name>
  2698. <rename>DOCUMENT_NR</rename>
  2699. <type>None</type>
  2700. <length>20</length>
  2701. <precision>-2</precision>
  2702. <conversion_mask/>
  2703. <date_format_lenient>false</date_format_lenient>
  2704. <date_format_locale/>
  2705. <date_format_timezone/>
  2706. <lenient_string_to_number>false</lenient_string_to_number>
  2707. <encoding/>
  2708. <decimal_symbol/>
  2709. <grouping_symbol/>
  2710. <currency_symbol/>
  2711. <storage_type/>
  2712. </meta>
  2713. <meta>
  2714. <name>LINE_TYPE</name>
  2715. <rename>LINE_TYPE</rename>
  2716. <type>None</type>
  2717. <length>2</length>
  2718. <precision>-2</precision>
  2719. <conversion_mask/>
  2720. <date_format_lenient>false</date_format_lenient>
  2721. <date_format_locale/>
  2722. <date_format_timezone/>
  2723. <lenient_string_to_number>false</lenient_string_to_number>
  2724. <encoding/>
  2725. <decimal_symbol/>
  2726. <grouping_symbol/>
  2727. <currency_symbol/>
  2728. <storage_type/>
  2729. </meta>
  2730. <meta>
  2731. <name>TRANSACTION_CODE</name>
  2732. <rename>TRANSACTION_CODE</rename>
  2733. <type>None</type>
  2734. <length>3</length>
  2735. <precision>-2</precision>
  2736. <conversion_mask/>
  2737. <date_format_lenient>false</date_format_lenient>
  2738. <date_format_locale/>
  2739. <date_format_timezone/>
  2740. <lenient_string_to_number>false</lenient_string_to_number>
  2741. <encoding/>
  2742. <decimal_symbol/>
  2743. <grouping_symbol/>
  2744. <currency_symbol/>
  2745. <storage_type/>
  2746. </meta>
  2747. <meta>
  2748. <name>REFERENCE</name>
  2749. <rename>REFERENCE</rename>
  2750. <type>None</type>
  2751. <length>255</length>
  2752. <precision>-2</precision>
  2753. <conversion_mask/>
  2754. <date_format_lenient>false</date_format_lenient>
  2755. <date_format_locale/>
  2756. <date_format_timezone/>
  2757. <lenient_string_to_number>false</lenient_string_to_number>
  2758. <encoding/>
  2759. <decimal_symbol/>
  2760. <grouping_symbol/>
  2761. <currency_symbol/>
  2762. <storage_type/>
  2763. </meta>
  2764. <meta>
  2765. <name>ORDERS_GROSSVALUE</name>
  2766. <rename>ORDERS_GROSSVALUE</rename>
  2767. <type>None</type>
  2768. <length>15</length>
  2769. <precision>2</precision>
  2770. <conversion_mask/>
  2771. <date_format_lenient>false</date_format_lenient>
  2772. <date_format_locale/>
  2773. <date_format_timezone/>
  2774. <lenient_string_to_number>false</lenient_string_to_number>
  2775. <encoding/>
  2776. <decimal_symbol/>
  2777. <grouping_symbol/>
  2778. <currency_symbol/>
  2779. <storage_type/>
  2780. </meta>
  2781. <meta>
  2782. <name>UNIQUE_IDENT</name>
  2783. <rename>UNIQUE_IDENT</rename>
  2784. <type>None</type>
  2785. <length>12</length>
  2786. <precision>0</precision>
  2787. <conversion_mask/>
  2788. <date_format_lenient>false</date_format_lenient>
  2789. <date_format_locale/>
  2790. <date_format_timezone/>
  2791. <lenient_string_to_number>false</lenient_string_to_number>
  2792. <encoding/>
  2793. <decimal_symbol/>
  2794. <grouping_symbol/>
  2795. <currency_symbol/>
  2796. <storage_type/>
  2797. </meta>
  2798. <meta>
  2799. <name>Menge</name>
  2800. <rename>Menge</rename>
  2801. <type>None</type>
  2802. <length>2</length>
  2803. <precision>1</precision>
  2804. <conversion_mask/>
  2805. <date_format_lenient>false</date_format_lenient>
  2806. <date_format_locale/>
  2807. <date_format_timezone/>
  2808. <lenient_string_to_number>false</lenient_string_to_number>
  2809. <encoding/>
  2810. <decimal_symbol/>
  2811. <grouping_symbol/>
  2812. <currency_symbol/>
  2813. <storage_type/>
  2814. </meta>
  2815. <meta>
  2816. <name>SPECIFY_1</name>
  2817. <rename>SPECIFY_1</rename>
  2818. <type>None</type>
  2819. <length>50</length>
  2820. <precision>-2</precision>
  2821. <conversion_mask/>
  2822. <date_format_lenient>false</date_format_lenient>
  2823. <date_format_locale/>
  2824. <date_format_timezone/>
  2825. <lenient_string_to_number>false</lenient_string_to_number>
  2826. <encoding/>
  2827. <decimal_symbol/>
  2828. <grouping_symbol/>
  2829. <currency_symbol/>
  2830. <storage_type/>
  2831. </meta>
  2832. <meta>
  2833. <name>TRANSFER_CODE</name>
  2834. <rename>TRANSFER_CODE</rename>
  2835. <type>None</type>
  2836. <length>2</length>
  2837. <precision>-2</precision>
  2838. <conversion_mask/>
  2839. <date_format_lenient>false</date_format_lenient>
  2840. <date_format_locale/>
  2841. <date_format_timezone/>
  2842. <lenient_string_to_number>false</lenient_string_to_number>
  2843. <encoding/>
  2844. <decimal_symbol/>
  2845. <grouping_symbol/>
  2846. <currency_symbol/>
  2847. <storage_type/>
  2848. </meta>
  2849. <meta>
  2850. <name>Umsatz_Einsatz</name>
  2851. <rename>Umsatz_Einsatz</rename>
  2852. <type>None</type>
  2853. <length>7</length>
  2854. <precision>-2</precision>
  2855. <conversion_mask/>
  2856. <date_format_lenient>false</date_format_lenient>
  2857. <date_format_locale/>
  2858. <date_format_timezone/>
  2859. <lenient_string_to_number>false</lenient_string_to_number>
  2860. <encoding/>
  2861. <decimal_symbol/>
  2862. <grouping_symbol/>
  2863. <currency_symbol/>
  2864. <storage_type/>
  2865. </meta>
  2866. <meta>
  2867. <name>Kennzahl</name>
  2868. <rename>Kennzahl</rename>
  2869. <type>None</type>
  2870. <length>13</length>
  2871. <precision>-2</precision>
  2872. <conversion_mask/>
  2873. <date_format_lenient>false</date_format_lenient>
  2874. <date_format_locale/>
  2875. <date_format_timezone/>
  2876. <lenient_string_to_number>false</lenient_string_to_number>
  2877. <encoding/>
  2878. <decimal_symbol/>
  2879. <grouping_symbol/>
  2880. <currency_symbol/>
  2881. <storage_type/>
  2882. </meta>
  2883. <meta>
  2884. <name>Kennzahl2</name>
  2885. <rename>Kennzahl2</rename>
  2886. <type>None</type>
  2887. <length>9</length>
  2888. <precision>-2</precision>
  2889. <conversion_mask/>
  2890. <date_format_lenient>false</date_format_lenient>
  2891. <date_format_locale/>
  2892. <date_format_timezone/>
  2893. <lenient_string_to_number>false</lenient_string_to_number>
  2894. <encoding/>
  2895. <decimal_symbol/>
  2896. <grouping_symbol/>
  2897. <currency_symbol/>
  2898. <storage_type/>
  2899. </meta>
  2900. <meta>
  2901. <name>Faktor</name>
  2902. <rename>Faktor</rename>
  2903. <type>None</type>
  2904. <length>16</length>
  2905. <precision>2</precision>
  2906. <conversion_mask/>
  2907. <date_format_lenient>false</date_format_lenient>
  2908. <date_format_locale/>
  2909. <date_format_timezone/>
  2910. <lenient_string_to_number>false</lenient_string_to_number>
  2911. <encoding/>
  2912. <decimal_symbol/>
  2913. <grouping_symbol/>
  2914. <currency_symbol/>
  2915. <storage_type/>
  2916. </meta>
  2917. <meta>
  2918. <name>Betrag</name>
  2919. <rename>Betrag</rename>
  2920. <type>None</type>
  2921. <length>16</length>
  2922. <precision>2</precision>
  2923. <conversion_mask/>
  2924. <date_format_lenient>false</date_format_lenient>
  2925. <date_format_locale/>
  2926. <date_format_timezone/>
  2927. <lenient_string_to_number>false</lenient_string_to_number>
  2928. <encoding/>
  2929. <decimal_symbol/>
  2930. <grouping_symbol/>
  2931. <currency_symbol/>
  2932. <storage_type/>
  2933. </meta>
  2934. <meta>
  2935. <name>EK_Fahrzeug</name>
  2936. <rename>EK_Fahrzeug</rename>
  2937. <type>None</type>
  2938. <length>16</length>
  2939. <precision>2</precision>
  2940. <conversion_mask/>
  2941. <date_format_lenient>false</date_format_lenient>
  2942. <date_format_locale/>
  2943. <date_format_timezone/>
  2944. <lenient_string_to_number>false</lenient_string_to_number>
  2945. <encoding/>
  2946. <decimal_symbol/>
  2947. <grouping_symbol/>
  2948. <currency_symbol/>
  2949. <storage_type/>
  2950. </meta>
  2951. <meta>
  2952. <name>Erloes</name>
  2953. <rename>Erloes</rename>
  2954. <type>None</type>
  2955. <length>16</length>
  2956. <precision>2</precision>
  2957. <conversion_mask/>
  2958. <date_format_lenient>false</date_format_lenient>
  2959. <date_format_locale/>
  2960. <date_format_timezone/>
  2961. <lenient_string_to_number>false</lenient_string_to_number>
  2962. <encoding/>
  2963. <decimal_symbol/>
  2964. <grouping_symbol/>
  2965. <currency_symbol/>
  2966. <storage_type/>
  2967. </meta>
  2968. <meta>
  2969. <name>FZG_Kosten</name>
  2970. <rename>FZG_Kosten</rename>
  2971. <type>None</type>
  2972. <length>16</length>
  2973. <precision>2</precision>
  2974. <conversion_mask/>
  2975. <date_format_lenient>false</date_format_lenient>
  2976. <date_format_locale/>
  2977. <date_format_timezone/>
  2978. <lenient_string_to_number>false</lenient_string_to_number>
  2979. <encoding/>
  2980. <decimal_symbol/>
  2981. <grouping_symbol/>
  2982. <currency_symbol/>
  2983. <storage_type/>
  2984. </meta>
  2985. <meta>
  2986. <name>Nachlass</name>
  2987. <rename>Nachlass</rename>
  2988. <type>None</type>
  2989. <length>16</length>
  2990. <precision>2</precision>
  2991. <conversion_mask/>
  2992. <date_format_lenient>false</date_format_lenient>
  2993. <date_format_locale/>
  2994. <date_format_timezone/>
  2995. <lenient_string_to_number>false</lenient_string_to_number>
  2996. <encoding/>
  2997. <decimal_symbol/>
  2998. <grouping_symbol/>
  2999. <currency_symbol/>
  3000. <storage_type/>
  3001. </meta>
  3002. <meta>
  3003. <name>Provisionen</name>
  3004. <rename>Provisionen</rename>
  3005. <type>None</type>
  3006. <length>16</length>
  3007. <precision>2</precision>
  3008. <conversion_mask/>
  3009. <date_format_lenient>false</date_format_lenient>
  3010. <date_format_locale/>
  3011. <date_format_timezone/>
  3012. <lenient_string_to_number>false</lenient_string_to_number>
  3013. <encoding/>
  3014. <decimal_symbol/>
  3015. <grouping_symbol/>
  3016. <currency_symbol/>
  3017. <storage_type/>
  3018. </meta>
  3019. <meta>
  3020. <name>Sonst_Erloese</name>
  3021. <rename>Sonst_Erloese</rename>
  3022. <type>None</type>
  3023. <length>16</length>
  3024. <precision>2</precision>
  3025. <conversion_mask/>
  3026. <date_format_lenient>false</date_format_lenient>
  3027. <date_format_locale/>
  3028. <date_format_timezone/>
  3029. <lenient_string_to_number>false</lenient_string_to_number>
  3030. <encoding/>
  3031. <decimal_symbol/>
  3032. <grouping_symbol/>
  3033. <currency_symbol/>
  3034. <storage_type/>
  3035. </meta>
  3036. <meta>
  3037. <name>Ums_Fracht</name>
  3038. <rename>Ums_Fracht</rename>
  3039. <type>None</type>
  3040. <length>16</length>
  3041. <precision>2</precision>
  3042. <conversion_mask/>
  3043. <date_format_lenient>false</date_format_lenient>
  3044. <date_format_locale/>
  3045. <date_format_timezone/>
  3046. <lenient_string_to_number>false</lenient_string_to_number>
  3047. <encoding/>
  3048. <decimal_symbol/>
  3049. <grouping_symbol/>
  3050. <currency_symbol/>
  3051. <storage_type/>
  3052. </meta>
  3053. <meta>
  3054. <name>VK_Hilfen</name>
  3055. <rename>VK_Hilfen</rename>
  3056. <type>None</type>
  3057. <length>16</length>
  3058. <precision>2</precision>
  3059. <conversion_mask/>
  3060. <date_format_lenient>false</date_format_lenient>
  3061. <date_format_locale/>
  3062. <date_format_timezone/>
  3063. <lenient_string_to_number>false</lenient_string_to_number>
  3064. <encoding/>
  3065. <decimal_symbol/>
  3066. <grouping_symbol/>
  3067. <currency_symbol/>
  3068. <storage_type/>
  3069. </meta>
  3070. <meta>
  3071. <name>Rest</name>
  3072. <rename>Rest</rename>
  3073. <type>None</type>
  3074. <length>16</length>
  3075. <precision>2</precision>
  3076. <conversion_mask/>
  3077. <date_format_lenient>false</date_format_lenient>
  3078. <date_format_locale/>
  3079. <date_format_timezone/>
  3080. <lenient_string_to_number>false</lenient_string_to_number>
  3081. <encoding/>
  3082. <decimal_symbol/>
  3083. <grouping_symbol/>
  3084. <currency_symbol/>
  3085. <storage_type/>
  3086. </meta>
  3087. </fields>
  3088. <attributes/>
  3089. <cluster_schema/>
  3090. <remotesteps>
  3091. <input>
  3092. </input>
  3093. <output>
  3094. </output>
  3095. </remotesteps>
  3096. <GUI>
  3097. <xloc>1984</xloc>
  3098. <yloc>192</yloc>
  3099. <draw>Y</draw>
  3100. </GUI>
  3101. </step>
  3102. <step>
  3103. <name>Unit_Change_Hist_Department_sortiert</name>
  3104. <type>Dummy</type>
  3105. <description/>
  3106. <distribute>Y</distribute>
  3107. <custom_distribution/>
  3108. <copies>1</copies>
  3109. <partitioning>
  3110. <method>none</method>
  3111. <schema_name/>
  3112. </partitioning>
  3113. <attributes/>
  3114. <cluster_schema/>
  3115. <remotesteps>
  3116. <input>
  3117. </input>
  3118. <output>
  3119. </output>
  3120. </remotesteps>
  3121. <GUI>
  3122. <xloc>832</xloc>
  3123. <yloc>576</yloc>
  3124. <draw>Y</draw>
  3125. </GUI>
  3126. </step>
  3127. <step>
  3128. <name>Unit_File_Department</name>
  3129. <type>StreamLookup</type>
  3130. <description/>
  3131. <distribute>Y</distribute>
  3132. <custom_distribution/>
  3133. <copies>1</copies>
  3134. <partitioning>
  3135. <method>none</method>
  3136. <schema_name/>
  3137. </partitioning>
  3138. <from>Unit_Change_Hist_Department_sortiert</from>
  3139. <input_sorted>N</input_sorted>
  3140. <preserve_memory>Y</preserve_memory>
  3141. <sorted_list>N</sorted_list>
  3142. <integer_pair>N</integer_pair>
  3143. <lookup>
  3144. <key>
  3145. <name>CLIENT_DB</name>
  3146. <field>CLIENT_DB</field>
  3147. </key>
  3148. <key>
  3149. <name>UNIT_NUMBER</name>
  3150. <field>UNIT_NUMBER</field>
  3151. </key>
  3152. <value>
  3153. <name>DEPARTMENT</name>
  3154. <rename>DEPARTMENT_1</rename>
  3155. <default/>
  3156. <type>None</type>
  3157. </value>
  3158. </lookup>
  3159. <attributes/>
  3160. <cluster_schema/>
  3161. <remotesteps>
  3162. <input>
  3163. </input>
  3164. <output>
  3165. </output>
  3166. </remotesteps>
  3167. <GUI>
  3168. <xloc>832</xloc>
  3169. <yloc>192</yloc>
  3170. <draw>Y</draw>
  3171. </GUI>
  3172. </step>
  3173. <step>
  3174. <name>Unit_File_ECC_Status</name>
  3175. <type>StreamLookup</type>
  3176. <description/>
  3177. <distribute>Y</distribute>
  3178. <custom_distribution/>
  3179. <copies>1</copies>
  3180. <partitioning>
  3181. <method>none</method>
  3182. <schema_name/>
  3183. </partitioning>
  3184. <from>ECC_Status</from>
  3185. <input_sorted>N</input_sorted>
  3186. <preserve_memory>Y</preserve_memory>
  3187. <sorted_list>N</sorted_list>
  3188. <integer_pair>N</integer_pair>
  3189. <lookup>
  3190. <key>
  3191. <name>CLIENT_DB</name>
  3192. <field>CLIENT_DB</field>
  3193. </key>
  3194. <key>
  3195. <name>ECC_STATUS</name>
  3196. <field>ECC_STATUS</field>
  3197. </key>
  3198. <value>
  3199. <name>SPECIFY</name>
  3200. <rename>SPECIFY</rename>
  3201. <default/>
  3202. <type>String</type>
  3203. </value>
  3204. <value>
  3205. <name>Bereich</name>
  3206. <rename>Bereich</rename>
  3207. <default/>
  3208. <type>String</type>
  3209. </value>
  3210. <value>
  3211. <name>Auftragsstatus</name>
  3212. <rename>Auftragsstatus</rename>
  3213. <default/>
  3214. <type>String</type>
  3215. </value>
  3216. <value>
  3217. <name>Fahrzeugstatus</name>
  3218. <rename>Fahrzeugstatus</rename>
  3219. <default/>
  3220. <type>String</type>
  3221. </value>
  3222. <value>
  3223. <name>timestamp</name>
  3224. <rename>timestamp</rename>
  3225. <default/>
  3226. <type>Binary</type>
  3227. </value>
  3228. </lookup>
  3229. <attributes/>
  3230. <cluster_schema/>
  3231. <remotesteps>
  3232. <input>
  3233. </input>
  3234. <output>
  3235. </output>
  3236. </remotesteps>
  3237. <GUI>
  3238. <xloc>448</xloc>
  3239. <yloc>192</yloc>
  3240. <draw>Y</draw>
  3241. </GUI>
  3242. </step>
  3243. <step>
  3244. <name>Unit_File_Strings</name>
  3245. <type>StringOperations</type>
  3246. <description/>
  3247. <distribute>Y</distribute>
  3248. <custom_distribution/>
  3249. <copies>1</copies>
  3250. <partitioning>
  3251. <method>none</method>
  3252. <schema_name/>
  3253. </partitioning>
  3254. <fields>
  3255. <field>
  3256. <in_stream_name>UNIT_NUMBER</in_stream_name>
  3257. <out_stream_name/>
  3258. <trim_type>both</trim_type>
  3259. <lower_upper>upper</lower_upper>
  3260. <padding_type>none</padding_type>
  3261. <pad_char/>
  3262. <pad_len/>
  3263. <init_cap>N</init_cap>
  3264. <mask_xml>None</mask_xml>
  3265. <digits>none</digits>
  3266. <remove_special_characters>none</remove_special_characters>
  3267. </field>
  3268. <field>
  3269. <in_stream_name>BASIS_NUMBER</in_stream_name>
  3270. <out_stream_name/>
  3271. <trim_type>both</trim_type>
  3272. <lower_upper>none</lower_upper>
  3273. <padding_type>none</padding_type>
  3274. <pad_char/>
  3275. <pad_len/>
  3276. <init_cap>N</init_cap>
  3277. <mask_xml>None</mask_xml>
  3278. <digits>none</digits>
  3279. <remove_special_characters>none</remove_special_characters>
  3280. </field>
  3281. <field>
  3282. <in_stream_name>ECC_STATUS</in_stream_name>
  3283. <out_stream_name/>
  3284. <trim_type>both</trim_type>
  3285. <lower_upper>none</lower_upper>
  3286. <padding_type>none</padding_type>
  3287. <pad_char/>
  3288. <pad_len/>
  3289. <init_cap>N</init_cap>
  3290. <mask_xml>None</mask_xml>
  3291. <digits>none</digits>
  3292. <remove_special_characters>none</remove_special_characters>
  3293. </field>
  3294. <field>
  3295. <in_stream_name>VEHICLE_TYPE</in_stream_name>
  3296. <out_stream_name/>
  3297. <trim_type>both</trim_type>
  3298. <lower_upper>none</lower_upper>
  3299. <padding_type>none</padding_type>
  3300. <pad_char/>
  3301. <pad_len/>
  3302. <init_cap>N</init_cap>
  3303. <mask_xml>None</mask_xml>
  3304. <digits>none</digits>
  3305. <remove_special_characters>none</remove_special_characters>
  3306. </field>
  3307. <field>
  3308. <in_stream_name>PREV_OWNER</in_stream_name>
  3309. <out_stream_name/>
  3310. <trim_type>both</trim_type>
  3311. <lower_upper>none</lower_upper>
  3312. <padding_type>none</padding_type>
  3313. <pad_char/>
  3314. <pad_len/>
  3315. <init_cap>N</init_cap>
  3316. <mask_xml>None</mask_xml>
  3317. <digits>none</digits>
  3318. <remove_special_characters>none</remove_special_characters>
  3319. </field>
  3320. <field>
  3321. <in_stream_name>ACCOUNT_SALES</in_stream_name>
  3322. <out_stream_name/>
  3323. <trim_type>both</trim_type>
  3324. <lower_upper>none</lower_upper>
  3325. <padding_type>none</padding_type>
  3326. <pad_char/>
  3327. <pad_len/>
  3328. <init_cap>N</init_cap>
  3329. <mask_xml>None</mask_xml>
  3330. <digits>none</digits>
  3331. <remove_special_characters>none</remove_special_characters>
  3332. </field>
  3333. <field>
  3334. <in_stream_name>SALES_DEPARTMENT</in_stream_name>
  3335. <out_stream_name/>
  3336. <trim_type>both</trim_type>
  3337. <lower_upper>none</lower_upper>
  3338. <padding_type>none</padding_type>
  3339. <pad_char/>
  3340. <pad_len/>
  3341. <init_cap>N</init_cap>
  3342. <mask_xml>None</mask_xml>
  3343. <digits>none</digits>
  3344. <remove_special_characters>none</remove_special_characters>
  3345. </field>
  3346. <field>
  3347. <in_stream_name>SALE_SALESMAN</in_stream_name>
  3348. <out_stream_name/>
  3349. <trim_type>both</trim_type>
  3350. <lower_upper>none</lower_upper>
  3351. <padding_type>none</padding_type>
  3352. <pad_char/>
  3353. <pad_len/>
  3354. <init_cap>N</init_cap>
  3355. <mask_xml>None</mask_xml>
  3356. <digits>none</digits>
  3357. <remove_special_characters>none</remove_special_characters>
  3358. </field>
  3359. <field>
  3360. <in_stream_name>PURCH_SALSMAN_CODE</in_stream_name>
  3361. <out_stream_name/>
  3362. <trim_type>both</trim_type>
  3363. <lower_upper>none</lower_upper>
  3364. <padding_type>none</padding_type>
  3365. <pad_char/>
  3366. <pad_len/>
  3367. <init_cap>N</init_cap>
  3368. <mask_xml>None</mask_xml>
  3369. <digits>none</digits>
  3370. <remove_special_characters>none</remove_special_characters>
  3371. </field>
  3372. </fields>
  3373. <attributes/>
  3374. <cluster_schema/>
  3375. <remotesteps>
  3376. <input>
  3377. </input>
  3378. <output>
  3379. </output>
  3380. </remotesteps>
  3381. <GUI>
  3382. <xloc>256</xloc>
  3383. <yloc>192</yloc>
  3384. <draw>Y</draw>
  3385. </GUI>
  3386. </step>
  3387. <step>
  3388. <name>Unit_File_Unit_History</name>
  3389. <type>MergeJoin</type>
  3390. <description/>
  3391. <distribute>Y</distribute>
  3392. <custom_distribution/>
  3393. <copies>1</copies>
  3394. <partitioning>
  3395. <method>none</method>
  3396. <schema_name/>
  3397. </partitioning>
  3398. <join_type>LEFT OUTER</join_type>
  3399. <step1>Einkauf_Verkauf_Datum</step1>
  3400. <step2>Unit_History_Kennzahlen</step2>
  3401. <keys_1>
  3402. <key>CLIENT_DB</key>
  3403. <key>UNIT_NUMBER</key>
  3404. </keys_1>
  3405. <keys_2>
  3406. <key>CLIENT_DB</key>
  3407. <key>UNIT_NUMBER</key>
  3408. </keys_2>
  3409. <attributes/>
  3410. <cluster_schema/>
  3411. <remotesteps>
  3412. <input>
  3413. </input>
  3414. <output>
  3415. </output>
  3416. </remotesteps>
  3417. <GUI>
  3418. <xloc>1792</xloc>
  3419. <yloc>192</yloc>
  3420. <draw>Y</draw>
  3421. </GUI>
  3422. </step>
  3423. <step>
  3424. <name>Unit_File_Vehicle_Type</name>
  3425. <type>StreamLookup</type>
  3426. <description/>
  3427. <distribute>Y</distribute>
  3428. <custom_distribution/>
  3429. <copies>1</copies>
  3430. <partitioning>
  3431. <method>none</method>
  3432. <schema_name/>
  3433. </partitioning>
  3434. <from>Vehicle_Type</from>
  3435. <input_sorted>N</input_sorted>
  3436. <preserve_memory>Y</preserve_memory>
  3437. <sorted_list>N</sorted_list>
  3438. <integer_pair>N</integer_pair>
  3439. <lookup>
  3440. <key>
  3441. <name>CLIENT_DB</name>
  3442. <field>CLIENT_DB</field>
  3443. </key>
  3444. <key>
  3445. <name>VEHICLE_TYPE</name>
  3446. <field>VEHICLE_TYPE</field>
  3447. </key>
  3448. <value>
  3449. <name>VEHICLE_TYPE_TEXT</name>
  3450. <rename>VEHICLE_TYPE_TEXT</rename>
  3451. <default/>
  3452. <type>String</type>
  3453. </value>
  3454. <value>
  3455. <name>Fahrzeugart</name>
  3456. <rename>Fahrzeugart</rename>
  3457. <default/>
  3458. <type>String</type>
  3459. </value>
  3460. <value>
  3461. <name>Fahrzeugtyp</name>
  3462. <rename>Fahrzeugtyp</rename>
  3463. <default/>
  3464. <type>String</type>
  3465. </value>
  3466. </lookup>
  3467. <attributes/>
  3468. <cluster_schema/>
  3469. <remotesteps>
  3470. <input>
  3471. </input>
  3472. <output>
  3473. </output>
  3474. </remotesteps>
  3475. <GUI>
  3476. <xloc>640</xloc>
  3477. <yloc>192</yloc>
  3478. <draw>Y</draw>
  3479. </GUI>
  3480. </step>
  3481. <step>
  3482. <name>Unit_History_Filter_Steuern</name>
  3483. <type>FilterRows</type>
  3484. <description/>
  3485. <distribute>Y</distribute>
  3486. <custom_distribution/>
  3487. <copies>1</copies>
  3488. <partitioning>
  3489. <method>none</method>
  3490. <schema_name/>
  3491. </partitioning>
  3492. <send_true_to>Unit_History_Kennzahlen</send_true_to>
  3493. <send_false_to/>
  3494. <compare>
  3495. <condition>
  3496. <negated>N</negated>
  3497. <leftvalue>Umsatz_Einsatz</leftvalue>
  3498. <function>&lt;></function>
  3499. <rightvalue/>
  3500. <value>
  3501. <name>constant</name>
  3502. <type>String</type>
  3503. <text>Steuer</text>
  3504. <length>-1</length>
  3505. <precision>-1</precision>
  3506. <isnull>N</isnull>
  3507. <mask/>
  3508. </value>
  3509. </condition>
  3510. </compare>
  3511. <attributes/>
  3512. <cluster_schema/>
  3513. <remotesteps>
  3514. <input>
  3515. </input>
  3516. <output>
  3517. </output>
  3518. </remotesteps>
  3519. <GUI>
  3520. <xloc>1600</xloc>
  3521. <yloc>960</yloc>
  3522. <draw>Y</draw>
  3523. </GUI>
  3524. </step>
  3525. <step>
  3526. <name>Unit_History_Transaction_Code</name>
  3527. <type>StreamLookup</type>
  3528. <description/>
  3529. <distribute>Y</distribute>
  3530. <custom_distribution/>
  3531. <copies>1</copies>
  3532. <partitioning>
  3533. <method>none</method>
  3534. <schema_name/>
  3535. </partitioning>
  3536. <from>Transaction_Code</from>
  3537. <input_sorted>N</input_sorted>
  3538. <preserve_memory>Y</preserve_memory>
  3539. <sorted_list>N</sorted_list>
  3540. <integer_pair>N</integer_pair>
  3541. <lookup>
  3542. <key>
  3543. <name>CLIENT_DB</name>
  3544. <field>CLIENT_DB</field>
  3545. </key>
  3546. <key>
  3547. <name>TRANSACTION_CODE</name>
  3548. <field>TRANSACTION_CODE</field>
  3549. </key>
  3550. <value>
  3551. <name>SPECIFY</name>
  3552. <rename>SPECIFY</rename>
  3553. <default/>
  3554. <type>String</type>
  3555. </value>
  3556. <value>
  3557. <name>TRANSFER_CODE</name>
  3558. <rename>TRANSFER_CODE</rename>
  3559. <default/>
  3560. <type>String</type>
  3561. </value>
  3562. <value>
  3563. <name>Umsatz_Einsatz</name>
  3564. <rename>Umsatz_Einsatz</rename>
  3565. <default/>
  3566. <type>String</type>
  3567. </value>
  3568. <value>
  3569. <name>Kennzahl</name>
  3570. <rename>Kennzahl</rename>
  3571. <default/>
  3572. <type>String</type>
  3573. </value>
  3574. <value>
  3575. <name>Kennzahl2</name>
  3576. <rename>Kennzahl2</rename>
  3577. <default/>
  3578. <type>String</type>
  3579. </value>
  3580. </lookup>
  3581. <attributes/>
  3582. <cluster_schema/>
  3583. <remotesteps>
  3584. <input>
  3585. </input>
  3586. <output>
  3587. </output>
  3588. </remotesteps>
  3589. <GUI>
  3590. <xloc>832</xloc>
  3591. <yloc>960</yloc>
  3592. <draw>Y</draw>
  3593. </GUI>
  3594. </step>
  3595. <step>
  3596. <name>Unit_History_Menge</name>
  3597. <type>StreamLookup</type>
  3598. <description/>
  3599. <distribute>Y</distribute>
  3600. <custom_distribution/>
  3601. <copies>1</copies>
  3602. <partitioning>
  3603. <method>none</method>
  3604. <schema_name/>
  3605. </partitioning>
  3606. <from>Unit_History_Menge_bereinigt</from>
  3607. <input_sorted>N</input_sorted>
  3608. <preserve_memory>Y</preserve_memory>
  3609. <sorted_list>N</sorted_list>
  3610. <integer_pair>N</integer_pair>
  3611. <lookup>
  3612. <key>
  3613. <name>CLIENT_DB</name>
  3614. <field>CLIENT_DB</field>
  3615. </key>
  3616. <key>
  3617. <name>UNIT_NUMBER</name>
  3618. <field>UNIT_NUMBER</field>
  3619. </key>
  3620. <key>
  3621. <name>UNIQUE_IDENT</name>
  3622. <field>UNIQUE_IDENT</field>
  3623. </key>
  3624. <value>
  3625. <name>Menge</name>
  3626. <rename>Menge</rename>
  3627. <default>0</default>
  3628. <type>Number</type>
  3629. </value>
  3630. </lookup>
  3631. <attributes/>
  3632. <cluster_schema/>
  3633. <remotesteps>
  3634. <input>
  3635. </input>
  3636. <output>
  3637. </output>
  3638. </remotesteps>
  3639. <GUI>
  3640. <xloc>448</xloc>
  3641. <yloc>960</yloc>
  3642. <draw>Y</draw>
  3643. </GUI>
  3644. </step>
  3645. <step>
  3646. <name>Unit_History_Menge_bereinigt</name>
  3647. <type>StringOperations</type>
  3648. <description/>
  3649. <distribute>Y</distribute>
  3650. <custom_distribution/>
  3651. <copies>1</copies>
  3652. <partitioning>
  3653. <method>none</method>
  3654. <schema_name/>
  3655. </partitioning>
  3656. <fields>
  3657. <field>
  3658. <in_stream_name>UNIT_NUMBER</in_stream_name>
  3659. <out_stream_name/>
  3660. <trim_type>both</trim_type>
  3661. <lower_upper>upper</lower_upper>
  3662. <padding_type/>
  3663. <pad_char/>
  3664. <pad_len/>
  3665. <init_cap/>
  3666. <mask_xml/>
  3667. <digits/>
  3668. <remove_special_characters/>
  3669. </field>
  3670. </fields>
  3671. <attributes/>
  3672. <cluster_schema/>
  3673. <remotesteps>
  3674. <input>
  3675. </input>
  3676. <output>
  3677. </output>
  3678. </remotesteps>
  3679. <GUI>
  3680. <xloc>448</xloc>
  3681. <yloc>1088</yloc>
  3682. <draw>Y</draw>
  3683. </GUI>
  3684. </step>
  3685. <step>
  3686. <name>Unit_History_Kennzahlen</name>
  3687. <type>ScriptValueMod</type>
  3688. <description/>
  3689. <distribute>Y</distribute>
  3690. <custom_distribution/>
  3691. <copies>1</copies>
  3692. <partitioning>
  3693. <method>none</method>
  3694. <schema_name/>
  3695. </partitioning>
  3696. <compatible>N</compatible>
  3697. <optimizationLevel>9</optimizationLevel>
  3698. <jsScripts>
  3699. <jsScript>
  3700. <jsScript_type>0</jsScript_type>
  3701. <jsScript_name>Script 1</jsScript_name>
  3702. <jsScript_script>// Vorzeichen bei Umsätzen drehen
  3703. var Faktor = (Umsatz_Einsatz == "Umsatz") ? -1 : 1;
  3704. var Betrag = ORDERS_GROSSVALUE * Faktor;
  3705. // Kennzahl eindeutige Zuordnung über Transaction_Code
  3706. var EK_Fahrzeug = (Kennzahl == "EK_Fahrzeug") ? Betrag : 0;
  3707. var Erloes = (Kennzahl == "Erloes") ? Betrag : 0;
  3708. var FZG_Kosten = (Kennzahl == "FZG_Kosten") ? Betrag : 0;
  3709. var Nachlass = (Kennzahl == "Nachlass") ? Betrag : 0;
  3710. var Provisionen = (Kennzahl == "Provisionen") ? Betrag : 0;
  3711. var Sonst_Erloese = (Kennzahl == "Sonst_Erloese") ? Betrag : 0;
  3712. var Ums_Fracht = (Kennzahl == "Ums_Fracht") ? Betrag : 0;
  3713. // Kennzahl2 - bisher nur VK-Hilfen
  3714. var VK_Hilfen = (Kennzahl2 == "VK_Hilfen") ? Betrag : 0;
  3715. // falls kein Transaction_Code definiert ist.
  3716. var Rest = (Kennzahl == "Rest") ? Betrag : 0;
  3717. </jsScript_script>
  3718. </jsScript>
  3719. </jsScripts>
  3720. <fields>
  3721. <field>
  3722. <name>Faktor</name>
  3723. <rename>Faktor</rename>
  3724. <type>Number</type>
  3725. <length>16</length>
  3726. <precision>2</precision>
  3727. <replace>N</replace>
  3728. </field>
  3729. <field>
  3730. <name>Betrag</name>
  3731. <rename>Betrag</rename>
  3732. <type>Number</type>
  3733. <length>16</length>
  3734. <precision>2</precision>
  3735. <replace>N</replace>
  3736. </field>
  3737. <field>
  3738. <name>EK_Fahrzeug</name>
  3739. <rename>EK_Fahrzeug</rename>
  3740. <type>Number</type>
  3741. <length>16</length>
  3742. <precision>2</precision>
  3743. <replace>N</replace>
  3744. </field>
  3745. <field>
  3746. <name>Erloes</name>
  3747. <rename>Erloes</rename>
  3748. <type>Number</type>
  3749. <length>16</length>
  3750. <precision>2</precision>
  3751. <replace>N</replace>
  3752. </field>
  3753. <field>
  3754. <name>FZG_Kosten</name>
  3755. <rename>FZG_Kosten</rename>
  3756. <type>Number</type>
  3757. <length>16</length>
  3758. <precision>2</precision>
  3759. <replace>N</replace>
  3760. </field>
  3761. <field>
  3762. <name>Nachlass</name>
  3763. <rename>Nachlass</rename>
  3764. <type>Number</type>
  3765. <length>16</length>
  3766. <precision>2</precision>
  3767. <replace>N</replace>
  3768. </field>
  3769. <field>
  3770. <name>Provisionen</name>
  3771. <rename>Provisionen</rename>
  3772. <type>Number</type>
  3773. <length>16</length>
  3774. <precision>2</precision>
  3775. <replace>N</replace>
  3776. </field>
  3777. <field>
  3778. <name>Sonst_Erloese</name>
  3779. <rename>Sonst_Erloese</rename>
  3780. <type>Number</type>
  3781. <length>16</length>
  3782. <precision>2</precision>
  3783. <replace>N</replace>
  3784. </field>
  3785. <field>
  3786. <name>Ums_Fracht</name>
  3787. <rename>Ums_Fracht</rename>
  3788. <type>Number</type>
  3789. <length>16</length>
  3790. <precision>2</precision>
  3791. <replace>N</replace>
  3792. </field>
  3793. <field>
  3794. <name>VK_Hilfen</name>
  3795. <rename>VK_Hilfen</rename>
  3796. <type>Number</type>
  3797. <length>16</length>
  3798. <precision>2</precision>
  3799. <replace>N</replace>
  3800. </field>
  3801. <field>
  3802. <name>Rest</name>
  3803. <rename>Rest</rename>
  3804. <type>Number</type>
  3805. <length>16</length>
  3806. <precision>2</precision>
  3807. <replace>N</replace>
  3808. </field>
  3809. </fields>
  3810. <attributes/>
  3811. <cluster_schema/>
  3812. <remotesteps>
  3813. <input>
  3814. </input>
  3815. <output>
  3816. </output>
  3817. </remotesteps>
  3818. <GUI>
  3819. <xloc>1792</xloc>
  3820. <yloc>960</yloc>
  3821. <draw>Y</draw>
  3822. </GUI>
  3823. </step>
  3824. <step>
  3825. <name>Unit_History_Strings</name>
  3826. <type>StringOperations</type>
  3827. <description/>
  3828. <distribute>Y</distribute>
  3829. <custom_distribution/>
  3830. <copies>1</copies>
  3831. <partitioning>
  3832. <method>none</method>
  3833. <schema_name/>
  3834. </partitioning>
  3835. <fields>
  3836. <field>
  3837. <in_stream_name>UNIT_NUMBER</in_stream_name>
  3838. <out_stream_name/>
  3839. <trim_type>both</trim_type>
  3840. <lower_upper>upper</lower_upper>
  3841. <padding_type>none</padding_type>
  3842. <pad_char/>
  3843. <pad_len/>
  3844. <init_cap>N</init_cap>
  3845. <mask_xml>None</mask_xml>
  3846. <digits>none</digits>
  3847. <remove_special_characters>none</remove_special_characters>
  3848. </field>
  3849. <field>
  3850. <in_stream_name>DOCUMENT_NR</in_stream_name>
  3851. <out_stream_name/>
  3852. <trim_type>both</trim_type>
  3853. <lower_upper>none</lower_upper>
  3854. <padding_type>none</padding_type>
  3855. <pad_char/>
  3856. <pad_len/>
  3857. <init_cap>N</init_cap>
  3858. <mask_xml>None</mask_xml>
  3859. <digits>none</digits>
  3860. <remove_special_characters>none</remove_special_characters>
  3861. </field>
  3862. <field>
  3863. <in_stream_name>LINE_TYPE</in_stream_name>
  3864. <out_stream_name/>
  3865. <trim_type>both</trim_type>
  3866. <lower_upper>none</lower_upper>
  3867. <padding_type>none</padding_type>
  3868. <pad_char/>
  3869. <pad_len/>
  3870. <init_cap>N</init_cap>
  3871. <mask_xml>None</mask_xml>
  3872. <digits>none</digits>
  3873. <remove_special_characters>none</remove_special_characters>
  3874. </field>
  3875. <field>
  3876. <in_stream_name>TRANSACTION_CODE</in_stream_name>
  3877. <out_stream_name/>
  3878. <trim_type>both</trim_type>
  3879. <lower_upper>none</lower_upper>
  3880. <padding_type>none</padding_type>
  3881. <pad_char/>
  3882. <pad_len/>
  3883. <init_cap>N</init_cap>
  3884. <mask_xml>None</mask_xml>
  3885. <digits>none</digits>
  3886. <remove_special_characters>none</remove_special_characters>
  3887. </field>
  3888. <field>
  3889. <in_stream_name>REFERENCE</in_stream_name>
  3890. <out_stream_name/>
  3891. <trim_type>both</trim_type>
  3892. <lower_upper>none</lower_upper>
  3893. <padding_type>none</padding_type>
  3894. <pad_char/>
  3895. <pad_len/>
  3896. <init_cap>N</init_cap>
  3897. <mask_xml>None</mask_xml>
  3898. <digits>none</digits>
  3899. <remove_special_characters>none</remove_special_characters>
  3900. </field>
  3901. </fields>
  3902. <attributes/>
  3903. <cluster_schema/>
  3904. <remotesteps>
  3905. <input>
  3906. </input>
  3907. <output>
  3908. </output>
  3909. </remotesteps>
  3910. <GUI>
  3911. <xloc>256</xloc>
  3912. <yloc>960</yloc>
  3913. <draw>Y</draw>
  3914. </GUI>
  3915. </step>
  3916. <step>
  3917. <name>Vehicle_Type</name>
  3918. <type>Dummy</type>
  3919. <description/>
  3920. <distribute>Y</distribute>
  3921. <custom_distribution/>
  3922. <copies>1</copies>
  3923. <partitioning>
  3924. <method>none</method>
  3925. <schema_name/>
  3926. </partitioning>
  3927. <attributes/>
  3928. <cluster_schema/>
  3929. <remotesteps>
  3930. <input>
  3931. </input>
  3932. <output>
  3933. </output>
  3934. </remotesteps>
  3935. <GUI>
  3936. <xloc>640</xloc>
  3937. <yloc>448</yloc>
  3938. <draw>Y</draw>
  3939. </GUI>
  3940. </step>
  3941. <step>
  3942. <name>Write to log</name>
  3943. <type>WriteToLog</type>
  3944. <description/>
  3945. <distribute>Y</distribute>
  3946. <custom_distribution/>
  3947. <copies>1</copies>
  3948. <partitioning>
  3949. <method>none</method>
  3950. <schema_name/>
  3951. </partitioning>
  3952. <loglevel>log_level_error</loglevel>
  3953. <displayHeader>Y</displayHeader>
  3954. <limitRows>Y</limitRows>
  3955. <limitRowsNumber>100</limitRowsNumber>
  3956. <logmessage/>
  3957. <fields>
  3958. </fields>
  3959. <attributes/>
  3960. <cluster_schema/>
  3961. <remotesteps>
  3962. <input>
  3963. </input>
  3964. <output>
  3965. </output>
  3966. </remotesteps>
  3967. <GUI>
  3968. <xloc>2176</xloc>
  3969. <yloc>320</yloc>
  3970. <draw>Y</draw>
  3971. </GUI>
  3972. </step>
  3973. <step>
  3974. <name>extract.UNIT_CHANGE_HIST_Department</name>
  3975. <type>TableInput</type>
  3976. <description/>
  3977. <distribute>Y</distribute>
  3978. <custom_distribution/>
  3979. <copies>1</copies>
  3980. <partitioning>
  3981. <method>none</method>
  3982. <schema_name/>
  3983. </partitioning>
  3984. <connection>OPTIMA</connection>
  3985. <sql>SELECT *
  3986. FROM [extract].[UNIT_CHANGE_HIST_Department]
  3987. ORDER BY [CLIENT_DB], [UNIT_NUMBER]</sql>
  3988. <limit>0</limit>
  3989. <lookup/>
  3990. <execute_each_row>N</execute_each_row>
  3991. <variables_active>N</variables_active>
  3992. <lazy_conversion_active>N</lazy_conversion_active>
  3993. <cached_row_meta_active>N</cached_row_meta_active>
  3994. <row-meta>
  3995. <value-meta>
  3996. <type>String</type>
  3997. <storagetype>normal</storagetype>
  3998. <name>CLIENT_DB</name>
  3999. <length>20</length>
  4000. <precision>-1</precision>
  4001. <origin>extract.UNIT_CHANGE_HIST_Department</origin>
  4002. <comments>CLIENT_DB</comments>
  4003. <conversion_Mask/>
  4004. <decimal_symbol>,</decimal_symbol>
  4005. <grouping_symbol>.</grouping_symbol>
  4006. <currency_symbol/>
  4007. <trim_type>none</trim_type>
  4008. <case_insensitive>N</case_insensitive>
  4009. <collator_disabled>Y</collator_disabled>
  4010. <collator_strength>0</collator_strength>
  4011. <sort_descending>N</sort_descending>
  4012. <output_padding>N</output_padding>
  4013. <date_format_lenient>N</date_format_lenient>
  4014. <date_format_locale>en_US</date_format_locale>
  4015. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4016. <lenient_string_to_number>N</lenient_string_to_number>
  4017. </value-meta>
  4018. <value-meta>
  4019. <type>String</type>
  4020. <storagetype>normal</storagetype>
  4021. <name>UNIT_NUMBER</name>
  4022. <length>10</length>
  4023. <precision>-1</precision>
  4024. <origin>extract.UNIT_CHANGE_HIST_Department</origin>
  4025. <comments>UNIT_NUMBER</comments>
  4026. <conversion_Mask/>
  4027. <decimal_symbol>,</decimal_symbol>
  4028. <grouping_symbol>.</grouping_symbol>
  4029. <currency_symbol/>
  4030. <trim_type>none</trim_type>
  4031. <case_insensitive>N</case_insensitive>
  4032. <collator_disabled>Y</collator_disabled>
  4033. <collator_strength>0</collator_strength>
  4034. <sort_descending>N</sort_descending>
  4035. <output_padding>N</output_padding>
  4036. <date_format_lenient>N</date_format_lenient>
  4037. <date_format_locale>en_US</date_format_locale>
  4038. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4039. <lenient_string_to_number>N</lenient_string_to_number>
  4040. </value-meta>
  4041. <value-meta>
  4042. <type>String</type>
  4043. <storagetype>normal</storagetype>
  4044. <name>DEPARTMENT</name>
  4045. <length>4</length>
  4046. <precision>-1</precision>
  4047. <origin>extract.UNIT_CHANGE_HIST_Department</origin>
  4048. <comments>DEPARTMENT</comments>
  4049. <conversion_Mask/>
  4050. <decimal_symbol>,</decimal_symbol>
  4051. <grouping_symbol>.</grouping_symbol>
  4052. <currency_symbol/>
  4053. <trim_type>none</trim_type>
  4054. <case_insensitive>N</case_insensitive>
  4055. <collator_disabled>Y</collator_disabled>
  4056. <collator_strength>0</collator_strength>
  4057. <sort_descending>N</sort_descending>
  4058. <output_padding>N</output_padding>
  4059. <date_format_lenient>N</date_format_lenient>
  4060. <date_format_locale>en_US</date_format_locale>
  4061. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4062. <lenient_string_to_number>N</lenient_string_to_number>
  4063. </value-meta>
  4064. </row-meta>
  4065. <attributes/>
  4066. <cluster_schema/>
  4067. <remotesteps>
  4068. <input>
  4069. </input>
  4070. <output>
  4071. </output>
  4072. </remotesteps>
  4073. <GUI>
  4074. <xloc>128</xloc>
  4075. <yloc>576</yloc>
  4076. <draw>Y</draw>
  4077. </GUI>
  4078. </step>
  4079. <step>
  4080. <name>extract.UNIT_FILE</name>
  4081. <type>TableInput</type>
  4082. <description/>
  4083. <distribute>Y</distribute>
  4084. <custom_distribution/>
  4085. <copies>1</copies>
  4086. <partitioning>
  4087. <method>none</method>
  4088. <schema_name/>
  4089. </partitioning>
  4090. <connection>OPTIMA</connection>
  4091. <sql>SELECT *
  4092. FROM [extract].[UNIT_FILE]
  4093. ORDER BY [CLIENT_DB], [UNIT_NUMBER]</sql>
  4094. <limit>0</limit>
  4095. <lookup/>
  4096. <execute_each_row>N</execute_each_row>
  4097. <variables_active>N</variables_active>
  4098. <lazy_conversion_active>N</lazy_conversion_active>
  4099. <cached_row_meta_active>N</cached_row_meta_active>
  4100. <row-meta>
  4101. <value-meta>
  4102. <type>String</type>
  4103. <storagetype>normal</storagetype>
  4104. <name>CLIENT_DB</name>
  4105. <length>20</length>
  4106. <precision>-1</precision>
  4107. <origin>extract.UNIT_FILE</origin>
  4108. <comments>CLIENT_DB</comments>
  4109. <conversion_Mask/>
  4110. <decimal_symbol>,</decimal_symbol>
  4111. <grouping_symbol>.</grouping_symbol>
  4112. <currency_symbol/>
  4113. <trim_type>none</trim_type>
  4114. <case_insensitive>N</case_insensitive>
  4115. <collator_disabled>Y</collator_disabled>
  4116. <collator_strength>0</collator_strength>
  4117. <sort_descending>N</sort_descending>
  4118. <output_padding>N</output_padding>
  4119. <date_format_lenient>N</date_format_lenient>
  4120. <date_format_locale>en_US</date_format_locale>
  4121. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4122. <lenient_string_to_number>N</lenient_string_to_number>
  4123. </value-meta>
  4124. <value-meta>
  4125. <type>String</type>
  4126. <storagetype>normal</storagetype>
  4127. <name>UNIT_NUMBER</name>
  4128. <length>10</length>
  4129. <precision>-1</precision>
  4130. <origin>extract.UNIT_FILE</origin>
  4131. <comments>UNIT_NUMBER</comments>
  4132. <conversion_Mask/>
  4133. <decimal_symbol>,</decimal_symbol>
  4134. <grouping_symbol>.</grouping_symbol>
  4135. <currency_symbol/>
  4136. <trim_type>none</trim_type>
  4137. <case_insensitive>N</case_insensitive>
  4138. <collator_disabled>Y</collator_disabled>
  4139. <collator_strength>0</collator_strength>
  4140. <sort_descending>N</sort_descending>
  4141. <output_padding>N</output_padding>
  4142. <date_format_lenient>N</date_format_lenient>
  4143. <date_format_locale>en_US</date_format_locale>
  4144. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4145. <lenient_string_to_number>N</lenient_string_to_number>
  4146. </value-meta>
  4147. <value-meta>
  4148. <type>String</type>
  4149. <storagetype>normal</storagetype>
  4150. <name>BASIS_NUMBER</name>
  4151. <length>20</length>
  4152. <precision>-1</precision>
  4153. <origin>extract.UNIT_FILE</origin>
  4154. <comments>BASIS_NUMBER</comments>
  4155. <conversion_Mask/>
  4156. <decimal_symbol>,</decimal_symbol>
  4157. <grouping_symbol>.</grouping_symbol>
  4158. <currency_symbol/>
  4159. <trim_type>none</trim_type>
  4160. <case_insensitive>N</case_insensitive>
  4161. <collator_disabled>Y</collator_disabled>
  4162. <collator_strength>0</collator_strength>
  4163. <sort_descending>N</sort_descending>
  4164. <output_padding>N</output_padding>
  4165. <date_format_lenient>N</date_format_lenient>
  4166. <date_format_locale>en_US</date_format_locale>
  4167. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4168. <lenient_string_to_number>N</lenient_string_to_number>
  4169. </value-meta>
  4170. <value-meta>
  4171. <type>String</type>
  4172. <storagetype>normal</storagetype>
  4173. <name>ECC_STATUS</name>
  4174. <length>2</length>
  4175. <precision>-1</precision>
  4176. <origin>extract.UNIT_FILE</origin>
  4177. <comments>ECC_STATUS</comments>
  4178. <conversion_Mask/>
  4179. <decimal_symbol>,</decimal_symbol>
  4180. <grouping_symbol>.</grouping_symbol>
  4181. <currency_symbol/>
  4182. <trim_type>none</trim_type>
  4183. <case_insensitive>N</case_insensitive>
  4184. <collator_disabled>Y</collator_disabled>
  4185. <collator_strength>0</collator_strength>
  4186. <sort_descending>N</sort_descending>
  4187. <output_padding>N</output_padding>
  4188. <date_format_lenient>N</date_format_lenient>
  4189. <date_format_locale>en_US</date_format_locale>
  4190. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4191. <lenient_string_to_number>N</lenient_string_to_number>
  4192. </value-meta>
  4193. <value-meta>
  4194. <type>String</type>
  4195. <storagetype>normal</storagetype>
  4196. <name>VEHICLE_TYPE</name>
  4197. <length>1</length>
  4198. <precision>-1</precision>
  4199. <origin>extract.UNIT_FILE</origin>
  4200. <comments>VEHICLE_TYPE</comments>
  4201. <conversion_Mask/>
  4202. <decimal_symbol>,</decimal_symbol>
  4203. <grouping_symbol>.</grouping_symbol>
  4204. <currency_symbol/>
  4205. <trim_type>none</trim_type>
  4206. <case_insensitive>N</case_insensitive>
  4207. <collator_disabled>Y</collator_disabled>
  4208. <collator_strength>0</collator_strength>
  4209. <sort_descending>N</sort_descending>
  4210. <output_padding>N</output_padding>
  4211. <date_format_lenient>N</date_format_lenient>
  4212. <date_format_locale>en_US</date_format_locale>
  4213. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4214. <lenient_string_to_number>N</lenient_string_to_number>
  4215. </value-meta>
  4216. <value-meta>
  4217. <type>Timestamp</type>
  4218. <storagetype>normal</storagetype>
  4219. <name>SALE_DATE</name>
  4220. <length>3</length>
  4221. <precision>-1</precision>
  4222. <origin>extract.UNIT_FILE</origin>
  4223. <comments>SALE_DATE</comments>
  4224. <conversion_Mask/>
  4225. <decimal_symbol>,</decimal_symbol>
  4226. <grouping_symbol>.</grouping_symbol>
  4227. <currency_symbol/>
  4228. <trim_type>none</trim_type>
  4229. <case_insensitive>N</case_insensitive>
  4230. <collator_disabled>Y</collator_disabled>
  4231. <collator_strength>0</collator_strength>
  4232. <sort_descending>N</sort_descending>
  4233. <output_padding>N</output_padding>
  4234. <date_format_lenient>N</date_format_lenient>
  4235. <date_format_locale>en_US</date_format_locale>
  4236. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4237. <lenient_string_to_number>N</lenient_string_to_number>
  4238. </value-meta>
  4239. <value-meta>
  4240. <type>Timestamp</type>
  4241. <storagetype>normal</storagetype>
  4242. <name>RECEPTION_DATE</name>
  4243. <length>3</length>
  4244. <precision>-1</precision>
  4245. <origin>extract.UNIT_FILE</origin>
  4246. <comments>RECEPTION_DATE</comments>
  4247. <conversion_Mask/>
  4248. <decimal_symbol>,</decimal_symbol>
  4249. <grouping_symbol>.</grouping_symbol>
  4250. <currency_symbol/>
  4251. <trim_type>none</trim_type>
  4252. <case_insensitive>N</case_insensitive>
  4253. <collator_disabled>Y</collator_disabled>
  4254. <collator_strength>0</collator_strength>
  4255. <sort_descending>N</sort_descending>
  4256. <output_padding>N</output_padding>
  4257. <date_format_lenient>N</date_format_lenient>
  4258. <date_format_locale>en_US</date_format_locale>
  4259. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4260. <lenient_string_to_number>N</lenient_string_to_number>
  4261. </value-meta>
  4262. <value-meta>
  4263. <type>Timestamp</type>
  4264. <storagetype>normal</storagetype>
  4265. <name>PURCH_DATE</name>
  4266. <length>3</length>
  4267. <precision>-1</precision>
  4268. <origin>extract.UNIT_FILE</origin>
  4269. <comments>PURCH_DATE</comments>
  4270. <conversion_Mask/>
  4271. <decimal_symbol>,</decimal_symbol>
  4272. <grouping_symbol>.</grouping_symbol>
  4273. <currency_symbol/>
  4274. <trim_type>none</trim_type>
  4275. <case_insensitive>N</case_insensitive>
  4276. <collator_disabled>Y</collator_disabled>
  4277. <collator_strength>0</collator_strength>
  4278. <sort_descending>N</sort_descending>
  4279. <output_padding>N</output_padding>
  4280. <date_format_lenient>N</date_format_lenient>
  4281. <date_format_locale>en_US</date_format_locale>
  4282. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4283. <lenient_string_to_number>N</lenient_string_to_number>
  4284. </value-meta>
  4285. <value-meta>
  4286. <type>String</type>
  4287. <storagetype>normal</storagetype>
  4288. <name>PREV_OWNER</name>
  4289. <length>60</length>
  4290. <precision>-1</precision>
  4291. <origin>extract.UNIT_FILE</origin>
  4292. <comments>PREV_OWNER</comments>
  4293. <conversion_Mask/>
  4294. <decimal_symbol>,</decimal_symbol>
  4295. <grouping_symbol>.</grouping_symbol>
  4296. <currency_symbol/>
  4297. <trim_type>none</trim_type>
  4298. <case_insensitive>N</case_insensitive>
  4299. <collator_disabled>Y</collator_disabled>
  4300. <collator_strength>0</collator_strength>
  4301. <sort_descending>N</sort_descending>
  4302. <output_padding>N</output_padding>
  4303. <date_format_lenient>N</date_format_lenient>
  4304. <date_format_locale>en_US</date_format_locale>
  4305. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4306. <lenient_string_to_number>N</lenient_string_to_number>
  4307. </value-meta>
  4308. <value-meta>
  4309. <type>String</type>
  4310. <storagetype>normal</storagetype>
  4311. <name>ACCOUNT_SALES</name>
  4312. <length>10</length>
  4313. <precision>-1</precision>
  4314. <origin>extract.UNIT_FILE</origin>
  4315. <comments>ACCOUNT_SALES</comments>
  4316. <conversion_Mask/>
  4317. <decimal_symbol>,</decimal_symbol>
  4318. <grouping_symbol>.</grouping_symbol>
  4319. <currency_symbol/>
  4320. <trim_type>none</trim_type>
  4321. <case_insensitive>N</case_insensitive>
  4322. <collator_disabled>Y</collator_disabled>
  4323. <collator_strength>0</collator_strength>
  4324. <sort_descending>N</sort_descending>
  4325. <output_padding>N</output_padding>
  4326. <date_format_lenient>N</date_format_lenient>
  4327. <date_format_locale>en_US</date_format_locale>
  4328. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4329. <lenient_string_to_number>N</lenient_string_to_number>
  4330. </value-meta>
  4331. <value-meta>
  4332. <type>String</type>
  4333. <storagetype>normal</storagetype>
  4334. <name>SALES_DEPARTMENT</name>
  4335. <length>4</length>
  4336. <precision>-1</precision>
  4337. <origin>extract.UNIT_FILE</origin>
  4338. <comments>SALES_DEPARTMENT</comments>
  4339. <conversion_Mask/>
  4340. <decimal_symbol>,</decimal_symbol>
  4341. <grouping_symbol>.</grouping_symbol>
  4342. <currency_symbol/>
  4343. <trim_type>none</trim_type>
  4344. <case_insensitive>N</case_insensitive>
  4345. <collator_disabled>Y</collator_disabled>
  4346. <collator_strength>0</collator_strength>
  4347. <sort_descending>N</sort_descending>
  4348. <output_padding>N</output_padding>
  4349. <date_format_lenient>N</date_format_lenient>
  4350. <date_format_locale>en_US</date_format_locale>
  4351. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4352. <lenient_string_to_number>N</lenient_string_to_number>
  4353. </value-meta>
  4354. <value-meta>
  4355. <type>String</type>
  4356. <storagetype>normal</storagetype>
  4357. <name>SALE_SALESMAN</name>
  4358. <length>20</length>
  4359. <precision>-1</precision>
  4360. <origin>extract.UNIT_FILE</origin>
  4361. <comments>SALE_SALESMAN</comments>
  4362. <conversion_Mask/>
  4363. <decimal_symbol>,</decimal_symbol>
  4364. <grouping_symbol>.</grouping_symbol>
  4365. <currency_symbol/>
  4366. <trim_type>none</trim_type>
  4367. <case_insensitive>N</case_insensitive>
  4368. <collator_disabled>Y</collator_disabled>
  4369. <collator_strength>0</collator_strength>
  4370. <sort_descending>N</sort_descending>
  4371. <output_padding>N</output_padding>
  4372. <date_format_lenient>N</date_format_lenient>
  4373. <date_format_locale>en_US</date_format_locale>
  4374. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4375. <lenient_string_to_number>N</lenient_string_to_number>
  4376. </value-meta>
  4377. <value-meta>
  4378. <type>String</type>
  4379. <storagetype>normal</storagetype>
  4380. <name>PURCH_SALSMAN_CODE</name>
  4381. <length>20</length>
  4382. <precision>-1</precision>
  4383. <origin>extract.UNIT_FILE</origin>
  4384. <comments>PURCH_SALSMAN_CODE</comments>
  4385. <conversion_Mask/>
  4386. <decimal_symbol>,</decimal_symbol>
  4387. <grouping_symbol>.</grouping_symbol>
  4388. <currency_symbol/>
  4389. <trim_type>none</trim_type>
  4390. <case_insensitive>N</case_insensitive>
  4391. <collator_disabled>Y</collator_disabled>
  4392. <collator_strength>0</collator_strength>
  4393. <sort_descending>N</sort_descending>
  4394. <output_padding>N</output_padding>
  4395. <date_format_lenient>N</date_format_lenient>
  4396. <date_format_locale>en_US</date_format_locale>
  4397. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4398. <lenient_string_to_number>N</lenient_string_to_number>
  4399. </value-meta>
  4400. </row-meta>
  4401. <attributes/>
  4402. <cluster_schema/>
  4403. <remotesteps>
  4404. <input>
  4405. </input>
  4406. <output>
  4407. </output>
  4408. </remotesteps>
  4409. <GUI>
  4410. <xloc>64</xloc>
  4411. <yloc>192</yloc>
  4412. <draw>Y</draw>
  4413. </GUI>
  4414. </step>
  4415. <step>
  4416. <name>extract.UNIT_HISTORY</name>
  4417. <type>TableInput</type>
  4418. <description/>
  4419. <distribute>Y</distribute>
  4420. <custom_distribution/>
  4421. <copies>1</copies>
  4422. <partitioning>
  4423. <method>none</method>
  4424. <schema_name/>
  4425. </partitioning>
  4426. <connection>OPTIMA</connection>
  4427. <sql>SELECT *
  4428. FROM [extract].[UNIT_HISTORY]
  4429. ORDER BY [CLIENT_DB], [UNIT_NUMBER], [LINE_NO], [UNIQUE_IDENT]</sql>
  4430. <limit>0</limit>
  4431. <lookup/>
  4432. <execute_each_row>N</execute_each_row>
  4433. <variables_active>N</variables_active>
  4434. <lazy_conversion_active>N</lazy_conversion_active>
  4435. <cached_row_meta_active>N</cached_row_meta_active>
  4436. <row-meta>
  4437. <value-meta>
  4438. <type>String</type>
  4439. <storagetype>normal</storagetype>
  4440. <name>CLIENT_DB</name>
  4441. <length>20</length>
  4442. <precision>-1</precision>
  4443. <origin>extract.UNIT_HISTORY</origin>
  4444. <comments>CLIENT_DB</comments>
  4445. <conversion_Mask/>
  4446. <decimal_symbol>,</decimal_symbol>
  4447. <grouping_symbol>.</grouping_symbol>
  4448. <currency_symbol/>
  4449. <trim_type>none</trim_type>
  4450. <case_insensitive>N</case_insensitive>
  4451. <collator_disabled>Y</collator_disabled>
  4452. <collator_strength>0</collator_strength>
  4453. <sort_descending>N</sort_descending>
  4454. <output_padding>N</output_padding>
  4455. <date_format_lenient>N</date_format_lenient>
  4456. <date_format_locale>en_US</date_format_locale>
  4457. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4458. <lenient_string_to_number>N</lenient_string_to_number>
  4459. </value-meta>
  4460. <value-meta>
  4461. <type>String</type>
  4462. <storagetype>normal</storagetype>
  4463. <name>UNIT_NUMBER</name>
  4464. <length>10</length>
  4465. <precision>-1</precision>
  4466. <origin>extract.UNIT_HISTORY</origin>
  4467. <comments>UNIT_NUMBER</comments>
  4468. <conversion_Mask/>
  4469. <decimal_symbol>,</decimal_symbol>
  4470. <grouping_symbol>.</grouping_symbol>
  4471. <currency_symbol/>
  4472. <trim_type>none</trim_type>
  4473. <case_insensitive>N</case_insensitive>
  4474. <collator_disabled>Y</collator_disabled>
  4475. <collator_strength>0</collator_strength>
  4476. <sort_descending>N</sort_descending>
  4477. <output_padding>N</output_padding>
  4478. <date_format_lenient>N</date_format_lenient>
  4479. <date_format_locale>en_US</date_format_locale>
  4480. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4481. <lenient_string_to_number>N</lenient_string_to_number>
  4482. </value-meta>
  4483. <value-meta>
  4484. <type>Integer</type>
  4485. <storagetype>normal</storagetype>
  4486. <name>LINE_NO</name>
  4487. <length>4</length>
  4488. <precision>0</precision>
  4489. <origin>extract.UNIT_HISTORY</origin>
  4490. <comments>LINE_NO</comments>
  4491. <conversion_Mask>####0;-####0</conversion_Mask>
  4492. <decimal_symbol>,</decimal_symbol>
  4493. <grouping_symbol>.</grouping_symbol>
  4494. <currency_symbol/>
  4495. <trim_type>none</trim_type>
  4496. <case_insensitive>N</case_insensitive>
  4497. <collator_disabled>Y</collator_disabled>
  4498. <collator_strength>0</collator_strength>
  4499. <sort_descending>N</sort_descending>
  4500. <output_padding>N</output_padding>
  4501. <date_format_lenient>N</date_format_lenient>
  4502. <date_format_locale>en_US</date_format_locale>
  4503. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4504. <lenient_string_to_number>N</lenient_string_to_number>
  4505. </value-meta>
  4506. <value-meta>
  4507. <type>String</type>
  4508. <storagetype>normal</storagetype>
  4509. <name>DOCUMENT_NR</name>
  4510. <length>20</length>
  4511. <precision>-1</precision>
  4512. <origin>extract.UNIT_HISTORY</origin>
  4513. <comments>DOCUMENT_NR</comments>
  4514. <conversion_Mask/>
  4515. <decimal_symbol>,</decimal_symbol>
  4516. <grouping_symbol>.</grouping_symbol>
  4517. <currency_symbol/>
  4518. <trim_type>none</trim_type>
  4519. <case_insensitive>N</case_insensitive>
  4520. <collator_disabled>Y</collator_disabled>
  4521. <collator_strength>0</collator_strength>
  4522. <sort_descending>N</sort_descending>
  4523. <output_padding>N</output_padding>
  4524. <date_format_lenient>N</date_format_lenient>
  4525. <date_format_locale>en_US</date_format_locale>
  4526. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4527. <lenient_string_to_number>N</lenient_string_to_number>
  4528. </value-meta>
  4529. <value-meta>
  4530. <type>String</type>
  4531. <storagetype>normal</storagetype>
  4532. <name>LINE_TYPE</name>
  4533. <length>2</length>
  4534. <precision>-1</precision>
  4535. <origin>extract.UNIT_HISTORY</origin>
  4536. <comments>LINE_TYPE</comments>
  4537. <conversion_Mask/>
  4538. <decimal_symbol>,</decimal_symbol>
  4539. <grouping_symbol>.</grouping_symbol>
  4540. <currency_symbol/>
  4541. <trim_type>none</trim_type>
  4542. <case_insensitive>N</case_insensitive>
  4543. <collator_disabled>Y</collator_disabled>
  4544. <collator_strength>0</collator_strength>
  4545. <sort_descending>N</sort_descending>
  4546. <output_padding>N</output_padding>
  4547. <date_format_lenient>N</date_format_lenient>
  4548. <date_format_locale>en_US</date_format_locale>
  4549. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4550. <lenient_string_to_number>N</lenient_string_to_number>
  4551. </value-meta>
  4552. <value-meta>
  4553. <type>String</type>
  4554. <storagetype>normal</storagetype>
  4555. <name>TRANSACTION_CODE</name>
  4556. <length>3</length>
  4557. <precision>-1</precision>
  4558. <origin>extract.UNIT_HISTORY</origin>
  4559. <comments>TRANSACTION_CODE</comments>
  4560. <conversion_Mask/>
  4561. <decimal_symbol>,</decimal_symbol>
  4562. <grouping_symbol>.</grouping_symbol>
  4563. <currency_symbol/>
  4564. <trim_type>none</trim_type>
  4565. <case_insensitive>N</case_insensitive>
  4566. <collator_disabled>Y</collator_disabled>
  4567. <collator_strength>0</collator_strength>
  4568. <sort_descending>N</sort_descending>
  4569. <output_padding>N</output_padding>
  4570. <date_format_lenient>N</date_format_lenient>
  4571. <date_format_locale>en_US</date_format_locale>
  4572. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4573. <lenient_string_to_number>N</lenient_string_to_number>
  4574. </value-meta>
  4575. <value-meta>
  4576. <type>String</type>
  4577. <storagetype>normal</storagetype>
  4578. <name>REFERENCE</name>
  4579. <length>255</length>
  4580. <precision>-1</precision>
  4581. <origin>extract.UNIT_HISTORY</origin>
  4582. <comments>REFERENCE</comments>
  4583. <conversion_Mask/>
  4584. <decimal_symbol>,</decimal_symbol>
  4585. <grouping_symbol>.</grouping_symbol>
  4586. <currency_symbol/>
  4587. <trim_type>none</trim_type>
  4588. <case_insensitive>N</case_insensitive>
  4589. <collator_disabled>Y</collator_disabled>
  4590. <collator_strength>0</collator_strength>
  4591. <sort_descending>N</sort_descending>
  4592. <output_padding>N</output_padding>
  4593. <date_format_lenient>N</date_format_lenient>
  4594. <date_format_locale>en_US</date_format_locale>
  4595. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4596. <lenient_string_to_number>N</lenient_string_to_number>
  4597. </value-meta>
  4598. <value-meta>
  4599. <type>Number</type>
  4600. <storagetype>normal</storagetype>
  4601. <name>ORDERS_GROSSVALUE</name>
  4602. <length>15</length>
  4603. <precision>2</precision>
  4604. <origin>extract.UNIT_HISTORY</origin>
  4605. <comments>ORDERS_GROSSVALUE</comments>
  4606. <conversion_Mask>####0.0#########;-####0.0#########</conversion_Mask>
  4607. <decimal_symbol>,</decimal_symbol>
  4608. <grouping_symbol>.</grouping_symbol>
  4609. <currency_symbol/>
  4610. <trim_type>none</trim_type>
  4611. <case_insensitive>N</case_insensitive>
  4612. <collator_disabled>Y</collator_disabled>
  4613. <collator_strength>0</collator_strength>
  4614. <sort_descending>N</sort_descending>
  4615. <output_padding>N</output_padding>
  4616. <date_format_lenient>N</date_format_lenient>
  4617. <date_format_locale>en_US</date_format_locale>
  4618. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4619. <lenient_string_to_number>N</lenient_string_to_number>
  4620. </value-meta>
  4621. <value-meta>
  4622. <type>Integer</type>
  4623. <storagetype>normal</storagetype>
  4624. <name>UNIQUE_IDENT</name>
  4625. <length>12</length>
  4626. <precision>0</precision>
  4627. <origin>extract.UNIT_HISTORY</origin>
  4628. <comments>UNIQUE_IDENT</comments>
  4629. <conversion_Mask>####0;-####0</conversion_Mask>
  4630. <decimal_symbol>,</decimal_symbol>
  4631. <grouping_symbol>.</grouping_symbol>
  4632. <currency_symbol/>
  4633. <trim_type>none</trim_type>
  4634. <case_insensitive>N</case_insensitive>
  4635. <collator_disabled>Y</collator_disabled>
  4636. <collator_strength>0</collator_strength>
  4637. <sort_descending>N</sort_descending>
  4638. <output_padding>N</output_padding>
  4639. <date_format_lenient>N</date_format_lenient>
  4640. <date_format_locale>en_US</date_format_locale>
  4641. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4642. <lenient_string_to_number>N</lenient_string_to_number>
  4643. </value-meta>
  4644. </row-meta>
  4645. <attributes/>
  4646. <cluster_schema/>
  4647. <remotesteps>
  4648. <input>
  4649. </input>
  4650. <output>
  4651. </output>
  4652. </remotesteps>
  4653. <GUI>
  4654. <xloc>64</xloc>
  4655. <yloc>960</yloc>
  4656. <draw>Y</draw>
  4657. </GUI>
  4658. </step>
  4659. <step>
  4660. <name>extract.UNIT_HISTORY_Menge</name>
  4661. <type>TableInput</type>
  4662. <description/>
  4663. <distribute>Y</distribute>
  4664. <custom_distribution/>
  4665. <copies>1</copies>
  4666. <partitioning>
  4667. <method>none</method>
  4668. <schema_name/>
  4669. </partitioning>
  4670. <connection>OPTIMA</connection>
  4671. <sql>SELECT *
  4672. FROM [extract].[UNIT_HISTORY_Menge]
  4673. ORDER BY [CLIENT_DB], [UNIT_NUMBER], [UNIQUE_IDENT]</sql>
  4674. <limit>0</limit>
  4675. <lookup/>
  4676. <execute_each_row>N</execute_each_row>
  4677. <variables_active>N</variables_active>
  4678. <lazy_conversion_active>N</lazy_conversion_active>
  4679. <cached_row_meta_active>N</cached_row_meta_active>
  4680. <row-meta>
  4681. <value-meta>
  4682. <type>String</type>
  4683. <storagetype>normal</storagetype>
  4684. <name>CLIENT_DB</name>
  4685. <length>20</length>
  4686. <precision>-1</precision>
  4687. <origin>Table input</origin>
  4688. <comments>CLIENT_DB</comments>
  4689. <conversion_Mask/>
  4690. <decimal_symbol>,</decimal_symbol>
  4691. <grouping_symbol>.</grouping_symbol>
  4692. <currency_symbol/>
  4693. <trim_type>none</trim_type>
  4694. <case_insensitive>N</case_insensitive>
  4695. <collator_disabled>Y</collator_disabled>
  4696. <collator_strength>0</collator_strength>
  4697. <sort_descending>N</sort_descending>
  4698. <output_padding>N</output_padding>
  4699. <date_format_lenient>N</date_format_lenient>
  4700. <date_format_locale>en_US</date_format_locale>
  4701. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4702. <lenient_string_to_number>N</lenient_string_to_number>
  4703. </value-meta>
  4704. <value-meta>
  4705. <type>String</type>
  4706. <storagetype>normal</storagetype>
  4707. <name>UNIT_NUMBER</name>
  4708. <length>10</length>
  4709. <precision>-1</precision>
  4710. <origin>Table input</origin>
  4711. <comments>UNIT_NUMBER</comments>
  4712. <conversion_Mask/>
  4713. <decimal_symbol>,</decimal_symbol>
  4714. <grouping_symbol>.</grouping_symbol>
  4715. <currency_symbol/>
  4716. <trim_type>none</trim_type>
  4717. <case_insensitive>N</case_insensitive>
  4718. <collator_disabled>Y</collator_disabled>
  4719. <collator_strength>0</collator_strength>
  4720. <sort_descending>N</sort_descending>
  4721. <output_padding>N</output_padding>
  4722. <date_format_lenient>N</date_format_lenient>
  4723. <date_format_locale>en_US</date_format_locale>
  4724. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4725. <lenient_string_to_number>N</lenient_string_to_number>
  4726. </value-meta>
  4727. <value-meta>
  4728. <type>Integer</type>
  4729. <storagetype>normal</storagetype>
  4730. <name>UNIQUE_IDENT</name>
  4731. <length>12</length>
  4732. <precision>0</precision>
  4733. <origin>Table input</origin>
  4734. <comments>UNIQUE_IDENT</comments>
  4735. <conversion_Mask>####0;-####0</conversion_Mask>
  4736. <decimal_symbol>,</decimal_symbol>
  4737. <grouping_symbol>.</grouping_symbol>
  4738. <currency_symbol/>
  4739. <trim_type>none</trim_type>
  4740. <case_insensitive>N</case_insensitive>
  4741. <collator_disabled>Y</collator_disabled>
  4742. <collator_strength>0</collator_strength>
  4743. <sort_descending>N</sort_descending>
  4744. <output_padding>N</output_padding>
  4745. <date_format_lenient>N</date_format_lenient>
  4746. <date_format_locale>en_US</date_format_locale>
  4747. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4748. <lenient_string_to_number>N</lenient_string_to_number>
  4749. </value-meta>
  4750. <value-meta>
  4751. <type>Number</type>
  4752. <storagetype>normal</storagetype>
  4753. <name>Menge</name>
  4754. <length>2</length>
  4755. <precision>1</precision>
  4756. <origin>Table input</origin>
  4757. <comments>Menge</comments>
  4758. <conversion_Mask>####0.0#########;-####0.0#########</conversion_Mask>
  4759. <decimal_symbol>,</decimal_symbol>
  4760. <grouping_symbol>.</grouping_symbol>
  4761. <currency_symbol/>
  4762. <trim_type>none</trim_type>
  4763. <case_insensitive>N</case_insensitive>
  4764. <collator_disabled>Y</collator_disabled>
  4765. <collator_strength>0</collator_strength>
  4766. <sort_descending>N</sort_descending>
  4767. <output_padding>N</output_padding>
  4768. <date_format_lenient>N</date_format_lenient>
  4769. <date_format_locale>en_US</date_format_locale>
  4770. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4771. <lenient_string_to_number>N</lenient_string_to_number>
  4772. </value-meta>
  4773. </row-meta>
  4774. <attributes/>
  4775. <cluster_schema/>
  4776. <remotesteps>
  4777. <input>
  4778. </input>
  4779. <output>
  4780. </output>
  4781. </remotesteps>
  4782. <GUI>
  4783. <xloc>128</xloc>
  4784. <yloc>1088</yloc>
  4785. <draw>Y</draw>
  4786. </GUI>
  4787. </step>
  4788. <step>
  4789. <name>Transaction_Code</name>
  4790. <type>Dummy</type>
  4791. <description/>
  4792. <distribute>Y</distribute>
  4793. <custom_distribution/>
  4794. <copies>1</copies>
  4795. <partitioning>
  4796. <method>none</method>
  4797. <schema_name/>
  4798. </partitioning>
  4799. <attributes/>
  4800. <cluster_schema/>
  4801. <remotesteps>
  4802. <input>
  4803. </input>
  4804. <output>
  4805. </output>
  4806. </remotesteps>
  4807. <GUI>
  4808. <xloc>832</xloc>
  4809. <yloc>1216</yloc>
  4810. <draw>Y</draw>
  4811. </GUI>
  4812. </step>
  4813. <step>
  4814. <name>Unit_File_max_Sale_Date</name>
  4815. <type>TableInput</type>
  4816. <description/>
  4817. <distribute>Y</distribute>
  4818. <custom_distribution/>
  4819. <copies>1</copies>
  4820. <partitioning>
  4821. <method>none</method>
  4822. <schema_name/>
  4823. </partitioning>
  4824. <connection>OPTIMA</connection>
  4825. <sql>SELECT max([SALE_DATE]) AS [Datum]
  4826. FROM [import].[UNIT_FILE]
  4827. WHERE [SALE_DATE] &lt;= getdate()</sql>
  4828. <limit>0</limit>
  4829. <lookup/>
  4830. <execute_each_row>N</execute_each_row>
  4831. <variables_active>N</variables_active>
  4832. <lazy_conversion_active>N</lazy_conversion_active>
  4833. <cached_row_meta_active>N</cached_row_meta_active>
  4834. <row-meta>
  4835. <value-meta>
  4836. <type>Timestamp</type>
  4837. <storagetype>normal</storagetype>
  4838. <name>Datum</name>
  4839. <length>3</length>
  4840. <precision>-1</precision>
  4841. <origin>Max_Sale_Date</origin>
  4842. <comments>Datum</comments>
  4843. <conversion_Mask/>
  4844. <decimal_symbol>,</decimal_symbol>
  4845. <grouping_symbol>.</grouping_symbol>
  4846. <currency_symbol/>
  4847. <trim_type>none</trim_type>
  4848. <case_insensitive>N</case_insensitive>
  4849. <collator_disabled>Y</collator_disabled>
  4850. <collator_strength>0</collator_strength>
  4851. <sort_descending>N</sort_descending>
  4852. <output_padding>N</output_padding>
  4853. <date_format_lenient>N</date_format_lenient>
  4854. <date_format_locale>en_US</date_format_locale>
  4855. <date_format_timezone>Europe/Berlin</date_format_timezone>
  4856. <lenient_string_to_number>N</lenient_string_to_number>
  4857. </value-meta>
  4858. </row-meta>
  4859. <attributes/>
  4860. <cluster_schema/>
  4861. <remotesteps>
  4862. <input>
  4863. </input>
  4864. <output>
  4865. </output>
  4866. </remotesteps>
  4867. <GUI>
  4868. <xloc>64</xloc>
  4869. <yloc>64</yloc>
  4870. <draw>Y</draw>
  4871. </GUI>
  4872. </step>
  4873. <step>
  4874. <name>Einkauf_Verkauf_Datum</name>
  4875. <type>ScriptValueMod</type>
  4876. <description/>
  4877. <distribute>Y</distribute>
  4878. <custom_distribution/>
  4879. <copies>1</copies>
  4880. <partitioning>
  4881. <method>none</method>
  4882. <schema_name/>
  4883. </partitioning>
  4884. <compatible>N</compatible>
  4885. <optimizationLevel>9</optimizationLevel>
  4886. <jsScripts>
  4887. <jsScript>
  4888. <jsScript_type>0</jsScript_type>
  4889. <jsScript_name>Script 1</jsScript_name>
  4890. <jsScript_script>
  4891. var Einkauf_Datum = (RECEPTION_DATE == null) ? PURCH_DATE : RECEPTION_DATE;
  4892. var Verkauf_Datum = (SALE_DATE == null) ? Datum : SALE_DATE;
  4893. var Tage_seit_Verkauf = dateDiff(Verkauf_Datum, Datum, "d");
  4894. var Standtage = dateDiff(Einkauf_Datum, Verkauf_Datum, "d");</jsScript_script>
  4895. </jsScript>
  4896. </jsScripts>
  4897. <fields>
  4898. <field>
  4899. <name>Tage_seit_Verkauf</name>
  4900. <rename>Tage_seit_Verkauf</rename>
  4901. <type>Integer</type>
  4902. <length>16</length>
  4903. <precision>-1</precision>
  4904. <replace>N</replace>
  4905. </field>
  4906. <field>
  4907. <name>Standtage</name>
  4908. <rename>Standtage</rename>
  4909. <type>Integer</type>
  4910. <length>16</length>
  4911. <precision>-1</precision>
  4912. <replace>N</replace>
  4913. </field>
  4914. </fields>
  4915. <attributes/>
  4916. <cluster_schema/>
  4917. <remotesteps>
  4918. <input>
  4919. </input>
  4920. <output>
  4921. </output>
  4922. </remotesteps>
  4923. <GUI>
  4924. <xloc>1600</xloc>
  4925. <yloc>192</yloc>
  4926. <draw>Y</draw>
  4927. </GUI>
  4928. </step>
  4929. <step>
  4930. <name>Get variables</name>
  4931. <type>GetVariable</type>
  4932. <description/>
  4933. <distribute>Y</distribute>
  4934. <custom_distribution/>
  4935. <copies>1</copies>
  4936. <partitioning>
  4937. <method>none</method>
  4938. <schema_name/>
  4939. </partitioning>
  4940. <fields>
  4941. <field>
  4942. <name>Datum</name>
  4943. <variable>${DATUM}</variable>
  4944. <type>Timestamp</type>
  4945. <format/>
  4946. <currency/>
  4947. <decimal/>
  4948. <group/>
  4949. <length>-1</length>
  4950. <precision>-1</precision>
  4951. <trim_type>none</trim_type>
  4952. </field>
  4953. </fields>
  4954. <attributes/>
  4955. <cluster_schema/>
  4956. <remotesteps>
  4957. <input>
  4958. </input>
  4959. <output>
  4960. </output>
  4961. </remotesteps>
  4962. <GUI>
  4963. <xloc>1408</xloc>
  4964. <yloc>192</yloc>
  4965. <draw>Y</draw>
  4966. </GUI>
  4967. </step>
  4968. <step>
  4969. <name>Set variables</name>
  4970. <type>SetVariable</type>
  4971. <description/>
  4972. <distribute>Y</distribute>
  4973. <custom_distribution/>
  4974. <copies>1</copies>
  4975. <partitioning>
  4976. <method>none</method>
  4977. <schema_name/>
  4978. </partitioning>
  4979. <fields>
  4980. <field>
  4981. <field_name>Datum</field_name>
  4982. <variable_name>DATUM</variable_name>
  4983. <variable_type>ROOT_JOB</variable_type>
  4984. <default_value/>
  4985. </field>
  4986. </fields>
  4987. <use_formatting>Y</use_formatting>
  4988. <attributes/>
  4989. <cluster_schema/>
  4990. <remotesteps>
  4991. <input>
  4992. </input>
  4993. <output>
  4994. </output>
  4995. </remotesteps>
  4996. <GUI>
  4997. <xloc>256</xloc>
  4998. <yloc>64</yloc>
  4999. <draw>Y</draw>
  5000. </GUI>
  5001. </step>
  5002. <step>
  5003. <name>extract.ACCT_DOC_UNIT_HISTORY</name>
  5004. <type>TableInput</type>
  5005. <description/>
  5006. <distribute>Y</distribute>
  5007. <custom_distribution/>
  5008. <copies>1</copies>
  5009. <partitioning>
  5010. <method>none</method>
  5011. <schema_name/>
  5012. </partitioning>
  5013. <connection>OPTIMA</connection>
  5014. <sql>SELECT [CLIENT_DB]
  5015. , [UNIT_NUMBER]
  5016. , [LINE_NO]
  5017. , [UNIQUE_IDENT_UNIT_HISTORY]
  5018. , [UNIQUE_IDENT_ACCT_DOC_KEY]
  5019. , [ACCT_NO]
  5020. , [BOOKKEEP_DATE]
  5021. FROM [extract].[ACCT_DOC_UNIT_HISTORY]
  5022. ORDER BY [CLIENT_DB], [UNIT_NUMBER], [LINE_NO], [UNIQUE_IDENT_UNIT_HISTORY]</sql>
  5023. <limit>0</limit>
  5024. <lookup/>
  5025. <execute_each_row>N</execute_each_row>
  5026. <variables_active>N</variables_active>
  5027. <lazy_conversion_active>N</lazy_conversion_active>
  5028. <cached_row_meta_active>N</cached_row_meta_active>
  5029. <row-meta>
  5030. <value-meta>
  5031. <type>String</type>
  5032. <storagetype>normal</storagetype>
  5033. <name>CLIENT_DB</name>
  5034. <length>20</length>
  5035. <precision>-1</precision>
  5036. <origin>Table input</origin>
  5037. <comments>CLIENT_DB</comments>
  5038. <conversion_Mask/>
  5039. <decimal_symbol>,</decimal_symbol>
  5040. <grouping_symbol>.</grouping_symbol>
  5041. <currency_symbol/>
  5042. <trim_type>none</trim_type>
  5043. <case_insensitive>N</case_insensitive>
  5044. <collator_disabled>Y</collator_disabled>
  5045. <collator_strength>0</collator_strength>
  5046. <sort_descending>N</sort_descending>
  5047. <output_padding>N</output_padding>
  5048. <date_format_lenient>N</date_format_lenient>
  5049. <date_format_locale>en_US</date_format_locale>
  5050. <date_format_timezone>Europe/Berlin</date_format_timezone>
  5051. <lenient_string_to_number>N</lenient_string_to_number>
  5052. </value-meta>
  5053. <value-meta>
  5054. <type>String</type>
  5055. <storagetype>normal</storagetype>
  5056. <name>UNIT_NUMBER</name>
  5057. <length>10</length>
  5058. <precision>-1</precision>
  5059. <origin>Table input</origin>
  5060. <comments>UNIT_NUMBER</comments>
  5061. <conversion_Mask/>
  5062. <decimal_symbol>,</decimal_symbol>
  5063. <grouping_symbol>.</grouping_symbol>
  5064. <currency_symbol/>
  5065. <trim_type>none</trim_type>
  5066. <case_insensitive>N</case_insensitive>
  5067. <collator_disabled>Y</collator_disabled>
  5068. <collator_strength>0</collator_strength>
  5069. <sort_descending>N</sort_descending>
  5070. <output_padding>N</output_padding>
  5071. <date_format_lenient>N</date_format_lenient>
  5072. <date_format_locale>en_US</date_format_locale>
  5073. <date_format_timezone>Europe/Berlin</date_format_timezone>
  5074. <lenient_string_to_number>N</lenient_string_to_number>
  5075. </value-meta>
  5076. <value-meta>
  5077. <type>Integer</type>
  5078. <storagetype>normal</storagetype>
  5079. <name>LINE_NO</name>
  5080. <length>4</length>
  5081. <precision>0</precision>
  5082. <origin>Table input</origin>
  5083. <comments>LINE_NO</comments>
  5084. <conversion_Mask>####0;-####0</conversion_Mask>
  5085. <decimal_symbol>,</decimal_symbol>
  5086. <grouping_symbol>.</grouping_symbol>
  5087. <currency_symbol/>
  5088. <trim_type>none</trim_type>
  5089. <case_insensitive>N</case_insensitive>
  5090. <collator_disabled>Y</collator_disabled>
  5091. <collator_strength>0</collator_strength>
  5092. <sort_descending>N</sort_descending>
  5093. <output_padding>N</output_padding>
  5094. <date_format_lenient>N</date_format_lenient>
  5095. <date_format_locale>en_US</date_format_locale>
  5096. <date_format_timezone>Europe/Berlin</date_format_timezone>
  5097. <lenient_string_to_number>N</lenient_string_to_number>
  5098. </value-meta>
  5099. <value-meta>
  5100. <type>Integer</type>
  5101. <storagetype>normal</storagetype>
  5102. <name>UNIQUE_IDENT_UNIT_HISTORY</name>
  5103. <length>12</length>
  5104. <precision>0</precision>
  5105. <origin>Table input</origin>
  5106. <comments>UNIQUE_IDENT_UNIT_HISTORY</comments>
  5107. <conversion_Mask>####0;-####0</conversion_Mask>
  5108. <decimal_symbol>,</decimal_symbol>
  5109. <grouping_symbol>.</grouping_symbol>
  5110. <currency_symbol/>
  5111. <trim_type>none</trim_type>
  5112. <case_insensitive>N</case_insensitive>
  5113. <collator_disabled>Y</collator_disabled>
  5114. <collator_strength>0</collator_strength>
  5115. <sort_descending>N</sort_descending>
  5116. <output_padding>N</output_padding>
  5117. <date_format_lenient>N</date_format_lenient>
  5118. <date_format_locale>en_US</date_format_locale>
  5119. <date_format_timezone>Europe/Berlin</date_format_timezone>
  5120. <lenient_string_to_number>N</lenient_string_to_number>
  5121. </value-meta>
  5122. <value-meta>
  5123. <type>Integer</type>
  5124. <storagetype>normal</storagetype>
  5125. <name>UNIQUE_IDENT_ACCT_DOC_KEY</name>
  5126. <length>12</length>
  5127. <precision>0</precision>
  5128. <origin>Table input</origin>
  5129. <comments>UNIQUE_IDENT_ACCT_DOC_KEY</comments>
  5130. <conversion_Mask>####0;-####0</conversion_Mask>
  5131. <decimal_symbol>,</decimal_symbol>
  5132. <grouping_symbol>.</grouping_symbol>
  5133. <currency_symbol/>
  5134. <trim_type>none</trim_type>
  5135. <case_insensitive>N</case_insensitive>
  5136. <collator_disabled>Y</collator_disabled>
  5137. <collator_strength>0</collator_strength>
  5138. <sort_descending>N</sort_descending>
  5139. <output_padding>N</output_padding>
  5140. <date_format_lenient>N</date_format_lenient>
  5141. <date_format_locale>en_US</date_format_locale>
  5142. <date_format_timezone>Europe/Berlin</date_format_timezone>
  5143. <lenient_string_to_number>N</lenient_string_to_number>
  5144. </value-meta>
  5145. <value-meta>
  5146. <type>String</type>
  5147. <storagetype>normal</storagetype>
  5148. <name>ACCT_NO</name>
  5149. <length>10</length>
  5150. <precision>-1</precision>
  5151. <origin>Table input</origin>
  5152. <comments>ACCT_NO</comments>
  5153. <conversion_Mask/>
  5154. <decimal_symbol>,</decimal_symbol>
  5155. <grouping_symbol>.</grouping_symbol>
  5156. <currency_symbol/>
  5157. <trim_type>none</trim_type>
  5158. <case_insensitive>N</case_insensitive>
  5159. <collator_disabled>Y</collator_disabled>
  5160. <collator_strength>0</collator_strength>
  5161. <sort_descending>N</sort_descending>
  5162. <output_padding>N</output_padding>
  5163. <date_format_lenient>N</date_format_lenient>
  5164. <date_format_locale>en_US</date_format_locale>
  5165. <date_format_timezone>Europe/Berlin</date_format_timezone>
  5166. <lenient_string_to_number>N</lenient_string_to_number>
  5167. </value-meta>
  5168. <value-meta>
  5169. <type>Timestamp</type>
  5170. <storagetype>normal</storagetype>
  5171. <name>BOOKKEEP_DATE</name>
  5172. <length>3</length>
  5173. <precision>-1</precision>
  5174. <origin>Table input</origin>
  5175. <comments>BOOKKEEP_DATE</comments>
  5176. <conversion_Mask/>
  5177. <decimal_symbol>,</decimal_symbol>
  5178. <grouping_symbol>.</grouping_symbol>
  5179. <currency_symbol/>
  5180. <trim_type>none</trim_type>
  5181. <case_insensitive>N</case_insensitive>
  5182. <collator_disabled>Y</collator_disabled>
  5183. <collator_strength>0</collator_strength>
  5184. <sort_descending>N</sort_descending>
  5185. <output_padding>N</output_padding>
  5186. <date_format_lenient>N</date_format_lenient>
  5187. <date_format_locale>en_US</date_format_locale>
  5188. <date_format_timezone>Europe/Berlin</date_format_timezone>
  5189. <lenient_string_to_number>N</lenient_string_to_number>
  5190. </value-meta>
  5191. </row-meta>
  5192. <attributes/>
  5193. <cluster_schema/>
  5194. <remotesteps>
  5195. <input>
  5196. </input>
  5197. <output>
  5198. </output>
  5199. </remotesteps>
  5200. <GUI>
  5201. <xloc>128</xloc>
  5202. <yloc>1344</yloc>
  5203. <draw>Y</draw>
  5204. </GUI>
  5205. </step>
  5206. <step>
  5207. <name>Acct_Doc_Unit_History_bereinigt</name>
  5208. <type>StringOperations</type>
  5209. <description/>
  5210. <distribute>Y</distribute>
  5211. <custom_distribution/>
  5212. <copies>1</copies>
  5213. <partitioning>
  5214. <method>none</method>
  5215. <schema_name/>
  5216. </partitioning>
  5217. <fields>
  5218. <field>
  5219. <in_stream_name>UNIT_NUMBER</in_stream_name>
  5220. <out_stream_name/>
  5221. <trim_type>both</trim_type>
  5222. <lower_upper>upper</lower_upper>
  5223. <padding_type/>
  5224. <pad_char/>
  5225. <pad_len/>
  5226. <init_cap/>
  5227. <mask_xml/>
  5228. <digits/>
  5229. <remove_special_characters/>
  5230. </field>
  5231. </fields>
  5232. <attributes/>
  5233. <cluster_schema/>
  5234. <remotesteps>
  5235. <input>
  5236. </input>
  5237. <output>
  5238. </output>
  5239. </remotesteps>
  5240. <GUI>
  5241. <xloc>1216</xloc>
  5242. <yloc>1344</yloc>
  5243. <draw>Y</draw>
  5244. </GUI>
  5245. </step>
  5246. <step>
  5247. <name>Unit_History_Acct_Doc</name>
  5248. <type>StreamLookup</type>
  5249. <description/>
  5250. <distribute>Y</distribute>
  5251. <custom_distribution/>
  5252. <copies>1</copies>
  5253. <partitioning>
  5254. <method>none</method>
  5255. <schema_name/>
  5256. </partitioning>
  5257. <from>Acct_Doc_Unit_History_bereinigt</from>
  5258. <input_sorted>N</input_sorted>
  5259. <preserve_memory>Y</preserve_memory>
  5260. <sorted_list>N</sorted_list>
  5261. <integer_pair>N</integer_pair>
  5262. <lookup>
  5263. <key>
  5264. <name>CLIENT_DB</name>
  5265. <field>CLIENT_DB</field>
  5266. </key>
  5267. <key>
  5268. <name>UNIT_NUMBER</name>
  5269. <field>UNIT_NUMBER</field>
  5270. </key>
  5271. <key>
  5272. <name>LINE_NO</name>
  5273. <field>LINE_NO</field>
  5274. </key>
  5275. <key>
  5276. <name>UNIQUE_IDENT</name>
  5277. <field>UNIQUE_IDENT_UNIT_HISTORY</field>
  5278. </key>
  5279. <value>
  5280. <name>UNIQUE_IDENT_ACCT_DOC_KEY</name>
  5281. <rename>UNIQUE_IDENT_ACCT_DOC_KEY</rename>
  5282. <default/>
  5283. <type>Integer</type>
  5284. </value>
  5285. <value>
  5286. <name>ACCT_NO</name>
  5287. <rename>ACCT_NO</rename>
  5288. <default/>
  5289. <type>String</type>
  5290. </value>
  5291. </lookup>
  5292. <attributes/>
  5293. <cluster_schema/>
  5294. <remotesteps>
  5295. <input>
  5296. </input>
  5297. <output>
  5298. </output>
  5299. </remotesteps>
  5300. <GUI>
  5301. <xloc>1216</xloc>
  5302. <yloc>960</yloc>
  5303. <draw>Y</draw>
  5304. </GUI>
  5305. </step>
  5306. <step_error_handling>
  5307. <error>
  5308. <source_step>GC_DWH.dbo.Verkauf</source_step>
  5309. <target_step>Write to log</target_step>
  5310. <is_enabled>Y</is_enabled>
  5311. <nr_valuename/>
  5312. <descriptions_valuename/>
  5313. <fields_valuename/>
  5314. <codes_valuename/>
  5315. <max_errors/>
  5316. <max_pct_errors/>
  5317. <min_pct_rows/>
  5318. </error>
  5319. </step_error_handling>
  5320. <slave-step-copy-partition-distribution>
  5321. </slave-step-copy-partition-distribution>
  5322. <slave_transformation>N</slave_transformation>
  5323. <attributes/>
  5324. </transformation>