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": 112167,
  783. "TotalSpaceKB": 47432,
  784. "TotalSpaceMB": 46.32,
  785. "UsedSpaceKB": 46128,
  786. "UsedSpaceMB": 45.05,
  787. "UnusedSpaceKB": 1304,
  788. "UnusedSpaceMB": 1.27
  789. },
  790. "aftersales_rechnungen_neu": {
  791. "DatabaseName": "GC",
  792. "SchemaName": "locosoft",
  793. "TableName": "Aftersales_Rechnungen_neu",
  794. "RowCounts": 250113,
  795. "TotalSpaceKB": 293192,
  796. "TotalSpaceMB": 286.32,
  797. "UsedSpaceKB": 287176,
  798. "UsedSpaceMB": 280.45,
  799. "UnusedSpaceKB": 6016,
  800. "UnusedSpaceMB": 5.88
  801. },
  802. "aftersales_rechnungen_verk_aw_final": {
  803. "DatabaseName": "GC",
  804. "SchemaName": "locosoft",
  805. "TableName": "Aftersales_Rechnungen_verk_AW_final",
  806. "RowCounts": 114529,
  807. "TotalSpaceKB": 44104,
  808. "TotalSpaceMB": 43.07,
  809. "UsedSpaceKB": 43168,
  810. "UsedSpaceMB": 42.16,
  811. "UnusedSpaceKB": 936,
  812. "UnusedSpaceMB": 0.91
  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": 364762,
  831. "TotalSpaceKB": 203464,
  832. "TotalSpaceMB": 198.7,
  833. "UsedSpaceKB": 197080,
  834. "UsedSpaceMB": 192.46,
  835. "UnusedSpaceKB": 6384,
  836. "UnusedSpaceMB": 6.23
  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": 55694,
  855. "TotalSpaceKB": 85704,
  856. "TotalSpaceMB": 83.7,
  857. "UsedSpaceKB": 83704,
  858. "UsedSpaceMB": 81.74,
  859. "UnusedSpaceKB": 2000,
  860. "UnusedSpaceMB": 1.95
  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": 6601,
  867. "TotalSpaceKB": 11848,
  868. "TotalSpaceMB": 11.57,
  869. "UsedSpaceKB": 11592,
  870. "UsedSpaceMB": 11.32,
  871. "UnusedSpaceKB": 256,
  872. "UnusedSpaceMB": 0.25
  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": 908,
  891. "TotalSpaceKB": 904,
  892. "TotalSpaceMB": 0.88,
  893. "UsedSpaceKB": 896,
  894. "UsedSpaceMB": 0.88,
  895. "UnusedSpaceKB": 8,
  896. "UnusedSpaceMB": 0.01
  897. },
  898. "offene_auftraege_dg_anz_tage": {
  899. "DatabaseName": "GC",
  900. "SchemaName": "locosoft",
  901. "TableName": "offene_Auftraege_DG_Anz_Tage",
  902. "RowCounts": 6819,
  903. "TotalSpaceKB": 3400,
  904. "TotalSpaceMB": 3.32,
  905. "UsedSpaceKB": 3336,
  906. "UsedSpaceMB": 3.26,
  907. "UnusedSpaceKB": 64,
  908. "UnusedSpaceMB": 0.06
  909. },
  910. "offene_auftraege_teile": {
  911. "DatabaseName": "GC",
  912. "SchemaName": "locosoft",
  913. "TableName": "offene_Auftraege_Teile",
  914. "RowCounts": 3938,
  915. "TotalSpaceKB": 2056,
  916. "TotalSpaceMB": 2.01,
  917. "UsedSpaceKB": 1984,
  918. "UsedSpaceMB": 1.94,
  919. "UnusedSpaceKB": 72,
  920. "UnusedSpaceMB": 0.07
  921. },
  922. "offene_auftraege_ums_ben_aw": {
  923. "DatabaseName": "GC",
  924. "SchemaName": "locosoft",
  925. "TableName": "offene_Auftraege_Ums_ben_AW",
  926. "RowCounts": 6819,
  927. "TotalSpaceKB": 3848,
  928. "TotalSpaceMB": 3.76,
  929. "UsedSpaceKB": 3648,
  930. "UsedSpaceMB": 3.56,
  931. "UnusedSpaceKB": 200,
  932. "UnusedSpaceMB": 0.2
  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": 1968,
  951. "TotalSpaceKB": 1288,
  952. "TotalSpaceMB": 1.26,
  953. "UsedSpaceKB": 1248,
  954. "UsedSpaceMB": 1.22,
  955. "UnusedSpaceKB": 40,
  956. "UnusedSpaceMB": 0.04
  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": 1968,
  975. "TotalSpaceKB": 1288,
  976. "TotalSpaceMB": 1.26,
  977. "UsedSpaceKB": 1248,
  978. "UsedSpaceMB": 1.22,
  979. "UnusedSpaceKB": 40,
  980. "UnusedSpaceMB": 0.04
  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": 18288,
  1071. "TotalSpaceKB": 5832,
  1072. "TotalSpaceMB": 5.7,
  1073. "UsedSpaceKB": 5704,
  1074. "UsedSpaceMB": 5.57,
  1075. "UnusedSpaceKB": 128,
  1076. "UnusedSpaceMB": 0.13
  1077. },
  1078. "zeit_ben_std_lg": {
  1079. "DatabaseName": "GC",
  1080. "SchemaName": "locosoft",
  1081. "TableName": "Zeit_ben_Std_LG",
  1082. "RowCounts": 56049,
  1083. "TotalSpaceKB": 10248,
  1084. "TotalSpaceMB": 10.01,
  1085. "UsedSpaceKB": 10200,
  1086. "UsedSpaceMB": 9.96,
  1087. "UnusedSpaceKB": 48,
  1088. "UnusedSpaceMB": 0.05
  1089. },
  1090. "zeit_stempelungen_neu": {
  1091. "DatabaseName": "GC",
  1092. "SchemaName": "locosoft",
  1093. "TableName": "Zeit_Stempelungen_neu",
  1094. "RowCounts": 138767,
  1095. "TotalSpaceKB": 37128,
  1096. "TotalSpaceMB": 36.26,
  1097. "UsedSpaceKB": 36152,
  1098. "UsedSpaceMB": 35.3,
  1099. "UnusedSpaceKB": 976,
  1100. "UnusedSpaceMB": 0.95
  1101. },
  1102. "zeit_stempelungen_pausen": {
  1103. "DatabaseName": "GC",
  1104. "SchemaName": "locosoft",
  1105. "TableName": "Zeit_Stempelungen_Pausen",
  1106. "RowCounts": 85079,
  1107. "TotalSpaceKB": 36424,
  1108. "TotalSpaceMB": 35.57,
  1109. "UsedSpaceKB": 35920,
  1110. "UsedSpaceMB": 35.08,
  1111. "UnusedSpaceKB": 504,
  1112. "UnusedSpaceMB": 0.49
  1113. },
  1114. "zeit_stempelungen_pausen_produktiv": {
  1115. "DatabaseName": "GC",
  1116. "SchemaName": "locosoft",
  1117. "TableName": "Zeit_Stempelungen_Pausen_produktiv",
  1118. "RowCounts": 100895,
  1119. "TotalSpaceKB": 45512,
  1120. "TotalSpaceMB": 44.45,
  1121. "UsedSpaceKB": 45160,
  1122. "UsedSpaceMB": 44.1,
  1123. "UnusedSpaceKB": 352,
  1124. "UnusedSpaceMB": 0.34
  1125. },
  1126. "zeit_verk_std": {
  1127. "DatabaseName": "GC",
  1128. "SchemaName": "locosoft",
  1129. "TableName": "Zeit_verk_Std",
  1130. "RowCounts": 122894,
  1131. "TotalSpaceKB": 34056,
  1132. "TotalSpaceMB": 33.26,
  1133. "UsedSpaceKB": 33168,
  1134. "UsedSpaceMB": 32.39,
  1135. "UnusedSpaceKB": 888,
  1136. "UnusedSpaceMB": 0.87
  1137. }
  1138. },
  1139. "datasources": {
  1140. "skr_marke": {
  1141. "imr_file": {
  1142. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_marke.imr",
  1143. "size": 62976,
  1144. "ctime": "2020-04-08T11:27:36",
  1145. "mtime": "2020-04-08T11:27:36",
  1146. "read": "J",
  1147. "write": "J",
  1148. "blocked": "N",
  1149. "process": ""
  1150. },
  1151. "iqd_file": {
  1152. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_marke.iqd",
  1153. "size": 736,
  1154. "ctime": "2016-06-01T10:54:58",
  1155. "mtime": "2016-06-01T10:54:58",
  1156. "read": "J",
  1157. "write": "J",
  1158. "blocked": "N",
  1159. "process": ""
  1160. },
  1161. "csv_file": {
  1162. "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_marke.csv",
  1163. "size": 354,
  1164. "ctime": "2018-06-19T13:22:18",
  1165. "mtime": "2018-06-19T13:22:18",
  1166. "read": "J",
  1167. "write": "J",
  1168. "blocked": "N",
  1169. "process": ""
  1170. },
  1171. "csv_file_iqd_folder": {
  1172. "mtime": "0"
  1173. },
  1174. "duplicates": []
  1175. },
  1176. "op_aus_loc_belege_nur_8520": {
  1177. "imr_file": {
  1178. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_nur_8520.imr",
  1179. "size": 111616,
  1180. "ctime": "2020-05-07T16:44:10",
  1181. "mtime": "2020-05-07T16:44:10",
  1182. "read": "J",
  1183. "write": "J",
  1184. "blocked": "N",
  1185. "process": ""
  1186. },
  1187. "iqd_file": {
  1188. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_nur_8520.iqd",
  1189. "size": 11281,
  1190. "ctime": "2019-11-29T14:46:10",
  1191. "mtime": "2019-11-29T14:46:10",
  1192. "read": "J",
  1193. "write": "J",
  1194. "blocked": "N",
  1195. "process": ""
  1196. },
  1197. "csv_file": {
  1198. "filename": "c:\\globalcube\\system\\locosoft\\export\\op_aus_loc_belege_nur_8520.csv",
  1199. "size": 1699,
  1200. "ctime": "2022-07-08T11:18:53",
  1201. "mtime": "2022-07-08T11:18:53",
  1202. "read": "J",
  1203. "write": "J",
  1204. "blocked": "N",
  1205. "process": ""
  1206. },
  1207. "csv_file_iqd_folder": {
  1208. "mtime": "0"
  1209. },
  1210. "duplicates": []
  1211. },
  1212. "skr_kostentr\u00e4ger": {
  1213. "imr_file": {
  1214. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_kostentr\u00e4ger.imr",
  1215. "size": 51712,
  1216. "ctime": "2020-04-14T15:04:52",
  1217. "mtime": "2020-04-14T15:04:52",
  1218. "read": "J",
  1219. "write": "J",
  1220. "blocked": "N",
  1221. "process": ""
  1222. },
  1223. "iqd_file": {
  1224. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_kostentr\u00e4ger.iqd",
  1225. "size": 1172,
  1226. "ctime": "2016-06-01T11:00:56",
  1227. "mtime": "2016-06-01T11:00:56",
  1228. "read": "J",
  1229. "write": "J",
  1230. "blocked": "N",
  1231. "process": ""
  1232. },
  1233. "csv_file": {
  1234. "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_kostentr\u00e4ger.csv",
  1235. "size": 5350,
  1236. "ctime": "2018-06-19T13:21:58",
  1237. "mtime": "2018-06-19T13:21:58",
  1238. "read": "J",
  1239. "write": "J",
  1240. "blocked": "N",
  1241. "process": ""
  1242. },
  1243. "csv_file_iqd_folder": {
  1244. "mtime": "0"
  1245. },
  1246. "duplicates": []
  1247. },
  1248. "zeit_sollzeit": {
  1249. "imr_file": {
  1250. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_sollzeit.imr",
  1251. "size": 55808,
  1252. "ctime": "2021-03-31T21:46:12",
  1253. "mtime": "2021-03-31T21:46:12",
  1254. "read": "J",
  1255. "write": "J",
  1256. "blocked": "N",
  1257. "process": ""
  1258. },
  1259. "iqd_file": {
  1260. "mtime": "0"
  1261. },
  1262. "csv_file": {
  1263. "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_sollzeit.csv",
  1264. "size": 1871284,
  1265. "ctime": "2021-05-08T05:08:16",
  1266. "mtime": "2021-05-08T05:08:16",
  1267. "read": "J",
  1268. "write": "J",
  1269. "blocked": "N",
  1270. "process": ""
  1271. },
  1272. "csv_file_iqd_folder": {
  1273. "mtime": "0"
  1274. },
  1275. "duplicates": []
  1276. },
  1277. "zeit_stempelungen_neu - kopie (2)": {
  1278. "imr_file": {
  1279. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu - kopie (2).imr",
  1280. "size": 68608,
  1281. "ctime": "2021-07-08T13:16:21",
  1282. "mtime": "2021-03-17T11:03:46",
  1283. "read": "J",
  1284. "write": "J",
  1285. "blocked": "N",
  1286. "process": ""
  1287. },
  1288. "iqd_file": {
  1289. "mtime": "0"
  1290. },
  1291. "csv_file": {
  1292. "mtime": "0"
  1293. },
  1294. "csv_file_iqd_folder": {
  1295. "mtime": "0"
  1296. },
  1297. "duplicates": []
  1298. },
  1299. "loc_belege_nw_gw_vk_inv_date_neu": {
  1300. "imr_file": {
  1301. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_inv_date_neu.imr",
  1302. "size": 272896,
  1303. "ctime": "2018-06-05T16:46:32",
  1304. "mtime": "2018-06-05T16:46:32",
  1305. "read": "J",
  1306. "write": "J",
  1307. "blocked": "N",
  1308. "process": ""
  1309. },
  1310. "iqd_file": {
  1311. "mtime": "0"
  1312. },
  1313. "csv_file": {
  1314. "mtime": "0"
  1315. },
  1316. "csv_file_iqd_folder": {
  1317. "mtime": "0"
  1318. },
  1319. "duplicates": []
  1320. },
  1321. "skr_absatzkanal": {
  1322. "imr_file": {
  1323. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_absatzkanal.imr",
  1324. "size": 65536,
  1325. "ctime": "2020-04-14T15:04:00",
  1326. "mtime": "2020-04-14T15:04:00",
  1327. "read": "J",
  1328. "write": "J",
  1329. "blocked": "N",
  1330. "process": ""
  1331. },
  1332. "iqd_file": {
  1333. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_absatzkanal.iqd",
  1334. "size": 918,
  1335. "ctime": "2018-05-25T10:18:16",
  1336. "mtime": "2018-05-25T10:18:16",
  1337. "read": "J",
  1338. "write": "J",
  1339. "blocked": "N",
  1340. "process": ""
  1341. },
  1342. "csv_file": {
  1343. "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_absatzkanal.csv",
  1344. "size": 3316,
  1345. "ctime": "2018-06-19T13:21:12",
  1346. "mtime": "2018-06-19T13:21:12",
  1347. "read": "J",
  1348. "write": "J",
  1349. "blocked": "N",
  1350. "process": ""
  1351. },
  1352. "csv_file_iqd_folder": {
  1353. "mtime": "0"
  1354. },
  1355. "duplicates": []
  1356. },
  1357. "loc_belege_nw_gw_vk_liegert - kopie": {
  1358. "imr_file": {
  1359. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_liegert - kopie.imr",
  1360. "size": 160256,
  1361. "ctime": "2021-09-21T17:00:49",
  1362. "mtime": "2021-09-21T16:59:56",
  1363. "read": "J",
  1364. "write": "J",
  1365. "blocked": "N",
  1366. "process": ""
  1367. },
  1368. "iqd_file": {
  1369. "mtime": "0"
  1370. },
  1371. "csv_file": {
  1372. "mtime": "0"
  1373. },
  1374. "csv_file_iqd_folder": {
  1375. "mtime": "0"
  1376. },
  1377. "duplicates": []
  1378. },
  1379. "nw_gw_be_ohne_fibu": {
  1380. "imr_file": {
  1381. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_ohne_fibu.imr",
  1382. "size": 144384,
  1383. "ctime": "2021-05-06T21:29:42",
  1384. "mtime": "2021-05-06T21:29:42",
  1385. "read": "J",
  1386. "write": "J",
  1387. "blocked": "N",
  1388. "process": ""
  1389. },
  1390. "iqd_file": {
  1391. "mtime": "0"
  1392. },
  1393. "csv_file": {
  1394. "filename": "c:\\globalcube\\system\\locosoft\\export\\nw_gw_be_ohne_fibu.csv",
  1395. "size": 90239,
  1396. "ctime": "2021-05-06T20:25:30",
  1397. "mtime": "2021-05-06T20:25:30",
  1398. "read": "J",
  1399. "write": "J",
  1400. "blocked": "N",
  1401. "process": ""
  1402. },
  1403. "csv_file_iqd_folder": {
  1404. "mtime": "0"
  1405. },
  1406. "duplicates": []
  1407. },
  1408. "vehicles_postgres_direkt": {
  1409. "imr_file": {
  1410. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\vehicles_postgres_direkt.imr",
  1411. "size": 90112,
  1412. "ctime": "2020-11-12T09:10:10",
  1413. "mtime": "2020-11-12T09:10:10",
  1414. "read": "J",
  1415. "write": "J",
  1416. "blocked": "N",
  1417. "process": ""
  1418. },
  1419. "iqd_file": {
  1420. "mtime": "0"
  1421. },
  1422. "csv_file": {
  1423. "filename": "c:\\globalcube\\system\\locosoft\\export\\vehicles_postgres_direkt.csv",
  1424. "size": 3700023,
  1425. "ctime": "2020-11-12T09:10:30",
  1426. "mtime": "2020-11-12T09:10:30",
  1427. "read": "J",
  1428. "write": "J",
  1429. "blocked": "N",
  1430. "process": ""
  1431. },
  1432. "csv_file_iqd_folder": {
  1433. "mtime": "0"
  1434. },
  1435. "duplicates": []
  1436. },
  1437. "zeit_abwesenheit_neu_serviceberater": {
  1438. "imr_file": {
  1439. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_abwesenheit_neu_serviceberater.imr",
  1440. "size": 74240,
  1441. "ctime": "2021-11-23T11:03:47",
  1442. "mtime": "2021-11-23T11:03:48",
  1443. "read": "J",
  1444. "write": "J",
  1445. "blocked": "N",
  1446. "process": ""
  1447. },
  1448. "iqd_file": {
  1449. "mtime": "0"
  1450. },
  1451. "csv_file": {
  1452. "mtime": "0"
  1453. },
  1454. "csv_file_iqd_folder": {
  1455. "mtime": "0"
  1456. },
  1457. "duplicates": []
  1458. },
  1459. "op_aus_loc_belege_nur_8520_mit_betriebesteuerung_invoices": {
  1460. "imr_file": {
  1461. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_nur_8520_mit_betriebesteuerung_invoices.imr",
  1462. "size": 121856,
  1463. "ctime": "2018-05-24T15:49:26",
  1464. "mtime": "2018-05-24T15:49:26",
  1465. "read": "J",
  1466. "write": "J",
  1467. "blocked": "N",
  1468. "process": ""
  1469. },
  1470. "iqd_file": {
  1471. "mtime": "0"
  1472. },
  1473. "csv_file": {
  1474. "mtime": "0"
  1475. },
  1476. "csv_file_iqd_folder": {
  1477. "mtime": "0"
  1478. },
  1479. "duplicates": []
  1480. },
  1481. "zeit_1": {
  1482. "imr_file": {
  1483. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_1.imr",
  1484. "size": 91136,
  1485. "ctime": "2017-05-23T14:57:58",
  1486. "mtime": "2017-05-23T14:57:58",
  1487. "read": "J",
  1488. "write": "J",
  1489. "blocked": "N",
  1490. "process": ""
  1491. },
  1492. "iqd_file": {
  1493. "mtime": "0"
  1494. },
  1495. "csv_file": {
  1496. "mtime": "0"
  1497. },
  1498. "csv_file_iqd_folder": {
  1499. "mtime": "0"
  1500. },
  1501. "duplicates": []
  1502. },
  1503. "current_date_fuer_ims": {
  1504. "imr_file": {
  1505. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_fuer_ims.imr",
  1506. "size": 52224,
  1507. "ctime": "2021-03-30T17:15:08",
  1508. "mtime": "2021-03-30T17:15:08",
  1509. "read": "J",
  1510. "write": "J",
  1511. "blocked": "N",
  1512. "process": ""
  1513. },
  1514. "iqd_file": {
  1515. "mtime": "0"
  1516. },
  1517. "csv_file": {
  1518. "mtime": "0"
  1519. },
  1520. "csv_file_iqd_folder": {
  1521. "mtime": "0"
  1522. },
  1523. "duplicates": []
  1524. },
  1525. "nw_gw_be_auf_nw_gw_bestand_cat": {
  1526. "imr_file": {
  1527. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat.imr",
  1528. "size": 176128,
  1529. "ctime": "2021-06-02T09:27:40",
  1530. "mtime": "2021-09-22T11:54:10",
  1531. "read": "J",
  1532. "write": "J",
  1533. "blocked": "N",
  1534. "process": ""
  1535. },
  1536. "iqd_file": {
  1537. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat.iqd",
  1538. "size": 21821,
  1539. "ctime": "2018-06-05T18:11:10",
  1540. "mtime": "2018-06-05T18:11:10",
  1541. "read": "J",
  1542. "write": "J",
  1543. "blocked": "N",
  1544. "process": ""
  1545. },
  1546. "csv_file": {
  1547. "filename": "c:\\globalcube\\system\\locosoft\\export\\nw_gw_be_auf_nw_gw_bestand_cat.csv",
  1548. "size": 795420,
  1549. "ctime": "2022-07-08T11:15:17",
  1550. "mtime": "2022-07-08T11:15:17",
  1551. "read": "J",
  1552. "write": "J",
  1553. "blocked": "N",
  1554. "process": ""
  1555. },
  1556. "csv_file_iqd_folder": {
  1557. "mtime": "0"
  1558. },
  1559. "duplicates": []
  1560. },
  1561. "imvoice_no_order_no": {
  1562. "imr_file": {
  1563. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\imvoice_no_order_no.imr",
  1564. "size": 52736,
  1565. "ctime": "2020-11-11T10:24:00",
  1566. "mtime": "2021-07-08T10:17:09",
  1567. "read": "J",
  1568. "write": "J",
  1569. "blocked": "N",
  1570. "process": ""
  1571. },
  1572. "iqd_file": {
  1573. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\imvoice_no_order_no.iqd",
  1574. "size": 887,
  1575. "ctime": "2018-05-24T17:17:42",
  1576. "mtime": "2018-05-24T17:17:42",
  1577. "read": "J",
  1578. "write": "J",
  1579. "blocked": "N",
  1580. "process": ""
  1581. },
  1582. "csv_file": {
  1583. "mtime": "0"
  1584. },
  1585. "csv_file_iqd_folder": {
  1586. "mtime": "0"
  1587. },
  1588. "duplicates": []
  1589. },
  1590. "zeit_abwesenheit_neu": {
  1591. "imr_file": {
  1592. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_abwesenheit_neu.imr",
  1593. "size": 79872,
  1594. "ctime": "2020-11-17T16:49:36",
  1595. "mtime": "2022-01-13T11:46:58",
  1596. "read": "J",
  1597. "write": "J",
  1598. "blocked": "N",
  1599. "process": ""
  1600. },
  1601. "iqd_file": {
  1602. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_abwesenheit_neu.iqd",
  1603. "size": 4176,
  1604. "ctime": "2019-11-29T14:14:38",
  1605. "mtime": "2019-11-29T14:14:38",
  1606. "read": "J",
  1607. "write": "J",
  1608. "blocked": "N",
  1609. "process": ""
  1610. },
  1611. "csv_file": {
  1612. "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_abwesenheit_neu.csv",
  1613. "size": 5500836,
  1614. "ctime": "2022-07-08T11:19:33",
  1615. "mtime": "2022-07-08T11:19:34",
  1616. "read": "J",
  1617. "write": "J",
  1618. "blocked": "N",
  1619. "process": ""
  1620. },
  1621. "csv_file_iqd_folder": {
  1622. "mtime": "0"
  1623. },
  1624. "duplicates": []
  1625. },
  1626. "offene_auftraege_dg_anz_tage - kopie": {
  1627. "imr_file": {
  1628. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_dg_anz_tage - kopie.imr",
  1629. "size": 111616,
  1630. "ctime": "2020-12-17T11:53:32",
  1631. "mtime": "2020-12-17T11:53:32",
  1632. "read": "J",
  1633. "write": "J",
  1634. "blocked": "N",
  1635. "process": ""
  1636. },
  1637. "iqd_file": {
  1638. "mtime": "0"
  1639. },
  1640. "csv_file": {
  1641. "mtime": "0"
  1642. },
  1643. "csv_file_iqd_folder": {
  1644. "mtime": "0"
  1645. },
  1646. "duplicates": []
  1647. },
  1648. "loc_belege_nw_gw_vk_aus_fibu": {
  1649. "imr_file": {
  1650. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_aus_fibu.imr",
  1651. "size": 151552,
  1652. "ctime": "2021-03-11T15:29:32",
  1653. "mtime": "2021-09-21T15:12:32",
  1654. "read": "J",
  1655. "write": "J",
  1656. "blocked": "N",
  1657. "process": ""
  1658. },
  1659. "iqd_file": {
  1660. "mtime": "0"
  1661. },
  1662. "csv_file": {
  1663. "mtime": "0"
  1664. },
  1665. "csv_file_iqd_folder": {
  1666. "mtime": "0"
  1667. },
  1668. "duplicates": []
  1669. },
  1670. "loc_belege_nw_gw_vk_vor_20200821_kost2_5_stellen": {
  1671. "imr_file": {
  1672. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_vor_20200821_kost2_5_stellen.imr",
  1673. "size": 153088,
  1674. "ctime": "2021-03-17T11:47:46",
  1675. "mtime": "2021-03-17T11:47:46",
  1676. "read": "J",
  1677. "write": "J",
  1678. "blocked": "N",
  1679. "process": ""
  1680. },
  1681. "iqd_file": {
  1682. "mtime": "0"
  1683. },
  1684. "csv_file": {
  1685. "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_nw_gw_vk_vor_20200821_kost2_5_stellen.csv",
  1686. "size": 2620,
  1687. "ctime": "2021-03-17T11:55:58",
  1688. "mtime": "2021-03-17T11:55:58",
  1689. "read": "J",
  1690. "write": "J",
  1691. "blocked": "N",
  1692. "process": ""
  1693. },
  1694. "csv_file_iqd_folder": {
  1695. "mtime": "0"
  1696. },
  1697. "duplicates": []
  1698. },
  1699. "zeit_verk_std_mit_subsidiary_aus_labours_und_nicht_aus_employee": {
  1700. "imr_file": {
  1701. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_verk_std_mit_subsidiary_aus_labours_und_nicht_aus_employee.imr",
  1702. "size": 71680,
  1703. "ctime": "2020-04-22T09:25:48",
  1704. "mtime": "2020-04-22T09:25:48",
  1705. "read": "J",
  1706. "write": "J",
  1707. "blocked": "N",
  1708. "process": ""
  1709. },
  1710. "iqd_file": {
  1711. "mtime": "0"
  1712. },
  1713. "csv_file": {
  1714. "mtime": "0"
  1715. },
  1716. "csv_file_iqd_folder": {
  1717. "mtime": "0"
  1718. },
  1719. "duplicates": []
  1720. },
  1721. "skr_statistik_stk_manuell": {
  1722. "imr_file": {
  1723. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_statistik_stk_manuell.imr",
  1724. "size": 64000,
  1725. "ctime": "2018-06-19T13:46:54",
  1726. "mtime": "2018-06-19T13:46:54",
  1727. "read": "J",
  1728. "write": "J",
  1729. "blocked": "N",
  1730. "process": ""
  1731. },
  1732. "iqd_file": {
  1733. "mtime": "0"
  1734. },
  1735. "csv_file": {
  1736. "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_statistik_stk_manuell.csv",
  1737. "size": 3492,
  1738. "ctime": "2018-06-19T13:47:02",
  1739. "mtime": "2018-06-19T13:47:02",
  1740. "read": "J",
  1741. "write": "J",
  1742. "blocked": "N",
  1743. "process": ""
  1744. },
  1745. "csv_file_iqd_folder": {
  1746. "mtime": "0"
  1747. },
  1748. "duplicates": []
  1749. },
  1750. "kontenrahmen_gc_struct_skr": {
  1751. "imr_file": {
  1752. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen_gc_struct_skr.imr",
  1753. "size": 125440,
  1754. "ctime": "2021-02-02T11:01:12",
  1755. "mtime": "2021-02-02T11:01:12",
  1756. "read": "J",
  1757. "write": "J",
  1758. "blocked": "N",
  1759. "process": ""
  1760. },
  1761. "iqd_file": {
  1762. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen_gc_struct_skr.iqd",
  1763. "size": 5158,
  1764. "ctime": "2018-06-12T11:33:32",
  1765. "mtime": "2018-06-12T11:33:32",
  1766. "read": "J",
  1767. "write": "J",
  1768. "blocked": "N",
  1769. "process": ""
  1770. },
  1771. "csv_file": {
  1772. "filename": "c:\\globalcube\\system\\locosoft\\export\\kontenrahmen_gc_struct_skr.csv",
  1773. "size": 6052679,
  1774. "ctime": "2022-07-08T11:12:14",
  1775. "mtime": "2022-07-08T11:12:15",
  1776. "read": "J",
  1777. "write": "J",
  1778. "blocked": "N",
  1779. "process": ""
  1780. },
  1781. "csv_file_iqd_folder": {
  1782. "mtime": "0"
  1783. },
  1784. "duplicates": []
  1785. },
  1786. "loc_belege_nw_gw_vk_sich_30112020_vor_anpassungen": {
  1787. "imr_file": {
  1788. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_sich_30112020_vor_anpassungen.imr",
  1789. "size": 262144,
  1790. "ctime": "2020-11-26T13:27:14",
  1791. "mtime": "2020-11-26T13:27:14",
  1792. "read": "J",
  1793. "write": "J",
  1794. "blocked": "N",
  1795. "process": ""
  1796. },
  1797. "iqd_file": {
  1798. "mtime": "0"
  1799. },
  1800. "csv_file": {
  1801. "mtime": "0"
  1802. },
  1803. "csv_file_iqd_folder": {
  1804. "mtime": "0"
  1805. },
  1806. "duplicates": []
  1807. },
  1808. "nw_gw_be_auf_nw_gw_bestand_cat_sich_mit_fibu": {
  1809. "imr_file": {
  1810. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat_sich_mit_fibu.imr",
  1811. "size": 177664,
  1812. "ctime": "2020-12-17T11:25:14",
  1813. "mtime": "2020-12-17T11:25:14",
  1814. "read": "J",
  1815. "write": "J",
  1816. "blocked": "N",
  1817. "process": ""
  1818. },
  1819. "iqd_file": {
  1820. "mtime": "0"
  1821. },
  1822. "csv_file": {
  1823. "mtime": "0"
  1824. },
  1825. "csv_file_iqd_folder": {
  1826. "mtime": "0"
  1827. },
  1828. "duplicates": []
  1829. },
  1830. "offene_auftraege_teile - kopie": {
  1831. "imr_file": {
  1832. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_teile - kopie.imr",
  1833. "size": 78336,
  1834. "ctime": "2020-11-17T16:44:12",
  1835. "mtime": "2020-11-17T16:44:12",
  1836. "read": "J",
  1837. "write": "J",
  1838. "blocked": "N",
  1839. "process": ""
  1840. },
  1841. "iqd_file": {
  1842. "mtime": "0"
  1843. },
  1844. "csv_file": {
  1845. "mtime": "0"
  1846. },
  1847. "csv_file_iqd_folder": {
  1848. "mtime": "0"
  1849. },
  1850. "duplicates": []
  1851. },
  1852. "op_aus_ims": {
  1853. "imr_file": {
  1854. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_ims.imr",
  1855. "size": 154624,
  1856. "ctime": "2018-02-12T15:24:52",
  1857. "mtime": "2018-02-12T15:24:52",
  1858. "read": "J",
  1859. "write": "J",
  1860. "blocked": "N",
  1861. "process": ""
  1862. },
  1863. "iqd_file": {
  1864. "mtime": "0"
  1865. },
  1866. "csv_file": {
  1867. "mtime": "0"
  1868. },
  1869. "csv_file_iqd_folder": {
  1870. "mtime": "0"
  1871. },
  1872. "duplicates": []
  1873. },
  1874. "loc_belege_nw_gw_vk - kopie (3)": {
  1875. "imr_file": {
  1876. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk - kopie (3).imr",
  1877. "size": 154112,
  1878. "ctime": "2021-07-21T10:02:27",
  1879. "mtime": "2021-07-08T16:52:44",
  1880. "read": "J",
  1881. "write": "J",
  1882. "blocked": "N",
  1883. "process": ""
  1884. },
  1885. "iqd_file": {
  1886. "mtime": "0"
  1887. },
  1888. "csv_file": {
  1889. "mtime": "0"
  1890. },
  1891. "csv_file_iqd_folder": {
  1892. "mtime": "0"
  1893. },
  1894. "duplicates": []
  1895. },
  1896. "op_aus_loc_belege_deb_saldo_forderungsart_aus_rechnungsnummer": {
  1897. "imr_file": {
  1898. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_deb_saldo_forderungsart_aus_rechnungsnummer.imr",
  1899. "size": 110592,
  1900. "ctime": "2021-09-20T11:42:22",
  1901. "mtime": "2020-05-07T17:09:02",
  1902. "read": "J",
  1903. "write": "J",
  1904. "blocked": "N",
  1905. "process": ""
  1906. },
  1907. "iqd_file": {
  1908. "mtime": "0"
  1909. },
  1910. "csv_file": {
  1911. "mtime": "0"
  1912. },
  1913. "csv_file_iqd_folder": {
  1914. "mtime": "0"
  1915. },
  1916. "duplicates": []
  1917. },
  1918. "loc_belege_bilanz_mit_doc_no_im_text": {
  1919. "imr_file": {
  1920. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_bilanz_mit_doc_no_im_text.imr",
  1921. "size": 93184,
  1922. "ctime": "2020-04-15T10:13:04",
  1923. "mtime": "2020-04-15T10:13:04",
  1924. "read": "J",
  1925. "write": "J",
  1926. "blocked": "N",
  1927. "process": ""
  1928. },
  1929. "iqd_file": {
  1930. "mtime": "0"
  1931. },
  1932. "csv_file": {
  1933. "mtime": "0"
  1934. },
  1935. "csv_file_iqd_folder": {
  1936. "mtime": "0"
  1937. },
  1938. "duplicates": []
  1939. },
  1940. "loc_belege_nw_gw_vk_stk_fibu - kopie": {
  1941. "imr_file": {
  1942. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu - kopie.imr",
  1943. "size": 155136,
  1944. "ctime": "2021-07-08T13:15:25",
  1945. "mtime": "2021-01-06T10:17:06",
  1946. "read": "J",
  1947. "write": "J",
  1948. "blocked": "N",
  1949. "process": ""
  1950. },
  1951. "iqd_file": {
  1952. "mtime": "0"
  1953. },
  1954. "csv_file": {
  1955. "mtime": "0"
  1956. },
  1957. "csv_file_iqd_folder": {
  1958. "mtime": "0"
  1959. },
  1960. "duplicates": []
  1961. },
  1962. "offene_auftraege_ums_ben_aw - kopie": {
  1963. "imr_file": {
  1964. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_ums_ben_aw - kopie.imr",
  1965. "size": 79360,
  1966. "ctime": "2020-11-17T16:45:28",
  1967. "mtime": "2020-11-17T16:45:28",
  1968. "read": "J",
  1969. "write": "J",
  1970. "blocked": "N",
  1971. "process": ""
  1972. },
  1973. "iqd_file": {
  1974. "mtime": "0"
  1975. },
  1976. "csv_file": {
  1977. "mtime": "0"
  1978. },
  1979. "csv_file_iqd_folder": {
  1980. "mtime": "0"
  1981. },
  1982. "duplicates": []
  1983. },
  1984. "zeit_stempelungen_neu": {
  1985. "imr_file": {
  1986. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu.imr",
  1987. "size": 97792,
  1988. "ctime": "2021-03-17T11:03:46",
  1989. "mtime": "2022-01-13T11:49:51",
  1990. "read": "J",
  1991. "write": "J",
  1992. "blocked": "N",
  1993. "process": ""
  1994. },
  1995. "iqd_file": {
  1996. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu.iqd",
  1997. "size": 2528,
  1998. "ctime": "2018-06-06T11:40:02",
  1999. "mtime": "2018-06-06T11:40:02",
  2000. "read": "J",
  2001. "write": "J",
  2002. "blocked": "N",
  2003. "process": ""
  2004. },
  2005. "csv_file": {
  2006. "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_stempelungen_neu.csv",
  2007. "size": 37372703,
  2008. "ctime": "2022-07-08T11:18:58",
  2009. "mtime": "2022-07-08T11:19:05",
  2010. "read": "J",
  2011. "write": "J",
  2012. "blocked": "N",
  2013. "process": ""
  2014. },
  2015. "csv_file_iqd_folder": {
  2016. "mtime": "0"
  2017. },
  2018. "duplicates": []
  2019. },
  2020. "loc_belege_teile": {
  2021. "imr_file": {
  2022. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_teile.imr",
  2023. "size": 96768,
  2024. "ctime": "2017-06-08T16:28:46",
  2025. "mtime": "2017-06-08T16:28:46",
  2026. "read": "J",
  2027. "write": "J",
  2028. "blocked": "N",
  2029. "process": ""
  2030. },
  2031. "iqd_file": {
  2032. "mtime": "0"
  2033. },
  2034. "csv_file": {
  2035. "mtime": "0"
  2036. },
  2037. "csv_file_iqd_folder": {
  2038. "mtime": "0"
  2039. },
  2040. "duplicates": []
  2041. },
  2042. "op_aus_loc_belege_deb_saldo": {
  2043. "imr_file": {
  2044. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_deb_saldo.imr",
  2045. "size": 115712,
  2046. "ctime": "2020-05-07T17:09:02",
  2047. "mtime": "2021-11-11T10:59:41",
  2048. "read": "J",
  2049. "write": "J",
  2050. "blocked": "N",
  2051. "process": ""
  2052. },
  2053. "iqd_file": {
  2054. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_deb_saldo.iqd",
  2055. "size": 13010,
  2056. "ctime": "2019-11-29T14:45:36",
  2057. "mtime": "2019-11-29T14:45:36",
  2058. "read": "J",
  2059. "write": "J",
  2060. "blocked": "N",
  2061. "process": ""
  2062. },
  2063. "csv_file": {
  2064. "filename": "c:\\globalcube\\system\\locosoft\\export\\op_aus_loc_belege_deb_saldo.csv",
  2065. "size": 1180388,
  2066. "ctime": "2022-07-08T11:18:51",
  2067. "mtime": "2022-07-08T11:18:51",
  2068. "read": "J",
  2069. "write": "J",
  2070. "blocked": "N",
  2071. "process": ""
  2072. },
  2073. "csv_file_iqd_folder": {
  2074. "mtime": "0"
  2075. },
  2076. "duplicates": []
  2077. },
  2078. "zeit_stempelungen_pausen": {
  2079. "imr_file": {
  2080. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_pausen.imr",
  2081. "size": 94208,
  2082. "ctime": "2020-11-17T16:50:44",
  2083. "mtime": "2022-01-13T13:02:19",
  2084. "read": "J",
  2085. "write": "J",
  2086. "blocked": "N",
  2087. "process": ""
  2088. },
  2089. "iqd_file": {
  2090. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_pausen.iqd",
  2091. "size": 6433,
  2092. "ctime": "2019-11-29T14:13:22",
  2093. "mtime": "2019-11-29T14:13:22",
  2094. "read": "J",
  2095. "write": "J",
  2096. "blocked": "N",
  2097. "process": ""
  2098. },
  2099. "csv_file": {
  2100. "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_stempelungen_pausen.csv",
  2101. "size": 37362888,
  2102. "ctime": "2022-07-08T11:19:10",
  2103. "mtime": "2022-07-08T11:19:17",
  2104. "read": "J",
  2105. "write": "J",
  2106. "blocked": "N",
  2107. "process": ""
  2108. },
  2109. "csv_file_iqd_folder": {
  2110. "mtime": "0"
  2111. },
  2112. "duplicates": []
  2113. },
  2114. "loc_belege_nw_gw_vk_liegert": {
  2115. "imr_file": {
  2116. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_liegert.imr",
  2117. "size": 266240,
  2118. "ctime": "2021-09-21T16:59:56",
  2119. "mtime": "2021-09-21T17:08:01",
  2120. "read": "J",
  2121. "write": "J",
  2122. "blocked": "N",
  2123. "process": ""
  2124. },
  2125. "iqd_file": {
  2126. "mtime": "0"
  2127. },
  2128. "csv_file": {
  2129. "mtime": "0"
  2130. },
  2131. "csv_file_iqd_folder": {
  2132. "mtime": "0"
  2133. },
  2134. "duplicates": []
  2135. },
  2136. "loc_belege": {
  2137. "imr_file": {
  2138. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege.imr",
  2139. "size": 103936,
  2140. "ctime": "2021-07-08T11:39:29",
  2141. "mtime": "2021-11-22T17:16:21",
  2142. "read": "J",
  2143. "write": "J",
  2144. "blocked": "N",
  2145. "process": ""
  2146. },
  2147. "iqd_file": {
  2148. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege.iqd",
  2149. "size": 6835,
  2150. "ctime": "2018-06-29T11:32:04",
  2151. "mtime": "2018-06-29T11:32:04",
  2152. "read": "J",
  2153. "write": "J",
  2154. "blocked": "N",
  2155. "process": ""
  2156. },
  2157. "csv_file": {
  2158. "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege.csv",
  2159. "size": 189287347,
  2160. "ctime": "2022-07-08T11:13:54",
  2161. "mtime": "2022-07-08T11:14:35",
  2162. "read": "J",
  2163. "write": "J",
  2164. "blocked": "N",
  2165. "process": ""
  2166. },
  2167. "csv_file_iqd_folder": {
  2168. "mtime": "0"
  2169. },
  2170. "duplicates": []
  2171. },
  2172. "op_aus_loc_belege_ohne_8520": {
  2173. "imr_file": {
  2174. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_ohne_8520.imr",
  2175. "size": 115712,
  2176. "ctime": "2020-05-07T16:43:30",
  2177. "mtime": "2021-11-11T10:58:53",
  2178. "read": "J",
  2179. "write": "J",
  2180. "blocked": "N",
  2181. "process": ""
  2182. },
  2183. "iqd_file": {
  2184. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_ohne_8520.iqd",
  2185. "size": 13074,
  2186. "ctime": "2019-11-29T14:46:48",
  2187. "mtime": "2019-11-29T14:46:48",
  2188. "read": "J",
  2189. "write": "J",
  2190. "blocked": "N",
  2191. "process": ""
  2192. },
  2193. "csv_file": {
  2194. "filename": "c:\\globalcube\\system\\locosoft\\export\\op_aus_loc_belege_ohne_8520.csv",
  2195. "size": 1180388,
  2196. "ctime": "2022-07-08T11:18:55",
  2197. "mtime": "2022-07-08T11:18:55",
  2198. "read": "J",
  2199. "write": "J",
  2200. "blocked": "N",
  2201. "process": ""
  2202. },
  2203. "csv_file_iqd_folder": {
  2204. "mtime": "0"
  2205. },
  2206. "duplicates": []
  2207. },
  2208. "zeit_stempelungen": {
  2209. "imr_file": {
  2210. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen.imr",
  2211. "size": 78848,
  2212. "ctime": "2018-01-29T11:04:04",
  2213. "mtime": "2018-01-29T11:04:04",
  2214. "read": "J",
  2215. "write": "J",
  2216. "blocked": "N",
  2217. "process": ""
  2218. },
  2219. "iqd_file": {
  2220. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen.iqd",
  2221. "size": 2281,
  2222. "ctime": "2018-01-29T11:04:02",
  2223. "mtime": "2018-01-29T11:04:02",
  2224. "read": "J",
  2225. "write": "J",
  2226. "blocked": "N",
  2227. "process": ""
  2228. },
  2229. "csv_file": {
  2230. "mtime": "0"
  2231. },
  2232. "csv_file_iqd_folder": {
  2233. "mtime": "0"
  2234. },
  2235. "duplicates": []
  2236. },
  2237. "loc_belege_bilanz": {
  2238. "imr_file": {
  2239. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_bilanz.imr",
  2240. "size": 99840,
  2241. "ctime": "2020-04-28T12:00:28",
  2242. "mtime": "2020-04-28T12:00:28",
  2243. "read": "J",
  2244. "write": "J",
  2245. "blocked": "N",
  2246. "process": ""
  2247. },
  2248. "iqd_file": {
  2249. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_bilanz.iqd",
  2250. "size": 9375,
  2251. "ctime": "2018-05-25T10:22:18",
  2252. "mtime": "2018-05-25T10:22:18",
  2253. "read": "J",
  2254. "write": "J",
  2255. "blocked": "N",
  2256. "process": ""
  2257. },
  2258. "csv_file": {
  2259. "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_bilanz.csv",
  2260. "size": 1188,
  2261. "ctime": "2020-11-11T08:56:10",
  2262. "mtime": "2020-11-11T08:56:10",
  2263. "read": "J",
  2264. "write": "J",
  2265. "blocked": "N",
  2266. "process": ""
  2267. },
  2268. "csv_file_iqd_folder": {
  2269. "mtime": "0"
  2270. },
  2271. "duplicates": []
  2272. },
  2273. "loc_belege_nw_gw_vk": {
  2274. "imr_file": {
  2275. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk.imr",
  2276. "size": 160256,
  2277. "ctime": "2021-09-21T17:08:10",
  2278. "mtime": "2021-11-11T11:03:51",
  2279. "read": "J",
  2280. "write": "J",
  2281. "blocked": "N",
  2282. "process": ""
  2283. },
  2284. "iqd_file": {
  2285. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk.iqd",
  2286. "size": 28371,
  2287. "ctime": "2019-02-19T08:28:58",
  2288. "mtime": "2019-02-19T08:28:58",
  2289. "read": "J",
  2290. "write": "J",
  2291. "blocked": "N",
  2292. "process": ""
  2293. },
  2294. "csv_file": {
  2295. "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_nw_gw_vk.csv",
  2296. "size": 68558946,
  2297. "ctime": "2022-07-08T11:15:01",
  2298. "mtime": "2022-07-08T11:15:16",
  2299. "read": "J",
  2300. "write": "J",
  2301. "blocked": "N",
  2302. "process": ""
  2303. },
  2304. "csv_file_iqd_folder": {
  2305. "mtime": "0"
  2306. },
  2307. "duplicates": []
  2308. },
  2309. "kontenrahmen_1": {
  2310. "imr_file": {
  2311. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen\\kontenrahmen_1.imr",
  2312. "size": 91136,
  2313. "ctime": "2010-08-10T13:21:36",
  2314. "mtime": "2010-08-10T13:21:36",
  2315. "read": "J",
  2316. "write": "J",
  2317. "blocked": "N",
  2318. "process": ""
  2319. },
  2320. "iqd_file": {
  2321. "mtime": "0"
  2322. },
  2323. "csv_file": {
  2324. "mtime": "0"
  2325. },
  2326. "csv_file_iqd_folder": {
  2327. "mtime": "0"
  2328. },
  2329. "duplicates": []
  2330. },
  2331. "loc_belege_nw_gw_vk_stk_fibu_datev": {
  2332. "imr_file": {
  2333. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu_datev.imr",
  2334. "size": 83456,
  2335. "ctime": "2020-11-17T15:30:54",
  2336. "mtime": "2020-11-17T15:30:54",
  2337. "read": "J",
  2338. "write": "J",
  2339. "blocked": "N",
  2340. "process": ""
  2341. },
  2342. "iqd_file": {
  2343. "mtime": "0"
  2344. },
  2345. "csv_file": {
  2346. "mtime": "0"
  2347. },
  2348. "csv_file_iqd_folder": {
  2349. "mtime": "0"
  2350. },
  2351. "duplicates": []
  2352. },
  2353. "loc_belege_statistische_werte_": {
  2354. "imr_file": {
  2355. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_statistische_werte_.imr",
  2356. "size": 145408,
  2357. "ctime": "2016-05-18T10:47:06",
  2358. "mtime": "2016-05-18T10:47:06",
  2359. "read": "J",
  2360. "write": "J",
  2361. "blocked": "N",
  2362. "process": ""
  2363. },
  2364. "iqd_file": {
  2365. "mtime": "0"
  2366. },
  2367. "csv_file": {
  2368. "mtime": "0"
  2369. },
  2370. "csv_file_iqd_folder": {
  2371. "mtime": "0"
  2372. },
  2373. "duplicates": []
  2374. },
  2375. "offene_auftraege_teile": {
  2376. "imr_file": {
  2377. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_teile.imr",
  2378. "size": 84480,
  2379. "ctime": "2022-01-06T09:21:05",
  2380. "mtime": "2022-01-06T09:21:05",
  2381. "read": "J",
  2382. "write": "J",
  2383. "blocked": "N",
  2384. "process": ""
  2385. },
  2386. "iqd_file": {
  2387. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_teile.iqd",
  2388. "size": 6085,
  2389. "ctime": "2019-11-21T16:59:02",
  2390. "mtime": "2019-11-21T16:59:02",
  2391. "read": "J",
  2392. "write": "J",
  2393. "blocked": "N",
  2394. "process": ""
  2395. },
  2396. "csv_file": {
  2397. "filename": "c:\\globalcube\\system\\locosoft\\export\\offene_auftraege_teile.csv",
  2398. "size": 1943008,
  2399. "ctime": "2022-07-08T11:18:28",
  2400. "mtime": "2022-07-08T11:18:28",
  2401. "read": "J",
  2402. "write": "J",
  2403. "blocked": "N",
  2404. "process": ""
  2405. },
  2406. "csv_file_iqd_folder": {
  2407. "mtime": "0"
  2408. },
  2409. "duplicates": [
  2410. "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\sich\\offene_auftraege_teile.imr"
  2411. ]
  2412. },
  2413. "employee_list": {
  2414. "imr_file": {
  2415. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\employee_list.imr",
  2416. "size": 62976,
  2417. "ctime": "2021-11-30T16:41:16",
  2418. "mtime": "2021-11-30T16:48:23",
  2419. "read": "J",
  2420. "write": "J",
  2421. "blocked": "N",
  2422. "process": ""
  2423. },
  2424. "iqd_file": {
  2425. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\employee_list.iqd",
  2426. "size": 1902,
  2427. "ctime": "2021-11-30T16:41:22",
  2428. "mtime": "2021-11-30T16:48:11",
  2429. "read": "J",
  2430. "write": "J",
  2431. "blocked": "N",
  2432. "process": ""
  2433. },
  2434. "csv_file": {
  2435. "filename": "c:\\globalcube\\system\\locosoft\\export\\employee_list.csv",
  2436. "size": 41599,
  2437. "ctime": "2021-11-30T16:40:16",
  2438. "mtime": "2021-11-30T16:48:22",
  2439. "read": "J",
  2440. "write": "J",
  2441. "blocked": "N",
  2442. "process": ""
  2443. },
  2444. "csv_file_iqd_folder": {
  2445. "mtime": "0"
  2446. },
  2447. "duplicates": []
  2448. },
  2449. "loc_belege_statistische_werte": {
  2450. "imr_file": {
  2451. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_statistische_werte.imr",
  2452. "size": 116736,
  2453. "ctime": "2018-05-25T10:24:10",
  2454. "mtime": "2018-05-25T10:24:10",
  2455. "read": "J",
  2456. "write": "J",
  2457. "blocked": "N",
  2458. "process": ""
  2459. },
  2460. "iqd_file": {
  2461. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_statistische_werte.iqd",
  2462. "size": 7325,
  2463. "ctime": "2018-05-25T10:24:10",
  2464. "mtime": "2018-05-25T10:24:10",
  2465. "read": "J",
  2466. "write": "J",
  2467. "blocked": "N",
  2468. "process": ""
  2469. },
  2470. "csv_file": {
  2471. "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_statistische_werte.csv",
  2472. "size": 10612921,
  2473. "ctime": "2018-06-12T16:15:14",
  2474. "mtime": "2018-06-12T16:15:14",
  2475. "read": "J",
  2476. "write": "J",
  2477. "blocked": "N",
  2478. "process": ""
  2479. },
  2480. "csv_file_iqd_folder": {
  2481. "mtime": "0"
  2482. },
  2483. "duplicates": []
  2484. },
  2485. "op_datev": {
  2486. "imr_file": {
  2487. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_datev.imr",
  2488. "size": 105472,
  2489. "ctime": "2021-05-06T21:43:00",
  2490. "mtime": "2021-05-06T21:43:00",
  2491. "read": "J",
  2492. "write": "J",
  2493. "blocked": "N",
  2494. "process": ""
  2495. },
  2496. "iqd_file": {
  2497. "mtime": "0"
  2498. },
  2499. "csv_file": {
  2500. "mtime": "0"
  2501. },
  2502. "csv_file_iqd_folder": {
  2503. "mtime": "0"
  2504. },
  2505. "duplicates": []
  2506. },
  2507. "loc_belege_nw_gw_vk_verk\u00e4ufer_vehicles": {
  2508. "imr_file": {
  2509. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_verk\u00e4ufer_vehicles.imr",
  2510. "size": 253440,
  2511. "ctime": "2021-03-11T15:02:50",
  2512. "mtime": "2021-03-11T15:02:50",
  2513. "read": "J",
  2514. "write": "J",
  2515. "blocked": "N",
  2516. "process": ""
  2517. },
  2518. "iqd_file": {
  2519. "mtime": "0"
  2520. },
  2521. "csv_file": {
  2522. "mtime": "0"
  2523. },
  2524. "csv_file_iqd_folder": {
  2525. "mtime": "0"
  2526. },
  2527. "duplicates": []
  2528. },
  2529. "loc_account_characteristics": {
  2530. "imr_file": {
  2531. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_account_characteristics.imr",
  2532. "size": 64000,
  2533. "ctime": "2016-05-18T09:19:56",
  2534. "mtime": "2016-05-18T09:19:56",
  2535. "read": "J",
  2536. "write": "J",
  2537. "blocked": "N",
  2538. "process": ""
  2539. },
  2540. "iqd_file": {
  2541. "mtime": "0"
  2542. },
  2543. "csv_file": {
  2544. "mtime": "0"
  2545. },
  2546. "csv_file_iqd_folder": {
  2547. "mtime": "0"
  2548. },
  2549. "duplicates": []
  2550. },
  2551. "nw_vk_test": {
  2552. "imr_file": {
  2553. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_vk_test.imr",
  2554. "size": 44032,
  2555. "ctime": "2020-11-25T16:21:36",
  2556. "mtime": "2020-11-25T16:21:36",
  2557. "read": "J",
  2558. "write": "J",
  2559. "blocked": "N",
  2560. "process": ""
  2561. },
  2562. "iqd_file": {
  2563. "mtime": "0"
  2564. },
  2565. "csv_file": {
  2566. "mtime": "0"
  2567. },
  2568. "csv_file_iqd_folder": {
  2569. "mtime": "0"
  2570. },
  2571. "duplicates": []
  2572. },
  2573. "aftersales_rechnungen_neu": {
  2574. "imr_file": {
  2575. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_neu.imr",
  2576. "size": 159744,
  2577. "ctime": "2021-02-02T11:01:20",
  2578. "mtime": "2021-09-23T21:25:48",
  2579. "read": "J",
  2580. "write": "J",
  2581. "blocked": "N",
  2582. "process": ""
  2583. },
  2584. "iqd_file": {
  2585. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_neu.iqd",
  2586. "size": 17836,
  2587. "ctime": "2019-11-21T16:51:06",
  2588. "mtime": "2019-11-21T16:51:06",
  2589. "read": "J",
  2590. "write": "J",
  2591. "blocked": "N",
  2592. "process": ""
  2593. },
  2594. "csv_file": {
  2595. "filename": "c:\\globalcube\\system\\locosoft\\export\\aftersales_rechnungen_neu.csv",
  2596. "size": 240542884,
  2597. "ctime": "2022-07-08T11:16:39",
  2598. "mtime": "2022-07-08T11:17:28",
  2599. "read": "J",
  2600. "write": "J",
  2601. "blocked": "N",
  2602. "process": ""
  2603. },
  2604. "csv_file_iqd_folder": {
  2605. "mtime": "0"
  2606. },
  2607. "duplicates": []
  2608. },
  2609. "zeit_stempelungen_neu_auftrag_161387_nicht abgestempelt": {
  2610. "imr_file": {
  2611. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu_auftrag_161387_nicht abgestempelt.imr",
  2612. "size": 109568,
  2613. "ctime": "2018-02-02T17:07:24",
  2614. "mtime": "2018-02-02T17:07:24",
  2615. "read": "J",
  2616. "write": "J",
  2617. "blocked": "N",
  2618. "process": ""
  2619. },
  2620. "iqd_file": {
  2621. "mtime": "0"
  2622. },
  2623. "csv_file": {
  2624. "mtime": "0"
  2625. },
  2626. "csv_file_iqd_folder": {
  2627. "mtime": "0"
  2628. },
  2629. "duplicates": []
  2630. },
  2631. "nw_gw_be_auf_nw_gw_bestand_cat - kopie": {
  2632. "imr_file": {
  2633. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat - kopie.imr",
  2634. "size": 169472,
  2635. "ctime": "2021-07-08T13:16:06",
  2636. "mtime": "2021-05-07T09:46:34",
  2637. "read": "J",
  2638. "write": "J",
  2639. "blocked": "N",
  2640. "process": ""
  2641. },
  2642. "iqd_file": {
  2643. "mtime": "0"
  2644. },
  2645. "csv_file": {
  2646. "mtime": "0"
  2647. },
  2648. "csv_file_iqd_folder": {
  2649. "mtime": "0"
  2650. },
  2651. "duplicates": []
  2652. },
  2653. "loc_belege_mit_doc_no_im_text": {
  2654. "imr_file": {
  2655. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_mit_doc_no_im_text.imr",
  2656. "size": 98816,
  2657. "ctime": "2020-04-15T10:28:50",
  2658. "mtime": "2020-04-15T10:28:50",
  2659. "read": "J",
  2660. "write": "J",
  2661. "blocked": "N",
  2662. "process": ""
  2663. },
  2664. "iqd_file": {
  2665. "mtime": "0"
  2666. },
  2667. "csv_file": {
  2668. "mtime": "0"
  2669. },
  2670. "csv_file_iqd_folder": {
  2671. "mtime": "0"
  2672. },
  2673. "duplicates": []
  2674. },
  2675. "current_date_prognose": {
  2676. "imr_file": {
  2677. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose.imr",
  2678. "size": 42496,
  2679. "ctime": "2015-07-07T09:27:18",
  2680. "mtime": "2015-07-07T09:27:18",
  2681. "read": "J",
  2682. "write": "J",
  2683. "blocked": "N",
  2684. "process": ""
  2685. },
  2686. "iqd_file": {
  2687. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose.iqd",
  2688. "size": 2483,
  2689. "ctime": "2015-07-07T09:27:16",
  2690. "mtime": "2015-07-07T09:27:16",
  2691. "read": "J",
  2692. "write": "J",
  2693. "blocked": "N",
  2694. "process": ""
  2695. },
  2696. "csv_file": {
  2697. "filename": "c:\\globalcube\\system\\locosoft\\export\\current_date_prognose.csv",
  2698. "size": 7352,
  2699. "ctime": "2018-06-19T13:51:36",
  2700. "mtime": "2018-06-19T13:51:36",
  2701. "read": "J",
  2702. "write": "J",
  2703. "blocked": "N",
  2704. "process": ""
  2705. },
  2706. "csv_file_iqd_folder": {
  2707. "mtime": "0"
  2708. },
  2709. "duplicates": []
  2710. },
  2711. "nw_gw_be_auf_nw_gw_bestand_cat_liegert": {
  2712. "imr_file": {
  2713. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat_liegert.imr",
  2714. "size": 175104,
  2715. "ctime": "2021-06-02T09:27:40",
  2716. "mtime": "2021-06-02T09:27:40",
  2717. "read": "J",
  2718. "write": "J",
  2719. "blocked": "N",
  2720. "process": ""
  2721. },
  2722. "iqd_file": {
  2723. "mtime": "0"
  2724. },
  2725. "csv_file": {
  2726. "mtime": "0"
  2727. },
  2728. "csv_file_iqd_folder": {
  2729. "mtime": "0"
  2730. },
  2731. "duplicates": []
  2732. },
  2733. "teamliste": {
  2734. "imr_file": {
  2735. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\teamliste.imr",
  2736. "size": 74752,
  2737. "ctime": "2018-06-06T11:26:02",
  2738. "mtime": "2018-06-06T11:26:02",
  2739. "read": "J",
  2740. "write": "J",
  2741. "blocked": "N",
  2742. "process": ""
  2743. },
  2744. "iqd_file": {
  2745. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\teamliste.iqd",
  2746. "size": 1455,
  2747. "ctime": "2018-06-06T11:25:54",
  2748. "mtime": "2018-06-06T11:25:54",
  2749. "read": "J",
  2750. "write": "J",
  2751. "blocked": "N",
  2752. "process": ""
  2753. },
  2754. "csv_file": {
  2755. "filename": "c:\\globalcube\\system\\locosoft\\export\\teamliste.csv",
  2756. "size": 290,
  2757. "ctime": "2020-04-08T14:22:36",
  2758. "mtime": "2020-04-08T14:22:36",
  2759. "read": "J",
  2760. "write": "J",
  2761. "blocked": "N",
  2762. "process": ""
  2763. },
  2764. "csv_file_iqd_folder": {
  2765. "mtime": "0"
  2766. },
  2767. "duplicates": []
  2768. },
  2769. "loc_kontenrahmen": {
  2770. "imr_file": {
  2771. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_kontenrahmen.imr",
  2772. "size": 61440,
  2773. "ctime": "2016-05-18T09:21:30",
  2774. "mtime": "2016-05-18T09:21:30",
  2775. "read": "J",
  2776. "write": "J",
  2777. "blocked": "N",
  2778. "process": ""
  2779. },
  2780. "iqd_file": {
  2781. "mtime": "0"
  2782. },
  2783. "csv_file": {
  2784. "mtime": "0"
  2785. },
  2786. "csv_file_iqd_folder": {
  2787. "mtime": "0"
  2788. },
  2789. "duplicates": []
  2790. },
  2791. "zeit_ben_std_lg": {
  2792. "imr_file": {
  2793. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_ben_std_lg.imr",
  2794. "size": 69120,
  2795. "ctime": "2020-11-17T16:54:22",
  2796. "mtime": "2021-10-20T17:33:46",
  2797. "read": "J",
  2798. "write": "J",
  2799. "blocked": "N",
  2800. "process": ""
  2801. },
  2802. "iqd_file": {
  2803. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_ben_std_lg.iqd",
  2804. "size": 3105,
  2805. "ctime": "2019-11-29T14:16:10",
  2806. "mtime": "2019-11-29T14:16:10",
  2807. "read": "J",
  2808. "write": "J",
  2809. "blocked": "N",
  2810. "process": ""
  2811. },
  2812. "csv_file": {
  2813. "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_ben_std_lg.csv",
  2814. "size": 11389291,
  2815. "ctime": "2022-07-08T11:19:57",
  2816. "mtime": "2022-07-08T11:19:59",
  2817. "read": "J",
  2818. "write": "J",
  2819. "blocked": "N",
  2820. "process": ""
  2821. },
  2822. "csv_file_iqd_folder": {
  2823. "mtime": "0"
  2824. },
  2825. "duplicates": []
  2826. },
  2827. "loc_belege_lutz": {
  2828. "imr_file": {
  2829. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_lutz.imr",
  2830. "size": 102400,
  2831. "ctime": "2021-01-06T10:15:42",
  2832. "mtime": "2021-01-06T10:15:42",
  2833. "read": "J",
  2834. "write": "J",
  2835. "blocked": "N",
  2836. "process": ""
  2837. },
  2838. "iqd_file": {
  2839. "mtime": "0"
  2840. },
  2841. "csv_file": {
  2842. "mtime": "0"
  2843. },
  2844. "csv_file_iqd_folder": {
  2845. "mtime": "0"
  2846. },
  2847. "duplicates": []
  2848. },
  2849. "zeit_stempelungen_neu - kopie": {
  2850. "imr_file": {
  2851. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu - kopie.imr",
  2852. "size": 68608,
  2853. "ctime": "2021-03-17T11:03:46",
  2854. "mtime": "2021-03-17T11:03:46",
  2855. "read": "J",
  2856. "write": "J",
  2857. "blocked": "N",
  2858. "process": ""
  2859. },
  2860. "iqd_file": {
  2861. "mtime": "0"
  2862. },
  2863. "csv_file": {
  2864. "mtime": "0"
  2865. },
  2866. "csv_file_iqd_folder": {
  2867. "mtime": "0"
  2868. },
  2869. "duplicates": []
  2870. },
  2871. "nw_be_ohne_fibu": {
  2872. "imr_file": {
  2873. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_be_ohne_fibu.imr",
  2874. "size": 130048,
  2875. "ctime": "2020-12-01T10:48:52",
  2876. "mtime": "2020-12-01T10:48:52",
  2877. "read": "J",
  2878. "write": "J",
  2879. "blocked": "N",
  2880. "process": ""
  2881. },
  2882. "iqd_file": {
  2883. "mtime": "0"
  2884. },
  2885. "csv_file": {
  2886. "mtime": "0"
  2887. },
  2888. "csv_file_iqd_folder": {
  2889. "mtime": "0"
  2890. },
  2891. "duplicates": []
  2892. },
  2893. "loc_belege_nw_gw_vk - kopie (2)": {
  2894. "imr_file": {
  2895. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk - kopie (2).imr",
  2896. "size": 156672,
  2897. "ctime": "2021-07-08T13:15:34",
  2898. "mtime": "2020-12-16T17:35:40",
  2899. "read": "J",
  2900. "write": "J",
  2901. "blocked": "N",
  2902. "process": ""
  2903. },
  2904. "iqd_file": {
  2905. "mtime": "0"
  2906. },
  2907. "csv_file": {
  2908. "mtime": "0"
  2909. },
  2910. "csv_file_iqd_folder": {
  2911. "mtime": "0"
  2912. },
  2913. "duplicates": []
  2914. },
  2915. "zeit_abwesenheit": {
  2916. "imr_file": {
  2917. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_abwesenheit.imr",
  2918. "size": 79360,
  2919. "ctime": "2018-05-11T11:27:24",
  2920. "mtime": "2018-05-11T11:27:24",
  2921. "read": "J",
  2922. "write": "J",
  2923. "blocked": "N",
  2924. "process": ""
  2925. },
  2926. "iqd_file": {
  2927. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_abwesenheit.iqd",
  2928. "size": 2305,
  2929. "ctime": "2018-05-11T11:27:24",
  2930. "mtime": "2018-05-11T11:27:24",
  2931. "read": "J",
  2932. "write": "J",
  2933. "blocked": "N",
  2934. "process": ""
  2935. },
  2936. "csv_file": {
  2937. "mtime": "0"
  2938. },
  2939. "csv_file_iqd_folder": {
  2940. "mtime": "0"
  2941. },
  2942. "duplicates": []
  2943. },
  2944. "skr_konten_stk_manuell": {
  2945. "imr_file": {
  2946. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_konten_stk_manuell.imr",
  2947. "size": 64000,
  2948. "ctime": "2018-06-19T13:45:38",
  2949. "mtime": "2018-06-19T13:45:38",
  2950. "read": "J",
  2951. "write": "J",
  2952. "blocked": "N",
  2953. "process": ""
  2954. },
  2955. "iqd_file": {
  2956. "mtime": "0"
  2957. },
  2958. "csv_file": {
  2959. "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_konten_stk_manuell.csv",
  2960. "size": 1207,
  2961. "ctime": "2020-04-15T10:33:24",
  2962. "mtime": "2020-04-15T10:33:24",
  2963. "read": "J",
  2964. "write": "J",
  2965. "blocked": "N",
  2966. "process": ""
  2967. },
  2968. "csv_file_iqd_folder": {
  2969. "mtime": "0"
  2970. },
  2971. "duplicates": []
  2972. },
  2973. "loc_belege_nw_gw_vk_abstimmung": {
  2974. "imr_file": {
  2975. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_abstimmung.imr",
  2976. "size": 156160,
  2977. "ctime": "2021-09-21T15:10:21",
  2978. "mtime": "2021-09-21T15:10:21",
  2979. "read": "J",
  2980. "write": "J",
  2981. "blocked": "N",
  2982. "process": ""
  2983. },
  2984. "iqd_file": {
  2985. "mtime": "0"
  2986. },
  2987. "csv_file": {
  2988. "mtime": "0"
  2989. },
  2990. "csv_file_iqd_folder": {
  2991. "mtime": "0"
  2992. },
  2993. "duplicates": []
  2994. },
  2995. "offene_auftraege_dg_anz_tage": {
  2996. "imr_file": {
  2997. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_dg_anz_tage.imr",
  2998. "size": 80896,
  2999. "ctime": "2022-01-06T09:21:05",
  3000. "mtime": "2022-01-06T09:21:05",
  3001. "read": "J",
  3002. "write": "J",
  3003. "blocked": "N",
  3004. "process": ""
  3005. },
  3006. "iqd_file": {
  3007. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_dg_anz_tage.iqd",
  3008. "size": 5689,
  3009. "ctime": "2019-11-21T16:53:38",
  3010. "mtime": "2019-11-21T16:53:38",
  3011. "read": "J",
  3012. "write": "J",
  3013. "blocked": "N",
  3014. "process": ""
  3015. },
  3016. "csv_file": {
  3017. "filename": "c:\\globalcube\\system\\locosoft\\export\\offene_auftraege_dg_anz_tage.csv",
  3018. "size": 3294973,
  3019. "ctime": "2022-07-08T11:18:49",
  3020. "mtime": "2022-07-08T11:18:50",
  3021. "read": "J",
  3022. "write": "J",
  3023. "blocked": "N",
  3024. "process": ""
  3025. },
  3026. "csv_file_iqd_folder": {
  3027. "mtime": "0"
  3028. },
  3029. "duplicates": [
  3030. "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\sich\\offene_auftraege_dg_anz_tage.imr"
  3031. ]
  3032. },
  3033. "zeit_verk_std": {
  3034. "imr_file": {
  3035. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_verk_std.imr",
  3036. "size": 64000,
  3037. "ctime": "2020-11-17T16:55:12",
  3038. "mtime": "2020-11-17T16:55:12",
  3039. "read": "J",
  3040. "write": "J",
  3041. "blocked": "N",
  3042. "process": ""
  3043. },
  3044. "iqd_file": {
  3045. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_verk_std.iqd",
  3046. "size": 2756,
  3047. "ctime": "2018-06-06T11:43:06",
  3048. "mtime": "2018-06-06T11:43:06",
  3049. "read": "J",
  3050. "write": "J",
  3051. "blocked": "N",
  3052. "process": ""
  3053. },
  3054. "csv_file": {
  3055. "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_verk_std.csv",
  3056. "size": 29312675,
  3057. "ctime": "2022-07-08T11:19:38",
  3058. "mtime": "2022-07-08T11:19:44",
  3059. "read": "J",
  3060. "write": "J",
  3061. "blocked": "N",
  3062. "process": ""
  3063. },
  3064. "csv_file_iqd_folder": {
  3065. "mtime": "0"
  3066. },
  3067. "duplicates": []
  3068. },
  3069. "offene_auftraege": {
  3070. "imr_file": {
  3071. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege.imr",
  3072. "size": 94208,
  3073. "ctime": "2018-06-05T18:14:58",
  3074. "mtime": "2018-06-05T18:14:58",
  3075. "read": "J",
  3076. "write": "J",
  3077. "blocked": "N",
  3078. "process": ""
  3079. },
  3080. "iqd_file": {
  3081. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege.iqd",
  3082. "size": 5443,
  3083. "ctime": "2018-06-05T18:14:56",
  3084. "mtime": "2018-06-05T18:14:56",
  3085. "read": "J",
  3086. "write": "J",
  3087. "blocked": "N",
  3088. "process": ""
  3089. },
  3090. "csv_file": {
  3091. "mtime": "0"
  3092. },
  3093. "csv_file_iqd_folder": {
  3094. "mtime": "0"
  3095. },
  3096. "duplicates": []
  3097. },
  3098. "zeit_stempelungen_neu_f\u00fcr_ben_zeit": {
  3099. "imr_file": {
  3100. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu_f\u00fcr_ben_zeit.imr",
  3101. "size": 78848,
  3102. "ctime": "2018-03-15T15:41:48",
  3103. "mtime": "2018-03-15T15:41:48",
  3104. "read": "J",
  3105. "write": "J",
  3106. "blocked": "N",
  3107. "process": ""
  3108. },
  3109. "iqd_file": {
  3110. "mtime": "0"
  3111. },
  3112. "csv_file": {
  3113. "mtime": "0"
  3114. },
  3115. "csv_file_iqd_folder": {
  3116. "mtime": "0"
  3117. },
  3118. "duplicates": []
  3119. },
  3120. "nw_gw_stk_auf_nw_gw_vk_cat": {
  3121. "imr_file": {
  3122. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\nw_gw_stk_auf_nw_gw_vk_cat.imr",
  3123. "size": 139776,
  3124. "ctime": "2017-07-14T11:01:38",
  3125. "mtime": "2017-07-14T11:01:38",
  3126. "read": "J",
  3127. "write": "J",
  3128. "blocked": "N",
  3129. "process": ""
  3130. },
  3131. "iqd_file": {
  3132. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\nw_gw_stk_auf_nw_gw_vk_cat.iqd",
  3133. "size": 13951,
  3134. "ctime": "2017-07-14T11:00:56",
  3135. "mtime": "2017-07-14T11:00:56",
  3136. "read": "J",
  3137. "write": "J",
  3138. "blocked": "N",
  3139. "process": ""
  3140. },
  3141. "csv_file": {
  3142. "mtime": "0"
  3143. },
  3144. "csv_file_iqd_folder": {
  3145. "mtime": "0"
  3146. },
  3147. "duplicates": []
  3148. },
  3149. "loc_belege_nw_gw_vk_liegert_\u00fcberspeichert": {
  3150. "imr_file": {
  3151. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_liegert_\u00fcberspeichert.imr",
  3152. "size": 164864,
  3153. "ctime": "2020-04-27T10:14:42",
  3154. "mtime": "2021-09-21T16:56:12",
  3155. "read": "J",
  3156. "write": "J",
  3157. "blocked": "N",
  3158. "process": ""
  3159. },
  3160. "iqd_file": {
  3161. "mtime": "0"
  3162. },
  3163. "csv_file": {
  3164. "mtime": "0"
  3165. },
  3166. "csv_file_iqd_folder": {
  3167. "mtime": "0"
  3168. },
  3169. "duplicates": []
  3170. },
  3171. "loc_belege_nw_gw_vk_sich_vor_kost2_aus_datev": {
  3172. "imr_file": {
  3173. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_sich_vor_kost2_aus_datev.imr",
  3174. "size": 162816,
  3175. "ctime": "2020-11-30T17:22:58",
  3176. "mtime": "2020-11-30T17:22:58",
  3177. "read": "J",
  3178. "write": "J",
  3179. "blocked": "N",
  3180. "process": ""
  3181. },
  3182. "iqd_file": {
  3183. "mtime": "0"
  3184. },
  3185. "csv_file": {
  3186. "mtime": "0"
  3187. },
  3188. "csv_file_iqd_folder": {
  3189. "mtime": "0"
  3190. },
  3191. "duplicates": []
  3192. },
  3193. "serviceberater_rechnung": {
  3194. "imr_file": {
  3195. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\serviceberater_rechnung.imr",
  3196. "size": 64512,
  3197. "ctime": "2022-01-05T11:17:05",
  3198. "mtime": "2022-01-05T11:17:06",
  3199. "read": "J",
  3200. "write": "J",
  3201. "blocked": "N",
  3202. "process": ""
  3203. },
  3204. "iqd_file": {
  3205. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\serviceberater_rechnung.iqd",
  3206. "size": 1133,
  3207. "ctime": "2018-05-24T17:18:24",
  3208. "mtime": "2018-05-24T17:18:24",
  3209. "read": "J",
  3210. "write": "J",
  3211. "blocked": "N",
  3212. "process": ""
  3213. },
  3214. "csv_file": {
  3215. "mtime": "0"
  3216. },
  3217. "csv_file_iqd_folder": {
  3218. "mtime": "0"
  3219. },
  3220. "duplicates": []
  3221. },
  3222. "offene_auftraege_ums_ben_aw": {
  3223. "imr_file": {
  3224. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_ums_ben_aw.imr",
  3225. "size": 85504,
  3226. "ctime": "2022-01-06T09:21:05",
  3227. "mtime": "2022-01-06T09:21:06",
  3228. "read": "J",
  3229. "write": "J",
  3230. "blocked": "N",
  3231. "process": ""
  3232. },
  3233. "iqd_file": {
  3234. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_ums_ben_aw.iqd",
  3235. "size": 6378,
  3236. "ctime": "2019-11-21T16:58:22",
  3237. "mtime": "2019-11-21T16:58:22",
  3238. "read": "J",
  3239. "write": "J",
  3240. "blocked": "N",
  3241. "process": ""
  3242. },
  3243. "csv_file": {
  3244. "filename": "c:\\globalcube\\system\\locosoft\\export\\offene_auftraege_ums_ben_aw.csv",
  3245. "size": 3544548,
  3246. "ctime": "2022-07-08T11:18:47",
  3247. "mtime": "2022-07-08T11:18:47",
  3248. "read": "J",
  3249. "write": "J",
  3250. "blocked": "N",
  3251. "process": ""
  3252. },
  3253. "csv_file_iqd_folder": {
  3254. "mtime": "0"
  3255. },
  3256. "duplicates": [
  3257. "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\sich\\offene_auftraege_ums_ben_aw.imr"
  3258. ]
  3259. },
  3260. "op_aus_loc_belege_ohne_8520_mit_betriebesteuerung_invoices": {
  3261. "imr_file": {
  3262. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_ohne_8520_mit_betriebesteuerung_invoices.imr",
  3263. "size": 121344,
  3264. "ctime": "2019-11-29T14:46:52",
  3265. "mtime": "2019-11-29T14:46:52",
  3266. "read": "J",
  3267. "write": "J",
  3268. "blocked": "N",
  3269. "process": ""
  3270. },
  3271. "iqd_file": {
  3272. "mtime": "0"
  3273. },
  3274. "csv_file": {
  3275. "mtime": "0"
  3276. },
  3277. "csv_file_iqd_folder": {
  3278. "mtime": "0"
  3279. },
  3280. "duplicates": []
  3281. },
  3282. "aftersales_rechnungen_verk_aw_final": {
  3283. "imr_file": {
  3284. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_verk_aw_final.imr",
  3285. "size": 74752,
  3286. "ctime": "2021-05-07T14:36:10",
  3287. "mtime": "2021-09-23T21:25:35",
  3288. "read": "J",
  3289. "write": "J",
  3290. "blocked": "N",
  3291. "process": ""
  3292. },
  3293. "iqd_file": {
  3294. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_verk_aw_final.iqd",
  3295. "size": 4878,
  3296. "ctime": "2018-06-13T11:52:02",
  3297. "mtime": "2018-06-13T11:52:02",
  3298. "read": "J",
  3299. "write": "J",
  3300. "blocked": "N",
  3301. "process": ""
  3302. },
  3303. "csv_file": {
  3304. "filename": "c:\\globalcube\\system\\locosoft\\export\\aftersales_rechnungen_verk_aw_final.csv",
  3305. "size": 42083690,
  3306. "ctime": "2022-07-08T11:17:49",
  3307. "mtime": "2022-07-08T11:17:55",
  3308. "read": "J",
  3309. "write": "J",
  3310. "blocked": "N",
  3311. "process": ""
  3312. },
  3313. "csv_file_iqd_folder": {
  3314. "mtime": "0"
  3315. },
  3316. "duplicates": []
  3317. },
  3318. "op_aus_loc_belege_8520": {
  3319. "imr_file": {
  3320. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_8520.imr",
  3321. "size": 52224,
  3322. "ctime": "2020-04-21T08:22:30",
  3323. "mtime": "2020-04-21T08:22:30",
  3324. "read": "J",
  3325. "write": "J",
  3326. "blocked": "N",
  3327. "process": ""
  3328. },
  3329. "iqd_file": {
  3330. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_8520.iqd",
  3331. "size": 1001,
  3332. "ctime": "2018-05-24T17:19:12",
  3333. "mtime": "2018-05-24T17:19:12",
  3334. "read": "J",
  3335. "write": "J",
  3336. "blocked": "N",
  3337. "process": ""
  3338. },
  3339. "csv_file": {
  3340. "filename": "c:\\globalcube\\system\\locosoft\\export\\op_aus_loc_belege_8520.csv",
  3341. "size": 187,
  3342. "ctime": "2022-07-08T11:18:53",
  3343. "mtime": "2022-07-08T11:18:53",
  3344. "read": "J",
  3345. "write": "J",
  3346. "blocked": "N",
  3347. "process": ""
  3348. },
  3349. "csv_file_iqd_folder": {
  3350. "mtime": "0"
  3351. },
  3352. "duplicates": []
  3353. },
  3354. "aftersales_rechnungen_neu_mit_steuerung_kennzahlen": {
  3355. "imr_file": {
  3356. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_neu_mit_steuerung_kennzahlen.imr",
  3357. "size": 157184,
  3358. "ctime": "2020-04-21T08:02:36",
  3359. "mtime": "2020-04-21T08:02:36",
  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. "kontenrahmen": {
  3377. "imr_file": {
  3378. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen.imr",
  3379. "size": 133120,
  3380. "ctime": "2020-11-11T10:32:10",
  3381. "mtime": "2021-07-08T11:26:24",
  3382. "read": "J",
  3383. "write": "J",
  3384. "blocked": "N",
  3385. "process": ""
  3386. },
  3387. "iqd_file": {
  3388. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen.iqd",
  3389. "size": 3782,
  3390. "ctime": "2015-07-08T09:32:32",
  3391. "mtime": "2015-07-08T09:32:32",
  3392. "read": "J",
  3393. "write": "J",
  3394. "blocked": "N",
  3395. "process": ""
  3396. },
  3397. "csv_file": {
  3398. "filename": "c:\\globalcube\\system\\locosoft\\export\\kontenrahmen.csv",
  3399. "size": 104537,
  3400. "ctime": "2016-08-09T10:03:22",
  3401. "mtime": "2016-08-09T10:03:22",
  3402. "read": "J",
  3403. "write": "J",
  3404. "blocked": "N",
  3405. "process": ""
  3406. },
  3407. "csv_file_iqd_folder": {
  3408. "mtime": "0"
  3409. },
  3410. "duplicates": []
  3411. },
  3412. "loc_belege_bilanz_alt": {
  3413. "imr_file": {
  3414. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_bilanz_alt.imr",
  3415. "size": 100352,
  3416. "ctime": "2016-05-18T11:09:36",
  3417. "mtime": "2016-05-18T11:09:36",
  3418. "read": "J",
  3419. "write": "J",
  3420. "blocked": "N",
  3421. "process": ""
  3422. },
  3423. "iqd_file": {
  3424. "mtime": "0"
  3425. },
  3426. "csv_file": {
  3427. "mtime": "0"
  3428. },
  3429. "csv_file_iqd_folder": {
  3430. "mtime": "0"
  3431. },
  3432. "duplicates": []
  3433. },
  3434. "current_date_prognose_vj": {
  3435. "imr_file": {
  3436. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_vj.imr",
  3437. "size": 41984,
  3438. "ctime": "2016-06-01T12:51:10",
  3439. "mtime": "2016-06-01T12:51:10",
  3440. "read": "J",
  3441. "write": "J",
  3442. "blocked": "N",
  3443. "process": ""
  3444. },
  3445. "iqd_file": {
  3446. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_vj.iqd",
  3447. "size": 2428,
  3448. "ctime": "2016-06-01T12:19:38",
  3449. "mtime": "2016-06-01T12:19:38",
  3450. "read": "J",
  3451. "write": "J",
  3452. "blocked": "N",
  3453. "process": ""
  3454. },
  3455. "csv_file": {
  3456. "mtime": "0"
  3457. },
  3458. "csv_file_iqd_folder": {
  3459. "mtime": "0"
  3460. },
  3461. "duplicates": []
  3462. },
  3463. "kontenrahmen_2": {
  3464. "imr_file": {
  3465. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen\\kontenrahmen_2.imr",
  3466. "size": 63488,
  3467. "ctime": "2008-09-15T15:58:04",
  3468. "mtime": "2008-09-15T15:58:04",
  3469. "read": "J",
  3470. "write": "J",
  3471. "blocked": "N",
  3472. "process": ""
  3473. },
  3474. "iqd_file": {
  3475. "mtime": "0"
  3476. },
  3477. "csv_file": {
  3478. "mtime": "0"
  3479. },
  3480. "csv_file_iqd_folder": {
  3481. "mtime": "0"
  3482. },
  3483. "duplicates": []
  3484. },
  3485. "loc_belege_stk": {
  3486. "imr_file": {
  3487. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_stk.imr",
  3488. "size": 140800,
  3489. "ctime": "2018-05-25T10:21:36",
  3490. "mtime": "2018-05-25T10:21:36",
  3491. "read": "J",
  3492. "write": "J",
  3493. "blocked": "N",
  3494. "process": ""
  3495. },
  3496. "iqd_file": {
  3497. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_stk.iqd",
  3498. "size": 6771,
  3499. "ctime": "2018-05-25T10:21:42",
  3500. "mtime": "2018-05-25T10:21:42",
  3501. "read": "J",
  3502. "write": "J",
  3503. "blocked": "N",
  3504. "process": ""
  3505. },
  3506. "csv_file": {
  3507. "mtime": "0"
  3508. },
  3509. "csv_file_iqd_folder": {
  3510. "mtime": "0"
  3511. },
  3512. "duplicates": []
  3513. },
  3514. "loc_belege_nw_gw_vk - kopie (4)": {
  3515. "imr_file": {
  3516. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk - kopie (4).imr",
  3517. "size": 262144,
  3518. "ctime": "2021-09-23T21:06:45",
  3519. "mtime": "2021-09-23T18:15:00",
  3520. "read": "J",
  3521. "write": "J",
  3522. "blocked": "N",
  3523. "process": ""
  3524. },
  3525. "iqd_file": {
  3526. "mtime": "0"
  3527. },
  3528. "csv_file": {
  3529. "mtime": "0"
  3530. },
  3531. "csv_file_iqd_folder": {
  3532. "mtime": "0"
  3533. },
  3534. "duplicates": []
  3535. },
  3536. "current_date_prognose_operativ_vj": {
  3537. "imr_file": {
  3538. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_operativ_vj.imr",
  3539. "size": 64512,
  3540. "ctime": "2017-06-30T09:08:36",
  3541. "mtime": "2017-06-30T09:08:36",
  3542. "read": "J",
  3543. "write": "J",
  3544. "blocked": "N",
  3545. "process": ""
  3546. },
  3547. "iqd_file": {
  3548. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_operativ_vj.iqd",
  3549. "size": 2523,
  3550. "ctime": "2017-06-30T09:08:32",
  3551. "mtime": "2017-06-30T09:08:32",
  3552. "read": "J",
  3553. "write": "J",
  3554. "blocked": "N",
  3555. "process": ""
  3556. },
  3557. "csv_file": {
  3558. "mtime": "0"
  3559. },
  3560. "csv_file_iqd_folder": {
  3561. "mtime": "0"
  3562. },
  3563. "duplicates": []
  3564. },
  3565. "zeit_stempelungen_pausen_produktiv": {
  3566. "imr_file": {
  3567. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_pausen_produktiv.imr",
  3568. "size": 94720,
  3569. "ctime": "2020-11-17T16:52:08",
  3570. "mtime": "2022-01-13T13:16:31",
  3571. "read": "J",
  3572. "write": "J",
  3573. "blocked": "N",
  3574. "process": ""
  3575. },
  3576. "iqd_file": {
  3577. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_pausen_produktiv.iqd",
  3578. "size": 6764,
  3579. "ctime": "2019-11-29T14:13:46",
  3580. "mtime": "2019-11-29T14:13:46",
  3581. "read": "J",
  3582. "write": "J",
  3583. "blocked": "N",
  3584. "process": ""
  3585. },
  3586. "csv_file": {
  3587. "filename": "c:\\globalcube\\system\\locosoft\\export\\zeit_stempelungen_pausen_produktiv.csv",
  3588. "size": 45683320,
  3589. "ctime": "2022-07-08T11:19:23",
  3590. "mtime": "2022-07-08T11:19:32",
  3591. "read": "J",
  3592. "write": "J",
  3593. "blocked": "N",
  3594. "process": ""
  3595. },
  3596. "csv_file_iqd_folder": {
  3597. "mtime": "0"
  3598. },
  3599. "duplicates": []
  3600. },
  3601. "current_date_prognose_gefiltert": {
  3602. "imr_file": {
  3603. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_gefiltert.imr",
  3604. "size": 41984,
  3605. "ctime": "2015-07-07T09:26:46",
  3606. "mtime": "2015-07-07T09:26:46",
  3607. "read": "J",
  3608. "write": "J",
  3609. "blocked": "N",
  3610. "process": ""
  3611. },
  3612. "iqd_file": {
  3613. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_gefiltert.iqd",
  3614. "size": 2022,
  3615. "ctime": "2015-07-07T09:26:44",
  3616. "mtime": "2015-07-07T09:26:44",
  3617. "read": "J",
  3618. "write": "J",
  3619. "blocked": "N",
  3620. "process": ""
  3621. },
  3622. "csv_file": {
  3623. "mtime": "0"
  3624. },
  3625. "csv_file_iqd_folder": {
  3626. "mtime": "0"
  3627. },
  3628. "duplicates": []
  3629. },
  3630. "current_date_prognose_operativ": {
  3631. "imr_file": {
  3632. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_operativ.imr",
  3633. "size": 46592,
  3634. "ctime": "2015-07-07T09:27:48",
  3635. "mtime": "2015-07-07T09:27:48",
  3636. "read": "J",
  3637. "write": "J",
  3638. "blocked": "N",
  3639. "process": ""
  3640. },
  3641. "iqd_file": {
  3642. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\current_date_prognose_operativ.iqd",
  3643. "size": 2331,
  3644. "ctime": "2015-07-07T09:27:42",
  3645. "mtime": "2015-07-07T09:27:42",
  3646. "read": "J",
  3647. "write": "J",
  3648. "blocked": "N",
  3649. "process": ""
  3650. },
  3651. "csv_file": {
  3652. "mtime": "0"
  3653. },
  3654. "csv_file_iqd_folder": {
  3655. "mtime": "0"
  3656. },
  3657. "duplicates": []
  3658. },
  3659. "zeit_ben_std_lg_mit_subsidiary_aus_labours_und_nicht_aus_employee": {
  3660. "imr_file": {
  3661. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_ben_std_lg_mit_subsidiary_aus_labours_und_nicht_aus_employee.imr",
  3662. "size": 63488,
  3663. "ctime": "2020-04-22T09:26:24",
  3664. "mtime": "2020-04-22T09:26:24",
  3665. "read": "J",
  3666. "write": "J",
  3667. "blocked": "N",
  3668. "process": ""
  3669. },
  3670. "iqd_file": {
  3671. "mtime": "0"
  3672. },
  3673. "csv_file": {
  3674. "mtime": "0"
  3675. },
  3676. "csv_file_iqd_folder": {
  3677. "mtime": "0"
  3678. },
  3679. "duplicates": []
  3680. },
  3681. "loc_kontenrahmen_gc_struct_import": {
  3682. "imr_file": {
  3683. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_kontenrahmen_gc_struct_import.imr",
  3684. "size": 37376,
  3685. "ctime": "2016-06-01T14:48:18",
  3686. "mtime": "2016-06-01T14:48:18",
  3687. "read": "J",
  3688. "write": "J",
  3689. "blocked": "N",
  3690. "process": ""
  3691. },
  3692. "iqd_file": {
  3693. "mtime": "0"
  3694. },
  3695. "csv_file": {
  3696. "mtime": "0"
  3697. },
  3698. "csv_file_iqd_folder": {
  3699. "mtime": "0"
  3700. },
  3701. "duplicates": []
  3702. },
  3703. "kontenrahmen_fuer_gc_struct": {
  3704. "imr_file": {
  3705. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\kontenrahmen_fuer_gc_struct.imr",
  3706. "size": 32256,
  3707. "ctime": "2021-01-18T17:14:56",
  3708. "mtime": "2021-01-18T17:14:56",
  3709. "read": "J",
  3710. "write": "J",
  3711. "blocked": "N",
  3712. "process": ""
  3713. },
  3714. "iqd_file": {
  3715. "mtime": "0"
  3716. },
  3717. "csv_file": {
  3718. "mtime": "0"
  3719. },
  3720. "csv_file_iqd_folder": {
  3721. "mtime": "0"
  3722. },
  3723. "duplicates": []
  3724. },
  3725. "aftersales_rechnungen_neu - kopie": {
  3726. "imr_file": {
  3727. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_neu - kopie.imr",
  3728. "size": 156672,
  3729. "ctime": "2020-12-17T16:23:10",
  3730. "mtime": "2020-12-17T16:23:10",
  3731. "read": "J",
  3732. "write": "J",
  3733. "blocked": "N",
  3734. "process": ""
  3735. },
  3736. "iqd_file": {
  3737. "mtime": "0"
  3738. },
  3739. "csv_file": {
  3740. "mtime": "0"
  3741. },
  3742. "csv_file_iqd_folder": {
  3743. "mtime": "0"
  3744. },
  3745. "duplicates": []
  3746. },
  3747. "zeit_stempelungen_neu_abstimmung": {
  3748. "imr_file": {
  3749. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu_abstimmung.imr",
  3750. "size": 54784,
  3751. "ctime": "2021-03-17T10:03:04",
  3752. "mtime": "2021-03-17T10:03:04",
  3753. "read": "J",
  3754. "write": "J",
  3755. "blocked": "N",
  3756. "process": ""
  3757. },
  3758. "iqd_file": {
  3759. "mtime": "0"
  3760. },
  3761. "csv_file": {
  3762. "mtime": "0"
  3763. },
  3764. "csv_file_iqd_folder": {
  3765. "mtime": "0"
  3766. },
  3767. "duplicates": []
  3768. },
  3769. "nw_gw_be_auf_nw_gw_bestand_cat - kopie (2)": {
  3770. "imr_file": {
  3771. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\nw_gw_be_auf_nw_gw_bestand_cat - kopie (2).imr",
  3772. "size": 169472,
  3773. "ctime": "2021-07-21T10:02:22",
  3774. "mtime": "2021-05-07T09:46:34",
  3775. "read": "J",
  3776. "write": "J",
  3777. "blocked": "N",
  3778. "process": ""
  3779. },
  3780. "iqd_file": {
  3781. "mtime": "0"
  3782. },
  3783. "csv_file": {
  3784. "mtime": "0"
  3785. },
  3786. "csv_file_iqd_folder": {
  3787. "mtime": "0"
  3788. },
  3789. "duplicates": []
  3790. },
  3791. "loc_belege_nw_gw_vk - kopie": {
  3792. "imr_file": {
  3793. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk - kopie.imr",
  3794. "size": 144384,
  3795. "ctime": "2020-12-16T17:35:40",
  3796. "mtime": "2021-03-16T17:26:44",
  3797. "read": "J",
  3798. "write": "J",
  3799. "blocked": "N",
  3800. "process": ""
  3801. },
  3802. "iqd_file": {
  3803. "mtime": "0"
  3804. },
  3805. "csv_file": {
  3806. "mtime": "0"
  3807. },
  3808. "csv_file_iqd_folder": {
  3809. "mtime": "0"
  3810. },
  3811. "duplicates": []
  3812. },
  3813. "serviceberater_rechnung - kopie": {
  3814. "imr_file": {
  3815. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\serviceberater_rechnung - kopie.imr",
  3816. "size": 56832,
  3817. "ctime": "2022-01-05T11:17:11",
  3818. "mtime": "2021-10-13T14:47:13",
  3819. "read": "J",
  3820. "write": "J",
  3821. "blocked": "N",
  3822. "process": ""
  3823. },
  3824. "iqd_file": {
  3825. "mtime": "0"
  3826. },
  3827. "csv_file": {
  3828. "mtime": "0"
  3829. },
  3830. "csv_file_iqd_folder": {
  3831. "mtime": "0"
  3832. },
  3833. "duplicates": []
  3834. },
  3835. "loc_op_belege": {
  3836. "imr_file": {
  3837. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\loc_op_belege.imr",
  3838. "size": 111104,
  3839. "ctime": "2018-01-23T14:51:42",
  3840. "mtime": "2018-01-23T14:51:42",
  3841. "read": "J",
  3842. "write": "J",
  3843. "blocked": "N",
  3844. "process": ""
  3845. },
  3846. "iqd_file": {
  3847. "mtime": "0"
  3848. },
  3849. "csv_file": {
  3850. "mtime": "0"
  3851. },
  3852. "csv_file_iqd_folder": {
  3853. "mtime": "0"
  3854. },
  3855. "duplicates": []
  3856. },
  3857. "loc_belege_nw_gw_vk_sich_vor_invoice_date_zeichen": {
  3858. "imr_file": {
  3859. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_sich_vor_invoice_date_zeichen.imr",
  3860. "size": 171520,
  3861. "ctime": "2018-05-24T15:40:56",
  3862. "mtime": "2018-05-24T15:40:56",
  3863. "read": "J",
  3864. "write": "J",
  3865. "blocked": "N",
  3866. "process": ""
  3867. },
  3868. "iqd_file": {
  3869. "mtime": "0"
  3870. },
  3871. "csv_file": {
  3872. "mtime": "0"
  3873. },
  3874. "csv_file_iqd_folder": {
  3875. "mtime": "0"
  3876. },
  3877. "duplicates": []
  3878. },
  3879. "op_aus_loc_belege_deb_saldo_mit_betriebesteuerung_\u00fcber_invoice": {
  3880. "imr_file": {
  3881. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_deb_saldo_mit_betriebesteuerung_\u00fcber_invoice.imr",
  3882. "size": 196608,
  3883. "ctime": "2020-04-21T08:06:28",
  3884. "mtime": "2020-04-21T08:06:28",
  3885. "read": "J",
  3886. "write": "J",
  3887. "blocked": "N",
  3888. "process": ""
  3889. },
  3890. "iqd_file": {
  3891. "mtime": "0"
  3892. },
  3893. "csv_file": {
  3894. "mtime": "0"
  3895. },
  3896. "csv_file_iqd_folder": {
  3897. "mtime": "0"
  3898. },
  3899. "duplicates": []
  3900. },
  3901. "loc_belege_nw_gw_vk_stk_fibu_ori": {
  3902. "imr_file": {
  3903. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu_ori.imr",
  3904. "size": 161280,
  3905. "ctime": "2020-11-25T16:21:38",
  3906. "mtime": "2020-11-25T16:21:38",
  3907. "read": "J",
  3908. "write": "J",
  3909. "blocked": "N",
  3910. "process": ""
  3911. },
  3912. "iqd_file": {
  3913. "mtime": "0"
  3914. },
  3915. "csv_file": {
  3916. "mtime": "0"
  3917. },
  3918. "csv_file_iqd_folder": {
  3919. "mtime": "0"
  3920. },
  3921. "duplicates": []
  3922. },
  3923. "loc_belege_nw_gw_vk_stk_fibu_lutz": {
  3924. "imr_file": {
  3925. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu_lutz.imr",
  3926. "size": 155136,
  3927. "ctime": "2021-01-06T10:17:06",
  3928. "mtime": "2021-01-06T10:17:06",
  3929. "read": "J",
  3930. "write": "J",
  3931. "blocked": "N",
  3932. "process": ""
  3933. },
  3934. "iqd_file": {
  3935. "mtime": "0"
  3936. },
  3937. "csv_file": {
  3938. "mtime": "0"
  3939. },
  3940. "csv_file_iqd_folder": {
  3941. "mtime": "0"
  3942. },
  3943. "duplicates": []
  3944. },
  3945. "zeit_stempelungen_neu_inkl_pausen": {
  3946. "imr_file": {
  3947. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\zeit_stempelungen_neu_inkl_pausen.imr",
  3948. "size": 83456,
  3949. "ctime": "2018-03-15T10:45:02",
  3950. "mtime": "2018-03-15T10:45:02",
  3951. "read": "J",
  3952. "write": "J",
  3953. "blocked": "N",
  3954. "process": ""
  3955. },
  3956. "iqd_file": {
  3957. "mtime": "0"
  3958. },
  3959. "csv_file": {
  3960. "mtime": "0"
  3961. },
  3962. "csv_file_iqd_folder": {
  3963. "mtime": "0"
  3964. },
  3965. "duplicates": []
  3966. },
  3967. "loc_belege_nw_gw_vk_stk_fibu_reference_vehicle_0_fehlt": {
  3968. "imr_file": {
  3969. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu_reference_vehicle_0_fehlt.imr",
  3970. "size": 172032,
  3971. "ctime": "2018-06-06T09:34:10",
  3972. "mtime": "2018-06-06T09:34:10",
  3973. "read": "J",
  3974. "write": "J",
  3975. "blocked": "N",
  3976. "process": ""
  3977. },
  3978. "iqd_file": {
  3979. "mtime": "0"
  3980. },
  3981. "csv_file": {
  3982. "mtime": "0"
  3983. },
  3984. "csv_file_iqd_folder": {
  3985. "mtime": "0"
  3986. },
  3987. "duplicates": []
  3988. },
  3989. "loc_belege_nw_gw_vk_stk_fibu_ohne_kundenart_und_standort": {
  3990. "imr_file": {
  3991. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu_ohne_kundenart_und_standort.imr",
  3992. "size": 137216,
  3993. "ctime": "2020-11-24T15:52:24",
  3994. "mtime": "2020-11-24T15:52:24",
  3995. "read": "J",
  3996. "write": "J",
  3997. "blocked": "N",
  3998. "process": ""
  3999. },
  4000. "iqd_file": {
  4001. "mtime": "0"
  4002. },
  4003. "csv_file": {
  4004. "mtime": "0"
  4005. },
  4006. "csv_file_iqd_folder": {
  4007. "mtime": "0"
  4008. },
  4009. "duplicates": []
  4010. },
  4011. "loc_belege_nw_gw_vk_datev": {
  4012. "imr_file": {
  4013. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_datev.imr",
  4014. "size": 255488,
  4015. "ctime": "2020-12-16T17:34:48",
  4016. "mtime": "2020-12-16T17:34:48",
  4017. "read": "J",
  4018. "write": "J",
  4019. "blocked": "N",
  4020. "process": ""
  4021. },
  4022. "iqd_file": {
  4023. "mtime": "0"
  4024. },
  4025. "csv_file": {
  4026. "mtime": "0"
  4027. },
  4028. "csv_file_iqd_folder": {
  4029. "mtime": "0"
  4030. },
  4031. "duplicates": []
  4032. },
  4033. "skr_herkunft_kst": {
  4034. "imr_file": {
  4035. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_herkunft_kst.imr",
  4036. "size": 63488,
  4037. "ctime": "2020-04-08T11:25:48",
  4038. "mtime": "2020-04-08T11:25:48",
  4039. "read": "J",
  4040. "write": "J",
  4041. "blocked": "N",
  4042. "process": ""
  4043. },
  4044. "iqd_file": {
  4045. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\skr_herkunft_kst.iqd",
  4046. "size": 1006,
  4047. "ctime": "2016-05-31T15:06:46",
  4048. "mtime": "2016-05-31T15:06:46",
  4049. "read": "J",
  4050. "write": "J",
  4051. "blocked": "N",
  4052. "process": ""
  4053. },
  4054. "csv_file": {
  4055. "filename": "c:\\globalcube\\system\\locosoft\\export\\skr_herkunft_kst.csv",
  4056. "size": 2804,
  4057. "ctime": "2018-06-19T13:21:36",
  4058. "mtime": "2018-06-19T13:21:36",
  4059. "read": "J",
  4060. "write": "J",
  4061. "blocked": "N",
  4062. "process": ""
  4063. },
  4064. "csv_file_iqd_folder": {
  4065. "mtime": "0"
  4066. },
  4067. "duplicates": []
  4068. },
  4069. "offene_auftraege_teile - kopie (2)": {
  4070. "imr_file": {
  4071. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\offene_auftraege_teile - kopie (2).imr",
  4072. "size": 90624,
  4073. "ctime": "2021-11-29T16:40:04",
  4074. "mtime": "2021-10-20T14:33:03",
  4075. "read": "J",
  4076. "write": "J",
  4077. "blocked": "N",
  4078. "process": ""
  4079. },
  4080. "iqd_file": {
  4081. "mtime": "0"
  4082. },
  4083. "csv_file": {
  4084. "mtime": "0"
  4085. },
  4086. "csv_file_iqd_folder": {
  4087. "mtime": "0"
  4088. },
  4089. "duplicates": []
  4090. },
  4091. "loc_belege - kopie": {
  4092. "imr_file": {
  4093. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege - kopie.imr",
  4094. "size": 98816,
  4095. "ctime": "2021-11-22T17:11:02",
  4096. "mtime": "2021-07-08T11:39:30",
  4097. "read": "J",
  4098. "write": "J",
  4099. "blocked": "N",
  4100. "process": ""
  4101. },
  4102. "iqd_file": {
  4103. "mtime": "0"
  4104. },
  4105. "csv_file": {
  4106. "mtime": "0"
  4107. },
  4108. "csv_file_iqd_folder": {
  4109. "mtime": "0"
  4110. },
  4111. "duplicates": []
  4112. },
  4113. "aftersales_rechnungen_ben_aw_final": {
  4114. "imr_file": {
  4115. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_ben_aw_final.imr",
  4116. "size": 78336,
  4117. "ctime": "2021-02-02T11:01:10",
  4118. "mtime": "2021-09-23T21:25:30",
  4119. "read": "J",
  4120. "write": "J",
  4121. "blocked": "N",
  4122. "process": ""
  4123. },
  4124. "iqd_file": {
  4125. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\aftersales_rechnungen_ben_aw_final.iqd",
  4126. "size": 5778,
  4127. "ctime": "2018-06-13T11:53:04",
  4128. "mtime": "2018-06-13T11:53:04",
  4129. "read": "J",
  4130. "write": "J",
  4131. "blocked": "N",
  4132. "process": ""
  4133. },
  4134. "csv_file": {
  4135. "filename": "c:\\globalcube\\system\\locosoft\\export\\aftersales_rechnungen_ben_aw_final.csv",
  4136. "size": 44584770,
  4137. "ctime": "2022-07-08T11:18:20",
  4138. "mtime": "2022-07-08T11:18:26",
  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_stk_fibu": {
  4150. "imr_file": {
  4151. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_stk_fibu.imr",
  4152. "size": 166400,
  4153. "ctime": "2020-04-15T18:12:58",
  4154. "mtime": "2021-07-08T16:57:43",
  4155. "read": "J",
  4156. "write": "J",
  4157. "blocked": "N",
  4158. "process": ""
  4159. },
  4160. "iqd_file": {
  4161. "mtime": "0"
  4162. },
  4163. "csv_file": {
  4164. "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_nw_gw_vk_stk_fibu.csv",
  4165. "size": 9382737,
  4166. "ctime": "2022-07-08T11:14:41",
  4167. "mtime": "2022-07-08T11:14:43",
  4168. "read": "J",
  4169. "write": "J",
  4170. "blocked": "N",
  4171. "process": ""
  4172. },
  4173. "csv_file_iqd_folder": {
  4174. "mtime": "0"
  4175. },
  4176. "duplicates": []
  4177. },
  4178. "loc_belege_nw_gw_vk_aus_dealer_vehicles": {
  4179. "imr_file": {
  4180. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_aus_dealer_vehicles.imr",
  4181. "size": 154112,
  4182. "ctime": "2020-04-27T10:14:42",
  4183. "mtime": "2021-09-21T16:24:57",
  4184. "read": "J",
  4185. "write": "J",
  4186. "blocked": "N",
  4187. "process": ""
  4188. },
  4189. "iqd_file": {
  4190. "mtime": "0"
  4191. },
  4192. "csv_file": {
  4193. "filename": "c:\\globalcube\\system\\locosoft\\export\\loc_belege_nw_gw_vk_aus_dealer_vehicles.csv",
  4194. "size": 4562619,
  4195. "ctime": "2021-09-21T08:19:19",
  4196. "mtime": "2021-09-21T16:24:52",
  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. "auftraege": {
  4208. "imr_file": {
  4209. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\zeit\\auftraege.imr",
  4210. "size": 120832,
  4211. "ctime": "2017-05-22T15:13:00",
  4212. "mtime": "2017-05-22T15:13:00",
  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. "ben_aw_order_number": {
  4230. "imr_file": {
  4231. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\ben_aw_order_number.imr",
  4232. "size": 45568,
  4233. "ctime": "2020-11-11T10:23:38",
  4234. "mtime": "2020-11-11T10:23:38",
  4235. "read": "J",
  4236. "write": "J",
  4237. "blocked": "N",
  4238. "process": ""
  4239. },
  4240. "iqd_file": {
  4241. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\serv_teile\\ben_aw_order_number.iqd",
  4242. "size": 425,
  4243. "ctime": "2018-05-24T17:17:08",
  4244. "mtime": "2018-05-24T17:17:08",
  4245. "read": "J",
  4246. "write": "J",
  4247. "blocked": "N",
  4248. "process": ""
  4249. },
  4250. "csv_file": {
  4251. "mtime": "0"
  4252. },
  4253. "csv_file_iqd_folder": {
  4254. "mtime": "0"
  4255. },
  4256. "duplicates": []
  4257. },
  4258. "loc_belege_sich": {
  4259. "imr_file": {
  4260. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\belege\\loc_belege_sich.imr",
  4261. "size": 98304,
  4262. "ctime": "2021-01-06T10:15:42",
  4263. "mtime": "2020-04-08T10:18:18",
  4264. "read": "J",
  4265. "write": "J",
  4266. "blocked": "N",
  4267. "process": ""
  4268. },
  4269. "iqd_file": {
  4270. "mtime": "0"
  4271. },
  4272. "csv_file": {
  4273. "mtime": "0"
  4274. },
  4275. "csv_file_iqd_folder": {
  4276. "mtime": "0"
  4277. },
  4278. "duplicates": []
  4279. },
  4280. "op_aus_loc_belege": {
  4281. "imr_file": {
  4282. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege.imr",
  4283. "size": 121344,
  4284. "ctime": "2019-11-29T14:45:00",
  4285. "mtime": "2019-11-29T14:45:00",
  4286. "read": "J",
  4287. "write": "J",
  4288. "blocked": "N",
  4289. "process": ""
  4290. },
  4291. "iqd_file": {
  4292. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege.iqd",
  4293. "size": 11614,
  4294. "ctime": "2019-11-29T14:44:56",
  4295. "mtime": "2019-11-29T14:44:56",
  4296. "read": "J",
  4297. "write": "J",
  4298. "blocked": "N",
  4299. "process": ""
  4300. },
  4301. "csv_file": {
  4302. "mtime": "0"
  4303. },
  4304. "csv_file_iqd_folder": {
  4305. "mtime": "0"
  4306. },
  4307. "duplicates": []
  4308. },
  4309. "loc_belege_nw_gw_vk_fzg_mit_reference_vehicles": {
  4310. "imr_file": {
  4311. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\nw\\loc_belege_nw_gw_vk_fzg_mit_reference_vehicles.imr",
  4312. "size": 175104,
  4313. "ctime": "2018-02-21T09:12:36",
  4314. "mtime": "2018-02-21T09:12:36",
  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. "op_aus_loc_belege_ohne_8520_forderungsart_aus_rechnungsnummer": {
  4332. "imr_file": {
  4333. "filename": "c:\\globalcube\\system\\locosoft\\iqd\\op\\op_aus_loc_belege_ohne_8520_forderungsart_aus_rechnungsnummer.imr",
  4334. "size": 110592,
  4335. "ctime": "2021-09-20T13:44:25",
  4336. "mtime": "2020-05-07T16:43:30",
  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__20220708092521\\dashboard_gesamt.mdc",
  4358. "size": 36540630,
  4359. "ctime": "2022-07-08T11:25:20",
  4360. "mtime": "2022-07-08T11:25:20",
  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": 36540630,
  4369. "ctime": "2021-08-04T17:11:43",
  4370. "mtime": "2022-07-08T11:25:20",
  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__20220708092054\\f_belege.mdc",
  4382. "size": 97186298,
  4383. "ctime": "2022-07-08T11:20:53",
  4384. "mtime": "2022-07-08T11:20:52",
  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": 97186298,
  4393. "ctime": "2021-05-08T05:09:28",
  4394. "mtime": "2022-07-08T11:20:52",
  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__20220708092103\\f_forderungen.mdc",
  4406. "size": 8963694,
  4407. "ctime": "2022-07-08T11:21:03",
  4408. "mtime": "2022-07-08T11:21:02",
  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": 8963694,
  4417. "ctime": "2021-07-09T10:29:49",
  4418. "mtime": "2022-07-08T11:21:02",
  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__20220708092310\\s_aftersales.mdc",
  4430. "size": 265800718,
  4431. "ctime": "2022-07-08T11:23:09",
  4432. "mtime": "2022-07-08T11:23:08",
  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": 265800718,
  4441. "ctime": "2021-05-08T05:10:44",
  4442. "mtime": "2022-07-08T11:23:08",
  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__20220708092323\\s_offene_auftraege.mdc",
  4454. "size": 2694658,
  4455. "ctime": "2022-07-08T11:23:23",
  4456. "mtime": "2022-07-08T11:23:22",
  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": 2694658,
  4465. "ctime": "2021-05-08T05:11:04",
  4466. "mtime": "2022-07-08T11:23:22",
  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__20220708092330\\v_bestand.mdc",
  4478. "size": 4596442,
  4479. "ctime": "2022-07-08T11:23:30",
  4480. "mtime": "2022-07-08T11:23:29",
  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": 4596442,
  4489. "ctime": "2021-05-08T05:11:14",
  4490. "mtime": "2022-07-08T11:23:29",
  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__20220708092405\\v_verkauf.mdc",
  4502. "size": 98971738,
  4503. "ctime": "2022-07-08T11:24:05",
  4504. "mtime": "2022-07-08T11:24:04",
  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": 98971738,
  4513. "ctime": "2021-05-08T05:11:32",
  4514. "mtime": "2022-07-08T11:24:04",
  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__20220708092433\\z_monteure.mdc",
  4526. "size": 60618582,
  4527. "ctime": "2022-07-08T11:24:32",
  4528. "mtime": "2022-07-08T11:24:31",
  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": 60618582,
  4537. "ctime": "2021-05-08T05:12:02",
  4538. "mtime": "2022-07-08T11:24:31",
  4539. "read": "J",
  4540. "write": "J",
  4541. "blocked": "N",
  4542. "process": ""
  4543. },
  4544. "model": "z_monteure_mit_pause",
  4545. "errors": []
  4546. }
  4547. }
  4548. }