export.json 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548
  1. {
  2. "fm_sources": {
  3. "current_date_prognose": [
  4. "current_date_prognose"
  5. ],
  6. "current_date_prognose_operativ": [
  7. "current_date_prognose_operativ"
  8. ],
  9. "current_date_prognose_operativ_vj": [
  10. "current_date_prognose_operativ_vj"
  11. ],
  12. "aftersales_rechnungen_ben_aw_final": [
  13. "aftersales_rechnungen_ben_aw_final",
  14. "gc_department",
  15. "gc_marken",
  16. "gc_produktbuchungsgruppen"
  17. ],
  18. "aftersales_rechnungen_neu": [
  19. "aftersales_rechnungen_neu",
  20. "gc_department",
  21. "gc_marken",
  22. "gc_produktbuchungsgruppen",
  23. "kontenrahmen_gc_struct_skr"
  24. ],
  25. "aftersales_rechnungen_verk_aw_final": [
  26. "aftersales_rechnungen_verk_aw_final",
  27. "gc_department",
  28. "gc_marken",
  29. "gc_produktbuchungsgruppen"
  30. ],
  31. "offene_auftraege_dg_anz_tage": [
  32. "gc_department",
  33. "gc_marken",
  34. "offene_auftraege_dg_anz_tage"
  35. ],
  36. "offene_auftraege_teile": [
  37. "gc_department",
  38. "gc_marken",
  39. "offene_auftraege_teile"
  40. ],
  41. "offene_auftraege_ums_ben_aw": [
  42. "gc_department",
  43. "gc_marken",
  44. "offene_auftraege_ums_ben_aw"
  45. ],
  46. "op_aus_loc_belege_8520": [
  47. "gc_department"
  48. ],
  49. "op_aus_loc_belege_deb_saldo": [
  50. "gc_department",
  51. "op_aus_loc_belege_deb_saldo"
  52. ],
  53. "op_aus_loc_belege_nur_8520": [
  54. "gc_department",
  55. "op_aus_loc_belege_nur_8520"
  56. ],
  57. "op_aus_loc_belege_ohne_8520": [
  58. "gc_department",
  59. "op_aus_loc_belege_ohne_8520"
  60. ],
  61. "belege_skr": [
  62. "gc_department",
  63. "gc_marken",
  64. "kontenrahmen_gc_struct_skr",
  65. "loc_belege"
  66. ],
  67. "belege_skr_bilanz": [
  68. "gc_department",
  69. "gc_marken",
  70. "kontenrahmen_gc_struct_skr",
  71. "loc_belege_bilanz"
  72. ],
  73. "belege_skr_stk": [
  74. "gc_department",
  75. "gc_marken",
  76. "loc_belege_nw_gw_vk_stk_fibu",
  77. "skr_konten_stk_manuell"
  78. ],
  79. "umsatz_belege_skr": [
  80. "gc_department",
  81. "gc_marken",
  82. "kontenrahmen_gc_struct_skr",
  83. "loc_belege"
  84. ],
  85. "nw_gw_vk": [
  86. "gc_department",
  87. "gc_marken",
  88. "kontenrahmen_gc_struct_skr",
  89. "loc_belege_nw_gw_vk"
  90. ],
  91. "nw_gw_vk_journal_accountings": [
  92. "gc_department",
  93. "gc_marken",
  94. "kontenrahmen_gc_struct_skr",
  95. "loc_belege_nw_gw_vk"
  96. ],
  97. "nw_gw_bestand": [
  98. "gc_department",
  99. "gc_marken",
  100. "nw_gw_be_auf_nw_gw_bestand_cat"
  101. ],
  102. "zeit_abwesenheit_neu": [
  103. "gc_department",
  104. "gc_mitarbeiter",
  105. "zeit_abwesenheit_neu"
  106. ],
  107. "zeit_stempelungen_pausen": [
  108. "gc_department",
  109. "gc_mitarbeiter",
  110. "zeit_stempelungen_pausen"
  111. ],
  112. "zeit_stempelungen_pausen_produktiv": [
  113. "gc_department",
  114. "gc_mitarbeiter",
  115. "zeit_stempelungen_pausen_produktiv"
  116. ],
  117. "zeit_stempelungen_neu": [
  118. "gc_department",
  119. "gc_mitarbeiter",
  120. "zeit_stempelungen_neu"
  121. ],
  122. "zeit_ben_std_lg": [
  123. "gc_department",
  124. "gc_mitarbeiter",
  125. "zeit_ben_std_lg"
  126. ],
  127. "zeit_verk_std": [
  128. "gc_department",
  129. "gc_mitarbeiter",
  130. "zeit_verk_std"
  131. ]
  132. },
  133. "models": {
  134. "dashboard_gesamt - kopie": {
  135. "framework_manager": "J",
  136. "fm_package": "[GC_FM]",
  137. "fm_sources": [
  138. "current_date_prognose_operativ_vj",
  139. "current_date_prognose",
  140. "aftersales_rechnungen_ben_aw_final",
  141. "aftersales_rechnungen_neu",
  142. "aftersales_rechnungen_verk_aw_final",
  143. "offene_auftraege_dg_anz_tage",
  144. "offene_auftraege_teile",
  145. "offene_auftraege_ums_ben_aw",
  146. "op_aus_loc_belege_deb_saldo",
  147. "op_aus_loc_belege_nur_8520",
  148. "op_aus_loc_belege_ohne_8520",
  149. "belege_skr",
  150. "belege_skr_bilanz",
  151. "belege_skr_stk",
  152. "nw_gw_vk",
  153. "nw_gw_bestand"
  154. ],
  155. "datasources": [
  156. "aftersales_rechnungen_ben_aw_final",
  157. "aftersales_rechnungen_neu",
  158. "aftersales_rechnungen_verk_aw_final",
  159. "current_date_prognose",
  160. "current_date_prognose_operativ_vj",
  161. "gc_department",
  162. "gc_marken",
  163. "gc_produktbuchungsgruppen",
  164. "kontenrahmen_gc_struct_skr",
  165. "loc_belege",
  166. "loc_belege_bilanz",
  167. "loc_belege_nw_gw_vk",
  168. "loc_belege_nw_gw_vk_stk_fibu",
  169. "nw_gw_be_auf_nw_gw_bestand_cat",
  170. "offene_auftraege_dg_anz_tage",
  171. "offene_auftraege_teile",
  172. "offene_auftraege_ums_ben_aw",
  173. "op_aus_loc_belege_deb_saldo",
  174. "op_aus_loc_belege_nur_8520",
  175. "op_aus_loc_belege_ohne_8520",
  176. "skr_konten_stk_manuell"
  177. ],
  178. "cube": "dashboard_gesamt",
  179. "logfile_tasks": {
  180. "mtime": "0"
  181. },
  182. "logfile_system": {
  183. "mtime": "0"
  184. },
  185. "model_file": {
  186. "mtime": "0"
  187. },
  188. "model_file_filled": {
  189. "mtime": "0"
  190. }
  191. },
  192. "dashboard_gesamt": {
  193. "framework_manager": "J",
  194. "fm_package": "[GC_FM]",
  195. "fm_sources": [
  196. "current_date_prognose_operativ_vj",
  197. "current_date_prognose",
  198. "aftersales_rechnungen_ben_aw_final",
  199. "aftersales_rechnungen_neu",
  200. "aftersales_rechnungen_verk_aw_final",
  201. "offene_auftraege_dg_anz_tage",
  202. "offene_auftraege_teile",
  203. "offene_auftraege_ums_ben_aw",
  204. "op_aus_loc_belege_deb_saldo",
  205. "op_aus_loc_belege_nur_8520",
  206. "op_aus_loc_belege_ohne_8520",
  207. "belege_skr",
  208. "belege_skr_bilanz",
  209. "belege_skr_stk",
  210. "umsatz_belege_skr",
  211. "nw_gw_vk",
  212. "nw_gw_bestand",
  213. "zeit_abwesenheit_neu",
  214. "zeit_stempelungen_neu",
  215. "zeit_ben_std_lg",
  216. "zeit_verk_std"
  217. ],
  218. "datasources": [
  219. "aftersales_rechnungen_ben_aw_final",
  220. "aftersales_rechnungen_neu",
  221. "aftersales_rechnungen_verk_aw_final",
  222. "current_date_prognose",
  223. "current_date_prognose_operativ_vj",
  224. "gc_department",
  225. "gc_marken",
  226. "gc_mitarbeiter",
  227. "gc_produktbuchungsgruppen",
  228. "kontenrahmen_gc_struct_skr",
  229. "loc_belege",
  230. "loc_belege_bilanz",
  231. "loc_belege_nw_gw_vk",
  232. "loc_belege_nw_gw_vk_stk_fibu",
  233. "nw_gw_be_auf_nw_gw_bestand_cat",
  234. "offene_auftraege_dg_anz_tage",
  235. "offene_auftraege_teile",
  236. "offene_auftraege_ums_ben_aw",
  237. "op_aus_loc_belege_deb_saldo",
  238. "op_aus_loc_belege_nur_8520",
  239. "op_aus_loc_belege_ohne_8520",
  240. "skr_konten_stk_manuell",
  241. "zeit_abwesenheit_neu",
  242. "zeit_ben_std_lg",
  243. "zeit_stempelungen_neu",
  244. "zeit_verk_std"
  245. ],
  246. "cube": "dashboard_gesamt",
  247. "logfile_tasks": {
  248. "mtime": "0"
  249. },
  250. "logfile_system": {
  251. "mtime": "0"
  252. },
  253. "model_file": {
  254. "mtime": "0"
  255. },
  256. "model_file_filled": {
  257. "mtime": "0"
  258. }
  259. },
  260. "f_belege_skr": {
  261. "framework_manager": "J",
  262. "fm_package": "[GC_FM]",
  263. "fm_sources": [
  264. "current_date_prognose",
  265. "current_date_prognose_operativ_vj",
  266. "belege_skr",
  267. "belege_skr_stk"
  268. ],
  269. "datasources": [
  270. "current_date_prognose",
  271. "current_date_prognose_operativ_vj",
  272. "gc_department",
  273. "gc_marken",
  274. "kontenrahmen_gc_struct_skr",
  275. "loc_belege",
  276. "loc_belege_nw_gw_vk_stk_fibu",
  277. "skr_konten_stk_manuell"
  278. ],
  279. "cube": "f_belege",
  280. "logfile_tasks": {
  281. "mtime": "0"
  282. },
  283. "logfile_system": {
  284. "mtime": "0"
  285. },
  286. "model_file": {
  287. "mtime": "0"
  288. },
  289. "model_file_filled": {
  290. "mtime": "0"
  291. }
  292. },
  293. "f_forderungen": {
  294. "framework_manager": "J",
  295. "fm_package": "[GC_FM]",
  296. "fm_sources": [
  297. "current_date_prognose",
  298. "op_aus_loc_belege_deb_saldo",
  299. "op_aus_loc_belege_nur_8520",
  300. "op_aus_loc_belege_ohne_8520"
  301. ],
  302. "datasources": [
  303. "current_date_prognose",
  304. "gc_department",
  305. "op_aus_loc_belege_deb_saldo",
  306. "op_aus_loc_belege_nur_8520",
  307. "op_aus_loc_belege_ohne_8520"
  308. ],
  309. "cube": "f_forderungen",
  310. "logfile_tasks": {
  311. "mtime": "0"
  312. },
  313. "logfile_system": {
  314. "mtime": "0"
  315. },
  316. "model_file": {
  317. "mtime": "0"
  318. },
  319. "model_file_filled": {
  320. "mtime": "0"
  321. }
  322. },
  323. "s_aftersales": {
  324. "framework_manager": "J",
  325. "fm_package": "[GC_FM]",
  326. "fm_sources": [
  327. "current_date_prognose_operativ",
  328. "current_date_prognose_operativ_vj",
  329. "aftersales_rechnungen_ben_aw_final",
  330. "aftersales_rechnungen_neu",
  331. "aftersales_rechnungen_verk_aw_final"
  332. ],
  333. "datasources": [
  334. "aftersales_rechnungen_ben_aw_final",
  335. "aftersales_rechnungen_neu",
  336. "aftersales_rechnungen_verk_aw_final",
  337. "current_date_prognose_operativ",
  338. "current_date_prognose_operativ_vj",
  339. "gc_department",
  340. "gc_marken",
  341. "gc_produktbuchungsgruppen",
  342. "kontenrahmen_gc_struct_skr"
  343. ],
  344. "cube": "s_aftersales",
  345. "logfile_tasks": {
  346. "mtime": "0"
  347. },
  348. "logfile_system": {
  349. "mtime": "0"
  350. },
  351. "model_file": {
  352. "mtime": "0"
  353. },
  354. "model_file_filled": {
  355. "mtime": "0"
  356. }
  357. },
  358. "s_offene_auftraege": {
  359. "framework_manager": "J",
  360. "fm_package": "[GC_FM]",
  361. "fm_sources": [
  362. "current_date_prognose",
  363. "offene_auftraege_dg_anz_tage",
  364. "offene_auftraege_teile",
  365. "offene_auftraege_ums_ben_aw"
  366. ],
  367. "datasources": [
  368. "current_date_prognose",
  369. "gc_department",
  370. "gc_marken",
  371. "offene_auftraege_dg_anz_tage",
  372. "offene_auftraege_teile",
  373. "offene_auftraege_ums_ben_aw"
  374. ],
  375. "cube": "s_offene_auftraege",
  376. "logfile_tasks": {
  377. "mtime": "0"
  378. },
  379. "logfile_system": {
  380. "mtime": "0"
  381. },
  382. "model_file": {
  383. "mtime": "0"
  384. },
  385. "model_file_filled": {
  386. "mtime": "0"
  387. }
  388. },
  389. "v_bestand": {
  390. "framework_manager": "J",
  391. "fm_package": "[GC_FM]",
  392. "fm_sources": [
  393. "current_date_prognose",
  394. "nw_gw_bestand"
  395. ],
  396. "datasources": [
  397. "current_date_prognose",
  398. "gc_department",
  399. "gc_marken",
  400. "nw_gw_be_auf_nw_gw_bestand_cat"
  401. ],
  402. "cube": "v_bestand",
  403. "logfile_tasks": {
  404. "mtime": "0"
  405. },
  406. "logfile_system": {
  407. "mtime": "0"
  408. },
  409. "model_file": {
  410. "mtime": "0"
  411. },
  412. "model_file_filled": {
  413. "mtime": "0"
  414. }
  415. },
  416. "v_verkauf": {
  417. "framework_manager": "J",
  418. "fm_package": "[GC_FM]",
  419. "fm_sources": [
  420. "current_date_prognose_operativ_vj",
  421. "current_date_prognose",
  422. "nw_gw_vk_journal_accountings"
  423. ],
  424. "datasources": [
  425. "current_date_prognose",
  426. "current_date_prognose_operativ_vj",
  427. "gc_department",
  428. "gc_marken",
  429. "kontenrahmen_gc_struct_skr",
  430. "loc_belege_nw_gw_vk"
  431. ],
  432. "cube": "v_verkauf",
  433. "logfile_tasks": {
  434. "mtime": "0"
  435. },
  436. "logfile_system": {
  437. "mtime": "0"
  438. },
  439. "model_file": {
  440. "mtime": "0"
  441. },
  442. "model_file_filled": {
  443. "mtime": "0"
  444. }
  445. },
  446. "v_verkauf_dealer_vehicles": {
  447. "framework_manager": "J",
  448. "fm_package": "[GC_FM]",
  449. "fm_sources": [
  450. "current_date_prognose_operativ_vj",
  451. "current_date_prognose",
  452. "nw_gw_vk"
  453. ],
  454. "datasources": [
  455. "current_date_prognose",
  456. "current_date_prognose_operativ_vj",
  457. "gc_department",
  458. "gc_marken",
  459. "kontenrahmen_gc_struct_skr",
  460. "loc_belege_nw_gw_vk"
  461. ],
  462. "cube": "v_verkauf",
  463. "logfile_tasks": {
  464. "mtime": "0"
  465. },
  466. "logfile_system": {
  467. "mtime": "0"
  468. },
  469. "model_file": {
  470. "mtime": "0"
  471. },
  472. "model_file_filled": {
  473. "mtime": "0"
  474. }
  475. },
  476. "z_monteure": {
  477. "framework_manager": "J",
  478. "fm_package": "[GC_FM]",
  479. "fm_sources": [
  480. "current_date_prognose_operativ",
  481. "current_date_prognose_operativ_vj",
  482. "zeit_abwesenheit_neu",
  483. "zeit_stempelungen_neu",
  484. "zeit_ben_std_lg",
  485. "zeit_verk_std"
  486. ],
  487. "datasources": [
  488. "current_date_prognose_operativ",
  489. "current_date_prognose_operativ_vj",
  490. "gc_department",
  491. "gc_mitarbeiter",
  492. "zeit_abwesenheit_neu",
  493. "zeit_ben_std_lg",
  494. "zeit_stempelungen_neu",
  495. "zeit_verk_std"
  496. ],
  497. "cube": "z_monteure",
  498. "logfile_tasks": {
  499. "mtime": "0"
  500. },
  501. "logfile_system": {
  502. "mtime": "0"
  503. },
  504. "model_file": {
  505. "mtime": "0"
  506. },
  507. "model_file_filled": {
  508. "mtime": "0"
  509. }
  510. },
  511. "z_monteure_mit_pause": {
  512. "framework_manager": "J",
  513. "fm_package": "[GC_FM]",
  514. "fm_sources": [
  515. "current_date_prognose_operativ",
  516. "current_date_prognose_operativ_vj",
  517. "zeit_abwesenheit_neu",
  518. "zeit_stempelungen_pausen",
  519. "zeit_stempelungen_neu",
  520. "zeit_ben_std_lg",
  521. "zeit_verk_std"
  522. ],
  523. "datasources": [
  524. "current_date_prognose_operativ",
  525. "current_date_prognose_operativ_vj",
  526. "gc_department",
  527. "gc_mitarbeiter",
  528. "zeit_abwesenheit_neu",
  529. "zeit_ben_std_lg",
  530. "zeit_stempelungen_neu",
  531. "zeit_stempelungen_pausen",
  532. "zeit_verk_std"
  533. ],
  534. "cube": "z_monteure",
  535. "logfile_tasks": {
  536. "mtime": "0"
  537. },
  538. "logfile_system": {
  539. "mtime": "0"
  540. },
  541. "model_file": {
  542. "mtime": "0"
  543. },
  544. "model_file_filled": {
  545. "mtime": "0"
  546. }
  547. }
  548. },
  549. "database": {
  550. "arbeitstage": {
  551. "DatabaseName": "GC",
  552. "SchemaName": "data",
  553. "TableName": "Arbeitstage",
  554. "RowCounts": 128576,
  555. "TotalSpaceKB": 7624,
  556. "TotalSpaceMB": 7.45,
  557. "UsedSpaceKB": 7592,
  558. "UsedSpaceMB": 7.41,
  559. "UnusedSpaceKB": 32,
  560. "UnusedSpaceMB": 0.03
  561. },
  562. "gc_activity_codes": {
  563. "DatabaseName": "GC",
  564. "SchemaName": "data",
  565. "TableName": "GC_Activity_Codes",
  566. "RowCounts": 0,
  567. "TotalSpaceKB": 0,
  568. "TotalSpaceMB": 0.0,
  569. "UsedSpaceKB": 0,
  570. "UsedSpaceMB": 0.0,
  571. "UnusedSpaceKB": 0,
  572. "UnusedSpaceMB": 0.0
  573. },
  574. "gc_auftragsart": {
  575. "DatabaseName": "GC",
  576. "SchemaName": "data",
  577. "TableName": "GC_Auftragsart",
  578. "RowCounts": 0,
  579. "TotalSpaceKB": 0,
  580. "TotalSpaceMB": 0.0,
  581. "UsedSpaceKB": 0,
  582. "UsedSpaceMB": 0.0,
  583. "UnusedSpaceKB": 0,
  584. "UnusedSpaceMB": 0.0
  585. },
  586. "gc_config": {
  587. "DatabaseName": "GC",
  588. "SchemaName": "data",
  589. "TableName": "GC_Config",
  590. "RowCounts": 0,
  591. "TotalSpaceKB": 0,
  592. "TotalSpaceMB": 0.0,
  593. "UsedSpaceKB": 0,
  594. "UsedSpaceMB": 0.0,
  595. "UnusedSpaceKB": 0,
  596. "UnusedSpaceMB": 0.0
  597. },
  598. "gc_department": {
  599. "DatabaseName": "GC",
  600. "SchemaName": "data",
  601. "TableName": "GC_Department",
  602. "RowCounts": 4,
  603. "TotalSpaceKB": 72,
  604. "TotalSpaceMB": 0.07,
  605. "UsedSpaceKB": 16,
  606. "UsedSpaceMB": 0.02,
  607. "UnusedSpaceKB": 56,
  608. "UnusedSpaceMB": 0.05
  609. },
  610. "gc_fokus_produktgruppen": {
  611. "DatabaseName": "GC",
  612. "SchemaName": "data",
  613. "TableName": "GC_Fokus_Produktgruppen",
  614. "RowCounts": 0,
  615. "TotalSpaceKB": 0,
  616. "TotalSpaceMB": 0.0,
  617. "UsedSpaceKB": 0,
  618. "UsedSpaceMB": 0.0,
  619. "UnusedSpaceKB": 0,
  620. "UnusedSpaceMB": 0.0
  621. },
  622. "gc_geschaeftsbuchungsgruppen": {
  623. "DatabaseName": "GC",
  624. "SchemaName": "data",
  625. "TableName": "GC_Geschaeftsbuchungsgruppen",
  626. "RowCounts": 0,
  627. "TotalSpaceKB": 0,
  628. "TotalSpaceMB": 0.0,
  629. "UsedSpaceKB": 0,
  630. "UsedSpaceMB": 0.0,
  631. "UnusedSpaceKB": 0,
  632. "UnusedSpaceMB": 0.0
  633. },
  634. "gc_kalender": {
  635. "DatabaseName": "GC",
  636. "SchemaName": "data",
  637. "TableName": "GC_Kalender",
  638. "RowCounts": 0,
  639. "TotalSpaceKB": 0,
  640. "TotalSpaceMB": 0.0,
  641. "UsedSpaceKB": 0,
  642. "UsedSpaceMB": 0.0,
  643. "UnusedSpaceKB": 0,
  644. "UnusedSpaceMB": 0.0
  645. },
  646. "gc_kundengruppen": {
  647. "DatabaseName": "GC",
  648. "SchemaName": "data",
  649. "TableName": "GC_Kundengruppen",
  650. "RowCounts": 0,
  651. "TotalSpaceKB": 0,
  652. "TotalSpaceMB": 0.0,
  653. "UsedSpaceKB": 0,
  654. "UsedSpaceMB": 0.0,
  655. "UnusedSpaceKB": 0,
  656. "UnusedSpaceMB": 0.0
  657. },
  658. "gc_marken": {
  659. "DatabaseName": "GC",
  660. "SchemaName": "data",
  661. "TableName": "GC_Marken",
  662. "RowCounts": 9,
  663. "TotalSpaceKB": 72,
  664. "TotalSpaceMB": 0.07,
  665. "UsedSpaceKB": 16,
  666. "UsedSpaceMB": 0.02,
  667. "UnusedSpaceKB": 56,
  668. "UnusedSpaceMB": 0.05
  669. },
  670. "gc_mitarbeiter": {
  671. "DatabaseName": "GC",
  672. "SchemaName": "data",
  673. "TableName": "GC_Mitarbeiter",
  674. "RowCounts": 260,
  675. "TotalSpaceKB": 200,
  676. "TotalSpaceMB": 0.2,
  677. "UsedSpaceKB": 40,
  678. "UsedSpaceMB": 0.04,
  679. "UnusedSpaceKB": 160,
  680. "UnusedSpaceMB": 0.16
  681. },
  682. "gc_produktbuchungsgruppen": {
  683. "DatabaseName": "GC",
  684. "SchemaName": "data",
  685. "TableName": "GC_Produktbuchungsgruppen",
  686. "RowCounts": 19,
  687. "TotalSpaceKB": 72,
  688. "TotalSpaceMB": 0.07,
  689. "UsedSpaceKB": 16,
  690. "UsedSpaceMB": 0.02,
  691. "UnusedSpaceKB": 56,
  692. "UnusedSpaceMB": 0.05
  693. },
  694. "gc_task_type": {
  695. "DatabaseName": "GC",
  696. "SchemaName": "data",
  697. "TableName": "GC_Task_Type",
  698. "RowCounts": 0,
  699. "TotalSpaceKB": 0,
  700. "TotalSpaceMB": 0.0,
  701. "UsedSpaceKB": 0,
  702. "UsedSpaceMB": 0.0,
  703. "UnusedSpaceKB": 0,
  704. "UnusedSpaceMB": 0.0
  705. },
  706. "gc_teams": {
  707. "DatabaseName": "GC",
  708. "SchemaName": "data",
  709. "TableName": "GC_Teams",
  710. "RowCounts": 0,
  711. "TotalSpaceKB": 0,
  712. "TotalSpaceMB": 0.0,
  713. "UsedSpaceKB": 0,
  714. "UsedSpaceMB": 0.0,
  715. "UnusedSpaceKB": 0,
  716. "UnusedSpaceMB": 0.0
  717. },
  718. "gc_time_account": {
  719. "DatabaseName": "GC",
  720. "SchemaName": "data",
  721. "TableName": "GC_Time_Account",
  722. "RowCounts": 0,
  723. "TotalSpaceKB": 0,
  724. "TotalSpaceMB": 0.0,
  725. "UsedSpaceKB": 0,
  726. "UsedSpaceMB": 0.0,
  727. "UnusedSpaceKB": 0,
  728. "UnusedSpaceMB": 0.0
  729. },
  730. "gc_tree": {
  731. "DatabaseName": "GC",
  732. "SchemaName": "data",
  733. "TableName": "GC_Tree",
  734. "RowCounts": 0,
  735. "TotalSpaceKB": 0,
  736. "TotalSpaceMB": 0.0,
  737. "UsedSpaceKB": 0,
  738. "UsedSpaceMB": 0.0,
  739. "UnusedSpaceKB": 0,
  740. "UnusedSpaceMB": 0.0
  741. },
  742. "gc_umsatzart": {
  743. "DatabaseName": "GC",
  744. "SchemaName": "data",
  745. "TableName": "GC_Umsatzart",
  746. "RowCounts": 0,
  747. "TotalSpaceKB": 0,
  748. "TotalSpaceMB": 0.0,
  749. "UsedSpaceKB": 0,
  750. "UsedSpaceMB": 0.0,
  751. "UnusedSpaceKB": 0,
  752. "UnusedSpaceMB": 0.0
  753. },
  754. "gc_users": {
  755. "DatabaseName": "GC",
  756. "SchemaName": "data",
  757. "TableName": "GC_Users",
  758. "RowCounts": 0,
  759. "TotalSpaceKB": 0,
  760. "TotalSpaceMB": 0.0,
  761. "UsedSpaceKB": 0,
  762. "UsedSpaceMB": 0.0,
  763. "UnusedSpaceKB": 0,
  764. "UnusedSpaceMB": 0.0
  765. },
  766. "kontenrahmen_skr_vorlage": {
  767. "DatabaseName": "GC",
  768. "SchemaName": "data",
  769. "TableName": "Kontenrahmen_SKR_Vorlage",
  770. "RowCounts": 12086,
  771. "TotalSpaceKB": 712,
  772. "TotalSpaceMB": 0.7,
  773. "UsedSpaceKB": 680,
  774. "UsedSpaceMB": 0.66,
  775. "UnusedSpaceKB": 32,
  776. "UnusedSpaceMB": 0.03
  777. },
  778. "aftersales_rechnungen_ben_aw_final": {
  779. "DatabaseName": "GC",
  780. "SchemaName": "locosoft",
  781. "TableName": "Aftersales_Rechnungen_ben_AW_final",
  782. "RowCounts": 1,
  783. "TotalSpaceKB": 72,
  784. "TotalSpaceMB": 0.07,
  785. "UsedSpaceKB": 16,
  786. "UsedSpaceMB": 0.02,
  787. "UnusedSpaceKB": 56,
  788. "UnusedSpaceMB": 0.05
  789. },
  790. "aftersales_rechnungen_neu": {
  791. "DatabaseName": "GC",
  792. "SchemaName": "locosoft",
  793. "TableName": "Aftersales_Rechnungen_neu",
  794. "RowCounts": 1,
  795. "TotalSpaceKB": 72,
  796. "TotalSpaceMB": 0.07,
  797. "UsedSpaceKB": 16,
  798. "UsedSpaceMB": 0.02,
  799. "UnusedSpaceKB": 56,
  800. "UnusedSpaceMB": 0.05
  801. },
  802. "aftersales_rechnungen_verk_aw_final": {
  803. "DatabaseName": "GC",
  804. "SchemaName": "locosoft",
  805. "TableName": "Aftersales_Rechnungen_verk_AW_final",
  806. "RowCounts": 1,
  807. "TotalSpaceKB": 72,
  808. "TotalSpaceMB": 0.07,
  809. "UsedSpaceKB": 16,
  810. "UsedSpaceMB": 0.02,
  811. "UnusedSpaceKB": 56,
  812. "UnusedSpaceMB": 0.05
  813. },
  814. "kontenrahmen_gc_struct_skr": {
  815. "DatabaseName": "GC",
  816. "SchemaName": "locosoft",
  817. "TableName": "Kontenrahmen_GC_Struct_SKR",
  818. "RowCounts": 12625,
  819. "TotalSpaceKB": 5512,
  820. "TotalSpaceMB": 5.38,
  821. "UsedSpaceKB": 5160,
  822. "UsedSpaceMB": 5.04,
  823. "UnusedSpaceKB": 352,
  824. "UnusedSpaceMB": 0.34
  825. },
  826. "loc_belege": {
  827. "DatabaseName": "GC",
  828. "SchemaName": "locosoft",
  829. "TableName": "LOC_Belege",
  830. "RowCounts": 1,
  831. "TotalSpaceKB": 72,
  832. "TotalSpaceMB": 0.07,
  833. "UsedSpaceKB": 16,
  834. "UsedSpaceMB": 0.02,
  835. "UnusedSpaceKB": 56,
  836. "UnusedSpaceMB": 0.05
  837. },
  838. "loc_belege_bilanz": {
  839. "DatabaseName": "GC",
  840. "SchemaName": "locosoft",
  841. "TableName": "LOC_Belege_Bilanz",
  842. "RowCounts": 0,
  843. "TotalSpaceKB": 0,
  844. "TotalSpaceMB": 0.0,
  845. "UsedSpaceKB": 0,
  846. "UsedSpaceMB": 0.0,
  847. "UnusedSpaceKB": 0,
  848. "UnusedSpaceMB": 0.0
  849. },
  850. "loc_belege_nw_gw_vk": {
  851. "DatabaseName": "GC",
  852. "SchemaName": "locosoft",
  853. "TableName": "LOC_Belege_NW_GW_VK",
  854. "RowCounts": 1,
  855. "TotalSpaceKB": 72,
  856. "TotalSpaceMB": 0.07,
  857. "UsedSpaceKB": 16,
  858. "UsedSpaceMB": 0.02,
  859. "UnusedSpaceKB": 56,
  860. "UnusedSpaceMB": 0.05
  861. },
  862. "loc_belege_nw_gw_vk_stk_fibu": {
  863. "DatabaseName": "GC",
  864. "SchemaName": "locosoft",
  865. "TableName": "LOC_Belege_NW_GW_VK_Stk_FIBU",
  866. "RowCounts": 1,
  867. "TotalSpaceKB": 72,
  868. "TotalSpaceMB": 0.07,
  869. "UsedSpaceKB": 16,
  870. "UsedSpaceMB": 0.02,
  871. "UnusedSpaceKB": 56,
  872. "UnusedSpaceMB": 0.05
  873. },
  874. "loc_belege_statistische_werte": {
  875. "DatabaseName": "GC",
  876. "SchemaName": "locosoft",
  877. "TableName": "LOC_Belege_statistische_Werte",
  878. "RowCounts": 10764,
  879. "TotalSpaceKB": 11464,
  880. "TotalSpaceMB": 11.2,
  881. "UsedSpaceKB": 11208,
  882. "UsedSpaceMB": 10.95,
  883. "UnusedSpaceKB": 256,
  884. "UnusedSpaceMB": 0.25
  885. },
  886. "nw_gw_be_auf_nw_gw_bestand_cat": {
  887. "DatabaseName": "GC",
  888. "SchemaName": "locosoft",
  889. "TableName": "NW_GW_BE_auf_NW_GW_Bestand_Cat",
  890. "RowCounts": 1,
  891. "TotalSpaceKB": 72,
  892. "TotalSpaceMB": 0.07,
  893. "UsedSpaceKB": 16,
  894. "UsedSpaceMB": 0.02,
  895. "UnusedSpaceKB": 56,
  896. "UnusedSpaceMB": 0.05
  897. },
  898. "offene_auftraege_dg_anz_tage": {
  899. "DatabaseName": "GC",
  900. "SchemaName": "locosoft",
  901. "TableName": "offene_Auftraege_DG_Anz_Tage",
  902. "RowCounts": 1,
  903. "TotalSpaceKB": 72,
  904. "TotalSpaceMB": 0.07,
  905. "UsedSpaceKB": 16,
  906. "UsedSpaceMB": 0.02,
  907. "UnusedSpaceKB": 56,
  908. "UnusedSpaceMB": 0.05
  909. },
  910. "offene_auftraege_teile": {
  911. "DatabaseName": "GC",
  912. "SchemaName": "locosoft",
  913. "TableName": "offene_Auftraege_Teile",
  914. "RowCounts": 1,
  915. "TotalSpaceKB": 72,
  916. "TotalSpaceMB": 0.07,
  917. "UsedSpaceKB": 16,
  918. "UsedSpaceMB": 0.02,
  919. "UnusedSpaceKB": 56,
  920. "UnusedSpaceMB": 0.05
  921. },
  922. "offene_auftraege_ums_ben_aw": {
  923. "DatabaseName": "GC",
  924. "SchemaName": "locosoft",
  925. "TableName": "offene_Auftraege_Ums_ben_AW",
  926. "RowCounts": 1,
  927. "TotalSpaceKB": 72,
  928. "TotalSpaceMB": 0.07,
  929. "UsedSpaceKB": 16,
  930. "UsedSpaceMB": 0.02,
  931. "UnusedSpaceKB": 56,
  932. "UnusedSpaceMB": 0.05
  933. },
  934. "op_aus_loc_belege_8520": {
  935. "DatabaseName": "GC",
  936. "SchemaName": "locosoft",
  937. "TableName": "OP_aus_LOC_Belege_8520",
  938. "RowCounts": 0,
  939. "TotalSpaceKB": 0,
  940. "TotalSpaceMB": 0.0,
  941. "UsedSpaceKB": 0,
  942. "UsedSpaceMB": 0.0,
  943. "UnusedSpaceKB": 0,
  944. "UnusedSpaceMB": 0.0
  945. },
  946. "op_aus_loc_belege_deb_saldo": {
  947. "DatabaseName": "GC",
  948. "SchemaName": "locosoft",
  949. "TableName": "OP_aus_LOC_Belege_Deb_Saldo",
  950. "RowCounts": 1,
  951. "TotalSpaceKB": 72,
  952. "TotalSpaceMB": 0.07,
  953. "UsedSpaceKB": 16,
  954. "UsedSpaceMB": 0.02,
  955. "UnusedSpaceKB": 56,
  956. "UnusedSpaceMB": 0.05
  957. },
  958. "op_aus_loc_belege_nur_8520": {
  959. "DatabaseName": "GC",
  960. "SchemaName": "locosoft",
  961. "TableName": "OP_aus_LOC_Belege_nur_8520",
  962. "RowCounts": 1,
  963. "TotalSpaceKB": 72,
  964. "TotalSpaceMB": 0.07,
  965. "UsedSpaceKB": 16,
  966. "UsedSpaceMB": 0.02,
  967. "UnusedSpaceKB": 56,
  968. "UnusedSpaceMB": 0.05
  969. },
  970. "op_aus_loc_belege_ohne_8520": {
  971. "DatabaseName": "GC",
  972. "SchemaName": "locosoft",
  973. "TableName": "OP_aus_LOC_Belege_ohne_8520",
  974. "RowCounts": 1,
  975. "TotalSpaceKB": 72,
  976. "TotalSpaceMB": 0.07,
  977. "UsedSpaceKB": 16,
  978. "UsedSpaceMB": 0.02,
  979. "UnusedSpaceKB": 56,
  980. "UnusedSpaceMB": 0.05
  981. },
  982. "skr_absatzkanal": {
  983. "DatabaseName": "GC",
  984. "SchemaName": "locosoft",
  985. "TableName": "SKR_Absatzkanal",
  986. "RowCounts": 44,
  987. "TotalSpaceKB": 72,
  988. "TotalSpaceMB": 0.07,
  989. "UsedSpaceKB": 16,
  990. "UsedSpaceMB": 0.02,
  991. "UnusedSpaceKB": 56,
  992. "UnusedSpaceMB": 0.05
  993. },
  994. "skr_herkunft_kst": {
  995. "DatabaseName": "GC",
  996. "SchemaName": "locosoft",
  997. "TableName": "SKR_Herkunft_KST",
  998. "RowCounts": 41,
  999. "TotalSpaceKB": 72,
  1000. "TotalSpaceMB": 0.07,
  1001. "UsedSpaceKB": 16,
  1002. "UsedSpaceMB": 0.02,
  1003. "UnusedSpaceKB": 56,
  1004. "UnusedSpaceMB": 0.05
  1005. },
  1006. "skr_konten_stk_manuell": {
  1007. "DatabaseName": "GC",
  1008. "SchemaName": "locosoft",
  1009. "TableName": "SKR_Konten_Stk_manuell",
  1010. "RowCounts": 7,
  1011. "TotalSpaceKB": 72,
  1012. "TotalSpaceMB": 0.07,
  1013. "UsedSpaceKB": 16,
  1014. "UsedSpaceMB": 0.02,
  1015. "UnusedSpaceKB": 56,
  1016. "UnusedSpaceMB": 0.05
  1017. },
  1018. "skr_kostentr\u00ef\u00bf\u00bdger": {
  1019. "DatabaseName": "GC",
  1020. "SchemaName": "locosoft",
  1021. "TableName": "SKR_Kostentr\u00ef\u00bf\u00bdger",
  1022. "RowCounts": 58,
  1023. "TotalSpaceKB": 72,
  1024. "TotalSpaceMB": 0.07,
  1025. "UsedSpaceKB": 16,
  1026. "UsedSpaceMB": 0.02,
  1027. "UnusedSpaceKB": 56,
  1028. "UnusedSpaceMB": 0.05
  1029. },
  1030. "skr_marke": {
  1031. "DatabaseName": "GC",
  1032. "SchemaName": "locosoft",
  1033. "TableName": "SKR_Marke",
  1034. "RowCounts": 5,
  1035. "TotalSpaceKB": 72,
  1036. "TotalSpaceMB": 0.07,
  1037. "UsedSpaceKB": 16,
  1038. "UsedSpaceMB": 0.02,
  1039. "UnusedSpaceKB": 56,
  1040. "UnusedSpaceMB": 0.05
  1041. },
  1042. "skr_statistik_stk_manuell": {
  1043. "DatabaseName": "GC",
  1044. "SchemaName": "locosoft",
  1045. "TableName": "SKR_Statistik_Stk_manuell",
  1046. "RowCounts": 22,
  1047. "TotalSpaceKB": 72,
  1048. "TotalSpaceMB": 0.07,
  1049. "UsedSpaceKB": 16,
  1050. "UsedSpaceMB": 0.02,
  1051. "UnusedSpaceKB": 56,
  1052. "UnusedSpaceMB": 0.05
  1053. },
  1054. "teamliste": {
  1055. "DatabaseName": "GC",
  1056. "SchemaName": "locosoft",
  1057. "TableName": "Teamliste",
  1058. "RowCounts": 0,
  1059. "TotalSpaceKB": 0,
  1060. "TotalSpaceMB": 0.0,
  1061. "UsedSpaceKB": 0,
  1062. "UsedSpaceMB": 0.0,
  1063. "UnusedSpaceKB": 0,
  1064. "UnusedSpaceMB": 0.0
  1065. },
  1066. "zeit_abwesenheit_neu": {
  1067. "DatabaseName": "GC",
  1068. "SchemaName": "locosoft",
  1069. "TableName": "Zeit_Abwesenheit_neu",
  1070. "RowCounts": 1,
  1071. "TotalSpaceKB": 72,
  1072. "TotalSpaceMB": 0.07,
  1073. "UsedSpaceKB": 16,
  1074. "UsedSpaceMB": 0.02,
  1075. "UnusedSpaceKB": 56,
  1076. "UnusedSpaceMB": 0.05
  1077. },
  1078. "zeit_ben_std_lg": {
  1079. "DatabaseName": "GC",
  1080. "SchemaName": "locosoft",
  1081. "TableName": "Zeit_ben_Std_LG",
  1082. "RowCounts": 1,
  1083. "TotalSpaceKB": 72,
  1084. "TotalSpaceMB": 0.07,
  1085. "UsedSpaceKB": 16,
  1086. "UsedSpaceMB": 0.02,
  1087. "UnusedSpaceKB": 56,
  1088. "UnusedSpaceMB": 0.05
  1089. },
  1090. "zeit_stempelungen_neu": {
  1091. "DatabaseName": "GC",
  1092. "SchemaName": "locosoft",
  1093. "TableName": "Zeit_Stempelungen_neu",
  1094. "RowCounts": 1,
  1095. "TotalSpaceKB": 72,
  1096. "TotalSpaceMB": 0.07,
  1097. "UsedSpaceKB": 16,
  1098. "UsedSpaceMB": 0.02,
  1099. "UnusedSpaceKB": 56,
  1100. "UnusedSpaceMB": 0.05
  1101. },
  1102. "zeit_stempelungen_pausen": {
  1103. "DatabaseName": "GC",
  1104. "SchemaName": "locosoft",
  1105. "TableName": "Zeit_Stempelungen_Pausen",
  1106. "RowCounts": 1,
  1107. "TotalSpaceKB": 72,
  1108. "TotalSpaceMB": 0.07,
  1109. "UsedSpaceKB": 16,
  1110. "UsedSpaceMB": 0.02,
  1111. "UnusedSpaceKB": 56,
  1112. "UnusedSpaceMB": 0.05
  1113. },
  1114. "zeit_stempelungen_pausen_produktiv": {
  1115. "DatabaseName": "GC",
  1116. "SchemaName": "locosoft",
  1117. "TableName": "Zeit_Stempelungen_Pausen_produktiv",
  1118. "RowCounts": 1,
  1119. "TotalSpaceKB": 72,
  1120. "TotalSpaceMB": 0.07,
  1121. "UsedSpaceKB": 16,
  1122. "UsedSpaceMB": 0.02,
  1123. "UnusedSpaceKB": 56,
  1124. "UnusedSpaceMB": 0.05
  1125. },
  1126. "zeit_verk_std": {
  1127. "DatabaseName": "GC",
  1128. "SchemaName": "locosoft",
  1129. "TableName": "Zeit_verk_Std",
  1130. "RowCounts": 1,
  1131. "TotalSpaceKB": 72,
  1132. "TotalSpaceMB": 0.07,
  1133. "UsedSpaceKB": 16,
  1134. "UsedSpaceMB": 0.02,
  1135. "UnusedSpaceKB": 56,
  1136. "UnusedSpaceMB": 0.05
  1137. }
  1138. },
  1139. "datasources": {
  1140. "current_date_prognose_operativ_vj": {
  1141. "imr_file": {
  1142. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_operativ_vj.imr",
  1143. "size": 64512,
  1144. "ctime": "2017-06-30T09:08:36",
  1145. "mtime": "2017-06-30T09:08:36",
  1146. "read": "J",
  1147. "write": "J",
  1148. "blocked": "N",
  1149. "process": ""
  1150. },
  1151. "iqd_file": {
  1152. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_operativ_vj.iqd",
  1153. "size": 2523,
  1154. "ctime": "2017-06-30T09:08:32",
  1155. "mtime": "2017-06-30T09:08:32",
  1156. "read": "J",
  1157. "write": "J",
  1158. "blocked": "N",
  1159. "process": ""
  1160. },
  1161. "csv_file": {
  1162. "mtime": "0"
  1163. },
  1164. "csv_file_iqd_folder": {
  1165. "mtime": "0"
  1166. },
  1167. "duplicates": []
  1168. },
  1169. "loc_kontenrahmen": {
  1170. "imr_file": {
  1171. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_kontenrahmen.imr",
  1172. "size": 61440,
  1173. "ctime": "2016-05-18T09:21:30",
  1174. "mtime": "2016-05-18T09:21:30",
  1175. "read": "J",
  1176. "write": "J",
  1177. "blocked": "N",
  1178. "process": ""
  1179. },
  1180. "iqd_file": {
  1181. "mtime": "0"
  1182. },
  1183. "csv_file": {
  1184. "mtime": "0"
  1185. },
  1186. "csv_file_iqd_folder": {
  1187. "mtime": "0"
  1188. },
  1189. "duplicates": []
  1190. },
  1191. "loc_belege_nw_gw_vk_abstimmung": {
  1192. "imr_file": {
  1193. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_abstimmung.imr",
  1194. "size": 156160,
  1195. "ctime": "2021-09-21T15:10:21",
  1196. "mtime": "2021-09-21T15:10:21",
  1197. "read": "J",
  1198. "write": "J",
  1199. "blocked": "N",
  1200. "process": ""
  1201. },
  1202. "iqd_file": {
  1203. "mtime": "0"
  1204. },
  1205. "csv_file": {
  1206. "mtime": "0"
  1207. },
  1208. "csv_file_iqd_folder": {
  1209. "mtime": "0"
  1210. },
  1211. "duplicates": []
  1212. },
  1213. "op_aus_loc_belege_ohne_8520_forderungsart_aus_rechnungsnummer": {
  1214. "imr_file": {
  1215. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_ohne_8520_forderungsart_aus_rechnungsnummer.imr",
  1216. "size": 110592,
  1217. "ctime": "2021-09-20T13:44:25",
  1218. "mtime": "2020-05-07T16:43:30",
  1219. "read": "J",
  1220. "write": "J",
  1221. "blocked": "N",
  1222. "process": ""
  1223. },
  1224. "iqd_file": {
  1225. "mtime": "0"
  1226. },
  1227. "csv_file": {
  1228. "mtime": "0"
  1229. },
  1230. "csv_file_iqd_folder": {
  1231. "mtime": "0"
  1232. },
  1233. "duplicates": []
  1234. },
  1235. "loc_belege_sich": {
  1236. "imr_file": {
  1237. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_sich.imr",
  1238. "size": 98304,
  1239. "ctime": "2021-01-06T10:15:42",
  1240. "mtime": "2020-04-08T10:18:18",
  1241. "read": "J",
  1242. "write": "J",
  1243. "blocked": "N",
  1244. "process": ""
  1245. },
  1246. "iqd_file": {
  1247. "mtime": "0"
  1248. },
  1249. "csv_file": {
  1250. "mtime": "0"
  1251. },
  1252. "csv_file_iqd_folder": {
  1253. "mtime": "0"
  1254. },
  1255. "duplicates": []
  1256. },
  1257. "loc_belege_nw_gw_vk_stk_fibu_ori": {
  1258. "imr_file": {
  1259. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu_ori.imr",
  1260. "size": 161280,
  1261. "ctime": "2020-11-25T16:21:38",
  1262. "mtime": "2020-11-25T16:21:38",
  1263. "read": "J",
  1264. "write": "J",
  1265. "blocked": "N",
  1266. "process": ""
  1267. },
  1268. "iqd_file": {
  1269. "mtime": "0"
  1270. },
  1271. "csv_file": {
  1272. "mtime": "0"
  1273. },
  1274. "csv_file_iqd_folder": {
  1275. "mtime": "0"
  1276. },
  1277. "duplicates": []
  1278. },
  1279. "zeit_stempelungen_pausen": {
  1280. "imr_file": {
  1281. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_pausen.imr",
  1282. "size": 94208,
  1283. "ctime": "2020-11-17T16:50:44",
  1284. "mtime": "2022-01-13T13:02:19",
  1285. "read": "J",
  1286. "write": "J",
  1287. "blocked": "N",
  1288. "process": ""
  1289. },
  1290. "iqd_file": {
  1291. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_pausen.iqd",
  1292. "size": 6433,
  1293. "ctime": "2019-11-29T14:13:22",
  1294. "mtime": "2019-11-29T14:13:22",
  1295. "read": "J",
  1296. "write": "J",
  1297. "blocked": "N",
  1298. "process": ""
  1299. },
  1300. "csv_file": {
  1301. "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_stempelungen_pausen.csv",
  1302. "size": 35048528,
  1303. "ctime": "2022-06-03T04:08:17",
  1304. "mtime": "2022-06-03T04:08:24",
  1305. "read": "J",
  1306. "write": "J",
  1307. "blocked": "N",
  1308. "process": ""
  1309. },
  1310. "csv_file_iqd_folder": {
  1311. "mtime": "0"
  1312. },
  1313. "duplicates": []
  1314. },
  1315. "loc_belege_nw_gw_vk - kopie (4)": {
  1316. "imr_file": {
  1317. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk - kopie (4).imr",
  1318. "size": 262144,
  1319. "ctime": "2021-09-23T21:06:45",
  1320. "mtime": "2021-09-23T18:15:00",
  1321. "read": "J",
  1322. "write": "J",
  1323. "blocked": "N",
  1324. "process": ""
  1325. },
  1326. "iqd_file": {
  1327. "mtime": "0"
  1328. },
  1329. "csv_file": {
  1330. "mtime": "0"
  1331. },
  1332. "csv_file_iqd_folder": {
  1333. "mtime": "0"
  1334. },
  1335. "duplicates": []
  1336. },
  1337. "vehicles_postgres_direkt": {
  1338. "imr_file": {
  1339. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\vehicles_postgres_direkt.imr",
  1340. "size": 90112,
  1341. "ctime": "2020-11-12T09:10:10",
  1342. "mtime": "2020-11-12T09:10:10",
  1343. "read": "J",
  1344. "write": "J",
  1345. "blocked": "N",
  1346. "process": ""
  1347. },
  1348. "iqd_file": {
  1349. "mtime": "0"
  1350. },
  1351. "csv_file": {
  1352. "filename": "c:\\globalcube\\system\\locosoft\\export\\vehicles_postgres_direkt.csv",
  1353. "size": 3700023,
  1354. "ctime": "2020-11-12T09:10:30",
  1355. "mtime": "2020-11-12T09:10:30",
  1356. "read": "J",
  1357. "write": "J",
  1358. "blocked": "N",
  1359. "process": ""
  1360. },
  1361. "csv_file_iqd_folder": {
  1362. "mtime": "0"
  1363. },
  1364. "duplicates": []
  1365. },
  1366. "loc_belege_nw_gw_vk_liegert_\u00fcberspeichert": {
  1367. "imr_file": {
  1368. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_liegert_\u00fcberspeichert.imr",
  1369. "size": 164864,
  1370. "ctime": "2020-04-27T10:14:42",
  1371. "mtime": "2021-09-21T16:56:12",
  1372. "read": "J",
  1373. "write": "J",
  1374. "blocked": "N",
  1375. "process": ""
  1376. },
  1377. "iqd_file": {
  1378. "mtime": "0"
  1379. },
  1380. "csv_file": {
  1381. "mtime": "0"
  1382. },
  1383. "csv_file_iqd_folder": {
  1384. "mtime": "0"
  1385. },
  1386. "duplicates": []
  1387. },
  1388. "loc_belege_nw_gw_vk_stk_fibu_datev": {
  1389. "imr_file": {
  1390. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu_datev.imr",
  1391. "size": 83456,
  1392. "ctime": "2020-11-17T15:30:54",
  1393. "mtime": "2020-11-17T15:30:54",
  1394. "read": "J",
  1395. "write": "J",
  1396. "blocked": "N",
  1397. "process": ""
  1398. },
  1399. "iqd_file": {
  1400. "mtime": "0"
  1401. },
  1402. "csv_file": {
  1403. "mtime": "0"
  1404. },
  1405. "csv_file_iqd_folder": {
  1406. "mtime": "0"
  1407. },
  1408. "duplicates": []
  1409. },
  1410. "ben_aw_order_number": {
  1411. "imr_file": {
  1412. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\ben_aw_order_number.imr",
  1413. "size": 45568,
  1414. "ctime": "2020-11-11T10:23:38",
  1415. "mtime": "2020-11-11T10:23:38",
  1416. "read": "J",
  1417. "write": "J",
  1418. "blocked": "N",
  1419. "process": ""
  1420. },
  1421. "iqd_file": {
  1422. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\ben_aw_order_number.iqd",
  1423. "size": 425,
  1424. "ctime": "2018-05-24T17:17:08",
  1425. "mtime": "2018-05-24T17:17:08",
  1426. "read": "J",
  1427. "write": "J",
  1428. "blocked": "N",
  1429. "process": ""
  1430. },
  1431. "csv_file": {
  1432. "mtime": "0"
  1433. },
  1434. "csv_file_iqd_folder": {
  1435. "mtime": "0"
  1436. },
  1437. "duplicates": []
  1438. },
  1439. "serviceberater_rechnung - kopie": {
  1440. "imr_file": {
  1441. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\serviceberater_rechnung - kopie.imr",
  1442. "size": 56832,
  1443. "ctime": "2022-01-05T11:17:11",
  1444. "mtime": "2021-10-13T14:47:13",
  1445. "read": "J",
  1446. "write": "J",
  1447. "blocked": "N",
  1448. "process": ""
  1449. },
  1450. "iqd_file": {
  1451. "mtime": "0"
  1452. },
  1453. "csv_file": {
  1454. "mtime": "0"
  1455. },
  1456. "csv_file_iqd_folder": {
  1457. "mtime": "0"
  1458. },
  1459. "duplicates": []
  1460. },
  1461. "loc_belege_nw_gw_vk_stk_fibu": {
  1462. "imr_file": {
  1463. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu.imr",
  1464. "size": 166400,
  1465. "ctime": "2020-04-15T18:12:58",
  1466. "mtime": "2021-07-08T16:57:43",
  1467. "read": "J",
  1468. "write": "J",
  1469. "blocked": "N",
  1470. "process": ""
  1471. },
  1472. "iqd_file": {
  1473. "mtime": "0"
  1474. },
  1475. "csv_file": {
  1476. "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_nw_gw_vk_stk_fibu.csv",
  1477. "size": 8964824,
  1478. "ctime": "2022-06-03T04:04:16",
  1479. "mtime": "2022-06-03T04:04:17",
  1480. "read": "J",
  1481. "write": "J",
  1482. "blocked": "N",
  1483. "process": ""
  1484. },
  1485. "csv_file_iqd_folder": {
  1486. "mtime": "0"
  1487. },
  1488. "duplicates": []
  1489. },
  1490. "loc_belege_bilanz_alt": {
  1491. "imr_file": {
  1492. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_bilanz_alt.imr",
  1493. "size": 100352,
  1494. "ctime": "2016-05-18T11:09:36",
  1495. "mtime": "2016-05-18T11:09:36",
  1496. "read": "J",
  1497. "write": "J",
  1498. "blocked": "N",
  1499. "process": ""
  1500. },
  1501. "iqd_file": {
  1502. "mtime": "0"
  1503. },
  1504. "csv_file": {
  1505. "mtime": "0"
  1506. },
  1507. "csv_file_iqd_folder": {
  1508. "mtime": "0"
  1509. },
  1510. "duplicates": []
  1511. },
  1512. "loc_belege_nw_gw_vk_liegert": {
  1513. "imr_file": {
  1514. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_liegert.imr",
  1515. "size": 266240,
  1516. "ctime": "2021-09-21T16:59:56",
  1517. "mtime": "2021-09-21T17:08:01",
  1518. "read": "J",
  1519. "write": "J",
  1520. "blocked": "N",
  1521. "process": ""
  1522. },
  1523. "iqd_file": {
  1524. "mtime": "0"
  1525. },
  1526. "csv_file": {
  1527. "mtime": "0"
  1528. },
  1529. "csv_file_iqd_folder": {
  1530. "mtime": "0"
  1531. },
  1532. "duplicates": []
  1533. },
  1534. "zeit_sollzeit": {
  1535. "imr_file": {
  1536. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_sollzeit.imr",
  1537. "size": 55808,
  1538. "ctime": "2021-03-31T21:46:12",
  1539. "mtime": "2021-03-31T21:46:12",
  1540. "read": "J",
  1541. "write": "J",
  1542. "blocked": "N",
  1543. "process": ""
  1544. },
  1545. "iqd_file": {
  1546. "mtime": "0"
  1547. },
  1548. "csv_file": {
  1549. "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_sollzeit.csv",
  1550. "size": 1871284,
  1551. "ctime": "2021-05-08T05:08:16",
  1552. "mtime": "2021-05-08T05:08:16",
  1553. "read": "J",
  1554. "write": "J",
  1555. "blocked": "N",
  1556. "process": ""
  1557. },
  1558. "csv_file_iqd_folder": {
  1559. "mtime": "0"
  1560. },
  1561. "duplicates": []
  1562. },
  1563. "skr_marke": {
  1564. "imr_file": {
  1565. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_marke.imr",
  1566. "size": 62976,
  1567. "ctime": "2020-04-08T11:27:36",
  1568. "mtime": "2020-04-08T11:27:36",
  1569. "read": "J",
  1570. "write": "J",
  1571. "blocked": "N",
  1572. "process": ""
  1573. },
  1574. "iqd_file": {
  1575. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_marke.iqd",
  1576. "size": 736,
  1577. "ctime": "2016-06-01T10:54:58",
  1578. "mtime": "2016-06-01T10:54:58",
  1579. "read": "J",
  1580. "write": "J",
  1581. "blocked": "N",
  1582. "process": ""
  1583. },
  1584. "csv_file": {
  1585. "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_marke.csv",
  1586. "size": 354,
  1587. "ctime": "2018-06-19T13:22:18",
  1588. "mtime": "2018-06-19T13:22:18",
  1589. "read": "J",
  1590. "write": "J",
  1591. "blocked": "N",
  1592. "process": ""
  1593. },
  1594. "csv_file_iqd_folder": {
  1595. "mtime": "0"
  1596. },
  1597. "duplicates": []
  1598. },
  1599. "offene_auftraege": {
  1600. "imr_file": {
  1601. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege.imr",
  1602. "size": 94208,
  1603. "ctime": "2018-06-05T18:14:58",
  1604. "mtime": "2018-06-05T18:14:58",
  1605. "read": "J",
  1606. "write": "J",
  1607. "blocked": "N",
  1608. "process": ""
  1609. },
  1610. "iqd_file": {
  1611. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege.iqd",
  1612. "size": 5443,
  1613. "ctime": "2018-06-05T18:14:56",
  1614. "mtime": "2018-06-05T18:14:56",
  1615. "read": "J",
  1616. "write": "J",
  1617. "blocked": "N",
  1618. "process": ""
  1619. },
  1620. "csv_file": {
  1621. "mtime": "0"
  1622. },
  1623. "csv_file_iqd_folder": {
  1624. "mtime": "0"
  1625. },
  1626. "duplicates": []
  1627. },
  1628. "op_datev": {
  1629. "imr_file": {
  1630. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_datev.imr",
  1631. "size": 105472,
  1632. "ctime": "2021-05-06T21:43:00",
  1633. "mtime": "2021-05-06T21:43:00",
  1634. "read": "J",
  1635. "write": "J",
  1636. "blocked": "N",
  1637. "process": ""
  1638. },
  1639. "iqd_file": {
  1640. "mtime": "0"
  1641. },
  1642. "csv_file": {
  1643. "mtime": "0"
  1644. },
  1645. "csv_file_iqd_folder": {
  1646. "mtime": "0"
  1647. },
  1648. "duplicates": []
  1649. },
  1650. "loc_belege_nw_gw_vk_liegert - kopie": {
  1651. "imr_file": {
  1652. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_liegert - kopie.imr",
  1653. "size": 160256,
  1654. "ctime": "2021-09-21T17:00:49",
  1655. "mtime": "2021-09-21T16:59:56",
  1656. "read": "J",
  1657. "write": "J",
  1658. "blocked": "N",
  1659. "process": ""
  1660. },
  1661. "iqd_file": {
  1662. "mtime": "0"
  1663. },
  1664. "csv_file": {
  1665. "mtime": "0"
  1666. },
  1667. "csv_file_iqd_folder": {
  1668. "mtime": "0"
  1669. },
  1670. "duplicates": []
  1671. },
  1672. "current_date_prognose": {
  1673. "imr_file": {
  1674. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose.imr",
  1675. "size": 42496,
  1676. "ctime": "2015-07-07T09:27:18",
  1677. "mtime": "2015-07-07T09:27:18",
  1678. "read": "J",
  1679. "write": "J",
  1680. "blocked": "N",
  1681. "process": ""
  1682. },
  1683. "iqd_file": {
  1684. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose.iqd",
  1685. "size": 2483,
  1686. "ctime": "2015-07-07T09:27:16",
  1687. "mtime": "2015-07-07T09:27:16",
  1688. "read": "J",
  1689. "write": "J",
  1690. "blocked": "N",
  1691. "process": ""
  1692. },
  1693. "csv_file": {
  1694. "filename": "c:\\globalcube\\system\\locosoft\\export\\current_date_prognose.csv",
  1695. "size": 7352,
  1696. "ctime": "2018-06-19T13:51:36",
  1697. "mtime": "2018-06-19T13:51:36",
  1698. "read": "J",
  1699. "write": "J",
  1700. "blocked": "N",
  1701. "process": ""
  1702. },
  1703. "csv_file_iqd_folder": {
  1704. "mtime": "0"
  1705. },
  1706. "duplicates": []
  1707. },
  1708. "nw_gw_be_auf_nw_gw_bestand_cat_sich_mit_fibu": {
  1709. "imr_file": {
  1710. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat_sich_mit_fibu.imr",
  1711. "size": 177664,
  1712. "ctime": "2020-12-17T11:25:14",
  1713. "mtime": "2020-12-17T11:25:14",
  1714. "read": "J",
  1715. "write": "J",
  1716. "blocked": "N",
  1717. "process": ""
  1718. },
  1719. "iqd_file": {
  1720. "mtime": "0"
  1721. },
  1722. "csv_file": {
  1723. "mtime": "0"
  1724. },
  1725. "csv_file_iqd_folder": {
  1726. "mtime": "0"
  1727. },
  1728. "duplicates": []
  1729. },
  1730. "op_aus_loc_belege_nur_8520_mit_betriebesteuerung_invoices": {
  1731. "imr_file": {
  1732. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_nur_8520_mit_betriebesteuerung_invoices.imr",
  1733. "size": 121856,
  1734. "ctime": "2018-05-24T15:49:26",
  1735. "mtime": "2018-05-24T15:49:26",
  1736. "read": "J",
  1737. "write": "J",
  1738. "blocked": "N",
  1739. "process": ""
  1740. },
  1741. "iqd_file": {
  1742. "mtime": "0"
  1743. },
  1744. "csv_file": {
  1745. "mtime": "0"
  1746. },
  1747. "csv_file_iqd_folder": {
  1748. "mtime": "0"
  1749. },
  1750. "duplicates": []
  1751. },
  1752. "op_aus_loc_belege_nur_8520": {
  1753. "imr_file": {
  1754. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_nur_8520.imr",
  1755. "size": 111616,
  1756. "ctime": "2020-05-07T16:44:10",
  1757. "mtime": "2020-05-07T16:44:10",
  1758. "read": "J",
  1759. "write": "J",
  1760. "blocked": "N",
  1761. "process": ""
  1762. },
  1763. "iqd_file": {
  1764. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_nur_8520.iqd",
  1765. "size": 11281,
  1766. "ctime": "2019-11-29T14:46:10",
  1767. "mtime": "2019-11-29T14:46:10",
  1768. "read": "J",
  1769. "write": "J",
  1770. "blocked": "N",
  1771. "process": ""
  1772. },
  1773. "csv_file": {
  1774. "filename": "c:\\globalcube\\system\\locosoft\\export\\op_aus_loc_belege_nur_8520.csv",
  1775. "size": 1699,
  1776. "ctime": "2022-06-03T04:08:02",
  1777. "mtime": "2022-06-03T04:08:02",
  1778. "read": "J",
  1779. "write": "J",
  1780. "blocked": "N",
  1781. "process": ""
  1782. },
  1783. "csv_file_iqd_folder": {
  1784. "mtime": "0"
  1785. },
  1786. "duplicates": []
  1787. },
  1788. "aftersales_rechnungen_neu - kopie": {
  1789. "imr_file": {
  1790. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_neu - kopie.imr",
  1791. "size": 156672,
  1792. "ctime": "2020-12-17T16:23:10",
  1793. "mtime": "2020-12-17T16:23:10",
  1794. "read": "J",
  1795. "write": "J",
  1796. "blocked": "N",
  1797. "process": ""
  1798. },
  1799. "iqd_file": {
  1800. "mtime": "0"
  1801. },
  1802. "csv_file": {
  1803. "mtime": "0"
  1804. },
  1805. "csv_file_iqd_folder": {
  1806. "mtime": "0"
  1807. },
  1808. "duplicates": []
  1809. },
  1810. "zeit_abwesenheit_neu": {
  1811. "imr_file": {
  1812. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_abwesenheit_neu.imr",
  1813. "size": 79872,
  1814. "ctime": "2020-11-17T16:49:36",
  1815. "mtime": "2022-01-13T11:46:58",
  1816. "read": "J",
  1817. "write": "J",
  1818. "blocked": "N",
  1819. "process": ""
  1820. },
  1821. "iqd_file": {
  1822. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_abwesenheit_neu.iqd",
  1823. "size": 4176,
  1824. "ctime": "2019-11-29T14:14:38",
  1825. "mtime": "2019-11-29T14:14:38",
  1826. "read": "J",
  1827. "write": "J",
  1828. "blocked": "N",
  1829. "process": ""
  1830. },
  1831. "csv_file": {
  1832. "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_abwesenheit_neu.csv",
  1833. "size": 5300226,
  1834. "ctime": "2022-06-03T04:08:38",
  1835. "mtime": "2022-06-03T04:08:39",
  1836. "read": "J",
  1837. "write": "J",
  1838. "blocked": "N",
  1839. "process": ""
  1840. },
  1841. "csv_file_iqd_folder": {
  1842. "mtime": "0"
  1843. },
  1844. "duplicates": []
  1845. },
  1846. "loc_account_characteristics": {
  1847. "imr_file": {
  1848. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_account_characteristics.imr",
  1849. "size": 64000,
  1850. "ctime": "2016-05-18T09:19:56",
  1851. "mtime": "2016-05-18T09:19:56",
  1852. "read": "J",
  1853. "write": "J",
  1854. "blocked": "N",
  1855. "process": ""
  1856. },
  1857. "iqd_file": {
  1858. "mtime": "0"
  1859. },
  1860. "csv_file": {
  1861. "mtime": "0"
  1862. },
  1863. "csv_file_iqd_folder": {
  1864. "mtime": "0"
  1865. },
  1866. "duplicates": []
  1867. },
  1868. "zeit_stempelungen_neu_inkl_pausen": {
  1869. "imr_file": {
  1870. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu_inkl_pausen.imr",
  1871. "size": 83456,
  1872. "ctime": "2018-03-15T10:45:02",
  1873. "mtime": "2018-03-15T10:45:02",
  1874. "read": "J",
  1875. "write": "J",
  1876. "blocked": "N",
  1877. "process": ""
  1878. },
  1879. "iqd_file": {
  1880. "mtime": "0"
  1881. },
  1882. "csv_file": {
  1883. "mtime": "0"
  1884. },
  1885. "csv_file_iqd_folder": {
  1886. "mtime": "0"
  1887. },
  1888. "duplicates": []
  1889. },
  1890. "offene_auftraege_teile": {
  1891. "imr_file": {
  1892. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_teile.imr",
  1893. "size": 84480,
  1894. "ctime": "2022-01-06T09:21:05",
  1895. "mtime": "2022-01-06T09:21:05",
  1896. "read": "J",
  1897. "write": "J",
  1898. "blocked": "N",
  1899. "process": ""
  1900. },
  1901. "iqd_file": {
  1902. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_teile.iqd",
  1903. "size": 6085,
  1904. "ctime": "2019-11-21T16:59:02",
  1905. "mtime": "2019-11-21T16:59:02",
  1906. "read": "J",
  1907. "write": "J",
  1908. "blocked": "N",
  1909. "process": ""
  1910. },
  1911. "csv_file": {
  1912. "filename": "c:\\globalcube\\system\\locosoft\\export\\offene_auftraege_teile.csv",
  1913. "size": 1811991,
  1914. "ctime": "2022-06-03T04:07:39",
  1915. "mtime": "2022-06-03T04:07:39",
  1916. "read": "J",
  1917. "write": "J",
  1918. "blocked": "N",
  1919. "process": ""
  1920. },
  1921. "csv_file_iqd_folder": {
  1922. "mtime": "0"
  1923. },
  1924. "duplicates": [
  1925. "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\sich\\offene_auftraege_teile.imr"
  1926. ]
  1927. },
  1928. "zeit_abwesenheit_neu_serviceberater": {
  1929. "imr_file": {
  1930. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_abwesenheit_neu_serviceberater.imr",
  1931. "size": 74240,
  1932. "ctime": "2021-11-23T11:03:47",
  1933. "mtime": "2021-11-23T11:03:48",
  1934. "read": "J",
  1935. "write": "J",
  1936. "blocked": "N",
  1937. "process": ""
  1938. },
  1939. "iqd_file": {
  1940. "mtime": "0"
  1941. },
  1942. "csv_file": {
  1943. "mtime": "0"
  1944. },
  1945. "csv_file_iqd_folder": {
  1946. "mtime": "0"
  1947. },
  1948. "duplicates": []
  1949. },
  1950. "zeit_stempelungen_neu": {
  1951. "imr_file": {
  1952. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu.imr",
  1953. "size": 97792,
  1954. "ctime": "2021-03-17T11:03:46",
  1955. "mtime": "2022-01-13T11:49:51",
  1956. "read": "J",
  1957. "write": "J",
  1958. "blocked": "N",
  1959. "process": ""
  1960. },
  1961. "iqd_file": {
  1962. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu.iqd",
  1963. "size": 2528,
  1964. "ctime": "2018-06-06T11:40:02",
  1965. "mtime": "2018-06-06T11:40:02",
  1966. "read": "J",
  1967. "write": "J",
  1968. "blocked": "N",
  1969. "process": ""
  1970. },
  1971. "csv_file": {
  1972. "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_stempelungen_neu.csv",
  1973. "size": 35300566,
  1974. "ctime": "2022-06-03T04:08:07",
  1975. "mtime": "2022-06-03T04:08:13",
  1976. "read": "J",
  1977. "write": "J",
  1978. "blocked": "N",
  1979. "process": ""
  1980. },
  1981. "csv_file_iqd_folder": {
  1982. "mtime": "0"
  1983. },
  1984. "duplicates": []
  1985. },
  1986. "loc_belege_statistische_werte_": {
  1987. "imr_file": {
  1988. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_statistische_werte_.imr",
  1989. "size": 145408,
  1990. "ctime": "2016-05-18T10:47:06",
  1991. "mtime": "2016-05-18T10:47:06",
  1992. "read": "J",
  1993. "write": "J",
  1994. "blocked": "N",
  1995. "process": ""
  1996. },
  1997. "iqd_file": {
  1998. "mtime": "0"
  1999. },
  2000. "csv_file": {
  2001. "mtime": "0"
  2002. },
  2003. "csv_file_iqd_folder": {
  2004. "mtime": "0"
  2005. },
  2006. "duplicates": []
  2007. },
  2008. "nw_vk_test": {
  2009. "imr_file": {
  2010. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_vk_test.imr",
  2011. "size": 44032,
  2012. "ctime": "2020-11-25T16:21:36",
  2013. "mtime": "2020-11-25T16:21:36",
  2014. "read": "J",
  2015. "write": "J",
  2016. "blocked": "N",
  2017. "process": ""
  2018. },
  2019. "iqd_file": {
  2020. "mtime": "0"
  2021. },
  2022. "csv_file": {
  2023. "mtime": "0"
  2024. },
  2025. "csv_file_iqd_folder": {
  2026. "mtime": "0"
  2027. },
  2028. "duplicates": []
  2029. },
  2030. "loc_belege_nw_gw_vk_stk_fibu - kopie": {
  2031. "imr_file": {
  2032. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu - kopie.imr",
  2033. "size": 155136,
  2034. "ctime": "2021-07-08T13:15:25",
  2035. "mtime": "2021-01-06T10:17:06",
  2036. "read": "J",
  2037. "write": "J",
  2038. "blocked": "N",
  2039. "process": ""
  2040. },
  2041. "iqd_file": {
  2042. "mtime": "0"
  2043. },
  2044. "csv_file": {
  2045. "mtime": "0"
  2046. },
  2047. "csv_file_iqd_folder": {
  2048. "mtime": "0"
  2049. },
  2050. "duplicates": []
  2051. },
  2052. "kontenrahmen": {
  2053. "imr_file": {
  2054. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen.imr",
  2055. "size": 133120,
  2056. "ctime": "2020-11-11T10:32:10",
  2057. "mtime": "2021-07-08T11:26:24",
  2058. "read": "J",
  2059. "write": "J",
  2060. "blocked": "N",
  2061. "process": ""
  2062. },
  2063. "iqd_file": {
  2064. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen.iqd",
  2065. "size": 3782,
  2066. "ctime": "2015-07-08T09:32:32",
  2067. "mtime": "2015-07-08T09:32:32",
  2068. "read": "J",
  2069. "write": "J",
  2070. "blocked": "N",
  2071. "process": ""
  2072. },
  2073. "csv_file": {
  2074. "filename": "c:\\globalcube\\system\\locosoft\\export\\kontenrahmen.csv",
  2075. "size": 104537,
  2076. "ctime": "2016-08-09T10:03:22",
  2077. "mtime": "2016-08-09T10:03:22",
  2078. "read": "J",
  2079. "write": "J",
  2080. "blocked": "N",
  2081. "process": ""
  2082. },
  2083. "csv_file_iqd_folder": {
  2084. "mtime": "0"
  2085. },
  2086. "duplicates": []
  2087. },
  2088. "current_date_prognose_vj": {
  2089. "imr_file": {
  2090. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_vj.imr",
  2091. "size": 41984,
  2092. "ctime": "2016-06-01T12:51:10",
  2093. "mtime": "2016-06-01T12:51:10",
  2094. "read": "J",
  2095. "write": "J",
  2096. "blocked": "N",
  2097. "process": ""
  2098. },
  2099. "iqd_file": {
  2100. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_vj.iqd",
  2101. "size": 2428,
  2102. "ctime": "2016-06-01T12:19:38",
  2103. "mtime": "2016-06-01T12:19:38",
  2104. "read": "J",
  2105. "write": "J",
  2106. "blocked": "N",
  2107. "process": ""
  2108. },
  2109. "csv_file": {
  2110. "mtime": "0"
  2111. },
  2112. "csv_file_iqd_folder": {
  2113. "mtime": "0"
  2114. },
  2115. "duplicates": []
  2116. },
  2117. "nw_gw_be_ohne_fibu": {
  2118. "imr_file": {
  2119. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_ohne_fibu.imr",
  2120. "size": 144384,
  2121. "ctime": "2021-05-06T21:29:42",
  2122. "mtime": "2021-05-06T21:29:42",
  2123. "read": "J",
  2124. "write": "J",
  2125. "blocked": "N",
  2126. "process": ""
  2127. },
  2128. "iqd_file": {
  2129. "mtime": "0"
  2130. },
  2131. "csv_file": {
  2132. "filename": "c:\\globalcube\\system\\locosoft\\export\\nw_gw_be_ohne_fibu.csv",
  2133. "size": 90239,
  2134. "ctime": "2021-05-06T20:25:30",
  2135. "mtime": "2021-05-06T20:25:30",
  2136. "read": "J",
  2137. "write": "J",
  2138. "blocked": "N",
  2139. "process": ""
  2140. },
  2141. "csv_file_iqd_folder": {
  2142. "mtime": "0"
  2143. },
  2144. "duplicates": []
  2145. },
  2146. "zeit_ben_std_lg": {
  2147. "imr_file": {
  2148. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_ben_std_lg.imr",
  2149. "size": 69120,
  2150. "ctime": "2020-11-17T16:54:22",
  2151. "mtime": "2021-10-20T17:33:46",
  2152. "read": "J",
  2153. "write": "J",
  2154. "blocked": "N",
  2155. "process": ""
  2156. },
  2157. "iqd_file": {
  2158. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_ben_std_lg.iqd",
  2159. "size": 3105,
  2160. "ctime": "2019-11-29T14:16:10",
  2161. "mtime": "2019-11-29T14:16:10",
  2162. "read": "J",
  2163. "write": "J",
  2164. "blocked": "N",
  2165. "process": ""
  2166. },
  2167. "csv_file": {
  2168. "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_ben_std_lg.csv",
  2169. "size": 10747933,
  2170. "ctime": "2022-06-03T04:08:59",
  2171. "mtime": "2022-06-03T04:09:01",
  2172. "read": "J",
  2173. "write": "J",
  2174. "blocked": "N",
  2175. "process": ""
  2176. },
  2177. "csv_file_iqd_folder": {
  2178. "mtime": "0"
  2179. },
  2180. "duplicates": []
  2181. },
  2182. "nw_gw_be_auf_nw_gw_bestand_cat": {
  2183. "imr_file": {
  2184. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat.imr",
  2185. "size": 176128,
  2186. "ctime": "2021-06-02T09:27:40",
  2187. "mtime": "2021-09-22T11:54:10",
  2188. "read": "J",
  2189. "write": "J",
  2190. "blocked": "N",
  2191. "process": ""
  2192. },
  2193. "iqd_file": {
  2194. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat.iqd",
  2195. "size": 21821,
  2196. "ctime": "2018-06-05T18:11:10",
  2197. "mtime": "2018-06-05T18:11:10",
  2198. "read": "J",
  2199. "write": "J",
  2200. "blocked": "N",
  2201. "process": ""
  2202. },
  2203. "csv_file": {
  2204. "filename": "c:\\globalcube\\system\\locosoft\\export\\nw_gw_be_auf_nw_gw_bestand_cat.csv",
  2205. "size": 813448,
  2206. "ctime": "2022-06-03T04:04:49",
  2207. "mtime": "2022-06-03T04:04:50",
  2208. "read": "J",
  2209. "write": "J",
  2210. "blocked": "N",
  2211. "process": ""
  2212. },
  2213. "csv_file_iqd_folder": {
  2214. "mtime": "0"
  2215. },
  2216. "duplicates": []
  2217. },
  2218. "zeit_stempelungen_neu_abstimmung": {
  2219. "imr_file": {
  2220. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu_abstimmung.imr",
  2221. "size": 54784,
  2222. "ctime": "2021-03-17T10:03:04",
  2223. "mtime": "2021-03-17T10:03:04",
  2224. "read": "J",
  2225. "write": "J",
  2226. "blocked": "N",
  2227. "process": ""
  2228. },
  2229. "iqd_file": {
  2230. "mtime": "0"
  2231. },
  2232. "csv_file": {
  2233. "mtime": "0"
  2234. },
  2235. "csv_file_iqd_folder": {
  2236. "mtime": "0"
  2237. },
  2238. "duplicates": []
  2239. },
  2240. "kontenrahmen_2": {
  2241. "imr_file": {
  2242. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen\\kontenrahmen_2.imr",
  2243. "size": 63488,
  2244. "ctime": "2008-09-15T15:58:04",
  2245. "mtime": "2008-09-15T15:58:04",
  2246. "read": "J",
  2247. "write": "J",
  2248. "blocked": "N",
  2249. "process": ""
  2250. },
  2251. "iqd_file": {
  2252. "mtime": "0"
  2253. },
  2254. "csv_file": {
  2255. "mtime": "0"
  2256. },
  2257. "csv_file_iqd_folder": {
  2258. "mtime": "0"
  2259. },
  2260. "duplicates": []
  2261. },
  2262. "skr_statistik_stk_manuell": {
  2263. "imr_file": {
  2264. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_statistik_stk_manuell.imr",
  2265. "size": 64000,
  2266. "ctime": "2018-06-19T13:46:54",
  2267. "mtime": "2018-06-19T13:46:54",
  2268. "read": "J",
  2269. "write": "J",
  2270. "blocked": "N",
  2271. "process": ""
  2272. },
  2273. "iqd_file": {
  2274. "mtime": "0"
  2275. },
  2276. "csv_file": {
  2277. "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_statistik_stk_manuell.csv",
  2278. "size": 3492,
  2279. "ctime": "2018-06-19T13:47:02",
  2280. "mtime": "2018-06-19T13:47:02",
  2281. "read": "J",
  2282. "write": "J",
  2283. "blocked": "N",
  2284. "process": ""
  2285. },
  2286. "csv_file_iqd_folder": {
  2287. "mtime": "0"
  2288. },
  2289. "duplicates": []
  2290. },
  2291. "loc_belege": {
  2292. "imr_file": {
  2293. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege.imr",
  2294. "size": 103936,
  2295. "ctime": "2021-07-08T11:39:29",
  2296. "mtime": "2021-11-22T17:16:21",
  2297. "read": "J",
  2298. "write": "J",
  2299. "blocked": "N",
  2300. "process": ""
  2301. },
  2302. "iqd_file": {
  2303. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege.iqd",
  2304. "size": 6835,
  2305. "ctime": "2018-06-29T11:32:04",
  2306. "mtime": "2018-06-29T11:32:04",
  2307. "read": "J",
  2308. "write": "J",
  2309. "blocked": "N",
  2310. "process": ""
  2311. },
  2312. "csv_file": {
  2313. "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege.csv",
  2314. "size": 178791246,
  2315. "ctime": "2022-06-03T04:03:33",
  2316. "mtime": "2022-06-03T04:04:11",
  2317. "read": "J",
  2318. "write": "J",
  2319. "blocked": "N",
  2320. "process": ""
  2321. },
  2322. "csv_file_iqd_folder": {
  2323. "mtime": "0"
  2324. },
  2325. "duplicates": []
  2326. },
  2327. "loc_belege_nw_gw_vk_datev": {
  2328. "imr_file": {
  2329. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_datev.imr",
  2330. "size": 255488,
  2331. "ctime": "2020-12-16T17:34:48",
  2332. "mtime": "2020-12-16T17:34:48",
  2333. "read": "J",
  2334. "write": "J",
  2335. "blocked": "N",
  2336. "process": ""
  2337. },
  2338. "iqd_file": {
  2339. "mtime": "0"
  2340. },
  2341. "csv_file": {
  2342. "mtime": "0"
  2343. },
  2344. "csv_file_iqd_folder": {
  2345. "mtime": "0"
  2346. },
  2347. "duplicates": []
  2348. },
  2349. "offene_auftraege_ums_ben_aw": {
  2350. "imr_file": {
  2351. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_ums_ben_aw.imr",
  2352. "size": 85504,
  2353. "ctime": "2022-01-06T09:21:05",
  2354. "mtime": "2022-01-06T09:21:06",
  2355. "read": "J",
  2356. "write": "J",
  2357. "blocked": "N",
  2358. "process": ""
  2359. },
  2360. "iqd_file": {
  2361. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_ums_ben_aw.iqd",
  2362. "size": 6378,
  2363. "ctime": "2019-11-21T16:58:22",
  2364. "mtime": "2019-11-21T16:58:22",
  2365. "read": "J",
  2366. "write": "J",
  2367. "blocked": "N",
  2368. "process": ""
  2369. },
  2370. "csv_file": {
  2371. "filename": "c:\\globalcube\\system\\locosoft\\export\\offene_auftraege_ums_ben_aw.csv",
  2372. "size": 3422481,
  2373. "ctime": "2022-06-03T04:07:56",
  2374. "mtime": "2022-06-03T04:07:57",
  2375. "read": "J",
  2376. "write": "J",
  2377. "blocked": "N",
  2378. "process": ""
  2379. },
  2380. "csv_file_iqd_folder": {
  2381. "mtime": "0"
  2382. },
  2383. "duplicates": [
  2384. "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\sich\\offene_auftraege_ums_ben_aw.imr"
  2385. ]
  2386. },
  2387. "kontenrahmen_1": {
  2388. "imr_file": {
  2389. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen\\kontenrahmen_1.imr",
  2390. "size": 91136,
  2391. "ctime": "2010-08-10T13:21:36",
  2392. "mtime": "2010-08-10T13:21:36",
  2393. "read": "J",
  2394. "write": "J",
  2395. "blocked": "N",
  2396. "process": ""
  2397. },
  2398. "iqd_file": {
  2399. "mtime": "0"
  2400. },
  2401. "csv_file": {
  2402. "mtime": "0"
  2403. },
  2404. "csv_file_iqd_folder": {
  2405. "mtime": "0"
  2406. },
  2407. "duplicates": []
  2408. },
  2409. "teamliste": {
  2410. "imr_file": {
  2411. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\teamliste.imr",
  2412. "size": 74752,
  2413. "ctime": "2018-06-06T11:26:02",
  2414. "mtime": "2018-06-06T11:26:02",
  2415. "read": "J",
  2416. "write": "J",
  2417. "blocked": "N",
  2418. "process": ""
  2419. },
  2420. "iqd_file": {
  2421. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\teamliste.iqd",
  2422. "size": 1455,
  2423. "ctime": "2018-06-06T11:25:54",
  2424. "mtime": "2018-06-06T11:25:54",
  2425. "read": "J",
  2426. "write": "J",
  2427. "blocked": "N",
  2428. "process": ""
  2429. },
  2430. "csv_file": {
  2431. "filename": "c:\\globalcube\\system\\locosoft\\export\\teamliste.csv",
  2432. "size": 290,
  2433. "ctime": "2020-04-08T14:22:36",
  2434. "mtime": "2020-04-08T14:22:36",
  2435. "read": "J",
  2436. "write": "J",
  2437. "blocked": "N",
  2438. "process": ""
  2439. },
  2440. "csv_file_iqd_folder": {
  2441. "mtime": "0"
  2442. },
  2443. "duplicates": []
  2444. },
  2445. "skr_konten_stk_manuell": {
  2446. "imr_file": {
  2447. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_konten_stk_manuell.imr",
  2448. "size": 64000,
  2449. "ctime": "2018-06-19T13:45:38",
  2450. "mtime": "2018-06-19T13:45:38",
  2451. "read": "J",
  2452. "write": "J",
  2453. "blocked": "N",
  2454. "process": ""
  2455. },
  2456. "iqd_file": {
  2457. "mtime": "0"
  2458. },
  2459. "csv_file": {
  2460. "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_konten_stk_manuell.csv",
  2461. "size": 1207,
  2462. "ctime": "2020-04-15T10:33:24",
  2463. "mtime": "2020-04-15T10:33:24",
  2464. "read": "J",
  2465. "write": "J",
  2466. "blocked": "N",
  2467. "process": ""
  2468. },
  2469. "csv_file_iqd_folder": {
  2470. "mtime": "0"
  2471. },
  2472. "duplicates": []
  2473. },
  2474. "loc_belege_nw_gw_vk_verk\u00e4ufer_vehicles": {
  2475. "imr_file": {
  2476. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_verk\u00e4ufer_vehicles.imr",
  2477. "size": 253440,
  2478. "ctime": "2021-03-11T15:02:50",
  2479. "mtime": "2021-03-11T15:02:50",
  2480. "read": "J",
  2481. "write": "J",
  2482. "blocked": "N",
  2483. "process": ""
  2484. },
  2485. "iqd_file": {
  2486. "mtime": "0"
  2487. },
  2488. "csv_file": {
  2489. "mtime": "0"
  2490. },
  2491. "csv_file_iqd_folder": {
  2492. "mtime": "0"
  2493. },
  2494. "duplicates": []
  2495. },
  2496. "loc_belege_nw_gw_vk_aus_fibu": {
  2497. "imr_file": {
  2498. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_aus_fibu.imr",
  2499. "size": 151552,
  2500. "ctime": "2021-03-11T15:29:32",
  2501. "mtime": "2021-09-21T15:12:32",
  2502. "read": "J",
  2503. "write": "J",
  2504. "blocked": "N",
  2505. "process": ""
  2506. },
  2507. "iqd_file": {
  2508. "mtime": "0"
  2509. },
  2510. "csv_file": {
  2511. "mtime": "0"
  2512. },
  2513. "csv_file_iqd_folder": {
  2514. "mtime": "0"
  2515. },
  2516. "duplicates": []
  2517. },
  2518. "serviceberater_rechnung": {
  2519. "imr_file": {
  2520. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\serviceberater_rechnung.imr",
  2521. "size": 64512,
  2522. "ctime": "2022-01-05T11:17:05",
  2523. "mtime": "2022-01-05T11:17:06",
  2524. "read": "J",
  2525. "write": "J",
  2526. "blocked": "N",
  2527. "process": ""
  2528. },
  2529. "iqd_file": {
  2530. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\serviceberater_rechnung.iqd",
  2531. "size": 1133,
  2532. "ctime": "2018-05-24T17:18:24",
  2533. "mtime": "2018-05-24T17:18:24",
  2534. "read": "J",
  2535. "write": "J",
  2536. "blocked": "N",
  2537. "process": ""
  2538. },
  2539. "csv_file": {
  2540. "mtime": "0"
  2541. },
  2542. "csv_file_iqd_folder": {
  2543. "mtime": "0"
  2544. },
  2545. "duplicates": []
  2546. },
  2547. "loc_belege_nw_gw_vk_stk_fibu_reference_vehicle_0_fehlt": {
  2548. "imr_file": {
  2549. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu_reference_vehicle_0_fehlt.imr",
  2550. "size": 172032,
  2551. "ctime": "2018-06-06T09:34:10",
  2552. "mtime": "2018-06-06T09:34:10",
  2553. "read": "J",
  2554. "write": "J",
  2555. "blocked": "N",
  2556. "process": ""
  2557. },
  2558. "iqd_file": {
  2559. "mtime": "0"
  2560. },
  2561. "csv_file": {
  2562. "mtime": "0"
  2563. },
  2564. "csv_file_iqd_folder": {
  2565. "mtime": "0"
  2566. },
  2567. "duplicates": []
  2568. },
  2569. "loc_belege_teile": {
  2570. "imr_file": {
  2571. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_teile.imr",
  2572. "size": 96768,
  2573. "ctime": "2017-06-08T16:28:46",
  2574. "mtime": "2017-06-08T16:28:46",
  2575. "read": "J",
  2576. "write": "J",
  2577. "blocked": "N",
  2578. "process": ""
  2579. },
  2580. "iqd_file": {
  2581. "mtime": "0"
  2582. },
  2583. "csv_file": {
  2584. "mtime": "0"
  2585. },
  2586. "csv_file_iqd_folder": {
  2587. "mtime": "0"
  2588. },
  2589. "duplicates": []
  2590. },
  2591. "op_aus_loc_belege_deb_saldo_mit_betriebesteuerung_\u00fcber_invoice": {
  2592. "imr_file": {
  2593. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_deb_saldo_mit_betriebesteuerung_\u00fcber_invoice.imr",
  2594. "size": 196608,
  2595. "ctime": "2020-04-21T08:06:28",
  2596. "mtime": "2020-04-21T08:06:28",
  2597. "read": "J",
  2598. "write": "J",
  2599. "blocked": "N",
  2600. "process": ""
  2601. },
  2602. "iqd_file": {
  2603. "mtime": "0"
  2604. },
  2605. "csv_file": {
  2606. "mtime": "0"
  2607. },
  2608. "csv_file_iqd_folder": {
  2609. "mtime": "0"
  2610. },
  2611. "duplicates": []
  2612. },
  2613. "aftersales_rechnungen_ben_aw_final": {
  2614. "imr_file": {
  2615. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_ben_aw_final.imr",
  2616. "size": 78336,
  2617. "ctime": "2021-02-02T11:01:10",
  2618. "mtime": "2021-09-23T21:25:30",
  2619. "read": "J",
  2620. "write": "J",
  2621. "blocked": "N",
  2622. "process": ""
  2623. },
  2624. "iqd_file": {
  2625. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_ben_aw_final.iqd",
  2626. "size": 5778,
  2627. "ctime": "2018-06-13T11:53:04",
  2628. "mtime": "2018-06-13T11:53:04",
  2629. "read": "J",
  2630. "write": "J",
  2631. "blocked": "N",
  2632. "process": ""
  2633. },
  2634. "csv_file": {
  2635. "filename": "c:\\globalcube\\system\\locosoft\\export\\aftersales_rechnungen_ben_aw_final.csv",
  2636. "size": 42105366,
  2637. "ctime": "2022-06-03T04:07:32",
  2638. "mtime": "2022-06-03T04:07:37",
  2639. "read": "J",
  2640. "write": "J",
  2641. "blocked": "N",
  2642. "process": ""
  2643. },
  2644. "csv_file_iqd_folder": {
  2645. "mtime": "0"
  2646. },
  2647. "duplicates": []
  2648. },
  2649. "nw_be_ohne_fibu": {
  2650. "imr_file": {
  2651. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_be_ohne_fibu.imr",
  2652. "size": 130048,
  2653. "ctime": "2020-12-01T10:48:52",
  2654. "mtime": "2020-12-01T10:48:52",
  2655. "read": "J",
  2656. "write": "J",
  2657. "blocked": "N",
  2658. "process": ""
  2659. },
  2660. "iqd_file": {
  2661. "mtime": "0"
  2662. },
  2663. "csv_file": {
  2664. "mtime": "0"
  2665. },
  2666. "csv_file_iqd_folder": {
  2667. "mtime": "0"
  2668. },
  2669. "duplicates": []
  2670. },
  2671. "nw_gw_be_auf_nw_gw_bestand_cat - kopie": {
  2672. "imr_file": {
  2673. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat - kopie.imr",
  2674. "size": 169472,
  2675. "ctime": "2021-07-08T13:16:06",
  2676. "mtime": "2021-05-07T09:46:34",
  2677. "read": "J",
  2678. "write": "J",
  2679. "blocked": "N",
  2680. "process": ""
  2681. },
  2682. "iqd_file": {
  2683. "mtime": "0"
  2684. },
  2685. "csv_file": {
  2686. "mtime": "0"
  2687. },
  2688. "csv_file_iqd_folder": {
  2689. "mtime": "0"
  2690. },
  2691. "duplicates": []
  2692. },
  2693. "offene_auftraege_teile - kopie (2)": {
  2694. "imr_file": {
  2695. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_teile - kopie (2).imr",
  2696. "size": 90624,
  2697. "ctime": "2021-11-29T16:40:04",
  2698. "mtime": "2021-10-20T14:33:03",
  2699. "read": "J",
  2700. "write": "J",
  2701. "blocked": "N",
  2702. "process": ""
  2703. },
  2704. "iqd_file": {
  2705. "mtime": "0"
  2706. },
  2707. "csv_file": {
  2708. "mtime": "0"
  2709. },
  2710. "csv_file_iqd_folder": {
  2711. "mtime": "0"
  2712. },
  2713. "duplicates": []
  2714. },
  2715. "loc_belege_nw_gw_vk_sich_30112020_vor_anpassungen": {
  2716. "imr_file": {
  2717. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_sich_30112020_vor_anpassungen.imr",
  2718. "size": 262144,
  2719. "ctime": "2020-11-26T13:27:14",
  2720. "mtime": "2020-11-26T13:27:14",
  2721. "read": "J",
  2722. "write": "J",
  2723. "blocked": "N",
  2724. "process": ""
  2725. },
  2726. "iqd_file": {
  2727. "mtime": "0"
  2728. },
  2729. "csv_file": {
  2730. "mtime": "0"
  2731. },
  2732. "csv_file_iqd_folder": {
  2733. "mtime": "0"
  2734. },
  2735. "duplicates": []
  2736. },
  2737. "op_aus_loc_belege_deb_saldo": {
  2738. "imr_file": {
  2739. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_deb_saldo.imr",
  2740. "size": 115712,
  2741. "ctime": "2020-05-07T17:09:02",
  2742. "mtime": "2021-11-11T10:59:41",
  2743. "read": "J",
  2744. "write": "J",
  2745. "blocked": "N",
  2746. "process": ""
  2747. },
  2748. "iqd_file": {
  2749. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_deb_saldo.iqd",
  2750. "size": 13010,
  2751. "ctime": "2019-11-29T14:45:36",
  2752. "mtime": "2019-11-29T14:45:36",
  2753. "read": "J",
  2754. "write": "J",
  2755. "blocked": "N",
  2756. "process": ""
  2757. },
  2758. "csv_file": {
  2759. "filename": "c:\\globalcube\\system\\locosoft\\export\\op_aus_loc_belege_deb_saldo.csv",
  2760. "size": 1256198,
  2761. "ctime": "2022-06-03T04:08:01",
  2762. "mtime": "2022-06-03T04:08:01",
  2763. "read": "J",
  2764. "write": "J",
  2765. "blocked": "N",
  2766. "process": ""
  2767. },
  2768. "csv_file_iqd_folder": {
  2769. "mtime": "0"
  2770. },
  2771. "duplicates": []
  2772. },
  2773. "loc_belege_stk": {
  2774. "imr_file": {
  2775. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_stk.imr",
  2776. "size": 140800,
  2777. "ctime": "2018-05-25T10:21:36",
  2778. "mtime": "2018-05-25T10:21:36",
  2779. "read": "J",
  2780. "write": "J",
  2781. "blocked": "N",
  2782. "process": ""
  2783. },
  2784. "iqd_file": {
  2785. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_stk.iqd",
  2786. "size": 6771,
  2787. "ctime": "2018-05-25T10:21:42",
  2788. "mtime": "2018-05-25T10:21:42",
  2789. "read": "J",
  2790. "write": "J",
  2791. "blocked": "N",
  2792. "process": ""
  2793. },
  2794. "csv_file": {
  2795. "mtime": "0"
  2796. },
  2797. "csv_file_iqd_folder": {
  2798. "mtime": "0"
  2799. },
  2800. "duplicates": []
  2801. },
  2802. "loc_kontenrahmen_gc_struct_import": {
  2803. "imr_file": {
  2804. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_kontenrahmen_gc_struct_import.imr",
  2805. "size": 37376,
  2806. "ctime": "2016-06-01T14:48:18",
  2807. "mtime": "2016-06-01T14:48:18",
  2808. "read": "J",
  2809. "write": "J",
  2810. "blocked": "N",
  2811. "process": ""
  2812. },
  2813. "iqd_file": {
  2814. "mtime": "0"
  2815. },
  2816. "csv_file": {
  2817. "mtime": "0"
  2818. },
  2819. "csv_file_iqd_folder": {
  2820. "mtime": "0"
  2821. },
  2822. "duplicates": []
  2823. },
  2824. "zeit_verk_std": {
  2825. "imr_file": {
  2826. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_verk_std.imr",
  2827. "size": 64000,
  2828. "ctime": "2020-11-17T16:55:12",
  2829. "mtime": "2020-11-17T16:55:12",
  2830. "read": "J",
  2831. "write": "J",
  2832. "blocked": "N",
  2833. "process": ""
  2834. },
  2835. "iqd_file": {
  2836. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_verk_std.iqd",
  2837. "size": 2756,
  2838. "ctime": "2018-06-06T11:43:06",
  2839. "mtime": "2018-06-06T11:43:06",
  2840. "read": "J",
  2841. "write": "J",
  2842. "blocked": "N",
  2843. "process": ""
  2844. },
  2845. "csv_file": {
  2846. "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_verk_std.csv",
  2847. "size": 27640523,
  2848. "ctime": "2022-06-03T04:08:42",
  2849. "mtime": "2022-06-03T04:08:47",
  2850. "read": "J",
  2851. "write": "J",
  2852. "blocked": "N",
  2853. "process": ""
  2854. },
  2855. "csv_file_iqd_folder": {
  2856. "mtime": "0"
  2857. },
  2858. "duplicates": []
  2859. },
  2860. "offene_auftraege_teile - kopie": {
  2861. "imr_file": {
  2862. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_teile - kopie.imr",
  2863. "size": 78336,
  2864. "ctime": "2020-11-17T16:44:12",
  2865. "mtime": "2020-11-17T16:44:12",
  2866. "read": "J",
  2867. "write": "J",
  2868. "blocked": "N",
  2869. "process": ""
  2870. },
  2871. "iqd_file": {
  2872. "mtime": "0"
  2873. },
  2874. "csv_file": {
  2875. "mtime": "0"
  2876. },
  2877. "csv_file_iqd_folder": {
  2878. "mtime": "0"
  2879. },
  2880. "duplicates": []
  2881. },
  2882. "loc_belege_nw_gw_vk_vor_20200821_kost2_5_stellen": {
  2883. "imr_file": {
  2884. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_vor_20200821_kost2_5_stellen.imr",
  2885. "size": 153088,
  2886. "ctime": "2021-03-17T11:47:46",
  2887. "mtime": "2021-03-17T11:47:46",
  2888. "read": "J",
  2889. "write": "J",
  2890. "blocked": "N",
  2891. "process": ""
  2892. },
  2893. "iqd_file": {
  2894. "mtime": "0"
  2895. },
  2896. "csv_file": {
  2897. "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_nw_gw_vk_vor_20200821_kost2_5_stellen.csv",
  2898. "size": 2620,
  2899. "ctime": "2021-03-17T11:55:58",
  2900. "mtime": "2021-03-17T11:55:58",
  2901. "read": "J",
  2902. "write": "J",
  2903. "blocked": "N",
  2904. "process": ""
  2905. },
  2906. "csv_file_iqd_folder": {
  2907. "mtime": "0"
  2908. },
  2909. "duplicates": []
  2910. },
  2911. "nw_gw_be_auf_nw_gw_bestand_cat - kopie (2)": {
  2912. "imr_file": {
  2913. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat - kopie (2).imr",
  2914. "size": 169472,
  2915. "ctime": "2021-07-21T10:02:22",
  2916. "mtime": "2021-05-07T09:46:34",
  2917. "read": "J",
  2918. "write": "J",
  2919. "blocked": "N",
  2920. "process": ""
  2921. },
  2922. "iqd_file": {
  2923. "mtime": "0"
  2924. },
  2925. "csv_file": {
  2926. "mtime": "0"
  2927. },
  2928. "csv_file_iqd_folder": {
  2929. "mtime": "0"
  2930. },
  2931. "duplicates": []
  2932. },
  2933. "loc_belege_bilanz_mit_doc_no_im_text": {
  2934. "imr_file": {
  2935. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_bilanz_mit_doc_no_im_text.imr",
  2936. "size": 93184,
  2937. "ctime": "2020-04-15T10:13:04",
  2938. "mtime": "2020-04-15T10:13:04",
  2939. "read": "J",
  2940. "write": "J",
  2941. "blocked": "N",
  2942. "process": ""
  2943. },
  2944. "iqd_file": {
  2945. "mtime": "0"
  2946. },
  2947. "csv_file": {
  2948. "mtime": "0"
  2949. },
  2950. "csv_file_iqd_folder": {
  2951. "mtime": "0"
  2952. },
  2953. "duplicates": []
  2954. },
  2955. "loc_op_belege": {
  2956. "imr_file": {
  2957. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\loc_op_belege.imr",
  2958. "size": 111104,
  2959. "ctime": "2018-01-23T14:51:42",
  2960. "mtime": "2018-01-23T14:51:42",
  2961. "read": "J",
  2962. "write": "J",
  2963. "blocked": "N",
  2964. "process": ""
  2965. },
  2966. "iqd_file": {
  2967. "mtime": "0"
  2968. },
  2969. "csv_file": {
  2970. "mtime": "0"
  2971. },
  2972. "csv_file_iqd_folder": {
  2973. "mtime": "0"
  2974. },
  2975. "duplicates": []
  2976. },
  2977. "zeit_stempelungen_neu_f\u00fcr_ben_zeit": {
  2978. "imr_file": {
  2979. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu_f\u00fcr_ben_zeit.imr",
  2980. "size": 78848,
  2981. "ctime": "2018-03-15T15:41:48",
  2982. "mtime": "2018-03-15T15:41:48",
  2983. "read": "J",
  2984. "write": "J",
  2985. "blocked": "N",
  2986. "process": ""
  2987. },
  2988. "iqd_file": {
  2989. "mtime": "0"
  2990. },
  2991. "csv_file": {
  2992. "mtime": "0"
  2993. },
  2994. "csv_file_iqd_folder": {
  2995. "mtime": "0"
  2996. },
  2997. "duplicates": []
  2998. },
  2999. "zeit_verk_std_mit_subsidiary_aus_labours_und_nicht_aus_employee": {
  3000. "imr_file": {
  3001. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_verk_std_mit_subsidiary_aus_labours_und_nicht_aus_employee.imr",
  3002. "size": 71680,
  3003. "ctime": "2020-04-22T09:25:48",
  3004. "mtime": "2020-04-22T09:25:48",
  3005. "read": "J",
  3006. "write": "J",
  3007. "blocked": "N",
  3008. "process": ""
  3009. },
  3010. "iqd_file": {
  3011. "mtime": "0"
  3012. },
  3013. "csv_file": {
  3014. "mtime": "0"
  3015. },
  3016. "csv_file_iqd_folder": {
  3017. "mtime": "0"
  3018. },
  3019. "duplicates": []
  3020. },
  3021. "zeit_stempelungen": {
  3022. "imr_file": {
  3023. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen.imr",
  3024. "size": 78848,
  3025. "ctime": "2018-01-29T11:04:04",
  3026. "mtime": "2018-01-29T11:04:04",
  3027. "read": "J",
  3028. "write": "J",
  3029. "blocked": "N",
  3030. "process": ""
  3031. },
  3032. "iqd_file": {
  3033. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen.iqd",
  3034. "size": 2281,
  3035. "ctime": "2018-01-29T11:04:02",
  3036. "mtime": "2018-01-29T11:04:02",
  3037. "read": "J",
  3038. "write": "J",
  3039. "blocked": "N",
  3040. "process": ""
  3041. },
  3042. "csv_file": {
  3043. "mtime": "0"
  3044. },
  3045. "csv_file_iqd_folder": {
  3046. "mtime": "0"
  3047. },
  3048. "duplicates": []
  3049. },
  3050. "loc_belege_lutz": {
  3051. "imr_file": {
  3052. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_lutz.imr",
  3053. "size": 102400,
  3054. "ctime": "2021-01-06T10:15:42",
  3055. "mtime": "2021-01-06T10:15:42",
  3056. "read": "J",
  3057. "write": "J",
  3058. "blocked": "N",
  3059. "process": ""
  3060. },
  3061. "iqd_file": {
  3062. "mtime": "0"
  3063. },
  3064. "csv_file": {
  3065. "mtime": "0"
  3066. },
  3067. "csv_file_iqd_folder": {
  3068. "mtime": "0"
  3069. },
  3070. "duplicates": []
  3071. },
  3072. "loc_belege_nw_gw_vk - kopie (3)": {
  3073. "imr_file": {
  3074. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk - kopie (3).imr",
  3075. "size": 154112,
  3076. "ctime": "2021-07-21T10:02:27",
  3077. "mtime": "2021-07-08T16:52:44",
  3078. "read": "J",
  3079. "write": "J",
  3080. "blocked": "N",
  3081. "process": ""
  3082. },
  3083. "iqd_file": {
  3084. "mtime": "0"
  3085. },
  3086. "csv_file": {
  3087. "mtime": "0"
  3088. },
  3089. "csv_file_iqd_folder": {
  3090. "mtime": "0"
  3091. },
  3092. "duplicates": []
  3093. },
  3094. "loc_belege_statistische_werte": {
  3095. "imr_file": {
  3096. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_statistische_werte.imr",
  3097. "size": 116736,
  3098. "ctime": "2018-05-25T10:24:10",
  3099. "mtime": "2018-05-25T10:24:10",
  3100. "read": "J",
  3101. "write": "J",
  3102. "blocked": "N",
  3103. "process": ""
  3104. },
  3105. "iqd_file": {
  3106. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_statistische_werte.iqd",
  3107. "size": 7325,
  3108. "ctime": "2018-05-25T10:24:10",
  3109. "mtime": "2018-05-25T10:24:10",
  3110. "read": "J",
  3111. "write": "J",
  3112. "blocked": "N",
  3113. "process": ""
  3114. },
  3115. "csv_file": {
  3116. "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_statistische_werte.csv",
  3117. "size": 10612921,
  3118. "ctime": "2018-06-12T16:15:14",
  3119. "mtime": "2018-06-12T16:15:14",
  3120. "read": "J",
  3121. "write": "J",
  3122. "blocked": "N",
  3123. "process": ""
  3124. },
  3125. "csv_file_iqd_folder": {
  3126. "mtime": "0"
  3127. },
  3128. "duplicates": []
  3129. },
  3130. "aftersales_rechnungen_neu": {
  3131. "imr_file": {
  3132. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_neu.imr",
  3133. "size": 159744,
  3134. "ctime": "2021-02-02T11:01:20",
  3135. "mtime": "2021-09-23T21:25:48",
  3136. "read": "J",
  3137. "write": "J",
  3138. "blocked": "N",
  3139. "process": ""
  3140. },
  3141. "iqd_file": {
  3142. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_neu.iqd",
  3143. "size": 17836,
  3144. "ctime": "2019-11-21T16:51:06",
  3145. "mtime": "2019-11-21T16:51:06",
  3146. "read": "J",
  3147. "write": "J",
  3148. "blocked": "N",
  3149. "process": ""
  3150. },
  3151. "csv_file": {
  3152. "filename": "c:\\globalcube\\system\\locosoft\\export\\aftersales_rechnungen_neu.csv",
  3153. "size": 227137033,
  3154. "ctime": "2022-06-03T04:06:01",
  3155. "mtime": "2022-06-03T04:06:45",
  3156. "read": "J",
  3157. "write": "J",
  3158. "blocked": "N",
  3159. "process": ""
  3160. },
  3161. "csv_file_iqd_folder": {
  3162. "mtime": "0"
  3163. },
  3164. "duplicates": []
  3165. },
  3166. "skr_absatzkanal": {
  3167. "imr_file": {
  3168. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_absatzkanal.imr",
  3169. "size": 65536,
  3170. "ctime": "2020-04-14T15:04:00",
  3171. "mtime": "2020-04-14T15:04:00",
  3172. "read": "J",
  3173. "write": "J",
  3174. "blocked": "N",
  3175. "process": ""
  3176. },
  3177. "iqd_file": {
  3178. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_absatzkanal.iqd",
  3179. "size": 918,
  3180. "ctime": "2018-05-25T10:18:16",
  3181. "mtime": "2018-05-25T10:18:16",
  3182. "read": "J",
  3183. "write": "J",
  3184. "blocked": "N",
  3185. "process": ""
  3186. },
  3187. "csv_file": {
  3188. "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_absatzkanal.csv",
  3189. "size": 3316,
  3190. "ctime": "2018-06-19T13:21:12",
  3191. "mtime": "2018-06-19T13:21:12",
  3192. "read": "J",
  3193. "write": "J",
  3194. "blocked": "N",
  3195. "process": ""
  3196. },
  3197. "csv_file_iqd_folder": {
  3198. "mtime": "0"
  3199. },
  3200. "duplicates": []
  3201. },
  3202. "loc_belege_nw_gw_vk": {
  3203. "imr_file": {
  3204. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk.imr",
  3205. "size": 160256,
  3206. "ctime": "2021-09-21T17:08:10",
  3207. "mtime": "2021-11-11T11:03:51",
  3208. "read": "J",
  3209. "write": "J",
  3210. "blocked": "N",
  3211. "process": ""
  3212. },
  3213. "iqd_file": {
  3214. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk.iqd",
  3215. "size": 28371,
  3216. "ctime": "2019-02-19T08:28:58",
  3217. "mtime": "2019-02-19T08:28:58",
  3218. "read": "J",
  3219. "write": "J",
  3220. "blocked": "N",
  3221. "process": ""
  3222. },
  3223. "csv_file": {
  3224. "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_nw_gw_vk.csv",
  3225. "size": 64619817,
  3226. "ctime": "2022-06-03T04:04:34",
  3227. "mtime": "2022-06-03T04:04:48",
  3228. "read": "J",
  3229. "write": "J",
  3230. "blocked": "N",
  3231. "process": ""
  3232. },
  3233. "csv_file_iqd_folder": {
  3234. "mtime": "0"
  3235. },
  3236. "duplicates": []
  3237. },
  3238. "current_date_prognose_gefiltert": {
  3239. "imr_file": {
  3240. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_gefiltert.imr",
  3241. "size": 41984,
  3242. "ctime": "2015-07-07T09:26:46",
  3243. "mtime": "2015-07-07T09:26:46",
  3244. "read": "J",
  3245. "write": "J",
  3246. "blocked": "N",
  3247. "process": ""
  3248. },
  3249. "iqd_file": {
  3250. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_gefiltert.iqd",
  3251. "size": 2022,
  3252. "ctime": "2015-07-07T09:26:44",
  3253. "mtime": "2015-07-07T09:26:44",
  3254. "read": "J",
  3255. "write": "J",
  3256. "blocked": "N",
  3257. "process": ""
  3258. },
  3259. "csv_file": {
  3260. "mtime": "0"
  3261. },
  3262. "csv_file_iqd_folder": {
  3263. "mtime": "0"
  3264. },
  3265. "duplicates": []
  3266. },
  3267. "op_aus_loc_belege_ohne_8520": {
  3268. "imr_file": {
  3269. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_ohne_8520.imr",
  3270. "size": 115712,
  3271. "ctime": "2020-05-07T16:43:30",
  3272. "mtime": "2021-11-11T10:58:53",
  3273. "read": "J",
  3274. "write": "J",
  3275. "blocked": "N",
  3276. "process": ""
  3277. },
  3278. "iqd_file": {
  3279. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_ohne_8520.iqd",
  3280. "size": 13074,
  3281. "ctime": "2019-11-29T14:46:48",
  3282. "mtime": "2019-11-29T14:46:48",
  3283. "read": "J",
  3284. "write": "J",
  3285. "blocked": "N",
  3286. "process": ""
  3287. },
  3288. "csv_file": {
  3289. "filename": "c:\\globalcube\\system\\locosoft\\export\\op_aus_loc_belege_ohne_8520.csv",
  3290. "size": 1255628,
  3291. "ctime": "2022-06-03T04:08:04",
  3292. "mtime": "2022-06-03T04:08:05",
  3293. "read": "J",
  3294. "write": "J",
  3295. "blocked": "N",
  3296. "process": ""
  3297. },
  3298. "csv_file_iqd_folder": {
  3299. "mtime": "0"
  3300. },
  3301. "duplicates": []
  3302. },
  3303. "zeit_abwesenheit": {
  3304. "imr_file": {
  3305. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_abwesenheit.imr",
  3306. "size": 79360,
  3307. "ctime": "2018-05-11T11:27:24",
  3308. "mtime": "2018-05-11T11:27:24",
  3309. "read": "J",
  3310. "write": "J",
  3311. "blocked": "N",
  3312. "process": ""
  3313. },
  3314. "iqd_file": {
  3315. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_abwesenheit.iqd",
  3316. "size": 2305,
  3317. "ctime": "2018-05-11T11:27:24",
  3318. "mtime": "2018-05-11T11:27:24",
  3319. "read": "J",
  3320. "write": "J",
  3321. "blocked": "N",
  3322. "process": ""
  3323. },
  3324. "csv_file": {
  3325. "mtime": "0"
  3326. },
  3327. "csv_file_iqd_folder": {
  3328. "mtime": "0"
  3329. },
  3330. "duplicates": []
  3331. },
  3332. "loc_belege_nw_gw_vk_stk_fibu_lutz": {
  3333. "imr_file": {
  3334. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu_lutz.imr",
  3335. "size": 155136,
  3336. "ctime": "2021-01-06T10:17:06",
  3337. "mtime": "2021-01-06T10:17:06",
  3338. "read": "J",
  3339. "write": "J",
  3340. "blocked": "N",
  3341. "process": ""
  3342. },
  3343. "iqd_file": {
  3344. "mtime": "0"
  3345. },
  3346. "csv_file": {
  3347. "mtime": "0"
  3348. },
  3349. "csv_file_iqd_folder": {
  3350. "mtime": "0"
  3351. },
  3352. "duplicates": []
  3353. },
  3354. "loc_belege_nw_gw_vk_sich_vor_invoice_date_zeichen": {
  3355. "imr_file": {
  3356. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_sich_vor_invoice_date_zeichen.imr",
  3357. "size": 171520,
  3358. "ctime": "2018-05-24T15:40:56",
  3359. "mtime": "2018-05-24T15:40:56",
  3360. "read": "J",
  3361. "write": "J",
  3362. "blocked": "N",
  3363. "process": ""
  3364. },
  3365. "iqd_file": {
  3366. "mtime": "0"
  3367. },
  3368. "csv_file": {
  3369. "mtime": "0"
  3370. },
  3371. "csv_file_iqd_folder": {
  3372. "mtime": "0"
  3373. },
  3374. "duplicates": []
  3375. },
  3376. "zeit_ben_std_lg_mit_subsidiary_aus_labours_und_nicht_aus_employee": {
  3377. "imr_file": {
  3378. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_ben_std_lg_mit_subsidiary_aus_labours_und_nicht_aus_employee.imr",
  3379. "size": 63488,
  3380. "ctime": "2020-04-22T09:26:24",
  3381. "mtime": "2020-04-22T09:26:24",
  3382. "read": "J",
  3383. "write": "J",
  3384. "blocked": "N",
  3385. "process": ""
  3386. },
  3387. "iqd_file": {
  3388. "mtime": "0"
  3389. },
  3390. "csv_file": {
  3391. "mtime": "0"
  3392. },
  3393. "csv_file_iqd_folder": {
  3394. "mtime": "0"
  3395. },
  3396. "duplicates": []
  3397. },
  3398. "zeit_stempelungen_neu - kopie (2)": {
  3399. "imr_file": {
  3400. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu - kopie (2).imr",
  3401. "size": 68608,
  3402. "ctime": "2021-07-08T13:16:21",
  3403. "mtime": "2021-03-17T11:03:46",
  3404. "read": "J",
  3405. "write": "J",
  3406. "blocked": "N",
  3407. "process": ""
  3408. },
  3409. "iqd_file": {
  3410. "mtime": "0"
  3411. },
  3412. "csv_file": {
  3413. "mtime": "0"
  3414. },
  3415. "csv_file_iqd_folder": {
  3416. "mtime": "0"
  3417. },
  3418. "duplicates": []
  3419. },
  3420. "loc_belege_nw_gw_vk_inv_date_neu": {
  3421. "imr_file": {
  3422. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_inv_date_neu.imr",
  3423. "size": 272896,
  3424. "ctime": "2018-06-05T16:46:32",
  3425. "mtime": "2018-06-05T16:46:32",
  3426. "read": "J",
  3427. "write": "J",
  3428. "blocked": "N",
  3429. "process": ""
  3430. },
  3431. "iqd_file": {
  3432. "mtime": "0"
  3433. },
  3434. "csv_file": {
  3435. "mtime": "0"
  3436. },
  3437. "csv_file_iqd_folder": {
  3438. "mtime": "0"
  3439. },
  3440. "duplicates": []
  3441. },
  3442. "loc_belege_nw_gw_vk_aus_dealer_vehicles": {
  3443. "imr_file": {
  3444. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_aus_dealer_vehicles.imr",
  3445. "size": 154112,
  3446. "ctime": "2020-04-27T10:14:42",
  3447. "mtime": "2021-09-21T16:24:57",
  3448. "read": "J",
  3449. "write": "J",
  3450. "blocked": "N",
  3451. "process": ""
  3452. },
  3453. "iqd_file": {
  3454. "mtime": "0"
  3455. },
  3456. "csv_file": {
  3457. "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_nw_gw_vk_aus_dealer_vehicles.csv",
  3458. "size": 4562619,
  3459. "ctime": "2021-09-21T08:19:19",
  3460. "mtime": "2021-09-21T16:24:52",
  3461. "read": "J",
  3462. "write": "J",
  3463. "blocked": "N",
  3464. "process": ""
  3465. },
  3466. "csv_file_iqd_folder": {
  3467. "mtime": "0"
  3468. },
  3469. "duplicates": []
  3470. },
  3471. "nw_gw_stk_auf_nw_gw_vk_cat": {
  3472. "imr_file": {
  3473. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\nw_gw_stk_auf_nw_gw_vk_cat.imr",
  3474. "size": 139776,
  3475. "ctime": "2017-07-14T11:01:38",
  3476. "mtime": "2017-07-14T11:01:38",
  3477. "read": "J",
  3478. "write": "J",
  3479. "blocked": "N",
  3480. "process": ""
  3481. },
  3482. "iqd_file": {
  3483. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\nw_gw_stk_auf_nw_gw_vk_cat.iqd",
  3484. "size": 13951,
  3485. "ctime": "2017-07-14T11:00:56",
  3486. "mtime": "2017-07-14T11:00:56",
  3487. "read": "J",
  3488. "write": "J",
  3489. "blocked": "N",
  3490. "process": ""
  3491. },
  3492. "csv_file": {
  3493. "mtime": "0"
  3494. },
  3495. "csv_file_iqd_folder": {
  3496. "mtime": "0"
  3497. },
  3498. "duplicates": []
  3499. },
  3500. "loc_belege - kopie": {
  3501. "imr_file": {
  3502. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege - kopie.imr",
  3503. "size": 98816,
  3504. "ctime": "2021-11-22T17:11:02",
  3505. "mtime": "2021-07-08T11:39:30",
  3506. "read": "J",
  3507. "write": "J",
  3508. "blocked": "N",
  3509. "process": ""
  3510. },
  3511. "iqd_file": {
  3512. "mtime": "0"
  3513. },
  3514. "csv_file": {
  3515. "mtime": "0"
  3516. },
  3517. "csv_file_iqd_folder": {
  3518. "mtime": "0"
  3519. },
  3520. "duplicates": []
  3521. },
  3522. "op_aus_ims": {
  3523. "imr_file": {
  3524. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_ims.imr",
  3525. "size": 154624,
  3526. "ctime": "2018-02-12T15:24:52",
  3527. "mtime": "2018-02-12T15:24:52",
  3528. "read": "J",
  3529. "write": "J",
  3530. "blocked": "N",
  3531. "process": ""
  3532. },
  3533. "iqd_file": {
  3534. "mtime": "0"
  3535. },
  3536. "csv_file": {
  3537. "mtime": "0"
  3538. },
  3539. "csv_file_iqd_folder": {
  3540. "mtime": "0"
  3541. },
  3542. "duplicates": []
  3543. },
  3544. "loc_belege_nw_gw_vk - kopie": {
  3545. "imr_file": {
  3546. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk - kopie.imr",
  3547. "size": 144384,
  3548. "ctime": "2020-12-16T17:35:40",
  3549. "mtime": "2021-03-16T17:26:44",
  3550. "read": "J",
  3551. "write": "J",
  3552. "blocked": "N",
  3553. "process": ""
  3554. },
  3555. "iqd_file": {
  3556. "mtime": "0"
  3557. },
  3558. "csv_file": {
  3559. "mtime": "0"
  3560. },
  3561. "csv_file_iqd_folder": {
  3562. "mtime": "0"
  3563. },
  3564. "duplicates": []
  3565. },
  3566. "op_aus_loc_belege": {
  3567. "imr_file": {
  3568. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege.imr",
  3569. "size": 121344,
  3570. "ctime": "2019-11-29T14:45:00",
  3571. "mtime": "2019-11-29T14:45:00",
  3572. "read": "J",
  3573. "write": "J",
  3574. "blocked": "N",
  3575. "process": ""
  3576. },
  3577. "iqd_file": {
  3578. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege.iqd",
  3579. "size": 11614,
  3580. "ctime": "2019-11-29T14:44:56",
  3581. "mtime": "2019-11-29T14:44:56",
  3582. "read": "J",
  3583. "write": "J",
  3584. "blocked": "N",
  3585. "process": ""
  3586. },
  3587. "csv_file": {
  3588. "mtime": "0"
  3589. },
  3590. "csv_file_iqd_folder": {
  3591. "mtime": "0"
  3592. },
  3593. "duplicates": []
  3594. },
  3595. "zeit_1": {
  3596. "imr_file": {
  3597. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_1.imr",
  3598. "size": 91136,
  3599. "ctime": "2017-05-23T14:57:58",
  3600. "mtime": "2017-05-23T14:57:58",
  3601. "read": "J",
  3602. "write": "J",
  3603. "blocked": "N",
  3604. "process": ""
  3605. },
  3606. "iqd_file": {
  3607. "mtime": "0"
  3608. },
  3609. "csv_file": {
  3610. "mtime": "0"
  3611. },
  3612. "csv_file_iqd_folder": {
  3613. "mtime": "0"
  3614. },
  3615. "duplicates": []
  3616. },
  3617. "loc_belege_nw_gw_vk_stk_fibu_ohne_kundenart_und_standort": {
  3618. "imr_file": {
  3619. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu_ohne_kundenart_und_standort.imr",
  3620. "size": 137216,
  3621. "ctime": "2020-11-24T15:52:24",
  3622. "mtime": "2020-11-24T15:52:24",
  3623. "read": "J",
  3624. "write": "J",
  3625. "blocked": "N",
  3626. "process": ""
  3627. },
  3628. "iqd_file": {
  3629. "mtime": "0"
  3630. },
  3631. "csv_file": {
  3632. "mtime": "0"
  3633. },
  3634. "csv_file_iqd_folder": {
  3635. "mtime": "0"
  3636. },
  3637. "duplicates": []
  3638. },
  3639. "skr_kostentr\u00e4ger": {
  3640. "imr_file": {
  3641. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_kostentr\u00e4ger.imr",
  3642. "size": 51712,
  3643. "ctime": "2020-04-14T15:04:52",
  3644. "mtime": "2020-04-14T15:04:52",
  3645. "read": "J",
  3646. "write": "J",
  3647. "blocked": "N",
  3648. "process": ""
  3649. },
  3650. "iqd_file": {
  3651. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_kostentr\u00e4ger.iqd",
  3652. "size": 1172,
  3653. "ctime": "2016-06-01T11:00:56",
  3654. "mtime": "2016-06-01T11:00:56",
  3655. "read": "J",
  3656. "write": "J",
  3657. "blocked": "N",
  3658. "process": ""
  3659. },
  3660. "csv_file": {
  3661. "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_kostentr\u00e4ger.csv",
  3662. "size": 5350,
  3663. "ctime": "2018-06-19T13:21:58",
  3664. "mtime": "2018-06-19T13:21:58",
  3665. "read": "J",
  3666. "write": "J",
  3667. "blocked": "N",
  3668. "process": ""
  3669. },
  3670. "csv_file_iqd_folder": {
  3671. "mtime": "0"
  3672. },
  3673. "duplicates": []
  3674. },
  3675. "loc_belege_mit_doc_no_im_text": {
  3676. "imr_file": {
  3677. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_mit_doc_no_im_text.imr",
  3678. "size": 98816,
  3679. "ctime": "2020-04-15T10:28:50",
  3680. "mtime": "2020-04-15T10:28:50",
  3681. "read": "J",
  3682. "write": "J",
  3683. "blocked": "N",
  3684. "process": ""
  3685. },
  3686. "iqd_file": {
  3687. "mtime": "0"
  3688. },
  3689. "csv_file": {
  3690. "mtime": "0"
  3691. },
  3692. "csv_file_iqd_folder": {
  3693. "mtime": "0"
  3694. },
  3695. "duplicates": []
  3696. },
  3697. "current_date_prognose_operativ": {
  3698. "imr_file": {
  3699. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_operativ.imr",
  3700. "size": 46592,
  3701. "ctime": "2015-07-07T09:27:48",
  3702. "mtime": "2015-07-07T09:27:48",
  3703. "read": "J",
  3704. "write": "J",
  3705. "blocked": "N",
  3706. "process": ""
  3707. },
  3708. "iqd_file": {
  3709. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_operativ.iqd",
  3710. "size": 2331,
  3711. "ctime": "2015-07-07T09:27:42",
  3712. "mtime": "2015-07-07T09:27:42",
  3713. "read": "J",
  3714. "write": "J",
  3715. "blocked": "N",
  3716. "process": ""
  3717. },
  3718. "csv_file": {
  3719. "mtime": "0"
  3720. },
  3721. "csv_file_iqd_folder": {
  3722. "mtime": "0"
  3723. },
  3724. "duplicates": []
  3725. },
  3726. "loc_belege_nw_gw_vk - kopie (2)": {
  3727. "imr_file": {
  3728. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk - kopie (2).imr",
  3729. "size": 156672,
  3730. "ctime": "2021-07-08T13:15:34",
  3731. "mtime": "2020-12-16T17:35:40",
  3732. "read": "J",
  3733. "write": "J",
  3734. "blocked": "N",
  3735. "process": ""
  3736. },
  3737. "iqd_file": {
  3738. "mtime": "0"
  3739. },
  3740. "csv_file": {
  3741. "mtime": "0"
  3742. },
  3743. "csv_file_iqd_folder": {
  3744. "mtime": "0"
  3745. },
  3746. "duplicates": []
  3747. },
  3748. "op_aus_loc_belege_8520": {
  3749. "imr_file": {
  3750. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_8520.imr",
  3751. "size": 52224,
  3752. "ctime": "2020-04-21T08:22:30",
  3753. "mtime": "2020-04-21T08:22:30",
  3754. "read": "J",
  3755. "write": "J",
  3756. "blocked": "N",
  3757. "process": ""
  3758. },
  3759. "iqd_file": {
  3760. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_8520.iqd",
  3761. "size": 1001,
  3762. "ctime": "2018-05-24T17:19:12",
  3763. "mtime": "2018-05-24T17:19:12",
  3764. "read": "J",
  3765. "write": "J",
  3766. "blocked": "N",
  3767. "process": ""
  3768. },
  3769. "csv_file": {
  3770. "filename": "c:\\globalcube\\system\\locosoft\\export\\op_aus_loc_belege_8520.csv",
  3771. "size": 187,
  3772. "ctime": "2022-06-03T04:08:03",
  3773. "mtime": "2022-06-03T04:08:03",
  3774. "read": "J",
  3775. "write": "J",
  3776. "blocked": "N",
  3777. "process": ""
  3778. },
  3779. "csv_file_iqd_folder": {
  3780. "mtime": "0"
  3781. },
  3782. "duplicates": []
  3783. },
  3784. "aftersales_rechnungen_verk_aw_final": {
  3785. "imr_file": {
  3786. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_verk_aw_final.imr",
  3787. "size": 74752,
  3788. "ctime": "2021-05-07T14:36:10",
  3789. "mtime": "2021-09-23T21:25:35",
  3790. "read": "J",
  3791. "write": "J",
  3792. "blocked": "N",
  3793. "process": ""
  3794. },
  3795. "iqd_file": {
  3796. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_verk_aw_final.iqd",
  3797. "size": 4878,
  3798. "ctime": "2018-06-13T11:52:02",
  3799. "mtime": "2018-06-13T11:52:02",
  3800. "read": "J",
  3801. "write": "J",
  3802. "blocked": "N",
  3803. "process": ""
  3804. },
  3805. "csv_file": {
  3806. "filename": "c:\\globalcube\\system\\locosoft\\export\\aftersales_rechnungen_verk_aw_final.csv",
  3807. "size": 39727443,
  3808. "ctime": "2022-06-03T04:07:04",
  3809. "mtime": "2022-06-03T04:07:08",
  3810. "read": "J",
  3811. "write": "J",
  3812. "blocked": "N",
  3813. "process": ""
  3814. },
  3815. "csv_file_iqd_folder": {
  3816. "mtime": "0"
  3817. },
  3818. "duplicates": []
  3819. },
  3820. "op_aus_loc_belege_deb_saldo_forderungsart_aus_rechnungsnummer": {
  3821. "imr_file": {
  3822. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_deb_saldo_forderungsart_aus_rechnungsnummer.imr",
  3823. "size": 110592,
  3824. "ctime": "2021-09-20T11:42:22",
  3825. "mtime": "2020-05-07T17:09:02",
  3826. "read": "J",
  3827. "write": "J",
  3828. "blocked": "N",
  3829. "process": ""
  3830. },
  3831. "iqd_file": {
  3832. "mtime": "0"
  3833. },
  3834. "csv_file": {
  3835. "mtime": "0"
  3836. },
  3837. "csv_file_iqd_folder": {
  3838. "mtime": "0"
  3839. },
  3840. "duplicates": []
  3841. },
  3842. "loc_belege_bilanz": {
  3843. "imr_file": {
  3844. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_bilanz.imr",
  3845. "size": 99840,
  3846. "ctime": "2020-04-28T12:00:28",
  3847. "mtime": "2020-04-28T12:00:28",
  3848. "read": "J",
  3849. "write": "J",
  3850. "blocked": "N",
  3851. "process": ""
  3852. },
  3853. "iqd_file": {
  3854. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_bilanz.iqd",
  3855. "size": 9375,
  3856. "ctime": "2018-05-25T10:22:18",
  3857. "mtime": "2018-05-25T10:22:18",
  3858. "read": "J",
  3859. "write": "J",
  3860. "blocked": "N",
  3861. "process": ""
  3862. },
  3863. "csv_file": {
  3864. "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_bilanz.csv",
  3865. "size": 1188,
  3866. "ctime": "2020-11-11T08:56:10",
  3867. "mtime": "2020-11-11T08:56:10",
  3868. "read": "J",
  3869. "write": "J",
  3870. "blocked": "N",
  3871. "process": ""
  3872. },
  3873. "csv_file_iqd_folder": {
  3874. "mtime": "0"
  3875. },
  3876. "duplicates": []
  3877. },
  3878. "offene_auftraege_ums_ben_aw - kopie": {
  3879. "imr_file": {
  3880. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_ums_ben_aw - kopie.imr",
  3881. "size": 79360,
  3882. "ctime": "2020-11-17T16:45:28",
  3883. "mtime": "2020-11-17T16:45:28",
  3884. "read": "J",
  3885. "write": "J",
  3886. "blocked": "N",
  3887. "process": ""
  3888. },
  3889. "iqd_file": {
  3890. "mtime": "0"
  3891. },
  3892. "csv_file": {
  3893. "mtime": "0"
  3894. },
  3895. "csv_file_iqd_folder": {
  3896. "mtime": "0"
  3897. },
  3898. "duplicates": []
  3899. },
  3900. "auftraege": {
  3901. "imr_file": {
  3902. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\auftraege.imr",
  3903. "size": 120832,
  3904. "ctime": "2017-05-22T15:13:00",
  3905. "mtime": "2017-05-22T15:13:00",
  3906. "read": "J",
  3907. "write": "J",
  3908. "blocked": "N",
  3909. "process": ""
  3910. },
  3911. "iqd_file": {
  3912. "mtime": "0"
  3913. },
  3914. "csv_file": {
  3915. "mtime": "0"
  3916. },
  3917. "csv_file_iqd_folder": {
  3918. "mtime": "0"
  3919. },
  3920. "duplicates": []
  3921. },
  3922. "skr_herkunft_kst": {
  3923. "imr_file": {
  3924. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_herkunft_kst.imr",
  3925. "size": 63488,
  3926. "ctime": "2020-04-08T11:25:48",
  3927. "mtime": "2020-04-08T11:25:48",
  3928. "read": "J",
  3929. "write": "J",
  3930. "blocked": "N",
  3931. "process": ""
  3932. },
  3933. "iqd_file": {
  3934. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_herkunft_kst.iqd",
  3935. "size": 1006,
  3936. "ctime": "2016-05-31T15:06:46",
  3937. "mtime": "2016-05-31T15:06:46",
  3938. "read": "J",
  3939. "write": "J",
  3940. "blocked": "N",
  3941. "process": ""
  3942. },
  3943. "csv_file": {
  3944. "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_herkunft_kst.csv",
  3945. "size": 2804,
  3946. "ctime": "2018-06-19T13:21:36",
  3947. "mtime": "2018-06-19T13:21:36",
  3948. "read": "J",
  3949. "write": "J",
  3950. "blocked": "N",
  3951. "process": ""
  3952. },
  3953. "csv_file_iqd_folder": {
  3954. "mtime": "0"
  3955. },
  3956. "duplicates": []
  3957. },
  3958. "op_aus_loc_belege_ohne_8520_mit_betriebesteuerung_invoices": {
  3959. "imr_file": {
  3960. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_ohne_8520_mit_betriebesteuerung_invoices.imr",
  3961. "size": 121344,
  3962. "ctime": "2019-11-29T14:46:52",
  3963. "mtime": "2019-11-29T14:46:52",
  3964. "read": "J",
  3965. "write": "J",
  3966. "blocked": "N",
  3967. "process": ""
  3968. },
  3969. "iqd_file": {
  3970. "mtime": "0"
  3971. },
  3972. "csv_file": {
  3973. "mtime": "0"
  3974. },
  3975. "csv_file_iqd_folder": {
  3976. "mtime": "0"
  3977. },
  3978. "duplicates": []
  3979. },
  3980. "kontenrahmen_fuer_gc_struct": {
  3981. "imr_file": {
  3982. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen_fuer_gc_struct.imr",
  3983. "size": 32256,
  3984. "ctime": "2021-01-18T17:14:56",
  3985. "mtime": "2021-01-18T17:14:56",
  3986. "read": "J",
  3987. "write": "J",
  3988. "blocked": "N",
  3989. "process": ""
  3990. },
  3991. "iqd_file": {
  3992. "mtime": "0"
  3993. },
  3994. "csv_file": {
  3995. "mtime": "0"
  3996. },
  3997. "csv_file_iqd_folder": {
  3998. "mtime": "0"
  3999. },
  4000. "duplicates": []
  4001. },
  4002. "current_date_fuer_ims": {
  4003. "imr_file": {
  4004. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_fuer_ims.imr",
  4005. "size": 52224,
  4006. "ctime": "2021-03-30T17:15:08",
  4007. "mtime": "2021-03-30T17:15:08",
  4008. "read": "J",
  4009. "write": "J",
  4010. "blocked": "N",
  4011. "process": ""
  4012. },
  4013. "iqd_file": {
  4014. "mtime": "0"
  4015. },
  4016. "csv_file": {
  4017. "mtime": "0"
  4018. },
  4019. "csv_file_iqd_folder": {
  4020. "mtime": "0"
  4021. },
  4022. "duplicates": []
  4023. },
  4024. "nw_gw_be_auf_nw_gw_bestand_cat_liegert": {
  4025. "imr_file": {
  4026. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat_liegert.imr",
  4027. "size": 175104,
  4028. "ctime": "2021-06-02T09:27:40",
  4029. "mtime": "2021-06-02T09:27:40",
  4030. "read": "J",
  4031. "write": "J",
  4032. "blocked": "N",
  4033. "process": ""
  4034. },
  4035. "iqd_file": {
  4036. "mtime": "0"
  4037. },
  4038. "csv_file": {
  4039. "mtime": "0"
  4040. },
  4041. "csv_file_iqd_folder": {
  4042. "mtime": "0"
  4043. },
  4044. "duplicates": []
  4045. },
  4046. "imvoice_no_order_no": {
  4047. "imr_file": {
  4048. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\imvoice_no_order_no.imr",
  4049. "size": 52736,
  4050. "ctime": "2020-11-11T10:24:00",
  4051. "mtime": "2021-07-08T10:17:09",
  4052. "read": "J",
  4053. "write": "J",
  4054. "blocked": "N",
  4055. "process": ""
  4056. },
  4057. "iqd_file": {
  4058. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\imvoice_no_order_no.iqd",
  4059. "size": 887,
  4060. "ctime": "2018-05-24T17:17:42",
  4061. "mtime": "2018-05-24T17:17:42",
  4062. "read": "J",
  4063. "write": "J",
  4064. "blocked": "N",
  4065. "process": ""
  4066. },
  4067. "csv_file": {
  4068. "mtime": "0"
  4069. },
  4070. "csv_file_iqd_folder": {
  4071. "mtime": "0"
  4072. },
  4073. "duplicates": []
  4074. },
  4075. "offene_auftraege_dg_anz_tage": {
  4076. "imr_file": {
  4077. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_dg_anz_tage.imr",
  4078. "size": 80896,
  4079. "ctime": "2022-01-06T09:21:05",
  4080. "mtime": "2022-01-06T09:21:05",
  4081. "read": "J",
  4082. "write": "J",
  4083. "blocked": "N",
  4084. "process": ""
  4085. },
  4086. "iqd_file": {
  4087. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_dg_anz_tage.iqd",
  4088. "size": 5689,
  4089. "ctime": "2019-11-21T16:53:38",
  4090. "mtime": "2019-11-21T16:53:38",
  4091. "read": "J",
  4092. "write": "J",
  4093. "blocked": "N",
  4094. "process": ""
  4095. },
  4096. "csv_file": {
  4097. "filename": "c:\\globalcube\\system\\locosoft\\export\\offene_auftraege_dg_anz_tage.csv",
  4098. "size": 3178260,
  4099. "ctime": "2022-06-03T04:07:58",
  4100. "mtime": "2022-06-03T04:07:59",
  4101. "read": "J",
  4102. "write": "J",
  4103. "blocked": "N",
  4104. "process": ""
  4105. },
  4106. "csv_file_iqd_folder": {
  4107. "mtime": "0"
  4108. },
  4109. "duplicates": [
  4110. "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\sich\\offene_auftraege_dg_anz_tage.imr"
  4111. ]
  4112. },
  4113. "employee_list": {
  4114. "imr_file": {
  4115. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\employee_list.imr",
  4116. "size": 62976,
  4117. "ctime": "2021-11-30T16:41:16",
  4118. "mtime": "2021-11-30T16:48:23",
  4119. "read": "J",
  4120. "write": "J",
  4121. "blocked": "N",
  4122. "process": ""
  4123. },
  4124. "iqd_file": {
  4125. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\employee_list.iqd",
  4126. "size": 1902,
  4127. "ctime": "2021-11-30T16:41:22",
  4128. "mtime": "2021-11-30T16:48:11",
  4129. "read": "J",
  4130. "write": "J",
  4131. "blocked": "N",
  4132. "process": ""
  4133. },
  4134. "csv_file": {
  4135. "filename": "c:\\globalcube\\system\\locosoft\\export\\employee_list.csv",
  4136. "size": 41599,
  4137. "ctime": "2021-11-30T16:40:16",
  4138. "mtime": "2021-11-30T16:48:22",
  4139. "read": "J",
  4140. "write": "J",
  4141. "blocked": "N",
  4142. "process": ""
  4143. },
  4144. "csv_file_iqd_folder": {
  4145. "mtime": "0"
  4146. },
  4147. "duplicates": []
  4148. },
  4149. "loc_belege_nw_gw_vk_fzg_mit_reference_vehicles": {
  4150. "imr_file": {
  4151. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_fzg_mit_reference_vehicles.imr",
  4152. "size": 175104,
  4153. "ctime": "2018-02-21T09:12:36",
  4154. "mtime": "2018-02-21T09:12:36",
  4155. "read": "J",
  4156. "write": "J",
  4157. "blocked": "N",
  4158. "process": ""
  4159. },
  4160. "iqd_file": {
  4161. "mtime": "0"
  4162. },
  4163. "csv_file": {
  4164. "mtime": "0"
  4165. },
  4166. "csv_file_iqd_folder": {
  4167. "mtime": "0"
  4168. },
  4169. "duplicates": []
  4170. },
  4171. "zeit_stempelungen_pausen_produktiv": {
  4172. "imr_file": {
  4173. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_pausen_produktiv.imr",
  4174. "size": 94720,
  4175. "ctime": "2020-11-17T16:52:08",
  4176. "mtime": "2022-01-13T13:16:31",
  4177. "read": "J",
  4178. "write": "J",
  4179. "blocked": "N",
  4180. "process": ""
  4181. },
  4182. "iqd_file": {
  4183. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_pausen_produktiv.iqd",
  4184. "size": 6764,
  4185. "ctime": "2019-11-29T14:13:46",
  4186. "mtime": "2019-11-29T14:13:46",
  4187. "read": "J",
  4188. "write": "J",
  4189. "blocked": "N",
  4190. "process": ""
  4191. },
  4192. "csv_file": {
  4193. "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_stempelungen_pausen_produktiv.csv",
  4194. "size": 41907678,
  4195. "ctime": "2022-06-03T04:08:29",
  4196. "mtime": "2022-06-03T04:08:36",
  4197. "read": "J",
  4198. "write": "J",
  4199. "blocked": "N",
  4200. "process": ""
  4201. },
  4202. "csv_file_iqd_folder": {
  4203. "mtime": "0"
  4204. },
  4205. "duplicates": []
  4206. },
  4207. "zeit_stempelungen_neu_auftrag_161387_nicht abgestempelt": {
  4208. "imr_file": {
  4209. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu_auftrag_161387_nicht abgestempelt.imr",
  4210. "size": 109568,
  4211. "ctime": "2018-02-02T17:07:24",
  4212. "mtime": "2018-02-02T17:07:24",
  4213. "read": "J",
  4214. "write": "J",
  4215. "blocked": "N",
  4216. "process": ""
  4217. },
  4218. "iqd_file": {
  4219. "mtime": "0"
  4220. },
  4221. "csv_file": {
  4222. "mtime": "0"
  4223. },
  4224. "csv_file_iqd_folder": {
  4225. "mtime": "0"
  4226. },
  4227. "duplicates": []
  4228. },
  4229. "kontenrahmen_gc_struct_skr": {
  4230. "imr_file": {
  4231. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen_gc_struct_skr.imr",
  4232. "size": 125440,
  4233. "ctime": "2021-02-02T11:01:12",
  4234. "mtime": "2021-02-02T11:01:12",
  4235. "read": "J",
  4236. "write": "J",
  4237. "blocked": "N",
  4238. "process": ""
  4239. },
  4240. "iqd_file": {
  4241. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen_gc_struct_skr.iqd",
  4242. "size": 5158,
  4243. "ctime": "2018-06-12T11:33:32",
  4244. "mtime": "2018-06-12T11:33:32",
  4245. "read": "J",
  4246. "write": "J",
  4247. "blocked": "N",
  4248. "process": ""
  4249. },
  4250. "csv_file": {
  4251. "filename": "c:\\globalcube\\system\\locosoft\\export\\kontenrahmen_gc_struct_skr.csv",
  4252. "size": 6052679,
  4253. "ctime": "2022-06-03T04:02:02",
  4254. "mtime": "2022-06-03T04:02:03",
  4255. "read": "J",
  4256. "write": "J",
  4257. "blocked": "N",
  4258. "process": ""
  4259. },
  4260. "csv_file_iqd_folder": {
  4261. "mtime": "0"
  4262. },
  4263. "duplicates": []
  4264. },
  4265. "loc_belege_nw_gw_vk_sich_vor_kost2_aus_datev": {
  4266. "imr_file": {
  4267. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_sich_vor_kost2_aus_datev.imr",
  4268. "size": 162816,
  4269. "ctime": "2020-11-30T17:22:58",
  4270. "mtime": "2020-11-30T17:22:58",
  4271. "read": "J",
  4272. "write": "J",
  4273. "blocked": "N",
  4274. "process": ""
  4275. },
  4276. "iqd_file": {
  4277. "mtime": "0"
  4278. },
  4279. "csv_file": {
  4280. "mtime": "0"
  4281. },
  4282. "csv_file_iqd_folder": {
  4283. "mtime": "0"
  4284. },
  4285. "duplicates": []
  4286. },
  4287. "aftersales_rechnungen_neu_mit_steuerung_kennzahlen": {
  4288. "imr_file": {
  4289. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_neu_mit_steuerung_kennzahlen.imr",
  4290. "size": 157184,
  4291. "ctime": "2020-04-21T08:02:36",
  4292. "mtime": "2020-04-21T08:02:36",
  4293. "read": "J",
  4294. "write": "J",
  4295. "blocked": "N",
  4296. "process": ""
  4297. },
  4298. "iqd_file": {
  4299. "mtime": "0"
  4300. },
  4301. "csv_file": {
  4302. "mtime": "0"
  4303. },
  4304. "csv_file_iqd_folder": {
  4305. "mtime": "0"
  4306. },
  4307. "duplicates": []
  4308. },
  4309. "zeit_stempelungen_neu - kopie": {
  4310. "imr_file": {
  4311. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu - kopie.imr",
  4312. "size": 68608,
  4313. "ctime": "2021-03-17T11:03:46",
  4314. "mtime": "2021-03-17T11:03:46",
  4315. "read": "J",
  4316. "write": "J",
  4317. "blocked": "N",
  4318. "process": ""
  4319. },
  4320. "iqd_file": {
  4321. "mtime": "0"
  4322. },
  4323. "csv_file": {
  4324. "mtime": "0"
  4325. },
  4326. "csv_file_iqd_folder": {
  4327. "mtime": "0"
  4328. },
  4329. "duplicates": []
  4330. },
  4331. "offene_auftraege_dg_anz_tage - kopie": {
  4332. "imr_file": {
  4333. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_dg_anz_tage - kopie.imr",
  4334. "size": 111616,
  4335. "ctime": "2020-12-17T11:53:32",
  4336. "mtime": "2020-12-17T11:53:32",
  4337. "read": "J",
  4338. "write": "J",
  4339. "blocked": "N",
  4340. "process": ""
  4341. },
  4342. "iqd_file": {
  4343. "mtime": "0"
  4344. },
  4345. "csv_file": {
  4346. "mtime": "0"
  4347. },
  4348. "csv_file_iqd_folder": {
  4349. "mtime": "0"
  4350. },
  4351. "duplicates": []
  4352. }
  4353. },
  4354. "cubes": {
  4355. "dashboard_gesamt": {
  4356. "deployed_mdc": {
  4357. "filename": "c:\\globalcube\\cubes\\dashboard_gesamt__20220603021405\\dashboard_gesamt.mdc",
  4358. "size": 35648902,
  4359. "ctime": "2022-06-03T04:14:05",
  4360. "mtime": "2022-06-03T04:14:04",
  4361. "read": "J",
  4362. "write": "J",
  4363. "blocked": "N",
  4364. "process": ""
  4365. },
  4366. "cube_out_mdc": {
  4367. "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\dashboard_gesamt.mdc",
  4368. "size": 35648902,
  4369. "ctime": "2021-08-04T17:11:43",
  4370. "mtime": "2022-06-03T04:14:04",
  4371. "read": "J",
  4372. "write": "J",
  4373. "blocked": "N",
  4374. "process": ""
  4375. },
  4376. "model": "dashboard_gesamt - kopie",
  4377. "errors": []
  4378. },
  4379. "f_belege": {
  4380. "deployed_mdc": {
  4381. "filename": "c:\\globalcube\\cubes\\f_belege__20220603020958\\f_belege.mdc",
  4382. "size": 100114034,
  4383. "ctime": "2022-06-03T04:09:57",
  4384. "mtime": "2022-06-03T04:09:57",
  4385. "read": "J",
  4386. "write": "J",
  4387. "blocked": "N",
  4388. "process": ""
  4389. },
  4390. "cube_out_mdc": {
  4391. "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\f_belege.mdc",
  4392. "size": 100114034,
  4393. "ctime": "2021-05-08T05:09:28",
  4394. "mtime": "2022-06-03T04:09:57",
  4395. "read": "J",
  4396. "write": "J",
  4397. "blocked": "N",
  4398. "process": ""
  4399. },
  4400. "model": "f_belege_skr",
  4401. "errors": []
  4402. },
  4403. "f_forderungen": {
  4404. "deployed_mdc": {
  4405. "filename": "c:\\globalcube\\cubes\\f_forderungen__20220603021007\\f_forderungen.mdc",
  4406. "size": 9263498,
  4407. "ctime": "2022-06-03T04:10:07",
  4408. "mtime": "2022-06-03T04:10:06",
  4409. "read": "J",
  4410. "write": "J",
  4411. "blocked": "N",
  4412. "process": ""
  4413. },
  4414. "cube_out_mdc": {
  4415. "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\f_forderungen.mdc",
  4416. "size": 9263498,
  4417. "ctime": "2021-07-09T10:29:49",
  4418. "mtime": "2022-06-03T04:10:06",
  4419. "read": "J",
  4420. "write": "J",
  4421. "blocked": "N",
  4422. "process": ""
  4423. },
  4424. "model": "f_forderungen",
  4425. "errors": []
  4426. },
  4427. "s_aftersales": {
  4428. "deployed_mdc": {
  4429. "filename": "c:\\globalcube\\cubes\\s_aftersales__20220603021202\\s_aftersales.mdc",
  4430. "size": 254497190,
  4431. "ctime": "2022-06-03T04:12:01",
  4432. "mtime": "2022-06-03T04:11:59",
  4433. "read": "J",
  4434. "write": "J",
  4435. "blocked": "N",
  4436. "process": ""
  4437. },
  4438. "cube_out_mdc": {
  4439. "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\s_aftersales.mdc",
  4440. "size": 254497190,
  4441. "ctime": "2021-05-08T05:10:44",
  4442. "mtime": "2022-06-03T04:11:59",
  4443. "read": "J",
  4444. "write": "J",
  4445. "blocked": "N",
  4446. "process": ""
  4447. },
  4448. "model": "s_aftersales",
  4449. "errors": []
  4450. },
  4451. "s_offene_auftraege": {
  4452. "deployed_mdc": {
  4453. "filename": "c:\\globalcube\\cubes\\s_offene_auftraege__20220603021215\\s_offene_auftraege.mdc",
  4454. "size": 2541298,
  4455. "ctime": "2022-06-03T04:12:15",
  4456. "mtime": "2022-06-03T04:12:14",
  4457. "read": "J",
  4458. "write": "J",
  4459. "blocked": "N",
  4460. "process": ""
  4461. },
  4462. "cube_out_mdc": {
  4463. "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\s_offene_auftraege.mdc",
  4464. "size": 2541298,
  4465. "ctime": "2021-05-08T05:11:04",
  4466. "mtime": "2022-06-03T04:12:14",
  4467. "read": "J",
  4468. "write": "J",
  4469. "blocked": "N",
  4470. "process": ""
  4471. },
  4472. "model": "s_offene_auftraege",
  4473. "errors": []
  4474. },
  4475. "v_bestand": {
  4476. "deployed_mdc": {
  4477. "filename": "c:\\globalcube\\cubes\\v_bestand__20220603021222\\v_bestand.mdc",
  4478. "size": 4702702,
  4479. "ctime": "2022-06-03T04:12:22",
  4480. "mtime": "2022-06-03T04:12:21",
  4481. "read": "J",
  4482. "write": "J",
  4483. "blocked": "N",
  4484. "process": ""
  4485. },
  4486. "cube_out_mdc": {
  4487. "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\v_bestand.mdc",
  4488. "size": 4702702,
  4489. "ctime": "2021-05-08T05:11:14",
  4490. "mtime": "2022-06-03T04:12:21",
  4491. "read": "J",
  4492. "write": "J",
  4493. "blocked": "N",
  4494. "process": ""
  4495. },
  4496. "model": "v_bestand",
  4497. "errors": []
  4498. },
  4499. "v_verkauf": {
  4500. "deployed_mdc": {
  4501. "filename": "c:\\globalcube\\cubes\\v_verkauf__20220603021255\\v_verkauf.mdc",
  4502. "size": 94314054,
  4503. "ctime": "2022-06-03T04:12:54",
  4504. "mtime": "2022-06-03T04:12:53",
  4505. "read": "J",
  4506. "write": "J",
  4507. "blocked": "N",
  4508. "process": ""
  4509. },
  4510. "cube_out_mdc": {
  4511. "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\v_verkauf.mdc",
  4512. "size": 94314054,
  4513. "ctime": "2021-05-08T05:11:32",
  4514. "mtime": "2022-06-03T04:12:53",
  4515. "read": "J",
  4516. "write": "J",
  4517. "blocked": "N",
  4518. "process": ""
  4519. },
  4520. "model": "v_verkauf_dealer_vehicles",
  4521. "errors": []
  4522. },
  4523. "z_monteure": {
  4524. "deployed_mdc": {
  4525. "filename": "c:\\globalcube\\cubes\\z_monteure__20220603021320\\z_monteure.mdc",
  4526. "size": 56724094,
  4527. "ctime": "2022-06-03T04:13:20",
  4528. "mtime": "2022-06-03T04:13:19",
  4529. "read": "J",
  4530. "write": "J",
  4531. "blocked": "N",
  4532. "process": ""
  4533. },
  4534. "cube_out_mdc": {
  4535. "filename": "c:\\globalcube\\system\\locosoft\\cube_out\\z_monteure.mdc",
  4536. "size": 56724094,
  4537. "ctime": "2021-05-08T05:12:02",
  4538. "mtime": "2022-06-03T04:13:19",
  4539. "read": "J",
  4540. "write": "J",
  4541. "blocked": "N",
  4542. "process": ""
  4543. },
  4544. "model": "z_monteure_mit_pause",
  4545. "errors": []
  4546. }
  4547. }
  4548. }