PROCES.xml 882 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <RelatedFeature xmlns:p5_tr_map="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/procesy5_translate_map.xsd"
  3. xmlns:system_cache__resources_tree_generate_xsl_required_occurs_raport="http://biuro.biall-net.pl/xmlschema_procesy5/system_cache/resources_tree_generate_xsl_require_occurs_raport"
  4. xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd"
  5. xmlns:hfp="http://www.w3.org/2001/XMLSchema-hasFacetAndProperty"
  6. xmlns:default_db="http://biuro.biall-net.pl/xmlschema_procesy5/default_db"
  7. xmlns:p5_default_db="https://biuro.biall-net.pl/wfs/default_db"
  8. xmlns:ogc="http://www.opengis.net/ogc"
  9. xpath="ID"
  10. typeName="default_db:PROCES"
  11. typeNameRealResource="default_db:CRM_PROCES"
  12. xml_id="d11410e1">
  13. <simpleTypeMakeOgcFilter name="PROCES">
  14. <ogc:Or>
  15. <ogc:PropertyIsEqualTo>
  16. <ogc:PropertyName>TYPE</ogc:PropertyName>
  17. <ogc:Literal>PROCES</ogc:Literal>
  18. </ogc:PropertyIsEqualTo>
  19. </ogc:Or>
  20. </simpleTypeMakeOgcFilter>
  21. <!--#68 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  22. <default_db:PROCES xpath="CRM_PROCES"
  23. xml_id="d11410e5"
  24. system_cache__appinfo:id="_CRM_PROCES___d4e4691-1_CRM_PROCES">
  25. <ID xpath="ID" xml_id="d11410e9"/>
  26. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e11"/>
  27. <path xpath="path" xml_id="d11410e13"/>
  28. <DESC xpath="DESC" xml_id="d11410e15"/>
  29. <TYPE xpath="TYPE" xml_id="d11410e17"/>
  30. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  31. <RelatedFeatureLoop xml_id="d11410e19"
  32. typeNameRealResource="default_db:CRM_PROCES"
  33. typeName="default_db:PROCES"
  34. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  35. flat_relation_cache_name="ID"
  36. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  37. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  38. system_cache__appinfo:maxOccurs="unbounded"
  39. system_cache__appinfo:minOccurs="0"
  40. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  41. xpath="PARENT_ID"
  42. xpath_value="../ID">
  43. <simpleTypeMakeOgcFilter name="PROCES">
  44. <ogc:Or>
  45. <ogc:PropertyIsEqualTo>
  46. <ogc:PropertyName>TYPE</ogc:PropertyName>
  47. <ogc:Literal>PROCES</ogc:Literal>
  48. </ogc:PropertyIsEqualTo>
  49. </ogc:Or>
  50. </simpleTypeMakeOgcFilter>
  51. <default_db:PROCES xml_id="d11410e19"
  52. system_cache__appinfo:maxOccurs="unbounded"
  53. system_cache__appinfo:minOccurs="0"
  54. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  55. </RelatedFeatureLoop>
  56. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  57. <RelatedFeature xml_id="d11410e24"
  58. typeNameRealResource="default_db:CRM_PROCES"
  59. typeName="default_db:PROCES_INIT"
  60. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  61. flat_relation_cache_name="ID"
  62. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  63. system_cache__appinfo:maxOccurs="0"
  64. system_cache__appinfo:minOccurs="0"
  65. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  66. xpath="PARENT_ID"
  67. xpath_value="../ID">
  68. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  69. <ogc:Or>
  70. <ogc:PropertyIsEqualTo>
  71. <ogc:PropertyName>TYPE</ogc:PropertyName>
  72. <ogc:Literal>PROCES_INIT</ogc:Literal>
  73. </ogc:PropertyIsEqualTo>
  74. </ogc:Or>
  75. </simpleTypeMakeOgcFilter>
  76. <default_db:PROCES_INIT xml_id="d11410e24_child"
  77. system_cache__appinfo:maxOccurs="0"
  78. system_cache__appinfo:minOccurs="0"
  79. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  80. <ID xpath="ID" xml_id="d11410e31"/>
  81. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e33"/>
  82. <path xpath="path" xml_id="d11410e35"/>
  83. <DESC xpath="DESC" xml_id="d11410e37"/>
  84. <TYPE xpath="TYPE" xml_id="d11410e39"/>
  85. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  86. <RelatedFeatureLoop xml_id="d11410e41"
  87. typeNameRealResource="default_db:CRM_PROCES"
  88. typeName="default_db:PROCES"
  89. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  90. flat_relation_cache_name="ID"
  91. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  92. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  93. system_cache__appinfo:maxOccurs="unbounded"
  94. system_cache__appinfo:minOccurs="0"
  95. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  96. xpath="PARENT_ID"
  97. xpath_value="../ID">
  98. <simpleTypeMakeOgcFilter name="PROCES">
  99. <ogc:Or>
  100. <ogc:PropertyIsEqualTo>
  101. <ogc:PropertyName>TYPE</ogc:PropertyName>
  102. <ogc:Literal>PROCES</ogc:Literal>
  103. </ogc:PropertyIsEqualTo>
  104. </ogc:Or>
  105. </simpleTypeMakeOgcFilter>
  106. <default_db:PROCES xml_id="d11410e41"
  107. system_cache__appinfo:maxOccurs="unbounded"
  108. system_cache__appinfo:minOccurs="0"
  109. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  110. </RelatedFeatureLoop>
  111. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  112. <RelatedFeatureLoop xml_id="d11410e46"
  113. typeNameRealResource="default_db:CRM_PROCES"
  114. typeName="default_db:PROCES_INIT"
  115. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  116. flat_relation_cache_name="ID"
  117. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  118. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  119. system_cache__appinfo:maxOccurs="0"
  120. system_cache__appinfo:minOccurs="0"
  121. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  122. xpath="PARENT_ID"
  123. xpath_value="../ID">
  124. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  125. <ogc:Or>
  126. <ogc:PropertyIsEqualTo>
  127. <ogc:PropertyName>TYPE</ogc:PropertyName>
  128. <ogc:Literal>PROCES_INIT</ogc:Literal>
  129. </ogc:PropertyIsEqualTo>
  130. </ogc:Or>
  131. </simpleTypeMakeOgcFilter>
  132. <default_db:PROCES_INIT xml_id="d11410e46"
  133. system_cache__appinfo:maxOccurs="0"
  134. system_cache__appinfo:minOccurs="0"
  135. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  136. </RelatedFeatureLoop>
  137. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  138. <RelatedFeature xml_id="d11410e51"
  139. typeNameRealResource="default_db:CRM_PROCES"
  140. typeName="default_db:PROCES_GROUP_1"
  141. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  142. flat_relation_cache_name="ID"
  143. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  144. system_cache__appinfo:maxOccurs="0"
  145. system_cache__appinfo:minOccurs="0"
  146. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  147. xpath="PARENT_ID"
  148. xpath_value="../ID">
  149. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  150. <ogc:Or>
  151. <ogc:PropertyIsEqualTo>
  152. <ogc:PropertyName>TYPE</ogc:PropertyName>
  153. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  154. </ogc:PropertyIsEqualTo>
  155. </ogc:Or>
  156. </simpleTypeMakeOgcFilter>
  157. <default_db:PROCES_GROUP_1 xml_id="d11410e51_child"
  158. system_cache__appinfo:maxOccurs="0"
  159. system_cache__appinfo:minOccurs="0"
  160. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  161. <ID xpath="ID" xml_id="d11410e58"/>
  162. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e60"/>
  163. <path xpath="path" xml_id="d11410e62"/>
  164. <DESC xpath="DESC" xml_id="d11410e64"/>
  165. <TYPE xpath="TYPE" xml_id="d11410e66"/>
  166. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  167. <RelatedFeatureLoop xml_id="d11410e68"
  168. typeNameRealResource="default_db:CRM_PROCES"
  169. typeName="default_db:PROCES"
  170. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  171. flat_relation_cache_name="ID"
  172. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  173. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  174. system_cache__appinfo:maxOccurs="0"
  175. system_cache__appinfo:minOccurs="0"
  176. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  177. xpath="PARENT_ID"
  178. xpath_value="../ID">
  179. <simpleTypeMakeOgcFilter name="PROCES">
  180. <ogc:Or>
  181. <ogc:PropertyIsEqualTo>
  182. <ogc:PropertyName>TYPE</ogc:PropertyName>
  183. <ogc:Literal>PROCES</ogc:Literal>
  184. </ogc:PropertyIsEqualTo>
  185. </ogc:Or>
  186. </simpleTypeMakeOgcFilter>
  187. <default_db:PROCES xml_id="d11410e68"
  188. system_cache__appinfo:maxOccurs="0"
  189. system_cache__appinfo:minOccurs="0"
  190. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  191. </RelatedFeatureLoop>
  192. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  193. <RelatedFeatureLoop xml_id="d11410e73"
  194. typeNameRealResource="default_db:CRM_PROCES"
  195. typeName="default_db:PROCES_INIT"
  196. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  197. flat_relation_cache_name="ID"
  198. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  199. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  200. system_cache__appinfo:maxOccurs="unbounded"
  201. system_cache__appinfo:minOccurs="0"
  202. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  203. xpath="PARENT_ID"
  204. xpath_value="../ID">
  205. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  206. <ogc:Or>
  207. <ogc:PropertyIsEqualTo>
  208. <ogc:PropertyName>TYPE</ogc:PropertyName>
  209. <ogc:Literal>PROCES_INIT</ogc:Literal>
  210. </ogc:PropertyIsEqualTo>
  211. </ogc:Or>
  212. </simpleTypeMakeOgcFilter>
  213. <default_db:PROCES_INIT xml_id="d11410e73"
  214. system_cache__appinfo:maxOccurs="unbounded"
  215. system_cache__appinfo:minOccurs="0"
  216. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  217. </RelatedFeatureLoop>
  218. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  219. <RelatedFeatureLoop xml_id="d11410e78"
  220. typeNameRealResource="default_db:CRM_PROCES"
  221. typeName="default_db:PROCES_GROUP_1"
  222. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  223. flat_relation_cache_name="ID"
  224. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  225. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  226. system_cache__appinfo:maxOccurs="unbounded"
  227. system_cache__appinfo:minOccurs="0"
  228. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  229. xpath="PARENT_ID"
  230. xpath_value="../ID">
  231. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  232. <ogc:Or>
  233. <ogc:PropertyIsEqualTo>
  234. <ogc:PropertyName>TYPE</ogc:PropertyName>
  235. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  236. </ogc:PropertyIsEqualTo>
  237. </ogc:Or>
  238. </simpleTypeMakeOgcFilter>
  239. <default_db:PROCES_GROUP_1 xml_id="d11410e78"
  240. system_cache__appinfo:maxOccurs="unbounded"
  241. system_cache__appinfo:minOccurs="0"
  242. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  243. </RelatedFeatureLoop>
  244. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  245. <RelatedFeature xml_id="d11410e83"
  246. typeNameRealResource="default_db:CRM_PROCES"
  247. typeName="default_db:PROCES_GROUP_2"
  248. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  249. flat_relation_cache_name="ID"
  250. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  251. system_cache__appinfo:maxOccurs="unbounded"
  252. system_cache__appinfo:minOccurs="0"
  253. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  254. xpath="PARENT_ID"
  255. xpath_value="../ID">
  256. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  257. <ogc:Or>
  258. <ogc:PropertyIsEqualTo>
  259. <ogc:PropertyName>TYPE</ogc:PropertyName>
  260. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  261. </ogc:PropertyIsEqualTo>
  262. </ogc:Or>
  263. </simpleTypeMakeOgcFilter>
  264. <default_db:PROCES_GROUP_2 xml_id="d11410e83_child"
  265. system_cache__appinfo:maxOccurs="unbounded"
  266. system_cache__appinfo:minOccurs="0"
  267. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  268. <ID xpath="ID" xml_id="d11410e90"/>
  269. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e92"/>
  270. <path xpath="path" xml_id="d11410e94"/>
  271. <DESC xpath="DESC" xml_id="d11410e96"/>
  272. <TYPE xpath="TYPE" xml_id="d11410e98"/>
  273. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  274. <RelatedFeatureLoop xml_id="d11410e100"
  275. typeNameRealResource="default_db:CRM_PROCES"
  276. typeName="default_db:PROCES"
  277. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  278. flat_relation_cache_name="ID"
  279. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  280. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  281. system_cache__appinfo:maxOccurs="0"
  282. system_cache__appinfo:minOccurs="0"
  283. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  284. xpath="PARENT_ID"
  285. xpath_value="../ID">
  286. <simpleTypeMakeOgcFilter name="PROCES">
  287. <ogc:Or>
  288. <ogc:PropertyIsEqualTo>
  289. <ogc:PropertyName>TYPE</ogc:PropertyName>
  290. <ogc:Literal>PROCES</ogc:Literal>
  291. </ogc:PropertyIsEqualTo>
  292. </ogc:Or>
  293. </simpleTypeMakeOgcFilter>
  294. <default_db:PROCES xml_id="d11410e100"
  295. system_cache__appinfo:maxOccurs="0"
  296. system_cache__appinfo:minOccurs="0"
  297. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  298. </RelatedFeatureLoop>
  299. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  300. <RelatedFeatureLoop xml_id="d11410e105"
  301. typeNameRealResource="default_db:CRM_PROCES"
  302. typeName="default_db:PROCES_INIT"
  303. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  304. flat_relation_cache_name="ID"
  305. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  306. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  307. system_cache__appinfo:maxOccurs="unbounded"
  308. system_cache__appinfo:minOccurs="0"
  309. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  310. xpath="PARENT_ID"
  311. xpath_value="../ID">
  312. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  313. <ogc:Or>
  314. <ogc:PropertyIsEqualTo>
  315. <ogc:PropertyName>TYPE</ogc:PropertyName>
  316. <ogc:Literal>PROCES_INIT</ogc:Literal>
  317. </ogc:PropertyIsEqualTo>
  318. </ogc:Or>
  319. </simpleTypeMakeOgcFilter>
  320. <default_db:PROCES_INIT xml_id="d11410e105"
  321. system_cache__appinfo:maxOccurs="unbounded"
  322. system_cache__appinfo:minOccurs="0"
  323. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  324. </RelatedFeatureLoop>
  325. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  326. <RelatedFeatureLoop xml_id="d11410e110"
  327. typeNameRealResource="default_db:CRM_PROCES"
  328. typeName="default_db:PROCES_GROUP_1"
  329. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  330. flat_relation_cache_name="ID"
  331. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  332. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  333. system_cache__appinfo:maxOccurs="0"
  334. system_cache__appinfo:minOccurs="0"
  335. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  336. xpath="PARENT_ID"
  337. xpath_value="../ID">
  338. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  339. <ogc:Or>
  340. <ogc:PropertyIsEqualTo>
  341. <ogc:PropertyName>TYPE</ogc:PropertyName>
  342. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  343. </ogc:PropertyIsEqualTo>
  344. </ogc:Or>
  345. </simpleTypeMakeOgcFilter>
  346. <default_db:PROCES_GROUP_1 xml_id="d11410e110"
  347. system_cache__appinfo:maxOccurs="0"
  348. system_cache__appinfo:minOccurs="0"
  349. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  350. </RelatedFeatureLoop>
  351. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  352. <RelatedFeatureLoop xml_id="d11410e115"
  353. typeNameRealResource="default_db:CRM_PROCES"
  354. typeName="default_db:PROCES_GROUP_2"
  355. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  356. flat_relation_cache_name="ID"
  357. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  358. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  359. system_cache__appinfo:maxOccurs="unbounded"
  360. system_cache__appinfo:minOccurs="0"
  361. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  362. xpath="PARENT_ID"
  363. xpath_value="../ID">
  364. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  365. <ogc:Or>
  366. <ogc:PropertyIsEqualTo>
  367. <ogc:PropertyName>TYPE</ogc:PropertyName>
  368. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  369. </ogc:PropertyIsEqualTo>
  370. </ogc:Or>
  371. </simpleTypeMakeOgcFilter>
  372. <default_db:PROCES_GROUP_2 xml_id="d11410e115"
  373. system_cache__appinfo:maxOccurs="unbounded"
  374. system_cache__appinfo:minOccurs="0"
  375. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  376. </RelatedFeatureLoop>
  377. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  378. <RelatedFeature xml_id="d11410e120"
  379. typeNameRealResource="default_db:CRM_PROCES"
  380. typeName="default_db:PROCES_BENEFIT_INFO"
  381. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  382. flat_relation_cache_name="ID"
  383. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  384. system_cache__appinfo:maxOccurs="1"
  385. system_cache__appinfo:minOccurs="0"
  386. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  387. xpath="PARENT_ID"
  388. xpath_value="../ID">
  389. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  390. <ogc:Or>
  391. <ogc:PropertyIsEqualTo>
  392. <ogc:PropertyName>TYPE</ogc:PropertyName>
  393. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  394. </ogc:PropertyIsEqualTo>
  395. </ogc:Or>
  396. </simpleTypeMakeOgcFilter>
  397. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e120_child"
  398. system_cache__appinfo:maxOccurs="1"
  399. system_cache__appinfo:minOccurs="0"
  400. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  401. <ID xpath="ID" xml_id="d11410e127"/>
  402. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e129"/>
  403. <path xpath="path" xml_id="d11410e131"/>
  404. <DESC xpath="DESC" xml_id="d11410e133"/>
  405. <TYPE xpath="TYPE" xml_id="d11410e135"/>
  406. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  407. <RelatedFeatureLoop xml_id="d11410e137"
  408. typeNameRealResource="default_db:CRM_PROCES"
  409. typeName="default_db:PROCES"
  410. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  411. flat_relation_cache_name="ID"
  412. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  413. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  414. system_cache__appinfo:maxOccurs="0"
  415. system_cache__appinfo:minOccurs="0"
  416. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  417. xpath="PARENT_ID"
  418. xpath_value="../ID">
  419. <simpleTypeMakeOgcFilter name="PROCES">
  420. <ogc:Or>
  421. <ogc:PropertyIsEqualTo>
  422. <ogc:PropertyName>TYPE</ogc:PropertyName>
  423. <ogc:Literal>PROCES</ogc:Literal>
  424. </ogc:PropertyIsEqualTo>
  425. </ogc:Or>
  426. </simpleTypeMakeOgcFilter>
  427. <default_db:PROCES xml_id="d11410e137"
  428. system_cache__appinfo:maxOccurs="0"
  429. system_cache__appinfo:minOccurs="0"
  430. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  431. </RelatedFeatureLoop>
  432. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  433. <RelatedFeatureLoop xml_id="d11410e142"
  434. typeNameRealResource="default_db:CRM_PROCES"
  435. typeName="default_db:PROCES_INIT"
  436. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  437. flat_relation_cache_name="ID"
  438. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  439. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  440. system_cache__appinfo:maxOccurs="0"
  441. system_cache__appinfo:minOccurs="0"
  442. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  443. xpath="PARENT_ID"
  444. xpath_value="../ID">
  445. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  446. <ogc:Or>
  447. <ogc:PropertyIsEqualTo>
  448. <ogc:PropertyName>TYPE</ogc:PropertyName>
  449. <ogc:Literal>PROCES_INIT</ogc:Literal>
  450. </ogc:PropertyIsEqualTo>
  451. </ogc:Or>
  452. </simpleTypeMakeOgcFilter>
  453. <default_db:PROCES_INIT xml_id="d11410e142"
  454. system_cache__appinfo:maxOccurs="0"
  455. system_cache__appinfo:minOccurs="0"
  456. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  457. </RelatedFeatureLoop>
  458. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  459. <RelatedFeatureLoop xml_id="d11410e147"
  460. typeNameRealResource="default_db:CRM_PROCES"
  461. typeName="default_db:PROCES_GROUP_1"
  462. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  463. flat_relation_cache_name="ID"
  464. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  465. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  466. system_cache__appinfo:maxOccurs="0"
  467. system_cache__appinfo:minOccurs="0"
  468. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  469. xpath="PARENT_ID"
  470. xpath_value="../ID">
  471. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  472. <ogc:Or>
  473. <ogc:PropertyIsEqualTo>
  474. <ogc:PropertyName>TYPE</ogc:PropertyName>
  475. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  476. </ogc:PropertyIsEqualTo>
  477. </ogc:Or>
  478. </simpleTypeMakeOgcFilter>
  479. <default_db:PROCES_GROUP_1 xml_id="d11410e147"
  480. system_cache__appinfo:maxOccurs="0"
  481. system_cache__appinfo:minOccurs="0"
  482. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  483. </RelatedFeatureLoop>
  484. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  485. <RelatedFeatureLoop xml_id="d11410e152"
  486. typeNameRealResource="default_db:CRM_PROCES"
  487. typeName="default_db:PROCES_GROUP_2"
  488. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  489. flat_relation_cache_name="ID"
  490. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  491. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  492. system_cache__appinfo:maxOccurs="0"
  493. system_cache__appinfo:minOccurs="0"
  494. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  495. xpath="PARENT_ID"
  496. xpath_value="../ID">
  497. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  498. <ogc:Or>
  499. <ogc:PropertyIsEqualTo>
  500. <ogc:PropertyName>TYPE</ogc:PropertyName>
  501. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  502. </ogc:PropertyIsEqualTo>
  503. </ogc:Or>
  504. </simpleTypeMakeOgcFilter>
  505. <default_db:PROCES_GROUP_2 xml_id="d11410e152"
  506. system_cache__appinfo:maxOccurs="0"
  507. system_cache__appinfo:minOccurs="0"
  508. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  509. </RelatedFeatureLoop>
  510. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  511. <RelatedFeatureLoop xml_id="d11410e157"
  512. typeNameRealResource="default_db:CRM_PROCES"
  513. typeName="default_db:PROCES_BENEFIT_INFO"
  514. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  515. flat_relation_cache_name="ID"
  516. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  517. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  518. system_cache__appinfo:maxOccurs="unbounded"
  519. system_cache__appinfo:minOccurs="0"
  520. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  521. xpath="PARENT_ID"
  522. xpath_value="../ID">
  523. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  524. <ogc:Or>
  525. <ogc:PropertyIsEqualTo>
  526. <ogc:PropertyName>TYPE</ogc:PropertyName>
  527. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  528. </ogc:PropertyIsEqualTo>
  529. </ogc:Or>
  530. </simpleTypeMakeOgcFilter>
  531. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e157"
  532. system_cache__appinfo:maxOccurs="unbounded"
  533. system_cache__appinfo:minOccurs="0"
  534. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  535. </RelatedFeatureLoop>
  536. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  537. <RelatedFeature xml_id="d11410e163"
  538. typeNameRealResource="default_db:CRM_WSKAZNIK"
  539. typeName="default_db:CRM_WSKAZNIK"
  540. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  541. flat_relation_cache_name="ID"
  542. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  543. system_cache__appinfo:maxOccurs="0"
  544. system_cache__appinfo:minOccurs="0"
  545. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  546. xpath="ID_PROCES"
  547. xpath_value="../ID">
  548. <default_db:CRM_WSKAZNIK xml_id="d11410e163_child"
  549. system_cache__appinfo:maxOccurs="0"
  550. system_cache__appinfo:minOccurs="0"
  551. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  552. <ID xpath="ID" xml_id="d11410e169"/>
  553. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e171"/>
  554. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e173"/>
  555. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  556. <RelatedFeature xml_id="d11410e175"
  557. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  558. typeName="default_db:CRM_LISTA_ZASOBOW"
  559. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  560. flat_relation_cache_name="ID_ZASOB"
  561. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  562. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  563. xpath="ID"
  564. xpath_value="../ID_ZASOB">
  565. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e175_child"
  566. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  567. <ID xpath="ID" xml_id="d11410e181"/>
  568. <DESC xpath="DESC" xml_id="d11410e183"/>
  569. <DESC_PL xpath="DESC_PL" xml_id="d11410e185"/>
  570. </default_db:CRM_LISTA_ZASOBOW>
  571. </RelatedFeature>
  572. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e187"/>
  573. </default_db:CRM_WSKAZNIK>
  574. </RelatedFeature>
  575. </default_db:PROCES_BENEFIT_INFO>
  576. </RelatedFeature>
  577. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  578. <RelatedFeature xml_id="d11410e190"
  579. typeNameRealResource="default_db:CRM_WSKAZNIK"
  580. typeName="default_db:CRM_WSKAZNIK"
  581. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  582. flat_relation_cache_name="ID"
  583. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  584. system_cache__appinfo:maxOccurs="0"
  585. system_cache__appinfo:minOccurs="0"
  586. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  587. xpath="ID_PROCES"
  588. xpath_value="../ID">
  589. <default_db:CRM_WSKAZNIK xml_id="d11410e190_child"
  590. system_cache__appinfo:maxOccurs="0"
  591. system_cache__appinfo:minOccurs="0"
  592. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  593. <ID xpath="ID" xml_id="d11410e196"/>
  594. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e198"/>
  595. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e200"/>
  596. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  597. <RelatedFeature xml_id="d11410e202"
  598. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  599. typeName="default_db:CRM_LISTA_ZASOBOW"
  600. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  601. flat_relation_cache_name="ID_ZASOB"
  602. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  603. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  604. xpath="ID"
  605. xpath_value="../ID_ZASOB">
  606. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e202_child"
  607. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  608. <ID xpath="ID" xml_id="d11410e208"/>
  609. <DESC xpath="DESC" xml_id="d11410e210"/>
  610. <DESC_PL xpath="DESC_PL" xml_id="d11410e212"/>
  611. </default_db:CRM_LISTA_ZASOBOW>
  612. </RelatedFeature>
  613. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e214"/>
  614. </default_db:CRM_WSKAZNIK>
  615. </RelatedFeature>
  616. </default_db:PROCES_GROUP_2>
  617. </RelatedFeature>
  618. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  619. <RelatedFeature xml_id="d11410e216"
  620. typeNameRealResource="default_db:CRM_PROCES"
  621. typeName="default_db:PROCES_BENEFIT_INFO"
  622. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  623. flat_relation_cache_name="ID"
  624. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  625. system_cache__appinfo:maxOccurs="1"
  626. system_cache__appinfo:minOccurs="0"
  627. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  628. xpath="PARENT_ID"
  629. xpath_value="../ID">
  630. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  631. <ogc:Or>
  632. <ogc:PropertyIsEqualTo>
  633. <ogc:PropertyName>TYPE</ogc:PropertyName>
  634. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  635. </ogc:PropertyIsEqualTo>
  636. </ogc:Or>
  637. </simpleTypeMakeOgcFilter>
  638. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e216_child"
  639. system_cache__appinfo:maxOccurs="1"
  640. system_cache__appinfo:minOccurs="0"
  641. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  642. <ID xpath="ID" xml_id="d11410e223"/>
  643. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e225"/>
  644. <path xpath="path" xml_id="d11410e227"/>
  645. <DESC xpath="DESC" xml_id="d11410e229"/>
  646. <TYPE xpath="TYPE" xml_id="d11410e231"/>
  647. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  648. <RelatedFeatureLoop xml_id="d11410e233"
  649. typeNameRealResource="default_db:CRM_PROCES"
  650. typeName="default_db:PROCES"
  651. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  652. flat_relation_cache_name="ID"
  653. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  654. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  655. system_cache__appinfo:maxOccurs="0"
  656. system_cache__appinfo:minOccurs="0"
  657. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  658. xpath="PARENT_ID"
  659. xpath_value="../ID">
  660. <simpleTypeMakeOgcFilter name="PROCES">
  661. <ogc:Or>
  662. <ogc:PropertyIsEqualTo>
  663. <ogc:PropertyName>TYPE</ogc:PropertyName>
  664. <ogc:Literal>PROCES</ogc:Literal>
  665. </ogc:PropertyIsEqualTo>
  666. </ogc:Or>
  667. </simpleTypeMakeOgcFilter>
  668. <default_db:PROCES xml_id="d11410e233"
  669. system_cache__appinfo:maxOccurs="0"
  670. system_cache__appinfo:minOccurs="0"
  671. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  672. </RelatedFeatureLoop>
  673. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  674. <RelatedFeatureLoop xml_id="d11410e238"
  675. typeNameRealResource="default_db:CRM_PROCES"
  676. typeName="default_db:PROCES_INIT"
  677. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  678. flat_relation_cache_name="ID"
  679. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  680. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  681. system_cache__appinfo:maxOccurs="0"
  682. system_cache__appinfo:minOccurs="0"
  683. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  684. xpath="PARENT_ID"
  685. xpath_value="../ID">
  686. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  687. <ogc:Or>
  688. <ogc:PropertyIsEqualTo>
  689. <ogc:PropertyName>TYPE</ogc:PropertyName>
  690. <ogc:Literal>PROCES_INIT</ogc:Literal>
  691. </ogc:PropertyIsEqualTo>
  692. </ogc:Or>
  693. </simpleTypeMakeOgcFilter>
  694. <default_db:PROCES_INIT xml_id="d11410e238"
  695. system_cache__appinfo:maxOccurs="0"
  696. system_cache__appinfo:minOccurs="0"
  697. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  698. </RelatedFeatureLoop>
  699. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  700. <RelatedFeatureLoop xml_id="d11410e243"
  701. typeNameRealResource="default_db:CRM_PROCES"
  702. typeName="default_db:PROCES_GROUP_1"
  703. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  704. flat_relation_cache_name="ID"
  705. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  706. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  707. system_cache__appinfo:maxOccurs="0"
  708. system_cache__appinfo:minOccurs="0"
  709. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  710. xpath="PARENT_ID"
  711. xpath_value="../ID">
  712. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  713. <ogc:Or>
  714. <ogc:PropertyIsEqualTo>
  715. <ogc:PropertyName>TYPE</ogc:PropertyName>
  716. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  717. </ogc:PropertyIsEqualTo>
  718. </ogc:Or>
  719. </simpleTypeMakeOgcFilter>
  720. <default_db:PROCES_GROUP_1 xml_id="d11410e243"
  721. system_cache__appinfo:maxOccurs="0"
  722. system_cache__appinfo:minOccurs="0"
  723. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  724. </RelatedFeatureLoop>
  725. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  726. <RelatedFeature xml_id="d11410e248"
  727. typeNameRealResource="default_db:CRM_PROCES"
  728. typeName="default_db:PROCES_GROUP_2"
  729. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  730. flat_relation_cache_name="ID"
  731. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  732. system_cache__appinfo:maxOccurs="0"
  733. system_cache__appinfo:minOccurs="0"
  734. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  735. xpath="PARENT_ID"
  736. xpath_value="../ID">
  737. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  738. <ogc:Or>
  739. <ogc:PropertyIsEqualTo>
  740. <ogc:PropertyName>TYPE</ogc:PropertyName>
  741. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  742. </ogc:PropertyIsEqualTo>
  743. </ogc:Or>
  744. </simpleTypeMakeOgcFilter>
  745. <default_db:PROCES_GROUP_2 xml_id="d11410e248_child"
  746. system_cache__appinfo:maxOccurs="0"
  747. system_cache__appinfo:minOccurs="0"
  748. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  749. <ID xpath="ID" xml_id="d11410e255"/>
  750. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e257"/>
  751. <path xpath="path" xml_id="d11410e259"/>
  752. <DESC xpath="DESC" xml_id="d11410e261"/>
  753. <TYPE xpath="TYPE" xml_id="d11410e263"/>
  754. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  755. <RelatedFeatureLoop xml_id="d11410e265"
  756. typeNameRealResource="default_db:CRM_PROCES"
  757. typeName="default_db:PROCES"
  758. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  759. flat_relation_cache_name="ID"
  760. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  761. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  762. system_cache__appinfo:maxOccurs="0"
  763. system_cache__appinfo:minOccurs="0"
  764. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  765. xpath="PARENT_ID"
  766. xpath_value="../ID">
  767. <simpleTypeMakeOgcFilter name="PROCES">
  768. <ogc:Or>
  769. <ogc:PropertyIsEqualTo>
  770. <ogc:PropertyName>TYPE</ogc:PropertyName>
  771. <ogc:Literal>PROCES</ogc:Literal>
  772. </ogc:PropertyIsEqualTo>
  773. </ogc:Or>
  774. </simpleTypeMakeOgcFilter>
  775. <default_db:PROCES xml_id="d11410e265"
  776. system_cache__appinfo:maxOccurs="0"
  777. system_cache__appinfo:minOccurs="0"
  778. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  779. </RelatedFeatureLoop>
  780. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  781. <RelatedFeatureLoop xml_id="d11410e270"
  782. typeNameRealResource="default_db:CRM_PROCES"
  783. typeName="default_db:PROCES_INIT"
  784. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  785. flat_relation_cache_name="ID"
  786. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  787. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  788. system_cache__appinfo:maxOccurs="unbounded"
  789. system_cache__appinfo:minOccurs="0"
  790. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  791. xpath="PARENT_ID"
  792. xpath_value="../ID">
  793. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  794. <ogc:Or>
  795. <ogc:PropertyIsEqualTo>
  796. <ogc:PropertyName>TYPE</ogc:PropertyName>
  797. <ogc:Literal>PROCES_INIT</ogc:Literal>
  798. </ogc:PropertyIsEqualTo>
  799. </ogc:Or>
  800. </simpleTypeMakeOgcFilter>
  801. <default_db:PROCES_INIT xml_id="d11410e270"
  802. system_cache__appinfo:maxOccurs="unbounded"
  803. system_cache__appinfo:minOccurs="0"
  804. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  805. </RelatedFeatureLoop>
  806. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  807. <RelatedFeatureLoop xml_id="d11410e275"
  808. typeNameRealResource="default_db:CRM_PROCES"
  809. typeName="default_db:PROCES_GROUP_1"
  810. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  811. flat_relation_cache_name="ID"
  812. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  813. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  814. system_cache__appinfo:maxOccurs="0"
  815. system_cache__appinfo:minOccurs="0"
  816. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  817. xpath="PARENT_ID"
  818. xpath_value="../ID">
  819. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  820. <ogc:Or>
  821. <ogc:PropertyIsEqualTo>
  822. <ogc:PropertyName>TYPE</ogc:PropertyName>
  823. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  824. </ogc:PropertyIsEqualTo>
  825. </ogc:Or>
  826. </simpleTypeMakeOgcFilter>
  827. <default_db:PROCES_GROUP_1 xml_id="d11410e275"
  828. system_cache__appinfo:maxOccurs="0"
  829. system_cache__appinfo:minOccurs="0"
  830. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  831. </RelatedFeatureLoop>
  832. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  833. <RelatedFeatureLoop xml_id="d11410e280"
  834. typeNameRealResource="default_db:CRM_PROCES"
  835. typeName="default_db:PROCES_GROUP_2"
  836. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  837. flat_relation_cache_name="ID"
  838. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  839. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  840. system_cache__appinfo:maxOccurs="unbounded"
  841. system_cache__appinfo:minOccurs="0"
  842. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  843. xpath="PARENT_ID"
  844. xpath_value="../ID">
  845. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  846. <ogc:Or>
  847. <ogc:PropertyIsEqualTo>
  848. <ogc:PropertyName>TYPE</ogc:PropertyName>
  849. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  850. </ogc:PropertyIsEqualTo>
  851. </ogc:Or>
  852. </simpleTypeMakeOgcFilter>
  853. <default_db:PROCES_GROUP_2 xml_id="d11410e280"
  854. system_cache__appinfo:maxOccurs="unbounded"
  855. system_cache__appinfo:minOccurs="0"
  856. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  857. </RelatedFeatureLoop>
  858. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  859. <RelatedFeatureLoop xml_id="d11410e285"
  860. typeNameRealResource="default_db:CRM_PROCES"
  861. typeName="default_db:PROCES_BENEFIT_INFO"
  862. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  863. flat_relation_cache_name="ID"
  864. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  865. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  866. system_cache__appinfo:maxOccurs="1"
  867. system_cache__appinfo:minOccurs="0"
  868. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  869. xpath="PARENT_ID"
  870. xpath_value="../ID">
  871. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  872. <ogc:Or>
  873. <ogc:PropertyIsEqualTo>
  874. <ogc:PropertyName>TYPE</ogc:PropertyName>
  875. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  876. </ogc:PropertyIsEqualTo>
  877. </ogc:Or>
  878. </simpleTypeMakeOgcFilter>
  879. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e285"
  880. system_cache__appinfo:maxOccurs="1"
  881. system_cache__appinfo:minOccurs="0"
  882. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  883. </RelatedFeatureLoop>
  884. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  885. <RelatedFeature xml_id="d11410e291"
  886. typeNameRealResource="default_db:CRM_WSKAZNIK"
  887. typeName="default_db:CRM_WSKAZNIK"
  888. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  889. flat_relation_cache_name="ID"
  890. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  891. system_cache__appinfo:maxOccurs="0"
  892. system_cache__appinfo:minOccurs="0"
  893. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  894. xpath="ID_PROCES"
  895. xpath_value="../ID">
  896. <default_db:CRM_WSKAZNIK xml_id="d11410e291_child"
  897. system_cache__appinfo:maxOccurs="0"
  898. system_cache__appinfo:minOccurs="0"
  899. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  900. <ID xpath="ID" xml_id="d11410e297"/>
  901. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e299"/>
  902. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e301"/>
  903. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  904. <RelatedFeature xml_id="d11410e303"
  905. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  906. typeName="default_db:CRM_LISTA_ZASOBOW"
  907. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  908. flat_relation_cache_name="ID_ZASOB"
  909. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  910. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  911. xpath="ID"
  912. xpath_value="../ID_ZASOB">
  913. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e303_child"
  914. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  915. <ID xpath="ID" xml_id="d11410e309"/>
  916. <DESC xpath="DESC" xml_id="d11410e311"/>
  917. <DESC_PL xpath="DESC_PL" xml_id="d11410e313"/>
  918. </default_db:CRM_LISTA_ZASOBOW>
  919. </RelatedFeature>
  920. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e315"/>
  921. </default_db:CRM_WSKAZNIK>
  922. </RelatedFeature>
  923. </default_db:PROCES_GROUP_2>
  924. </RelatedFeature>
  925. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  926. <RelatedFeatureLoop xml_id="d11410e317"
  927. typeNameRealResource="default_db:CRM_PROCES"
  928. typeName="default_db:PROCES_BENEFIT_INFO"
  929. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  930. flat_relation_cache_name="ID"
  931. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  932. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  933. system_cache__appinfo:maxOccurs="unbounded"
  934. system_cache__appinfo:minOccurs="0"
  935. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  936. xpath="PARENT_ID"
  937. xpath_value="../ID">
  938. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  939. <ogc:Or>
  940. <ogc:PropertyIsEqualTo>
  941. <ogc:PropertyName>TYPE</ogc:PropertyName>
  942. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  943. </ogc:PropertyIsEqualTo>
  944. </ogc:Or>
  945. </simpleTypeMakeOgcFilter>
  946. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e317"
  947. system_cache__appinfo:maxOccurs="unbounded"
  948. system_cache__appinfo:minOccurs="0"
  949. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  950. </RelatedFeatureLoop>
  951. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  952. <RelatedFeature xml_id="d11410e323"
  953. typeNameRealResource="default_db:CRM_WSKAZNIK"
  954. typeName="default_db:CRM_WSKAZNIK"
  955. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  956. flat_relation_cache_name="ID"
  957. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  958. system_cache__appinfo:maxOccurs="0"
  959. system_cache__appinfo:minOccurs="0"
  960. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  961. xpath="ID_PROCES"
  962. xpath_value="../ID">
  963. <default_db:CRM_WSKAZNIK xml_id="d11410e323_child"
  964. system_cache__appinfo:maxOccurs="0"
  965. system_cache__appinfo:minOccurs="0"
  966. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  967. <ID xpath="ID" xml_id="d11410e329"/>
  968. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e331"/>
  969. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e333"/>
  970. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  971. <RelatedFeature xml_id="d11410e335"
  972. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  973. typeName="default_db:CRM_LISTA_ZASOBOW"
  974. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  975. flat_relation_cache_name="ID_ZASOB"
  976. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  977. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  978. xpath="ID"
  979. xpath_value="../ID_ZASOB">
  980. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e335_child"
  981. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  982. <ID xpath="ID" xml_id="d11410e341"/>
  983. <DESC xpath="DESC" xml_id="d11410e343"/>
  984. <DESC_PL xpath="DESC_PL" xml_id="d11410e345"/>
  985. </default_db:CRM_LISTA_ZASOBOW>
  986. </RelatedFeature>
  987. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e347"/>
  988. </default_db:CRM_WSKAZNIK>
  989. </RelatedFeature>
  990. </default_db:PROCES_BENEFIT_INFO>
  991. </RelatedFeature>
  992. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  993. <RelatedFeature xml_id="d11410e350"
  994. typeNameRealResource="default_db:CRM_WSKAZNIK"
  995. typeName="default_db:CRM_WSKAZNIK"
  996. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  997. flat_relation_cache_name="ID"
  998. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  999. system_cache__appinfo:maxOccurs="0"
  1000. system_cache__appinfo:minOccurs="0"
  1001. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  1002. xpath="ID_PROCES"
  1003. xpath_value="../ID">
  1004. <default_db:CRM_WSKAZNIK xml_id="d11410e350_child"
  1005. system_cache__appinfo:maxOccurs="0"
  1006. system_cache__appinfo:minOccurs="0"
  1007. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  1008. <ID xpath="ID" xml_id="d11410e356"/>
  1009. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e358"/>
  1010. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e360"/>
  1011. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  1012. <RelatedFeature xml_id="d11410e362"
  1013. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  1014. typeName="default_db:CRM_LISTA_ZASOBOW"
  1015. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  1016. flat_relation_cache_name="ID_ZASOB"
  1017. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  1018. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  1019. xpath="ID"
  1020. xpath_value="../ID_ZASOB">
  1021. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e362_child"
  1022. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  1023. <ID xpath="ID" xml_id="d11410e368"/>
  1024. <DESC xpath="DESC" xml_id="d11410e370"/>
  1025. <DESC_PL xpath="DESC_PL" xml_id="d11410e372"/>
  1026. </default_db:CRM_LISTA_ZASOBOW>
  1027. </RelatedFeature>
  1028. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e374"/>
  1029. </default_db:CRM_WSKAZNIK>
  1030. </RelatedFeature>
  1031. </default_db:PROCES_GROUP_1>
  1032. </RelatedFeature>
  1033. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  1034. <RelatedFeature xml_id="d11410e376"
  1035. typeNameRealResource="default_db:CRM_PROCES"
  1036. typeName="default_db:PROCES_GROUP_2"
  1037. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  1038. flat_relation_cache_name="ID"
  1039. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1040. system_cache__appinfo:maxOccurs="0"
  1041. system_cache__appinfo:minOccurs="0"
  1042. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  1043. xpath="PARENT_ID"
  1044. xpath_value="../ID">
  1045. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  1046. <ogc:Or>
  1047. <ogc:PropertyIsEqualTo>
  1048. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1049. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  1050. </ogc:PropertyIsEqualTo>
  1051. </ogc:Or>
  1052. </simpleTypeMakeOgcFilter>
  1053. <default_db:PROCES_GROUP_2 xml_id="d11410e376_child"
  1054. system_cache__appinfo:maxOccurs="0"
  1055. system_cache__appinfo:minOccurs="0"
  1056. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  1057. <ID xpath="ID" xml_id="d11410e383"/>
  1058. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e385"/>
  1059. <path xpath="path" xml_id="d11410e387"/>
  1060. <DESC xpath="DESC" xml_id="d11410e389"/>
  1061. <TYPE xpath="TYPE" xml_id="d11410e391"/>
  1062. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  1063. <RelatedFeatureLoop xml_id="d11410e393"
  1064. typeNameRealResource="default_db:CRM_PROCES"
  1065. typeName="default_db:PROCES"
  1066. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  1067. flat_relation_cache_name="ID"
  1068. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1069. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  1070. system_cache__appinfo:maxOccurs="0"
  1071. system_cache__appinfo:minOccurs="0"
  1072. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  1073. xpath="PARENT_ID"
  1074. xpath_value="../ID">
  1075. <simpleTypeMakeOgcFilter name="PROCES">
  1076. <ogc:Or>
  1077. <ogc:PropertyIsEqualTo>
  1078. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1079. <ogc:Literal>PROCES</ogc:Literal>
  1080. </ogc:PropertyIsEqualTo>
  1081. </ogc:Or>
  1082. </simpleTypeMakeOgcFilter>
  1083. <default_db:PROCES xml_id="d11410e393"
  1084. system_cache__appinfo:maxOccurs="0"
  1085. system_cache__appinfo:minOccurs="0"
  1086. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  1087. </RelatedFeatureLoop>
  1088. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  1089. <RelatedFeatureLoop xml_id="d11410e398"
  1090. typeNameRealResource="default_db:CRM_PROCES"
  1091. typeName="default_db:PROCES_INIT"
  1092. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  1093. flat_relation_cache_name="ID"
  1094. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1095. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  1096. system_cache__appinfo:maxOccurs="unbounded"
  1097. system_cache__appinfo:minOccurs="0"
  1098. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  1099. xpath="PARENT_ID"
  1100. xpath_value="../ID">
  1101. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  1102. <ogc:Or>
  1103. <ogc:PropertyIsEqualTo>
  1104. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1105. <ogc:Literal>PROCES_INIT</ogc:Literal>
  1106. </ogc:PropertyIsEqualTo>
  1107. </ogc:Or>
  1108. </simpleTypeMakeOgcFilter>
  1109. <default_db:PROCES_INIT xml_id="d11410e398"
  1110. system_cache__appinfo:maxOccurs="unbounded"
  1111. system_cache__appinfo:minOccurs="0"
  1112. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  1113. </RelatedFeatureLoop>
  1114. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  1115. <RelatedFeature xml_id="d11410e403"
  1116. typeNameRealResource="default_db:CRM_PROCES"
  1117. typeName="default_db:PROCES_GROUP_1"
  1118. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  1119. flat_relation_cache_name="ID"
  1120. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1121. system_cache__appinfo:maxOccurs="0"
  1122. system_cache__appinfo:minOccurs="0"
  1123. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  1124. xpath="PARENT_ID"
  1125. xpath_value="../ID">
  1126. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  1127. <ogc:Or>
  1128. <ogc:PropertyIsEqualTo>
  1129. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1130. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  1131. </ogc:PropertyIsEqualTo>
  1132. </ogc:Or>
  1133. </simpleTypeMakeOgcFilter>
  1134. <default_db:PROCES_GROUP_1 xml_id="d11410e403_child"
  1135. system_cache__appinfo:maxOccurs="0"
  1136. system_cache__appinfo:minOccurs="0"
  1137. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  1138. <ID xpath="ID" xml_id="d11410e410"/>
  1139. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e412"/>
  1140. <path xpath="path" xml_id="d11410e414"/>
  1141. <DESC xpath="DESC" xml_id="d11410e416"/>
  1142. <TYPE xpath="TYPE" xml_id="d11410e418"/>
  1143. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  1144. <RelatedFeatureLoop xml_id="d11410e420"
  1145. typeNameRealResource="default_db:CRM_PROCES"
  1146. typeName="default_db:PROCES"
  1147. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  1148. flat_relation_cache_name="ID"
  1149. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1150. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  1151. system_cache__appinfo:maxOccurs="0"
  1152. system_cache__appinfo:minOccurs="0"
  1153. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  1154. xpath="PARENT_ID"
  1155. xpath_value="../ID">
  1156. <simpleTypeMakeOgcFilter name="PROCES">
  1157. <ogc:Or>
  1158. <ogc:PropertyIsEqualTo>
  1159. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1160. <ogc:Literal>PROCES</ogc:Literal>
  1161. </ogc:PropertyIsEqualTo>
  1162. </ogc:Or>
  1163. </simpleTypeMakeOgcFilter>
  1164. <default_db:PROCES xml_id="d11410e420"
  1165. system_cache__appinfo:maxOccurs="0"
  1166. system_cache__appinfo:minOccurs="0"
  1167. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  1168. </RelatedFeatureLoop>
  1169. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  1170. <RelatedFeatureLoop xml_id="d11410e425"
  1171. typeNameRealResource="default_db:CRM_PROCES"
  1172. typeName="default_db:PROCES_INIT"
  1173. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  1174. flat_relation_cache_name="ID"
  1175. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1176. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  1177. system_cache__appinfo:maxOccurs="unbounded"
  1178. system_cache__appinfo:minOccurs="0"
  1179. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  1180. xpath="PARENT_ID"
  1181. xpath_value="../ID">
  1182. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  1183. <ogc:Or>
  1184. <ogc:PropertyIsEqualTo>
  1185. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1186. <ogc:Literal>PROCES_INIT</ogc:Literal>
  1187. </ogc:PropertyIsEqualTo>
  1188. </ogc:Or>
  1189. </simpleTypeMakeOgcFilter>
  1190. <default_db:PROCES_INIT xml_id="d11410e425"
  1191. system_cache__appinfo:maxOccurs="unbounded"
  1192. system_cache__appinfo:minOccurs="0"
  1193. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  1194. </RelatedFeatureLoop>
  1195. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  1196. <RelatedFeatureLoop xml_id="d11410e430"
  1197. typeNameRealResource="default_db:CRM_PROCES"
  1198. typeName="default_db:PROCES_GROUP_1"
  1199. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  1200. flat_relation_cache_name="ID"
  1201. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1202. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  1203. system_cache__appinfo:maxOccurs="unbounded"
  1204. system_cache__appinfo:minOccurs="0"
  1205. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  1206. xpath="PARENT_ID"
  1207. xpath_value="../ID">
  1208. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  1209. <ogc:Or>
  1210. <ogc:PropertyIsEqualTo>
  1211. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1212. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  1213. </ogc:PropertyIsEqualTo>
  1214. </ogc:Or>
  1215. </simpleTypeMakeOgcFilter>
  1216. <default_db:PROCES_GROUP_1 xml_id="d11410e430"
  1217. system_cache__appinfo:maxOccurs="unbounded"
  1218. system_cache__appinfo:minOccurs="0"
  1219. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  1220. </RelatedFeatureLoop>
  1221. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  1222. <RelatedFeatureLoop xml_id="d11410e435"
  1223. typeNameRealResource="default_db:CRM_PROCES"
  1224. typeName="default_db:PROCES_GROUP_2"
  1225. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  1226. flat_relation_cache_name="ID"
  1227. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1228. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  1229. system_cache__appinfo:maxOccurs="unbounded"
  1230. system_cache__appinfo:minOccurs="0"
  1231. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  1232. xpath="PARENT_ID"
  1233. xpath_value="../ID">
  1234. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  1235. <ogc:Or>
  1236. <ogc:PropertyIsEqualTo>
  1237. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1238. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  1239. </ogc:PropertyIsEqualTo>
  1240. </ogc:Or>
  1241. </simpleTypeMakeOgcFilter>
  1242. <default_db:PROCES_GROUP_2 xml_id="d11410e435"
  1243. system_cache__appinfo:maxOccurs="unbounded"
  1244. system_cache__appinfo:minOccurs="0"
  1245. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  1246. </RelatedFeatureLoop>
  1247. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  1248. <RelatedFeature xml_id="d11410e440"
  1249. typeNameRealResource="default_db:CRM_PROCES"
  1250. typeName="default_db:PROCES_BENEFIT_INFO"
  1251. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  1252. flat_relation_cache_name="ID"
  1253. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1254. system_cache__appinfo:maxOccurs="1"
  1255. system_cache__appinfo:minOccurs="0"
  1256. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  1257. xpath="PARENT_ID"
  1258. xpath_value="../ID">
  1259. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  1260. <ogc:Or>
  1261. <ogc:PropertyIsEqualTo>
  1262. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1263. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  1264. </ogc:PropertyIsEqualTo>
  1265. </ogc:Or>
  1266. </simpleTypeMakeOgcFilter>
  1267. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e440_child"
  1268. system_cache__appinfo:maxOccurs="1"
  1269. system_cache__appinfo:minOccurs="0"
  1270. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  1271. <ID xpath="ID" xml_id="d11410e447"/>
  1272. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e449"/>
  1273. <path xpath="path" xml_id="d11410e451"/>
  1274. <DESC xpath="DESC" xml_id="d11410e453"/>
  1275. <TYPE xpath="TYPE" xml_id="d11410e455"/>
  1276. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  1277. <RelatedFeatureLoop xml_id="d11410e457"
  1278. typeNameRealResource="default_db:CRM_PROCES"
  1279. typeName="default_db:PROCES"
  1280. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  1281. flat_relation_cache_name="ID"
  1282. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1283. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  1284. system_cache__appinfo:maxOccurs="0"
  1285. system_cache__appinfo:minOccurs="0"
  1286. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  1287. xpath="PARENT_ID"
  1288. xpath_value="../ID">
  1289. <simpleTypeMakeOgcFilter name="PROCES">
  1290. <ogc:Or>
  1291. <ogc:PropertyIsEqualTo>
  1292. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1293. <ogc:Literal>PROCES</ogc:Literal>
  1294. </ogc:PropertyIsEqualTo>
  1295. </ogc:Or>
  1296. </simpleTypeMakeOgcFilter>
  1297. <default_db:PROCES xml_id="d11410e457"
  1298. system_cache__appinfo:maxOccurs="0"
  1299. system_cache__appinfo:minOccurs="0"
  1300. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  1301. </RelatedFeatureLoop>
  1302. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  1303. <RelatedFeatureLoop xml_id="d11410e462"
  1304. typeNameRealResource="default_db:CRM_PROCES"
  1305. typeName="default_db:PROCES_INIT"
  1306. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  1307. flat_relation_cache_name="ID"
  1308. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1309. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  1310. system_cache__appinfo:maxOccurs="0"
  1311. system_cache__appinfo:minOccurs="0"
  1312. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  1313. xpath="PARENT_ID"
  1314. xpath_value="../ID">
  1315. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  1316. <ogc:Or>
  1317. <ogc:PropertyIsEqualTo>
  1318. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1319. <ogc:Literal>PROCES_INIT</ogc:Literal>
  1320. </ogc:PropertyIsEqualTo>
  1321. </ogc:Or>
  1322. </simpleTypeMakeOgcFilter>
  1323. <default_db:PROCES_INIT xml_id="d11410e462"
  1324. system_cache__appinfo:maxOccurs="0"
  1325. system_cache__appinfo:minOccurs="0"
  1326. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  1327. </RelatedFeatureLoop>
  1328. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  1329. <RelatedFeatureLoop xml_id="d11410e467"
  1330. typeNameRealResource="default_db:CRM_PROCES"
  1331. typeName="default_db:PROCES_GROUP_1"
  1332. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  1333. flat_relation_cache_name="ID"
  1334. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1335. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  1336. system_cache__appinfo:maxOccurs="0"
  1337. system_cache__appinfo:minOccurs="0"
  1338. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  1339. xpath="PARENT_ID"
  1340. xpath_value="../ID">
  1341. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  1342. <ogc:Or>
  1343. <ogc:PropertyIsEqualTo>
  1344. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1345. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  1346. </ogc:PropertyIsEqualTo>
  1347. </ogc:Or>
  1348. </simpleTypeMakeOgcFilter>
  1349. <default_db:PROCES_GROUP_1 xml_id="d11410e467"
  1350. system_cache__appinfo:maxOccurs="0"
  1351. system_cache__appinfo:minOccurs="0"
  1352. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  1353. </RelatedFeatureLoop>
  1354. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  1355. <RelatedFeatureLoop xml_id="d11410e472"
  1356. typeNameRealResource="default_db:CRM_PROCES"
  1357. typeName="default_db:PROCES_GROUP_2"
  1358. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  1359. flat_relation_cache_name="ID"
  1360. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1361. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  1362. system_cache__appinfo:maxOccurs="0"
  1363. system_cache__appinfo:minOccurs="0"
  1364. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  1365. xpath="PARENT_ID"
  1366. xpath_value="../ID">
  1367. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  1368. <ogc:Or>
  1369. <ogc:PropertyIsEqualTo>
  1370. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1371. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  1372. </ogc:PropertyIsEqualTo>
  1373. </ogc:Or>
  1374. </simpleTypeMakeOgcFilter>
  1375. <default_db:PROCES_GROUP_2 xml_id="d11410e472"
  1376. system_cache__appinfo:maxOccurs="0"
  1377. system_cache__appinfo:minOccurs="0"
  1378. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  1379. </RelatedFeatureLoop>
  1380. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  1381. <RelatedFeatureLoop xml_id="d11410e477"
  1382. typeNameRealResource="default_db:CRM_PROCES"
  1383. typeName="default_db:PROCES_BENEFIT_INFO"
  1384. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  1385. flat_relation_cache_name="ID"
  1386. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1387. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  1388. system_cache__appinfo:maxOccurs="unbounded"
  1389. system_cache__appinfo:minOccurs="0"
  1390. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  1391. xpath="PARENT_ID"
  1392. xpath_value="../ID">
  1393. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  1394. <ogc:Or>
  1395. <ogc:PropertyIsEqualTo>
  1396. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1397. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  1398. </ogc:PropertyIsEqualTo>
  1399. </ogc:Or>
  1400. </simpleTypeMakeOgcFilter>
  1401. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e477"
  1402. system_cache__appinfo:maxOccurs="unbounded"
  1403. system_cache__appinfo:minOccurs="0"
  1404. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  1405. </RelatedFeatureLoop>
  1406. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  1407. <RelatedFeature xml_id="d11410e483"
  1408. typeNameRealResource="default_db:CRM_WSKAZNIK"
  1409. typeName="default_db:CRM_WSKAZNIK"
  1410. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  1411. flat_relation_cache_name="ID"
  1412. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  1413. system_cache__appinfo:maxOccurs="0"
  1414. system_cache__appinfo:minOccurs="0"
  1415. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  1416. xpath="ID_PROCES"
  1417. xpath_value="../ID">
  1418. <default_db:CRM_WSKAZNIK xml_id="d11410e483_child"
  1419. system_cache__appinfo:maxOccurs="0"
  1420. system_cache__appinfo:minOccurs="0"
  1421. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  1422. <ID xpath="ID" xml_id="d11410e489"/>
  1423. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e491"/>
  1424. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e493"/>
  1425. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  1426. <RelatedFeature xml_id="d11410e495"
  1427. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  1428. typeName="default_db:CRM_LISTA_ZASOBOW"
  1429. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  1430. flat_relation_cache_name="ID_ZASOB"
  1431. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  1432. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  1433. xpath="ID"
  1434. xpath_value="../ID_ZASOB">
  1435. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e495_child"
  1436. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  1437. <ID xpath="ID" xml_id="d11410e501"/>
  1438. <DESC xpath="DESC" xml_id="d11410e503"/>
  1439. <DESC_PL xpath="DESC_PL" xml_id="d11410e505"/>
  1440. </default_db:CRM_LISTA_ZASOBOW>
  1441. </RelatedFeature>
  1442. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e507"/>
  1443. </default_db:CRM_WSKAZNIK>
  1444. </RelatedFeature>
  1445. </default_db:PROCES_BENEFIT_INFO>
  1446. </RelatedFeature>
  1447. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  1448. <RelatedFeature xml_id="d11410e510"
  1449. typeNameRealResource="default_db:CRM_WSKAZNIK"
  1450. typeName="default_db:CRM_WSKAZNIK"
  1451. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  1452. flat_relation_cache_name="ID"
  1453. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  1454. system_cache__appinfo:maxOccurs="0"
  1455. system_cache__appinfo:minOccurs="0"
  1456. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  1457. xpath="ID_PROCES"
  1458. xpath_value="../ID">
  1459. <default_db:CRM_WSKAZNIK xml_id="d11410e510_child"
  1460. system_cache__appinfo:maxOccurs="0"
  1461. system_cache__appinfo:minOccurs="0"
  1462. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  1463. <ID xpath="ID" xml_id="d11410e516"/>
  1464. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e518"/>
  1465. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e520"/>
  1466. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  1467. <RelatedFeature xml_id="d11410e522"
  1468. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  1469. typeName="default_db:CRM_LISTA_ZASOBOW"
  1470. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  1471. flat_relation_cache_name="ID_ZASOB"
  1472. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  1473. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  1474. xpath="ID"
  1475. xpath_value="../ID_ZASOB">
  1476. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e522_child"
  1477. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  1478. <ID xpath="ID" xml_id="d11410e528"/>
  1479. <DESC xpath="DESC" xml_id="d11410e530"/>
  1480. <DESC_PL xpath="DESC_PL" xml_id="d11410e532"/>
  1481. </default_db:CRM_LISTA_ZASOBOW>
  1482. </RelatedFeature>
  1483. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e534"/>
  1484. </default_db:CRM_WSKAZNIK>
  1485. </RelatedFeature>
  1486. </default_db:PROCES_GROUP_1>
  1487. </RelatedFeature>
  1488. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  1489. <RelatedFeatureLoop xml_id="d11410e536"
  1490. typeNameRealResource="default_db:CRM_PROCES"
  1491. typeName="default_db:PROCES_GROUP_2"
  1492. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  1493. flat_relation_cache_name="ID"
  1494. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1495. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  1496. system_cache__appinfo:maxOccurs="unbounded"
  1497. system_cache__appinfo:minOccurs="0"
  1498. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  1499. xpath="PARENT_ID"
  1500. xpath_value="../ID">
  1501. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  1502. <ogc:Or>
  1503. <ogc:PropertyIsEqualTo>
  1504. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1505. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  1506. </ogc:PropertyIsEqualTo>
  1507. </ogc:Or>
  1508. </simpleTypeMakeOgcFilter>
  1509. <default_db:PROCES_GROUP_2 xml_id="d11410e536"
  1510. system_cache__appinfo:maxOccurs="unbounded"
  1511. system_cache__appinfo:minOccurs="0"
  1512. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  1513. </RelatedFeatureLoop>
  1514. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  1515. <RelatedFeature xml_id="d11410e541"
  1516. typeNameRealResource="default_db:CRM_PROCES"
  1517. typeName="default_db:PROCES_BENEFIT_INFO"
  1518. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  1519. flat_relation_cache_name="ID"
  1520. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1521. system_cache__appinfo:maxOccurs="1"
  1522. system_cache__appinfo:minOccurs="0"
  1523. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  1524. xpath="PARENT_ID"
  1525. xpath_value="../ID">
  1526. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  1527. <ogc:Or>
  1528. <ogc:PropertyIsEqualTo>
  1529. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1530. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  1531. </ogc:PropertyIsEqualTo>
  1532. </ogc:Or>
  1533. </simpleTypeMakeOgcFilter>
  1534. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e541_child"
  1535. system_cache__appinfo:maxOccurs="1"
  1536. system_cache__appinfo:minOccurs="0"
  1537. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  1538. <ID xpath="ID" xml_id="d11410e548"/>
  1539. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e550"/>
  1540. <path xpath="path" xml_id="d11410e552"/>
  1541. <DESC xpath="DESC" xml_id="d11410e554"/>
  1542. <TYPE xpath="TYPE" xml_id="d11410e556"/>
  1543. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  1544. <RelatedFeatureLoop xml_id="d11410e558"
  1545. typeNameRealResource="default_db:CRM_PROCES"
  1546. typeName="default_db:PROCES"
  1547. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  1548. flat_relation_cache_name="ID"
  1549. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1550. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  1551. system_cache__appinfo:maxOccurs="0"
  1552. system_cache__appinfo:minOccurs="0"
  1553. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  1554. xpath="PARENT_ID"
  1555. xpath_value="../ID">
  1556. <simpleTypeMakeOgcFilter name="PROCES">
  1557. <ogc:Or>
  1558. <ogc:PropertyIsEqualTo>
  1559. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1560. <ogc:Literal>PROCES</ogc:Literal>
  1561. </ogc:PropertyIsEqualTo>
  1562. </ogc:Or>
  1563. </simpleTypeMakeOgcFilter>
  1564. <default_db:PROCES xml_id="d11410e558"
  1565. system_cache__appinfo:maxOccurs="0"
  1566. system_cache__appinfo:minOccurs="0"
  1567. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  1568. </RelatedFeatureLoop>
  1569. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  1570. <RelatedFeatureLoop xml_id="d11410e563"
  1571. typeNameRealResource="default_db:CRM_PROCES"
  1572. typeName="default_db:PROCES_INIT"
  1573. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  1574. flat_relation_cache_name="ID"
  1575. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1576. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  1577. system_cache__appinfo:maxOccurs="0"
  1578. system_cache__appinfo:minOccurs="0"
  1579. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  1580. xpath="PARENT_ID"
  1581. xpath_value="../ID">
  1582. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  1583. <ogc:Or>
  1584. <ogc:PropertyIsEqualTo>
  1585. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1586. <ogc:Literal>PROCES_INIT</ogc:Literal>
  1587. </ogc:PropertyIsEqualTo>
  1588. </ogc:Or>
  1589. </simpleTypeMakeOgcFilter>
  1590. <default_db:PROCES_INIT xml_id="d11410e563"
  1591. system_cache__appinfo:maxOccurs="0"
  1592. system_cache__appinfo:minOccurs="0"
  1593. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  1594. </RelatedFeatureLoop>
  1595. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  1596. <RelatedFeature xml_id="d11410e568"
  1597. typeNameRealResource="default_db:CRM_PROCES"
  1598. typeName="default_db:PROCES_GROUP_1"
  1599. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  1600. flat_relation_cache_name="ID"
  1601. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1602. system_cache__appinfo:maxOccurs="0"
  1603. system_cache__appinfo:minOccurs="0"
  1604. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  1605. xpath="PARENT_ID"
  1606. xpath_value="../ID">
  1607. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  1608. <ogc:Or>
  1609. <ogc:PropertyIsEqualTo>
  1610. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1611. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  1612. </ogc:PropertyIsEqualTo>
  1613. </ogc:Or>
  1614. </simpleTypeMakeOgcFilter>
  1615. <default_db:PROCES_GROUP_1 xml_id="d11410e568_child"
  1616. system_cache__appinfo:maxOccurs="0"
  1617. system_cache__appinfo:minOccurs="0"
  1618. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  1619. <ID xpath="ID" xml_id="d11410e575"/>
  1620. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e577"/>
  1621. <path xpath="path" xml_id="d11410e579"/>
  1622. <DESC xpath="DESC" xml_id="d11410e581"/>
  1623. <TYPE xpath="TYPE" xml_id="d11410e583"/>
  1624. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  1625. <RelatedFeatureLoop xml_id="d11410e585"
  1626. typeNameRealResource="default_db:CRM_PROCES"
  1627. typeName="default_db:PROCES"
  1628. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  1629. flat_relation_cache_name="ID"
  1630. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1631. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  1632. system_cache__appinfo:maxOccurs="0"
  1633. system_cache__appinfo:minOccurs="0"
  1634. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  1635. xpath="PARENT_ID"
  1636. xpath_value="../ID">
  1637. <simpleTypeMakeOgcFilter name="PROCES">
  1638. <ogc:Or>
  1639. <ogc:PropertyIsEqualTo>
  1640. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1641. <ogc:Literal>PROCES</ogc:Literal>
  1642. </ogc:PropertyIsEqualTo>
  1643. </ogc:Or>
  1644. </simpleTypeMakeOgcFilter>
  1645. <default_db:PROCES xml_id="d11410e585"
  1646. system_cache__appinfo:maxOccurs="0"
  1647. system_cache__appinfo:minOccurs="0"
  1648. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  1649. </RelatedFeatureLoop>
  1650. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  1651. <RelatedFeatureLoop xml_id="d11410e590"
  1652. typeNameRealResource="default_db:CRM_PROCES"
  1653. typeName="default_db:PROCES_INIT"
  1654. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  1655. flat_relation_cache_name="ID"
  1656. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1657. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  1658. system_cache__appinfo:maxOccurs="unbounded"
  1659. system_cache__appinfo:minOccurs="0"
  1660. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  1661. xpath="PARENT_ID"
  1662. xpath_value="../ID">
  1663. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  1664. <ogc:Or>
  1665. <ogc:PropertyIsEqualTo>
  1666. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1667. <ogc:Literal>PROCES_INIT</ogc:Literal>
  1668. </ogc:PropertyIsEqualTo>
  1669. </ogc:Or>
  1670. </simpleTypeMakeOgcFilter>
  1671. <default_db:PROCES_INIT xml_id="d11410e590"
  1672. system_cache__appinfo:maxOccurs="unbounded"
  1673. system_cache__appinfo:minOccurs="0"
  1674. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  1675. </RelatedFeatureLoop>
  1676. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  1677. <RelatedFeatureLoop xml_id="d11410e595"
  1678. typeNameRealResource="default_db:CRM_PROCES"
  1679. typeName="default_db:PROCES_GROUP_1"
  1680. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  1681. flat_relation_cache_name="ID"
  1682. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1683. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  1684. system_cache__appinfo:maxOccurs="unbounded"
  1685. system_cache__appinfo:minOccurs="0"
  1686. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  1687. xpath="PARENT_ID"
  1688. xpath_value="../ID">
  1689. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  1690. <ogc:Or>
  1691. <ogc:PropertyIsEqualTo>
  1692. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1693. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  1694. </ogc:PropertyIsEqualTo>
  1695. </ogc:Or>
  1696. </simpleTypeMakeOgcFilter>
  1697. <default_db:PROCES_GROUP_1 xml_id="d11410e595"
  1698. system_cache__appinfo:maxOccurs="unbounded"
  1699. system_cache__appinfo:minOccurs="0"
  1700. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  1701. </RelatedFeatureLoop>
  1702. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  1703. <RelatedFeatureLoop xml_id="d11410e600"
  1704. typeNameRealResource="default_db:CRM_PROCES"
  1705. typeName="default_db:PROCES_GROUP_2"
  1706. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  1707. flat_relation_cache_name="ID"
  1708. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1709. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  1710. system_cache__appinfo:maxOccurs="unbounded"
  1711. system_cache__appinfo:minOccurs="0"
  1712. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  1713. xpath="PARENT_ID"
  1714. xpath_value="../ID">
  1715. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  1716. <ogc:Or>
  1717. <ogc:PropertyIsEqualTo>
  1718. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1719. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  1720. </ogc:PropertyIsEqualTo>
  1721. </ogc:Or>
  1722. </simpleTypeMakeOgcFilter>
  1723. <default_db:PROCES_GROUP_2 xml_id="d11410e600"
  1724. system_cache__appinfo:maxOccurs="unbounded"
  1725. system_cache__appinfo:minOccurs="0"
  1726. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  1727. </RelatedFeatureLoop>
  1728. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  1729. <RelatedFeatureLoop xml_id="d11410e605"
  1730. typeNameRealResource="default_db:CRM_PROCES"
  1731. typeName="default_db:PROCES_BENEFIT_INFO"
  1732. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  1733. flat_relation_cache_name="ID"
  1734. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1735. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  1736. system_cache__appinfo:maxOccurs="1"
  1737. system_cache__appinfo:minOccurs="0"
  1738. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  1739. xpath="PARENT_ID"
  1740. xpath_value="../ID">
  1741. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  1742. <ogc:Or>
  1743. <ogc:PropertyIsEqualTo>
  1744. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1745. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  1746. </ogc:PropertyIsEqualTo>
  1747. </ogc:Or>
  1748. </simpleTypeMakeOgcFilter>
  1749. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e605"
  1750. system_cache__appinfo:maxOccurs="1"
  1751. system_cache__appinfo:minOccurs="0"
  1752. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  1753. </RelatedFeatureLoop>
  1754. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  1755. <RelatedFeature xml_id="d11410e611"
  1756. typeNameRealResource="default_db:CRM_WSKAZNIK"
  1757. typeName="default_db:CRM_WSKAZNIK"
  1758. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  1759. flat_relation_cache_name="ID"
  1760. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  1761. system_cache__appinfo:maxOccurs="0"
  1762. system_cache__appinfo:minOccurs="0"
  1763. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  1764. xpath="ID_PROCES"
  1765. xpath_value="../ID">
  1766. <default_db:CRM_WSKAZNIK xml_id="d11410e611_child"
  1767. system_cache__appinfo:maxOccurs="0"
  1768. system_cache__appinfo:minOccurs="0"
  1769. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  1770. <ID xpath="ID" xml_id="d11410e617"/>
  1771. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e619"/>
  1772. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e621"/>
  1773. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  1774. <RelatedFeature xml_id="d11410e623"
  1775. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  1776. typeName="default_db:CRM_LISTA_ZASOBOW"
  1777. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  1778. flat_relation_cache_name="ID_ZASOB"
  1779. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  1780. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  1781. xpath="ID"
  1782. xpath_value="../ID_ZASOB">
  1783. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e623_child"
  1784. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  1785. <ID xpath="ID" xml_id="d11410e629"/>
  1786. <DESC xpath="DESC" xml_id="d11410e631"/>
  1787. <DESC_PL xpath="DESC_PL" xml_id="d11410e633"/>
  1788. </default_db:CRM_LISTA_ZASOBOW>
  1789. </RelatedFeature>
  1790. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e635"/>
  1791. </default_db:CRM_WSKAZNIK>
  1792. </RelatedFeature>
  1793. </default_db:PROCES_GROUP_1>
  1794. </RelatedFeature>
  1795. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  1796. <RelatedFeatureLoop xml_id="d11410e637"
  1797. typeNameRealResource="default_db:CRM_PROCES"
  1798. typeName="default_db:PROCES_GROUP_2"
  1799. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  1800. flat_relation_cache_name="ID"
  1801. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1802. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  1803. system_cache__appinfo:maxOccurs="0"
  1804. system_cache__appinfo:minOccurs="0"
  1805. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  1806. xpath="PARENT_ID"
  1807. xpath_value="../ID">
  1808. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  1809. <ogc:Or>
  1810. <ogc:PropertyIsEqualTo>
  1811. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1812. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  1813. </ogc:PropertyIsEqualTo>
  1814. </ogc:Or>
  1815. </simpleTypeMakeOgcFilter>
  1816. <default_db:PROCES_GROUP_2 xml_id="d11410e637"
  1817. system_cache__appinfo:maxOccurs="0"
  1818. system_cache__appinfo:minOccurs="0"
  1819. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  1820. </RelatedFeatureLoop>
  1821. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  1822. <RelatedFeatureLoop xml_id="d11410e642"
  1823. typeNameRealResource="default_db:CRM_PROCES"
  1824. typeName="default_db:PROCES_BENEFIT_INFO"
  1825. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  1826. flat_relation_cache_name="ID"
  1827. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1828. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  1829. system_cache__appinfo:maxOccurs="unbounded"
  1830. system_cache__appinfo:minOccurs="0"
  1831. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  1832. xpath="PARENT_ID"
  1833. xpath_value="../ID">
  1834. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  1835. <ogc:Or>
  1836. <ogc:PropertyIsEqualTo>
  1837. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1838. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  1839. </ogc:PropertyIsEqualTo>
  1840. </ogc:Or>
  1841. </simpleTypeMakeOgcFilter>
  1842. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e642"
  1843. system_cache__appinfo:maxOccurs="unbounded"
  1844. system_cache__appinfo:minOccurs="0"
  1845. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  1846. </RelatedFeatureLoop>
  1847. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  1848. <RelatedFeature xml_id="d11410e648"
  1849. typeNameRealResource="default_db:CRM_WSKAZNIK"
  1850. typeName="default_db:CRM_WSKAZNIK"
  1851. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  1852. flat_relation_cache_name="ID"
  1853. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  1854. system_cache__appinfo:maxOccurs="0"
  1855. system_cache__appinfo:minOccurs="0"
  1856. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  1857. xpath="ID_PROCES"
  1858. xpath_value="../ID">
  1859. <default_db:CRM_WSKAZNIK xml_id="d11410e648_child"
  1860. system_cache__appinfo:maxOccurs="0"
  1861. system_cache__appinfo:minOccurs="0"
  1862. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  1863. <ID xpath="ID" xml_id="d11410e654"/>
  1864. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e656"/>
  1865. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e658"/>
  1866. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  1867. <RelatedFeature xml_id="d11410e660"
  1868. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  1869. typeName="default_db:CRM_LISTA_ZASOBOW"
  1870. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  1871. flat_relation_cache_name="ID_ZASOB"
  1872. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  1873. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  1874. xpath="ID"
  1875. xpath_value="../ID_ZASOB">
  1876. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e660_child"
  1877. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  1878. <ID xpath="ID" xml_id="d11410e666"/>
  1879. <DESC xpath="DESC" xml_id="d11410e668"/>
  1880. <DESC_PL xpath="DESC_PL" xml_id="d11410e670"/>
  1881. </default_db:CRM_LISTA_ZASOBOW>
  1882. </RelatedFeature>
  1883. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e672"/>
  1884. </default_db:CRM_WSKAZNIK>
  1885. </RelatedFeature>
  1886. </default_db:PROCES_BENEFIT_INFO>
  1887. </RelatedFeature>
  1888. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  1889. <RelatedFeature xml_id="d11410e675"
  1890. typeNameRealResource="default_db:CRM_WSKAZNIK"
  1891. typeName="default_db:CRM_WSKAZNIK"
  1892. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  1893. flat_relation_cache_name="ID"
  1894. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  1895. system_cache__appinfo:maxOccurs="0"
  1896. system_cache__appinfo:minOccurs="0"
  1897. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  1898. xpath="ID_PROCES"
  1899. xpath_value="../ID">
  1900. <default_db:CRM_WSKAZNIK xml_id="d11410e675_child"
  1901. system_cache__appinfo:maxOccurs="0"
  1902. system_cache__appinfo:minOccurs="0"
  1903. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  1904. <ID xpath="ID" xml_id="d11410e681"/>
  1905. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e683"/>
  1906. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e685"/>
  1907. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  1908. <RelatedFeature xml_id="d11410e687"
  1909. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  1910. typeName="default_db:CRM_LISTA_ZASOBOW"
  1911. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  1912. flat_relation_cache_name="ID_ZASOB"
  1913. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  1914. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  1915. xpath="ID"
  1916. xpath_value="../ID_ZASOB">
  1917. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e687_child"
  1918. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  1919. <ID xpath="ID" xml_id="d11410e693"/>
  1920. <DESC xpath="DESC" xml_id="d11410e695"/>
  1921. <DESC_PL xpath="DESC_PL" xml_id="d11410e697"/>
  1922. </default_db:CRM_LISTA_ZASOBOW>
  1923. </RelatedFeature>
  1924. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e699"/>
  1925. </default_db:CRM_WSKAZNIK>
  1926. </RelatedFeature>
  1927. </default_db:PROCES_GROUP_2>
  1928. </RelatedFeature>
  1929. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  1930. <RelatedFeature xml_id="d11410e701"
  1931. typeNameRealResource="default_db:CRM_PROCES"
  1932. typeName="default_db:PROCES_BENEFIT_INFO"
  1933. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  1934. flat_relation_cache_name="ID"
  1935. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1936. system_cache__appinfo:maxOccurs="unbounded"
  1937. system_cache__appinfo:minOccurs="0"
  1938. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  1939. xpath="PARENT_ID"
  1940. xpath_value="../ID">
  1941. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  1942. <ogc:Or>
  1943. <ogc:PropertyIsEqualTo>
  1944. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1945. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  1946. </ogc:PropertyIsEqualTo>
  1947. </ogc:Or>
  1948. </simpleTypeMakeOgcFilter>
  1949. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e701_child"
  1950. system_cache__appinfo:maxOccurs="unbounded"
  1951. system_cache__appinfo:minOccurs="0"
  1952. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  1953. <ID xpath="ID" xml_id="d11410e708"/>
  1954. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e710"/>
  1955. <path xpath="path" xml_id="d11410e712"/>
  1956. <DESC xpath="DESC" xml_id="d11410e714"/>
  1957. <TYPE xpath="TYPE" xml_id="d11410e716"/>
  1958. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  1959. <RelatedFeatureLoop xml_id="d11410e718"
  1960. typeNameRealResource="default_db:CRM_PROCES"
  1961. typeName="default_db:PROCES"
  1962. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  1963. flat_relation_cache_name="ID"
  1964. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1965. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  1966. system_cache__appinfo:maxOccurs="0"
  1967. system_cache__appinfo:minOccurs="0"
  1968. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  1969. xpath="PARENT_ID"
  1970. xpath_value="../ID">
  1971. <simpleTypeMakeOgcFilter name="PROCES">
  1972. <ogc:Or>
  1973. <ogc:PropertyIsEqualTo>
  1974. <ogc:PropertyName>TYPE</ogc:PropertyName>
  1975. <ogc:Literal>PROCES</ogc:Literal>
  1976. </ogc:PropertyIsEqualTo>
  1977. </ogc:Or>
  1978. </simpleTypeMakeOgcFilter>
  1979. <default_db:PROCES xml_id="d11410e718"
  1980. system_cache__appinfo:maxOccurs="0"
  1981. system_cache__appinfo:minOccurs="0"
  1982. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  1983. </RelatedFeatureLoop>
  1984. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  1985. <RelatedFeatureLoop xml_id="d11410e723"
  1986. typeNameRealResource="default_db:CRM_PROCES"
  1987. typeName="default_db:PROCES_INIT"
  1988. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  1989. flat_relation_cache_name="ID"
  1990. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  1991. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  1992. system_cache__appinfo:maxOccurs="0"
  1993. system_cache__appinfo:minOccurs="0"
  1994. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  1995. xpath="PARENT_ID"
  1996. xpath_value="../ID">
  1997. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  1998. <ogc:Or>
  1999. <ogc:PropertyIsEqualTo>
  2000. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2001. <ogc:Literal>PROCES_INIT</ogc:Literal>
  2002. </ogc:PropertyIsEqualTo>
  2003. </ogc:Or>
  2004. </simpleTypeMakeOgcFilter>
  2005. <default_db:PROCES_INIT xml_id="d11410e723"
  2006. system_cache__appinfo:maxOccurs="0"
  2007. system_cache__appinfo:minOccurs="0"
  2008. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  2009. </RelatedFeatureLoop>
  2010. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  2011. <RelatedFeature xml_id="d11410e728"
  2012. typeNameRealResource="default_db:CRM_PROCES"
  2013. typeName="default_db:PROCES_GROUP_1"
  2014. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  2015. flat_relation_cache_name="ID"
  2016. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2017. system_cache__appinfo:maxOccurs="0"
  2018. system_cache__appinfo:minOccurs="0"
  2019. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  2020. xpath="PARENT_ID"
  2021. xpath_value="../ID">
  2022. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  2023. <ogc:Or>
  2024. <ogc:PropertyIsEqualTo>
  2025. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2026. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  2027. </ogc:PropertyIsEqualTo>
  2028. </ogc:Or>
  2029. </simpleTypeMakeOgcFilter>
  2030. <default_db:PROCES_GROUP_1 xml_id="d11410e728_child"
  2031. system_cache__appinfo:maxOccurs="0"
  2032. system_cache__appinfo:minOccurs="0"
  2033. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  2034. <ID xpath="ID" xml_id="d11410e735"/>
  2035. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e737"/>
  2036. <path xpath="path" xml_id="d11410e739"/>
  2037. <DESC xpath="DESC" xml_id="d11410e741"/>
  2038. <TYPE xpath="TYPE" xml_id="d11410e743"/>
  2039. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  2040. <RelatedFeatureLoop xml_id="d11410e745"
  2041. typeNameRealResource="default_db:CRM_PROCES"
  2042. typeName="default_db:PROCES"
  2043. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  2044. flat_relation_cache_name="ID"
  2045. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2046. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  2047. system_cache__appinfo:maxOccurs="0"
  2048. system_cache__appinfo:minOccurs="0"
  2049. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  2050. xpath="PARENT_ID"
  2051. xpath_value="../ID">
  2052. <simpleTypeMakeOgcFilter name="PROCES">
  2053. <ogc:Or>
  2054. <ogc:PropertyIsEqualTo>
  2055. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2056. <ogc:Literal>PROCES</ogc:Literal>
  2057. </ogc:PropertyIsEqualTo>
  2058. </ogc:Or>
  2059. </simpleTypeMakeOgcFilter>
  2060. <default_db:PROCES xml_id="d11410e745"
  2061. system_cache__appinfo:maxOccurs="0"
  2062. system_cache__appinfo:minOccurs="0"
  2063. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  2064. </RelatedFeatureLoop>
  2065. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  2066. <RelatedFeatureLoop xml_id="d11410e750"
  2067. typeNameRealResource="default_db:CRM_PROCES"
  2068. typeName="default_db:PROCES_INIT"
  2069. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  2070. flat_relation_cache_name="ID"
  2071. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2072. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  2073. system_cache__appinfo:maxOccurs="unbounded"
  2074. system_cache__appinfo:minOccurs="0"
  2075. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  2076. xpath="PARENT_ID"
  2077. xpath_value="../ID">
  2078. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  2079. <ogc:Or>
  2080. <ogc:PropertyIsEqualTo>
  2081. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2082. <ogc:Literal>PROCES_INIT</ogc:Literal>
  2083. </ogc:PropertyIsEqualTo>
  2084. </ogc:Or>
  2085. </simpleTypeMakeOgcFilter>
  2086. <default_db:PROCES_INIT xml_id="d11410e750"
  2087. system_cache__appinfo:maxOccurs="unbounded"
  2088. system_cache__appinfo:minOccurs="0"
  2089. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  2090. </RelatedFeatureLoop>
  2091. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  2092. <RelatedFeatureLoop xml_id="d11410e755"
  2093. typeNameRealResource="default_db:CRM_PROCES"
  2094. typeName="default_db:PROCES_GROUP_1"
  2095. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  2096. flat_relation_cache_name="ID"
  2097. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2098. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  2099. system_cache__appinfo:maxOccurs="unbounded"
  2100. system_cache__appinfo:minOccurs="0"
  2101. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  2102. xpath="PARENT_ID"
  2103. xpath_value="../ID">
  2104. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  2105. <ogc:Or>
  2106. <ogc:PropertyIsEqualTo>
  2107. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2108. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  2109. </ogc:PropertyIsEqualTo>
  2110. </ogc:Or>
  2111. </simpleTypeMakeOgcFilter>
  2112. <default_db:PROCES_GROUP_1 xml_id="d11410e755"
  2113. system_cache__appinfo:maxOccurs="unbounded"
  2114. system_cache__appinfo:minOccurs="0"
  2115. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  2116. </RelatedFeatureLoop>
  2117. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  2118. <RelatedFeature xml_id="d11410e760"
  2119. typeNameRealResource="default_db:CRM_PROCES"
  2120. typeName="default_db:PROCES_GROUP_2"
  2121. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  2122. flat_relation_cache_name="ID"
  2123. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2124. system_cache__appinfo:maxOccurs="unbounded"
  2125. system_cache__appinfo:minOccurs="0"
  2126. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  2127. xpath="PARENT_ID"
  2128. xpath_value="../ID">
  2129. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  2130. <ogc:Or>
  2131. <ogc:PropertyIsEqualTo>
  2132. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2133. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  2134. </ogc:PropertyIsEqualTo>
  2135. </ogc:Or>
  2136. </simpleTypeMakeOgcFilter>
  2137. <default_db:PROCES_GROUP_2 xml_id="d11410e760_child"
  2138. system_cache__appinfo:maxOccurs="unbounded"
  2139. system_cache__appinfo:minOccurs="0"
  2140. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  2141. <ID xpath="ID" xml_id="d11410e767"/>
  2142. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e769"/>
  2143. <path xpath="path" xml_id="d11410e771"/>
  2144. <DESC xpath="DESC" xml_id="d11410e773"/>
  2145. <TYPE xpath="TYPE" xml_id="d11410e775"/>
  2146. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  2147. <RelatedFeatureLoop xml_id="d11410e777"
  2148. typeNameRealResource="default_db:CRM_PROCES"
  2149. typeName="default_db:PROCES"
  2150. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  2151. flat_relation_cache_name="ID"
  2152. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2153. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  2154. system_cache__appinfo:maxOccurs="0"
  2155. system_cache__appinfo:minOccurs="0"
  2156. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  2157. xpath="PARENT_ID"
  2158. xpath_value="../ID">
  2159. <simpleTypeMakeOgcFilter name="PROCES">
  2160. <ogc:Or>
  2161. <ogc:PropertyIsEqualTo>
  2162. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2163. <ogc:Literal>PROCES</ogc:Literal>
  2164. </ogc:PropertyIsEqualTo>
  2165. </ogc:Or>
  2166. </simpleTypeMakeOgcFilter>
  2167. <default_db:PROCES xml_id="d11410e777"
  2168. system_cache__appinfo:maxOccurs="0"
  2169. system_cache__appinfo:minOccurs="0"
  2170. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  2171. </RelatedFeatureLoop>
  2172. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  2173. <RelatedFeatureLoop xml_id="d11410e782"
  2174. typeNameRealResource="default_db:CRM_PROCES"
  2175. typeName="default_db:PROCES_INIT"
  2176. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  2177. flat_relation_cache_name="ID"
  2178. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2179. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  2180. system_cache__appinfo:maxOccurs="unbounded"
  2181. system_cache__appinfo:minOccurs="0"
  2182. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  2183. xpath="PARENT_ID"
  2184. xpath_value="../ID">
  2185. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  2186. <ogc:Or>
  2187. <ogc:PropertyIsEqualTo>
  2188. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2189. <ogc:Literal>PROCES_INIT</ogc:Literal>
  2190. </ogc:PropertyIsEqualTo>
  2191. </ogc:Or>
  2192. </simpleTypeMakeOgcFilter>
  2193. <default_db:PROCES_INIT xml_id="d11410e782"
  2194. system_cache__appinfo:maxOccurs="unbounded"
  2195. system_cache__appinfo:minOccurs="0"
  2196. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  2197. </RelatedFeatureLoop>
  2198. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  2199. <RelatedFeatureLoop xml_id="d11410e787"
  2200. typeNameRealResource="default_db:CRM_PROCES"
  2201. typeName="default_db:PROCES_GROUP_1"
  2202. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  2203. flat_relation_cache_name="ID"
  2204. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2205. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  2206. system_cache__appinfo:maxOccurs="0"
  2207. system_cache__appinfo:minOccurs="0"
  2208. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  2209. xpath="PARENT_ID"
  2210. xpath_value="../ID">
  2211. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  2212. <ogc:Or>
  2213. <ogc:PropertyIsEqualTo>
  2214. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2215. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  2216. </ogc:PropertyIsEqualTo>
  2217. </ogc:Or>
  2218. </simpleTypeMakeOgcFilter>
  2219. <default_db:PROCES_GROUP_1 xml_id="d11410e787"
  2220. system_cache__appinfo:maxOccurs="0"
  2221. system_cache__appinfo:minOccurs="0"
  2222. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  2223. </RelatedFeatureLoop>
  2224. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  2225. <RelatedFeatureLoop xml_id="d11410e792"
  2226. typeNameRealResource="default_db:CRM_PROCES"
  2227. typeName="default_db:PROCES_GROUP_2"
  2228. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  2229. flat_relation_cache_name="ID"
  2230. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2231. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  2232. system_cache__appinfo:maxOccurs="unbounded"
  2233. system_cache__appinfo:minOccurs="0"
  2234. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  2235. xpath="PARENT_ID"
  2236. xpath_value="../ID">
  2237. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  2238. <ogc:Or>
  2239. <ogc:PropertyIsEqualTo>
  2240. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2241. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  2242. </ogc:PropertyIsEqualTo>
  2243. </ogc:Or>
  2244. </simpleTypeMakeOgcFilter>
  2245. <default_db:PROCES_GROUP_2 xml_id="d11410e792"
  2246. system_cache__appinfo:maxOccurs="unbounded"
  2247. system_cache__appinfo:minOccurs="0"
  2248. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  2249. </RelatedFeatureLoop>
  2250. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  2251. <RelatedFeatureLoop xml_id="d11410e797"
  2252. typeNameRealResource="default_db:CRM_PROCES"
  2253. typeName="default_db:PROCES_BENEFIT_INFO"
  2254. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  2255. flat_relation_cache_name="ID"
  2256. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2257. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  2258. system_cache__appinfo:maxOccurs="1"
  2259. system_cache__appinfo:minOccurs="0"
  2260. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  2261. xpath="PARENT_ID"
  2262. xpath_value="../ID">
  2263. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  2264. <ogc:Or>
  2265. <ogc:PropertyIsEqualTo>
  2266. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2267. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  2268. </ogc:PropertyIsEqualTo>
  2269. </ogc:Or>
  2270. </simpleTypeMakeOgcFilter>
  2271. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e797"
  2272. system_cache__appinfo:maxOccurs="1"
  2273. system_cache__appinfo:minOccurs="0"
  2274. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  2275. </RelatedFeatureLoop>
  2276. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  2277. <RelatedFeature xml_id="d11410e803"
  2278. typeNameRealResource="default_db:CRM_WSKAZNIK"
  2279. typeName="default_db:CRM_WSKAZNIK"
  2280. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  2281. flat_relation_cache_name="ID"
  2282. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  2283. system_cache__appinfo:maxOccurs="0"
  2284. system_cache__appinfo:minOccurs="0"
  2285. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  2286. xpath="ID_PROCES"
  2287. xpath_value="../ID">
  2288. <default_db:CRM_WSKAZNIK xml_id="d11410e803_child"
  2289. system_cache__appinfo:maxOccurs="0"
  2290. system_cache__appinfo:minOccurs="0"
  2291. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  2292. <ID xpath="ID" xml_id="d11410e809"/>
  2293. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e811"/>
  2294. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e813"/>
  2295. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  2296. <RelatedFeature xml_id="d11410e815"
  2297. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  2298. typeName="default_db:CRM_LISTA_ZASOBOW"
  2299. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  2300. flat_relation_cache_name="ID_ZASOB"
  2301. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  2302. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  2303. xpath="ID"
  2304. xpath_value="../ID_ZASOB">
  2305. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e815_child"
  2306. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  2307. <ID xpath="ID" xml_id="d11410e821"/>
  2308. <DESC xpath="DESC" xml_id="d11410e823"/>
  2309. <DESC_PL xpath="DESC_PL" xml_id="d11410e825"/>
  2310. </default_db:CRM_LISTA_ZASOBOW>
  2311. </RelatedFeature>
  2312. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e827"/>
  2313. </default_db:CRM_WSKAZNIK>
  2314. </RelatedFeature>
  2315. </default_db:PROCES_GROUP_2>
  2316. </RelatedFeature>
  2317. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  2318. <RelatedFeatureLoop xml_id="d11410e829"
  2319. typeNameRealResource="default_db:CRM_PROCES"
  2320. typeName="default_db:PROCES_BENEFIT_INFO"
  2321. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  2322. flat_relation_cache_name="ID"
  2323. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2324. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  2325. system_cache__appinfo:maxOccurs="1"
  2326. system_cache__appinfo:minOccurs="0"
  2327. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  2328. xpath="PARENT_ID"
  2329. xpath_value="../ID">
  2330. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  2331. <ogc:Or>
  2332. <ogc:PropertyIsEqualTo>
  2333. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2334. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  2335. </ogc:PropertyIsEqualTo>
  2336. </ogc:Or>
  2337. </simpleTypeMakeOgcFilter>
  2338. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e829"
  2339. system_cache__appinfo:maxOccurs="1"
  2340. system_cache__appinfo:minOccurs="0"
  2341. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  2342. </RelatedFeatureLoop>
  2343. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  2344. <RelatedFeature xml_id="d11410e835"
  2345. typeNameRealResource="default_db:CRM_WSKAZNIK"
  2346. typeName="default_db:CRM_WSKAZNIK"
  2347. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  2348. flat_relation_cache_name="ID"
  2349. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  2350. system_cache__appinfo:maxOccurs="0"
  2351. system_cache__appinfo:minOccurs="0"
  2352. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  2353. xpath="ID_PROCES"
  2354. xpath_value="../ID">
  2355. <default_db:CRM_WSKAZNIK xml_id="d11410e835_child"
  2356. system_cache__appinfo:maxOccurs="0"
  2357. system_cache__appinfo:minOccurs="0"
  2358. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  2359. <ID xpath="ID" xml_id="d11410e841"/>
  2360. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e843"/>
  2361. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e845"/>
  2362. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  2363. <RelatedFeature xml_id="d11410e847"
  2364. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  2365. typeName="default_db:CRM_LISTA_ZASOBOW"
  2366. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  2367. flat_relation_cache_name="ID_ZASOB"
  2368. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  2369. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  2370. xpath="ID"
  2371. xpath_value="../ID_ZASOB">
  2372. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e847_child"
  2373. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  2374. <ID xpath="ID" xml_id="d11410e853"/>
  2375. <DESC xpath="DESC" xml_id="d11410e855"/>
  2376. <DESC_PL xpath="DESC_PL" xml_id="d11410e857"/>
  2377. </default_db:CRM_LISTA_ZASOBOW>
  2378. </RelatedFeature>
  2379. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e859"/>
  2380. </default_db:CRM_WSKAZNIK>
  2381. </RelatedFeature>
  2382. </default_db:PROCES_GROUP_1>
  2383. </RelatedFeature>
  2384. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  2385. <RelatedFeature xml_id="d11410e861"
  2386. typeNameRealResource="default_db:CRM_PROCES"
  2387. typeName="default_db:PROCES_GROUP_2"
  2388. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  2389. flat_relation_cache_name="ID"
  2390. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2391. system_cache__appinfo:maxOccurs="0"
  2392. system_cache__appinfo:minOccurs="0"
  2393. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  2394. xpath="PARENT_ID"
  2395. xpath_value="../ID">
  2396. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  2397. <ogc:Or>
  2398. <ogc:PropertyIsEqualTo>
  2399. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2400. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  2401. </ogc:PropertyIsEqualTo>
  2402. </ogc:Or>
  2403. </simpleTypeMakeOgcFilter>
  2404. <default_db:PROCES_GROUP_2 xml_id="d11410e861_child"
  2405. system_cache__appinfo:maxOccurs="0"
  2406. system_cache__appinfo:minOccurs="0"
  2407. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  2408. <ID xpath="ID" xml_id="d11410e868"/>
  2409. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e870"/>
  2410. <path xpath="path" xml_id="d11410e872"/>
  2411. <DESC xpath="DESC" xml_id="d11410e874"/>
  2412. <TYPE xpath="TYPE" xml_id="d11410e876"/>
  2413. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  2414. <RelatedFeatureLoop xml_id="d11410e878"
  2415. typeNameRealResource="default_db:CRM_PROCES"
  2416. typeName="default_db:PROCES"
  2417. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  2418. flat_relation_cache_name="ID"
  2419. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2420. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  2421. system_cache__appinfo:maxOccurs="0"
  2422. system_cache__appinfo:minOccurs="0"
  2423. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  2424. xpath="PARENT_ID"
  2425. xpath_value="../ID">
  2426. <simpleTypeMakeOgcFilter name="PROCES">
  2427. <ogc:Or>
  2428. <ogc:PropertyIsEqualTo>
  2429. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2430. <ogc:Literal>PROCES</ogc:Literal>
  2431. </ogc:PropertyIsEqualTo>
  2432. </ogc:Or>
  2433. </simpleTypeMakeOgcFilter>
  2434. <default_db:PROCES xml_id="d11410e878"
  2435. system_cache__appinfo:maxOccurs="0"
  2436. system_cache__appinfo:minOccurs="0"
  2437. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  2438. </RelatedFeatureLoop>
  2439. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  2440. <RelatedFeatureLoop xml_id="d11410e883"
  2441. typeNameRealResource="default_db:CRM_PROCES"
  2442. typeName="default_db:PROCES_INIT"
  2443. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  2444. flat_relation_cache_name="ID"
  2445. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2446. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  2447. system_cache__appinfo:maxOccurs="unbounded"
  2448. system_cache__appinfo:minOccurs="0"
  2449. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  2450. xpath="PARENT_ID"
  2451. xpath_value="../ID">
  2452. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  2453. <ogc:Or>
  2454. <ogc:PropertyIsEqualTo>
  2455. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2456. <ogc:Literal>PROCES_INIT</ogc:Literal>
  2457. </ogc:PropertyIsEqualTo>
  2458. </ogc:Or>
  2459. </simpleTypeMakeOgcFilter>
  2460. <default_db:PROCES_INIT xml_id="d11410e883"
  2461. system_cache__appinfo:maxOccurs="unbounded"
  2462. system_cache__appinfo:minOccurs="0"
  2463. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  2464. </RelatedFeatureLoop>
  2465. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  2466. <RelatedFeature xml_id="d11410e888"
  2467. typeNameRealResource="default_db:CRM_PROCES"
  2468. typeName="default_db:PROCES_GROUP_1"
  2469. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  2470. flat_relation_cache_name="ID"
  2471. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2472. system_cache__appinfo:maxOccurs="0"
  2473. system_cache__appinfo:minOccurs="0"
  2474. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  2475. xpath="PARENT_ID"
  2476. xpath_value="../ID">
  2477. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  2478. <ogc:Or>
  2479. <ogc:PropertyIsEqualTo>
  2480. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2481. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  2482. </ogc:PropertyIsEqualTo>
  2483. </ogc:Or>
  2484. </simpleTypeMakeOgcFilter>
  2485. <default_db:PROCES_GROUP_1 xml_id="d11410e888_child"
  2486. system_cache__appinfo:maxOccurs="0"
  2487. system_cache__appinfo:minOccurs="0"
  2488. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  2489. <ID xpath="ID" xml_id="d11410e895"/>
  2490. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e897"/>
  2491. <path xpath="path" xml_id="d11410e899"/>
  2492. <DESC xpath="DESC" xml_id="d11410e901"/>
  2493. <TYPE xpath="TYPE" xml_id="d11410e903"/>
  2494. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  2495. <RelatedFeatureLoop xml_id="d11410e905"
  2496. typeNameRealResource="default_db:CRM_PROCES"
  2497. typeName="default_db:PROCES"
  2498. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  2499. flat_relation_cache_name="ID"
  2500. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2501. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  2502. system_cache__appinfo:maxOccurs="0"
  2503. system_cache__appinfo:minOccurs="0"
  2504. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  2505. xpath="PARENT_ID"
  2506. xpath_value="../ID">
  2507. <simpleTypeMakeOgcFilter name="PROCES">
  2508. <ogc:Or>
  2509. <ogc:PropertyIsEqualTo>
  2510. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2511. <ogc:Literal>PROCES</ogc:Literal>
  2512. </ogc:PropertyIsEqualTo>
  2513. </ogc:Or>
  2514. </simpleTypeMakeOgcFilter>
  2515. <default_db:PROCES xml_id="d11410e905"
  2516. system_cache__appinfo:maxOccurs="0"
  2517. system_cache__appinfo:minOccurs="0"
  2518. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  2519. </RelatedFeatureLoop>
  2520. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  2521. <RelatedFeatureLoop xml_id="d11410e910"
  2522. typeNameRealResource="default_db:CRM_PROCES"
  2523. typeName="default_db:PROCES_INIT"
  2524. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  2525. flat_relation_cache_name="ID"
  2526. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2527. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  2528. system_cache__appinfo:maxOccurs="unbounded"
  2529. system_cache__appinfo:minOccurs="0"
  2530. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  2531. xpath="PARENT_ID"
  2532. xpath_value="../ID">
  2533. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  2534. <ogc:Or>
  2535. <ogc:PropertyIsEqualTo>
  2536. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2537. <ogc:Literal>PROCES_INIT</ogc:Literal>
  2538. </ogc:PropertyIsEqualTo>
  2539. </ogc:Or>
  2540. </simpleTypeMakeOgcFilter>
  2541. <default_db:PROCES_INIT xml_id="d11410e910"
  2542. system_cache__appinfo:maxOccurs="unbounded"
  2543. system_cache__appinfo:minOccurs="0"
  2544. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  2545. </RelatedFeatureLoop>
  2546. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  2547. <RelatedFeatureLoop xml_id="d11410e915"
  2548. typeNameRealResource="default_db:CRM_PROCES"
  2549. typeName="default_db:PROCES_GROUP_1"
  2550. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  2551. flat_relation_cache_name="ID"
  2552. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2553. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  2554. system_cache__appinfo:maxOccurs="unbounded"
  2555. system_cache__appinfo:minOccurs="0"
  2556. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  2557. xpath="PARENT_ID"
  2558. xpath_value="../ID">
  2559. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  2560. <ogc:Or>
  2561. <ogc:PropertyIsEqualTo>
  2562. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2563. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  2564. </ogc:PropertyIsEqualTo>
  2565. </ogc:Or>
  2566. </simpleTypeMakeOgcFilter>
  2567. <default_db:PROCES_GROUP_1 xml_id="d11410e915"
  2568. system_cache__appinfo:maxOccurs="unbounded"
  2569. system_cache__appinfo:minOccurs="0"
  2570. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  2571. </RelatedFeatureLoop>
  2572. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  2573. <RelatedFeatureLoop xml_id="d11410e920"
  2574. typeNameRealResource="default_db:CRM_PROCES"
  2575. typeName="default_db:PROCES_GROUP_2"
  2576. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  2577. flat_relation_cache_name="ID"
  2578. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2579. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  2580. system_cache__appinfo:maxOccurs="unbounded"
  2581. system_cache__appinfo:minOccurs="0"
  2582. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  2583. xpath="PARENT_ID"
  2584. xpath_value="../ID">
  2585. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  2586. <ogc:Or>
  2587. <ogc:PropertyIsEqualTo>
  2588. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2589. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  2590. </ogc:PropertyIsEqualTo>
  2591. </ogc:Or>
  2592. </simpleTypeMakeOgcFilter>
  2593. <default_db:PROCES_GROUP_2 xml_id="d11410e920"
  2594. system_cache__appinfo:maxOccurs="unbounded"
  2595. system_cache__appinfo:minOccurs="0"
  2596. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  2597. </RelatedFeatureLoop>
  2598. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  2599. <RelatedFeatureLoop xml_id="d11410e925"
  2600. typeNameRealResource="default_db:CRM_PROCES"
  2601. typeName="default_db:PROCES_BENEFIT_INFO"
  2602. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  2603. flat_relation_cache_name="ID"
  2604. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2605. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  2606. system_cache__appinfo:maxOccurs="1"
  2607. system_cache__appinfo:minOccurs="0"
  2608. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  2609. xpath="PARENT_ID"
  2610. xpath_value="../ID">
  2611. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  2612. <ogc:Or>
  2613. <ogc:PropertyIsEqualTo>
  2614. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2615. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  2616. </ogc:PropertyIsEqualTo>
  2617. </ogc:Or>
  2618. </simpleTypeMakeOgcFilter>
  2619. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e925"
  2620. system_cache__appinfo:maxOccurs="1"
  2621. system_cache__appinfo:minOccurs="0"
  2622. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  2623. </RelatedFeatureLoop>
  2624. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  2625. <RelatedFeature xml_id="d11410e931"
  2626. typeNameRealResource="default_db:CRM_WSKAZNIK"
  2627. typeName="default_db:CRM_WSKAZNIK"
  2628. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  2629. flat_relation_cache_name="ID"
  2630. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  2631. system_cache__appinfo:maxOccurs="0"
  2632. system_cache__appinfo:minOccurs="0"
  2633. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  2634. xpath="ID_PROCES"
  2635. xpath_value="../ID">
  2636. <default_db:CRM_WSKAZNIK xml_id="d11410e931_child"
  2637. system_cache__appinfo:maxOccurs="0"
  2638. system_cache__appinfo:minOccurs="0"
  2639. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  2640. <ID xpath="ID" xml_id="d11410e937"/>
  2641. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e939"/>
  2642. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e941"/>
  2643. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  2644. <RelatedFeature xml_id="d11410e943"
  2645. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  2646. typeName="default_db:CRM_LISTA_ZASOBOW"
  2647. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  2648. flat_relation_cache_name="ID_ZASOB"
  2649. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  2650. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  2651. xpath="ID"
  2652. xpath_value="../ID_ZASOB">
  2653. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e943_child"
  2654. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  2655. <ID xpath="ID" xml_id="d11410e949"/>
  2656. <DESC xpath="DESC" xml_id="d11410e951"/>
  2657. <DESC_PL xpath="DESC_PL" xml_id="d11410e953"/>
  2658. </default_db:CRM_LISTA_ZASOBOW>
  2659. </RelatedFeature>
  2660. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e955"/>
  2661. </default_db:CRM_WSKAZNIK>
  2662. </RelatedFeature>
  2663. </default_db:PROCES_GROUP_1>
  2664. </RelatedFeature>
  2665. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  2666. <RelatedFeatureLoop xml_id="d11410e957"
  2667. typeNameRealResource="default_db:CRM_PROCES"
  2668. typeName="default_db:PROCES_GROUP_2"
  2669. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  2670. flat_relation_cache_name="ID"
  2671. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2672. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  2673. system_cache__appinfo:maxOccurs="unbounded"
  2674. system_cache__appinfo:minOccurs="0"
  2675. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  2676. xpath="PARENT_ID"
  2677. xpath_value="../ID">
  2678. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  2679. <ogc:Or>
  2680. <ogc:PropertyIsEqualTo>
  2681. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2682. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  2683. </ogc:PropertyIsEqualTo>
  2684. </ogc:Or>
  2685. </simpleTypeMakeOgcFilter>
  2686. <default_db:PROCES_GROUP_2 xml_id="d11410e957"
  2687. system_cache__appinfo:maxOccurs="unbounded"
  2688. system_cache__appinfo:minOccurs="0"
  2689. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  2690. </RelatedFeatureLoop>
  2691. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  2692. <RelatedFeatureLoop xml_id="d11410e962"
  2693. typeNameRealResource="default_db:CRM_PROCES"
  2694. typeName="default_db:PROCES_BENEFIT_INFO"
  2695. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  2696. flat_relation_cache_name="ID"
  2697. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2698. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  2699. system_cache__appinfo:maxOccurs="1"
  2700. system_cache__appinfo:minOccurs="0"
  2701. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  2702. xpath="PARENT_ID"
  2703. xpath_value="../ID">
  2704. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  2705. <ogc:Or>
  2706. <ogc:PropertyIsEqualTo>
  2707. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2708. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  2709. </ogc:PropertyIsEqualTo>
  2710. </ogc:Or>
  2711. </simpleTypeMakeOgcFilter>
  2712. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e962"
  2713. system_cache__appinfo:maxOccurs="1"
  2714. system_cache__appinfo:minOccurs="0"
  2715. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  2716. </RelatedFeatureLoop>
  2717. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  2718. <RelatedFeature xml_id="d11410e968"
  2719. typeNameRealResource="default_db:CRM_WSKAZNIK"
  2720. typeName="default_db:CRM_WSKAZNIK"
  2721. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  2722. flat_relation_cache_name="ID"
  2723. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  2724. system_cache__appinfo:maxOccurs="0"
  2725. system_cache__appinfo:minOccurs="0"
  2726. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  2727. xpath="ID_PROCES"
  2728. xpath_value="../ID">
  2729. <default_db:CRM_WSKAZNIK xml_id="d11410e968_child"
  2730. system_cache__appinfo:maxOccurs="0"
  2731. system_cache__appinfo:minOccurs="0"
  2732. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  2733. <ID xpath="ID" xml_id="d11410e974"/>
  2734. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e976"/>
  2735. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e978"/>
  2736. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  2737. <RelatedFeature xml_id="d11410e980"
  2738. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  2739. typeName="default_db:CRM_LISTA_ZASOBOW"
  2740. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  2741. flat_relation_cache_name="ID_ZASOB"
  2742. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  2743. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  2744. xpath="ID"
  2745. xpath_value="../ID_ZASOB">
  2746. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e980_child"
  2747. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  2748. <ID xpath="ID" xml_id="d11410e986"/>
  2749. <DESC xpath="DESC" xml_id="d11410e988"/>
  2750. <DESC_PL xpath="DESC_PL" xml_id="d11410e990"/>
  2751. </default_db:CRM_LISTA_ZASOBOW>
  2752. </RelatedFeature>
  2753. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e992"/>
  2754. </default_db:CRM_WSKAZNIK>
  2755. </RelatedFeature>
  2756. </default_db:PROCES_GROUP_2>
  2757. </RelatedFeature>
  2758. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  2759. <RelatedFeatureLoop xml_id="d11410e994"
  2760. typeNameRealResource="default_db:CRM_PROCES"
  2761. typeName="default_db:PROCES_BENEFIT_INFO"
  2762. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  2763. flat_relation_cache_name="ID"
  2764. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2765. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  2766. system_cache__appinfo:maxOccurs="unbounded"
  2767. system_cache__appinfo:minOccurs="0"
  2768. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  2769. xpath="PARENT_ID"
  2770. xpath_value="../ID">
  2771. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  2772. <ogc:Or>
  2773. <ogc:PropertyIsEqualTo>
  2774. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2775. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  2776. </ogc:PropertyIsEqualTo>
  2777. </ogc:Or>
  2778. </simpleTypeMakeOgcFilter>
  2779. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e994"
  2780. system_cache__appinfo:maxOccurs="unbounded"
  2781. system_cache__appinfo:minOccurs="0"
  2782. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  2783. </RelatedFeatureLoop>
  2784. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  2785. <RelatedFeature xml_id="d11410e1000"
  2786. typeNameRealResource="default_db:CRM_WSKAZNIK"
  2787. typeName="default_db:CRM_WSKAZNIK"
  2788. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  2789. flat_relation_cache_name="ID"
  2790. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  2791. system_cache__appinfo:maxOccurs="0"
  2792. system_cache__appinfo:minOccurs="0"
  2793. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  2794. xpath="ID_PROCES"
  2795. xpath_value="../ID">
  2796. <default_db:CRM_WSKAZNIK xml_id="d11410e1000_child"
  2797. system_cache__appinfo:maxOccurs="0"
  2798. system_cache__appinfo:minOccurs="0"
  2799. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  2800. <ID xpath="ID" xml_id="d11410e1006"/>
  2801. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e1008"/>
  2802. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e1010"/>
  2803. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  2804. <RelatedFeature xml_id="d11410e1012"
  2805. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  2806. typeName="default_db:CRM_LISTA_ZASOBOW"
  2807. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  2808. flat_relation_cache_name="ID_ZASOB"
  2809. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  2810. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  2811. xpath="ID"
  2812. xpath_value="../ID_ZASOB">
  2813. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e1012_child"
  2814. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  2815. <ID xpath="ID" xml_id="d11410e1018"/>
  2816. <DESC xpath="DESC" xml_id="d11410e1020"/>
  2817. <DESC_PL xpath="DESC_PL" xml_id="d11410e1022"/>
  2818. </default_db:CRM_LISTA_ZASOBOW>
  2819. </RelatedFeature>
  2820. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e1024"/>
  2821. </default_db:CRM_WSKAZNIK>
  2822. </RelatedFeature>
  2823. </default_db:PROCES_BENEFIT_INFO>
  2824. </RelatedFeature>
  2825. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  2826. <RelatedFeature xml_id="d11410e1027"
  2827. typeNameRealResource="default_db:CRM_WSKAZNIK"
  2828. typeName="default_db:CRM_WSKAZNIK"
  2829. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  2830. flat_relation_cache_name="ID"
  2831. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  2832. system_cache__appinfo:maxOccurs="unbounded"
  2833. system_cache__appinfo:minOccurs="0"
  2834. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  2835. xpath="ID_PROCES"
  2836. xpath_value="../ID">
  2837. <default_db:CRM_WSKAZNIK xml_id="d11410e1027_child"
  2838. system_cache__appinfo:maxOccurs="unbounded"
  2839. system_cache__appinfo:minOccurs="0"
  2840. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  2841. <ID xpath="ID" xml_id="d11410e1033"/>
  2842. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e1035"/>
  2843. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e1037"/>
  2844. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  2845. <RelatedFeature xml_id="d11410e1039"
  2846. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  2847. typeName="default_db:CRM_LISTA_ZASOBOW"
  2848. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  2849. flat_relation_cache_name="ID_ZASOB"
  2850. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  2851. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  2852. xpath="ID"
  2853. xpath_value="../ID_ZASOB">
  2854. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e1039_child"
  2855. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  2856. <ID xpath="ID" xml_id="d11410e1045"/>
  2857. <DESC xpath="DESC" xml_id="d11410e1047"/>
  2858. <DESC_PL xpath="DESC_PL" xml_id="d11410e1049"/>
  2859. </default_db:CRM_LISTA_ZASOBOW>
  2860. </RelatedFeature>
  2861. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e1051"/>
  2862. </default_db:CRM_WSKAZNIK>
  2863. </RelatedFeature>
  2864. </default_db:PROCES_INIT>
  2865. </RelatedFeature>
  2866. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  2867. <RelatedFeature xml_id="d11410e1053"
  2868. typeNameRealResource="default_db:CRM_PROCES"
  2869. typeName="default_db:PROCES_GROUP_1"
  2870. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  2871. flat_relation_cache_name="ID"
  2872. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2873. system_cache__appinfo:maxOccurs="0"
  2874. system_cache__appinfo:minOccurs="0"
  2875. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  2876. xpath="PARENT_ID"
  2877. xpath_value="../ID">
  2878. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  2879. <ogc:Or>
  2880. <ogc:PropertyIsEqualTo>
  2881. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2882. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  2883. </ogc:PropertyIsEqualTo>
  2884. </ogc:Or>
  2885. </simpleTypeMakeOgcFilter>
  2886. <default_db:PROCES_GROUP_1 xml_id="d11410e1053_child"
  2887. system_cache__appinfo:maxOccurs="0"
  2888. system_cache__appinfo:minOccurs="0"
  2889. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  2890. <ID xpath="ID" xml_id="d11410e1060"/>
  2891. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1062"/>
  2892. <path xpath="path" xml_id="d11410e1064"/>
  2893. <DESC xpath="DESC" xml_id="d11410e1066"/>
  2894. <TYPE xpath="TYPE" xml_id="d11410e1068"/>
  2895. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  2896. <RelatedFeatureLoop xml_id="d11410e1070"
  2897. typeNameRealResource="default_db:CRM_PROCES"
  2898. typeName="default_db:PROCES"
  2899. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  2900. flat_relation_cache_name="ID"
  2901. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2902. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  2903. system_cache__appinfo:maxOccurs="0"
  2904. system_cache__appinfo:minOccurs="0"
  2905. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  2906. xpath="PARENT_ID"
  2907. xpath_value="../ID">
  2908. <simpleTypeMakeOgcFilter name="PROCES">
  2909. <ogc:Or>
  2910. <ogc:PropertyIsEqualTo>
  2911. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2912. <ogc:Literal>PROCES</ogc:Literal>
  2913. </ogc:PropertyIsEqualTo>
  2914. </ogc:Or>
  2915. </simpleTypeMakeOgcFilter>
  2916. <default_db:PROCES xml_id="d11410e1070"
  2917. system_cache__appinfo:maxOccurs="0"
  2918. system_cache__appinfo:minOccurs="0"
  2919. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  2920. </RelatedFeatureLoop>
  2921. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  2922. <RelatedFeature xml_id="d11410e1075"
  2923. typeNameRealResource="default_db:CRM_PROCES"
  2924. typeName="default_db:PROCES_INIT"
  2925. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  2926. flat_relation_cache_name="ID"
  2927. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2928. system_cache__appinfo:maxOccurs="unbounded"
  2929. system_cache__appinfo:minOccurs="0"
  2930. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  2931. xpath="PARENT_ID"
  2932. xpath_value="../ID">
  2933. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  2934. <ogc:Or>
  2935. <ogc:PropertyIsEqualTo>
  2936. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2937. <ogc:Literal>PROCES_INIT</ogc:Literal>
  2938. </ogc:PropertyIsEqualTo>
  2939. </ogc:Or>
  2940. </simpleTypeMakeOgcFilter>
  2941. <default_db:PROCES_INIT xml_id="d11410e1075_child"
  2942. system_cache__appinfo:maxOccurs="unbounded"
  2943. system_cache__appinfo:minOccurs="0"
  2944. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  2945. <ID xpath="ID" xml_id="d11410e1082"/>
  2946. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1084"/>
  2947. <path xpath="path" xml_id="d11410e1086"/>
  2948. <DESC xpath="DESC" xml_id="d11410e1088"/>
  2949. <TYPE xpath="TYPE" xml_id="d11410e1090"/>
  2950. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  2951. <RelatedFeatureLoop xml_id="d11410e1092"
  2952. typeNameRealResource="default_db:CRM_PROCES"
  2953. typeName="default_db:PROCES"
  2954. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  2955. flat_relation_cache_name="ID"
  2956. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2957. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  2958. system_cache__appinfo:maxOccurs="unbounded"
  2959. system_cache__appinfo:minOccurs="0"
  2960. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  2961. xpath="PARENT_ID"
  2962. xpath_value="../ID">
  2963. <simpleTypeMakeOgcFilter name="PROCES">
  2964. <ogc:Or>
  2965. <ogc:PropertyIsEqualTo>
  2966. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2967. <ogc:Literal>PROCES</ogc:Literal>
  2968. </ogc:PropertyIsEqualTo>
  2969. </ogc:Or>
  2970. </simpleTypeMakeOgcFilter>
  2971. <default_db:PROCES xml_id="d11410e1092"
  2972. system_cache__appinfo:maxOccurs="unbounded"
  2973. system_cache__appinfo:minOccurs="0"
  2974. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  2975. </RelatedFeatureLoop>
  2976. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  2977. <RelatedFeatureLoop xml_id="d11410e1097"
  2978. typeNameRealResource="default_db:CRM_PROCES"
  2979. typeName="default_db:PROCES_INIT"
  2980. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  2981. flat_relation_cache_name="ID"
  2982. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  2983. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  2984. system_cache__appinfo:maxOccurs="0"
  2985. system_cache__appinfo:minOccurs="0"
  2986. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  2987. xpath="PARENT_ID"
  2988. xpath_value="../ID">
  2989. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  2990. <ogc:Or>
  2991. <ogc:PropertyIsEqualTo>
  2992. <ogc:PropertyName>TYPE</ogc:PropertyName>
  2993. <ogc:Literal>PROCES_INIT</ogc:Literal>
  2994. </ogc:PropertyIsEqualTo>
  2995. </ogc:Or>
  2996. </simpleTypeMakeOgcFilter>
  2997. <default_db:PROCES_INIT xml_id="d11410e1097"
  2998. system_cache__appinfo:maxOccurs="0"
  2999. system_cache__appinfo:minOccurs="0"
  3000. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  3001. </RelatedFeatureLoop>
  3002. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  3003. <RelatedFeatureLoop xml_id="d11410e1102"
  3004. typeNameRealResource="default_db:CRM_PROCES"
  3005. typeName="default_db:PROCES_GROUP_1"
  3006. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  3007. flat_relation_cache_name="ID"
  3008. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3009. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  3010. system_cache__appinfo:maxOccurs="0"
  3011. system_cache__appinfo:minOccurs="0"
  3012. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  3013. xpath="PARENT_ID"
  3014. xpath_value="../ID">
  3015. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  3016. <ogc:Or>
  3017. <ogc:PropertyIsEqualTo>
  3018. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3019. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  3020. </ogc:PropertyIsEqualTo>
  3021. </ogc:Or>
  3022. </simpleTypeMakeOgcFilter>
  3023. <default_db:PROCES_GROUP_1 xml_id="d11410e1102"
  3024. system_cache__appinfo:maxOccurs="0"
  3025. system_cache__appinfo:minOccurs="0"
  3026. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  3027. </RelatedFeatureLoop>
  3028. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  3029. <RelatedFeature xml_id="d11410e1107"
  3030. typeNameRealResource="default_db:CRM_PROCES"
  3031. typeName="default_db:PROCES_GROUP_2"
  3032. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  3033. flat_relation_cache_name="ID"
  3034. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3035. system_cache__appinfo:maxOccurs="0"
  3036. system_cache__appinfo:minOccurs="0"
  3037. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  3038. xpath="PARENT_ID"
  3039. xpath_value="../ID">
  3040. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  3041. <ogc:Or>
  3042. <ogc:PropertyIsEqualTo>
  3043. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3044. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  3045. </ogc:PropertyIsEqualTo>
  3046. </ogc:Or>
  3047. </simpleTypeMakeOgcFilter>
  3048. <default_db:PROCES_GROUP_2 xml_id="d11410e1107_child"
  3049. system_cache__appinfo:maxOccurs="0"
  3050. system_cache__appinfo:minOccurs="0"
  3051. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  3052. <ID xpath="ID" xml_id="d11410e1114"/>
  3053. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1116"/>
  3054. <path xpath="path" xml_id="d11410e1118"/>
  3055. <DESC xpath="DESC" xml_id="d11410e1120"/>
  3056. <TYPE xpath="TYPE" xml_id="d11410e1122"/>
  3057. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  3058. <RelatedFeatureLoop xml_id="d11410e1124"
  3059. typeNameRealResource="default_db:CRM_PROCES"
  3060. typeName="default_db:PROCES"
  3061. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  3062. flat_relation_cache_name="ID"
  3063. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3064. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  3065. system_cache__appinfo:maxOccurs="0"
  3066. system_cache__appinfo:minOccurs="0"
  3067. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  3068. xpath="PARENT_ID"
  3069. xpath_value="../ID">
  3070. <simpleTypeMakeOgcFilter name="PROCES">
  3071. <ogc:Or>
  3072. <ogc:PropertyIsEqualTo>
  3073. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3074. <ogc:Literal>PROCES</ogc:Literal>
  3075. </ogc:PropertyIsEqualTo>
  3076. </ogc:Or>
  3077. </simpleTypeMakeOgcFilter>
  3078. <default_db:PROCES xml_id="d11410e1124"
  3079. system_cache__appinfo:maxOccurs="0"
  3080. system_cache__appinfo:minOccurs="0"
  3081. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  3082. </RelatedFeatureLoop>
  3083. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  3084. <RelatedFeatureLoop xml_id="d11410e1129"
  3085. typeNameRealResource="default_db:CRM_PROCES"
  3086. typeName="default_db:PROCES_INIT"
  3087. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  3088. flat_relation_cache_name="ID"
  3089. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3090. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  3091. system_cache__appinfo:maxOccurs="unbounded"
  3092. system_cache__appinfo:minOccurs="0"
  3093. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  3094. xpath="PARENT_ID"
  3095. xpath_value="../ID">
  3096. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  3097. <ogc:Or>
  3098. <ogc:PropertyIsEqualTo>
  3099. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3100. <ogc:Literal>PROCES_INIT</ogc:Literal>
  3101. </ogc:PropertyIsEqualTo>
  3102. </ogc:Or>
  3103. </simpleTypeMakeOgcFilter>
  3104. <default_db:PROCES_INIT xml_id="d11410e1129"
  3105. system_cache__appinfo:maxOccurs="unbounded"
  3106. system_cache__appinfo:minOccurs="0"
  3107. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  3108. </RelatedFeatureLoop>
  3109. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  3110. <RelatedFeatureLoop xml_id="d11410e1134"
  3111. typeNameRealResource="default_db:CRM_PROCES"
  3112. typeName="default_db:PROCES_GROUP_1"
  3113. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  3114. flat_relation_cache_name="ID"
  3115. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3116. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  3117. system_cache__appinfo:maxOccurs="0"
  3118. system_cache__appinfo:minOccurs="0"
  3119. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  3120. xpath="PARENT_ID"
  3121. xpath_value="../ID">
  3122. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  3123. <ogc:Or>
  3124. <ogc:PropertyIsEqualTo>
  3125. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3126. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  3127. </ogc:PropertyIsEqualTo>
  3128. </ogc:Or>
  3129. </simpleTypeMakeOgcFilter>
  3130. <default_db:PROCES_GROUP_1 xml_id="d11410e1134"
  3131. system_cache__appinfo:maxOccurs="0"
  3132. system_cache__appinfo:minOccurs="0"
  3133. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  3134. </RelatedFeatureLoop>
  3135. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  3136. <RelatedFeatureLoop xml_id="d11410e1139"
  3137. typeNameRealResource="default_db:CRM_PROCES"
  3138. typeName="default_db:PROCES_GROUP_2"
  3139. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  3140. flat_relation_cache_name="ID"
  3141. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3142. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  3143. system_cache__appinfo:maxOccurs="unbounded"
  3144. system_cache__appinfo:minOccurs="0"
  3145. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  3146. xpath="PARENT_ID"
  3147. xpath_value="../ID">
  3148. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  3149. <ogc:Or>
  3150. <ogc:PropertyIsEqualTo>
  3151. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3152. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  3153. </ogc:PropertyIsEqualTo>
  3154. </ogc:Or>
  3155. </simpleTypeMakeOgcFilter>
  3156. <default_db:PROCES_GROUP_2 xml_id="d11410e1139"
  3157. system_cache__appinfo:maxOccurs="unbounded"
  3158. system_cache__appinfo:minOccurs="0"
  3159. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  3160. </RelatedFeatureLoop>
  3161. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  3162. <RelatedFeature xml_id="d11410e1144"
  3163. typeNameRealResource="default_db:CRM_PROCES"
  3164. typeName="default_db:PROCES_BENEFIT_INFO"
  3165. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  3166. flat_relation_cache_name="ID"
  3167. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3168. system_cache__appinfo:maxOccurs="1"
  3169. system_cache__appinfo:minOccurs="0"
  3170. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  3171. xpath="PARENT_ID"
  3172. xpath_value="../ID">
  3173. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  3174. <ogc:Or>
  3175. <ogc:PropertyIsEqualTo>
  3176. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3177. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  3178. </ogc:PropertyIsEqualTo>
  3179. </ogc:Or>
  3180. </simpleTypeMakeOgcFilter>
  3181. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e1144_child"
  3182. system_cache__appinfo:maxOccurs="1"
  3183. system_cache__appinfo:minOccurs="0"
  3184. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  3185. <ID xpath="ID" xml_id="d11410e1151"/>
  3186. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1153"/>
  3187. <path xpath="path" xml_id="d11410e1155"/>
  3188. <DESC xpath="DESC" xml_id="d11410e1157"/>
  3189. <TYPE xpath="TYPE" xml_id="d11410e1159"/>
  3190. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  3191. <RelatedFeatureLoop xml_id="d11410e1161"
  3192. typeNameRealResource="default_db:CRM_PROCES"
  3193. typeName="default_db:PROCES"
  3194. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  3195. flat_relation_cache_name="ID"
  3196. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3197. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  3198. system_cache__appinfo:maxOccurs="0"
  3199. system_cache__appinfo:minOccurs="0"
  3200. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  3201. xpath="PARENT_ID"
  3202. xpath_value="../ID">
  3203. <simpleTypeMakeOgcFilter name="PROCES">
  3204. <ogc:Or>
  3205. <ogc:PropertyIsEqualTo>
  3206. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3207. <ogc:Literal>PROCES</ogc:Literal>
  3208. </ogc:PropertyIsEqualTo>
  3209. </ogc:Or>
  3210. </simpleTypeMakeOgcFilter>
  3211. <default_db:PROCES xml_id="d11410e1161"
  3212. system_cache__appinfo:maxOccurs="0"
  3213. system_cache__appinfo:minOccurs="0"
  3214. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  3215. </RelatedFeatureLoop>
  3216. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  3217. <RelatedFeatureLoop xml_id="d11410e1166"
  3218. typeNameRealResource="default_db:CRM_PROCES"
  3219. typeName="default_db:PROCES_INIT"
  3220. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  3221. flat_relation_cache_name="ID"
  3222. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3223. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  3224. system_cache__appinfo:maxOccurs="0"
  3225. system_cache__appinfo:minOccurs="0"
  3226. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  3227. xpath="PARENT_ID"
  3228. xpath_value="../ID">
  3229. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  3230. <ogc:Or>
  3231. <ogc:PropertyIsEqualTo>
  3232. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3233. <ogc:Literal>PROCES_INIT</ogc:Literal>
  3234. </ogc:PropertyIsEqualTo>
  3235. </ogc:Or>
  3236. </simpleTypeMakeOgcFilter>
  3237. <default_db:PROCES_INIT xml_id="d11410e1166"
  3238. system_cache__appinfo:maxOccurs="0"
  3239. system_cache__appinfo:minOccurs="0"
  3240. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  3241. </RelatedFeatureLoop>
  3242. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  3243. <RelatedFeatureLoop xml_id="d11410e1171"
  3244. typeNameRealResource="default_db:CRM_PROCES"
  3245. typeName="default_db:PROCES_GROUP_1"
  3246. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  3247. flat_relation_cache_name="ID"
  3248. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3249. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  3250. system_cache__appinfo:maxOccurs="0"
  3251. system_cache__appinfo:minOccurs="0"
  3252. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  3253. xpath="PARENT_ID"
  3254. xpath_value="../ID">
  3255. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  3256. <ogc:Or>
  3257. <ogc:PropertyIsEqualTo>
  3258. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3259. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  3260. </ogc:PropertyIsEqualTo>
  3261. </ogc:Or>
  3262. </simpleTypeMakeOgcFilter>
  3263. <default_db:PROCES_GROUP_1 xml_id="d11410e1171"
  3264. system_cache__appinfo:maxOccurs="0"
  3265. system_cache__appinfo:minOccurs="0"
  3266. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  3267. </RelatedFeatureLoop>
  3268. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  3269. <RelatedFeatureLoop xml_id="d11410e1176"
  3270. typeNameRealResource="default_db:CRM_PROCES"
  3271. typeName="default_db:PROCES_GROUP_2"
  3272. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  3273. flat_relation_cache_name="ID"
  3274. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3275. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  3276. system_cache__appinfo:maxOccurs="0"
  3277. system_cache__appinfo:minOccurs="0"
  3278. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  3279. xpath="PARENT_ID"
  3280. xpath_value="../ID">
  3281. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  3282. <ogc:Or>
  3283. <ogc:PropertyIsEqualTo>
  3284. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3285. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  3286. </ogc:PropertyIsEqualTo>
  3287. </ogc:Or>
  3288. </simpleTypeMakeOgcFilter>
  3289. <default_db:PROCES_GROUP_2 xml_id="d11410e1176"
  3290. system_cache__appinfo:maxOccurs="0"
  3291. system_cache__appinfo:minOccurs="0"
  3292. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  3293. </RelatedFeatureLoop>
  3294. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  3295. <RelatedFeatureLoop xml_id="d11410e1181"
  3296. typeNameRealResource="default_db:CRM_PROCES"
  3297. typeName="default_db:PROCES_BENEFIT_INFO"
  3298. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  3299. flat_relation_cache_name="ID"
  3300. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3301. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  3302. system_cache__appinfo:maxOccurs="unbounded"
  3303. system_cache__appinfo:minOccurs="0"
  3304. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  3305. xpath="PARENT_ID"
  3306. xpath_value="../ID">
  3307. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  3308. <ogc:Or>
  3309. <ogc:PropertyIsEqualTo>
  3310. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3311. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  3312. </ogc:PropertyIsEqualTo>
  3313. </ogc:Or>
  3314. </simpleTypeMakeOgcFilter>
  3315. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e1181"
  3316. system_cache__appinfo:maxOccurs="unbounded"
  3317. system_cache__appinfo:minOccurs="0"
  3318. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  3319. </RelatedFeatureLoop>
  3320. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  3321. <RelatedFeature xml_id="d11410e1187"
  3322. typeNameRealResource="default_db:CRM_WSKAZNIK"
  3323. typeName="default_db:CRM_WSKAZNIK"
  3324. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  3325. flat_relation_cache_name="ID"
  3326. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  3327. system_cache__appinfo:maxOccurs="0"
  3328. system_cache__appinfo:minOccurs="0"
  3329. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  3330. xpath="ID_PROCES"
  3331. xpath_value="../ID">
  3332. <default_db:CRM_WSKAZNIK xml_id="d11410e1187_child"
  3333. system_cache__appinfo:maxOccurs="0"
  3334. system_cache__appinfo:minOccurs="0"
  3335. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  3336. <ID xpath="ID" xml_id="d11410e1193"/>
  3337. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e1195"/>
  3338. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e1197"/>
  3339. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  3340. <RelatedFeature xml_id="d11410e1199"
  3341. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  3342. typeName="default_db:CRM_LISTA_ZASOBOW"
  3343. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  3344. flat_relation_cache_name="ID_ZASOB"
  3345. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  3346. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  3347. xpath="ID"
  3348. xpath_value="../ID_ZASOB">
  3349. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e1199_child"
  3350. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  3351. <ID xpath="ID" xml_id="d11410e1205"/>
  3352. <DESC xpath="DESC" xml_id="d11410e1207"/>
  3353. <DESC_PL xpath="DESC_PL" xml_id="d11410e1209"/>
  3354. </default_db:CRM_LISTA_ZASOBOW>
  3355. </RelatedFeature>
  3356. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e1211"/>
  3357. </default_db:CRM_WSKAZNIK>
  3358. </RelatedFeature>
  3359. </default_db:PROCES_BENEFIT_INFO>
  3360. </RelatedFeature>
  3361. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  3362. <RelatedFeature xml_id="d11410e1214"
  3363. typeNameRealResource="default_db:CRM_WSKAZNIK"
  3364. typeName="default_db:CRM_WSKAZNIK"
  3365. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  3366. flat_relation_cache_name="ID"
  3367. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  3368. system_cache__appinfo:maxOccurs="0"
  3369. system_cache__appinfo:minOccurs="0"
  3370. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  3371. xpath="ID_PROCES"
  3372. xpath_value="../ID">
  3373. <default_db:CRM_WSKAZNIK xml_id="d11410e1214_child"
  3374. system_cache__appinfo:maxOccurs="0"
  3375. system_cache__appinfo:minOccurs="0"
  3376. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  3377. <ID xpath="ID" xml_id="d11410e1220"/>
  3378. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e1222"/>
  3379. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e1224"/>
  3380. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  3381. <RelatedFeature xml_id="d11410e1226"
  3382. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  3383. typeName="default_db:CRM_LISTA_ZASOBOW"
  3384. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  3385. flat_relation_cache_name="ID_ZASOB"
  3386. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  3387. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  3388. xpath="ID"
  3389. xpath_value="../ID_ZASOB">
  3390. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e1226_child"
  3391. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  3392. <ID xpath="ID" xml_id="d11410e1232"/>
  3393. <DESC xpath="DESC" xml_id="d11410e1234"/>
  3394. <DESC_PL xpath="DESC_PL" xml_id="d11410e1236"/>
  3395. </default_db:CRM_LISTA_ZASOBOW>
  3396. </RelatedFeature>
  3397. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e1238"/>
  3398. </default_db:CRM_WSKAZNIK>
  3399. </RelatedFeature>
  3400. </default_db:PROCES_GROUP_2>
  3401. </RelatedFeature>
  3402. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  3403. <RelatedFeature xml_id="d11410e1240"
  3404. typeNameRealResource="default_db:CRM_PROCES"
  3405. typeName="default_db:PROCES_BENEFIT_INFO"
  3406. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  3407. flat_relation_cache_name="ID"
  3408. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3409. system_cache__appinfo:maxOccurs="unbounded"
  3410. system_cache__appinfo:minOccurs="0"
  3411. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  3412. xpath="PARENT_ID"
  3413. xpath_value="../ID">
  3414. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  3415. <ogc:Or>
  3416. <ogc:PropertyIsEqualTo>
  3417. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3418. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  3419. </ogc:PropertyIsEqualTo>
  3420. </ogc:Or>
  3421. </simpleTypeMakeOgcFilter>
  3422. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e1240_child"
  3423. system_cache__appinfo:maxOccurs="unbounded"
  3424. system_cache__appinfo:minOccurs="0"
  3425. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  3426. <ID xpath="ID" xml_id="d11410e1247"/>
  3427. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1249"/>
  3428. <path xpath="path" xml_id="d11410e1251"/>
  3429. <DESC xpath="DESC" xml_id="d11410e1253"/>
  3430. <TYPE xpath="TYPE" xml_id="d11410e1255"/>
  3431. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  3432. <RelatedFeatureLoop xml_id="d11410e1257"
  3433. typeNameRealResource="default_db:CRM_PROCES"
  3434. typeName="default_db:PROCES"
  3435. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  3436. flat_relation_cache_name="ID"
  3437. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3438. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  3439. system_cache__appinfo:maxOccurs="0"
  3440. system_cache__appinfo:minOccurs="0"
  3441. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  3442. xpath="PARENT_ID"
  3443. xpath_value="../ID">
  3444. <simpleTypeMakeOgcFilter name="PROCES">
  3445. <ogc:Or>
  3446. <ogc:PropertyIsEqualTo>
  3447. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3448. <ogc:Literal>PROCES</ogc:Literal>
  3449. </ogc:PropertyIsEqualTo>
  3450. </ogc:Or>
  3451. </simpleTypeMakeOgcFilter>
  3452. <default_db:PROCES xml_id="d11410e1257"
  3453. system_cache__appinfo:maxOccurs="0"
  3454. system_cache__appinfo:minOccurs="0"
  3455. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  3456. </RelatedFeatureLoop>
  3457. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  3458. <RelatedFeatureLoop xml_id="d11410e1262"
  3459. typeNameRealResource="default_db:CRM_PROCES"
  3460. typeName="default_db:PROCES_INIT"
  3461. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  3462. flat_relation_cache_name="ID"
  3463. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3464. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  3465. system_cache__appinfo:maxOccurs="0"
  3466. system_cache__appinfo:minOccurs="0"
  3467. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  3468. xpath="PARENT_ID"
  3469. xpath_value="../ID">
  3470. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  3471. <ogc:Or>
  3472. <ogc:PropertyIsEqualTo>
  3473. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3474. <ogc:Literal>PROCES_INIT</ogc:Literal>
  3475. </ogc:PropertyIsEqualTo>
  3476. </ogc:Or>
  3477. </simpleTypeMakeOgcFilter>
  3478. <default_db:PROCES_INIT xml_id="d11410e1262"
  3479. system_cache__appinfo:maxOccurs="0"
  3480. system_cache__appinfo:minOccurs="0"
  3481. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  3482. </RelatedFeatureLoop>
  3483. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  3484. <RelatedFeatureLoop xml_id="d11410e1267"
  3485. typeNameRealResource="default_db:CRM_PROCES"
  3486. typeName="default_db:PROCES_GROUP_1"
  3487. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  3488. flat_relation_cache_name="ID"
  3489. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3490. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  3491. system_cache__appinfo:maxOccurs="0"
  3492. system_cache__appinfo:minOccurs="0"
  3493. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  3494. xpath="PARENT_ID"
  3495. xpath_value="../ID">
  3496. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  3497. <ogc:Or>
  3498. <ogc:PropertyIsEqualTo>
  3499. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3500. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  3501. </ogc:PropertyIsEqualTo>
  3502. </ogc:Or>
  3503. </simpleTypeMakeOgcFilter>
  3504. <default_db:PROCES_GROUP_1 xml_id="d11410e1267"
  3505. system_cache__appinfo:maxOccurs="0"
  3506. system_cache__appinfo:minOccurs="0"
  3507. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  3508. </RelatedFeatureLoop>
  3509. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  3510. <RelatedFeature xml_id="d11410e1272"
  3511. typeNameRealResource="default_db:CRM_PROCES"
  3512. typeName="default_db:PROCES_GROUP_2"
  3513. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  3514. flat_relation_cache_name="ID"
  3515. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3516. system_cache__appinfo:maxOccurs="0"
  3517. system_cache__appinfo:minOccurs="0"
  3518. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  3519. xpath="PARENT_ID"
  3520. xpath_value="../ID">
  3521. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  3522. <ogc:Or>
  3523. <ogc:PropertyIsEqualTo>
  3524. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3525. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  3526. </ogc:PropertyIsEqualTo>
  3527. </ogc:Or>
  3528. </simpleTypeMakeOgcFilter>
  3529. <default_db:PROCES_GROUP_2 xml_id="d11410e1272_child"
  3530. system_cache__appinfo:maxOccurs="0"
  3531. system_cache__appinfo:minOccurs="0"
  3532. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  3533. <ID xpath="ID" xml_id="d11410e1279"/>
  3534. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1281"/>
  3535. <path xpath="path" xml_id="d11410e1283"/>
  3536. <DESC xpath="DESC" xml_id="d11410e1285"/>
  3537. <TYPE xpath="TYPE" xml_id="d11410e1287"/>
  3538. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  3539. <RelatedFeatureLoop xml_id="d11410e1289"
  3540. typeNameRealResource="default_db:CRM_PROCES"
  3541. typeName="default_db:PROCES"
  3542. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  3543. flat_relation_cache_name="ID"
  3544. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3545. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  3546. system_cache__appinfo:maxOccurs="0"
  3547. system_cache__appinfo:minOccurs="0"
  3548. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  3549. xpath="PARENT_ID"
  3550. xpath_value="../ID">
  3551. <simpleTypeMakeOgcFilter name="PROCES">
  3552. <ogc:Or>
  3553. <ogc:PropertyIsEqualTo>
  3554. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3555. <ogc:Literal>PROCES</ogc:Literal>
  3556. </ogc:PropertyIsEqualTo>
  3557. </ogc:Or>
  3558. </simpleTypeMakeOgcFilter>
  3559. <default_db:PROCES xml_id="d11410e1289"
  3560. system_cache__appinfo:maxOccurs="0"
  3561. system_cache__appinfo:minOccurs="0"
  3562. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  3563. </RelatedFeatureLoop>
  3564. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  3565. <RelatedFeatureLoop xml_id="d11410e1294"
  3566. typeNameRealResource="default_db:CRM_PROCES"
  3567. typeName="default_db:PROCES_INIT"
  3568. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  3569. flat_relation_cache_name="ID"
  3570. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3571. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  3572. system_cache__appinfo:maxOccurs="unbounded"
  3573. system_cache__appinfo:minOccurs="0"
  3574. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  3575. xpath="PARENT_ID"
  3576. xpath_value="../ID">
  3577. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  3578. <ogc:Or>
  3579. <ogc:PropertyIsEqualTo>
  3580. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3581. <ogc:Literal>PROCES_INIT</ogc:Literal>
  3582. </ogc:PropertyIsEqualTo>
  3583. </ogc:Or>
  3584. </simpleTypeMakeOgcFilter>
  3585. <default_db:PROCES_INIT xml_id="d11410e1294"
  3586. system_cache__appinfo:maxOccurs="unbounded"
  3587. system_cache__appinfo:minOccurs="0"
  3588. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  3589. </RelatedFeatureLoop>
  3590. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  3591. <RelatedFeatureLoop xml_id="d11410e1299"
  3592. typeNameRealResource="default_db:CRM_PROCES"
  3593. typeName="default_db:PROCES_GROUP_1"
  3594. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  3595. flat_relation_cache_name="ID"
  3596. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3597. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  3598. system_cache__appinfo:maxOccurs="0"
  3599. system_cache__appinfo:minOccurs="0"
  3600. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  3601. xpath="PARENT_ID"
  3602. xpath_value="../ID">
  3603. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  3604. <ogc:Or>
  3605. <ogc:PropertyIsEqualTo>
  3606. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3607. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  3608. </ogc:PropertyIsEqualTo>
  3609. </ogc:Or>
  3610. </simpleTypeMakeOgcFilter>
  3611. <default_db:PROCES_GROUP_1 xml_id="d11410e1299"
  3612. system_cache__appinfo:maxOccurs="0"
  3613. system_cache__appinfo:minOccurs="0"
  3614. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  3615. </RelatedFeatureLoop>
  3616. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  3617. <RelatedFeatureLoop xml_id="d11410e1304"
  3618. typeNameRealResource="default_db:CRM_PROCES"
  3619. typeName="default_db:PROCES_GROUP_2"
  3620. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  3621. flat_relation_cache_name="ID"
  3622. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3623. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  3624. system_cache__appinfo:maxOccurs="unbounded"
  3625. system_cache__appinfo:minOccurs="0"
  3626. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  3627. xpath="PARENT_ID"
  3628. xpath_value="../ID">
  3629. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  3630. <ogc:Or>
  3631. <ogc:PropertyIsEqualTo>
  3632. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3633. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  3634. </ogc:PropertyIsEqualTo>
  3635. </ogc:Or>
  3636. </simpleTypeMakeOgcFilter>
  3637. <default_db:PROCES_GROUP_2 xml_id="d11410e1304"
  3638. system_cache__appinfo:maxOccurs="unbounded"
  3639. system_cache__appinfo:minOccurs="0"
  3640. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  3641. </RelatedFeatureLoop>
  3642. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  3643. <RelatedFeatureLoop xml_id="d11410e1309"
  3644. typeNameRealResource="default_db:CRM_PROCES"
  3645. typeName="default_db:PROCES_BENEFIT_INFO"
  3646. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  3647. flat_relation_cache_name="ID"
  3648. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3649. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  3650. system_cache__appinfo:maxOccurs="1"
  3651. system_cache__appinfo:minOccurs="0"
  3652. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  3653. xpath="PARENT_ID"
  3654. xpath_value="../ID">
  3655. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  3656. <ogc:Or>
  3657. <ogc:PropertyIsEqualTo>
  3658. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3659. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  3660. </ogc:PropertyIsEqualTo>
  3661. </ogc:Or>
  3662. </simpleTypeMakeOgcFilter>
  3663. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e1309"
  3664. system_cache__appinfo:maxOccurs="1"
  3665. system_cache__appinfo:minOccurs="0"
  3666. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  3667. </RelatedFeatureLoop>
  3668. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  3669. <RelatedFeature xml_id="d11410e1315"
  3670. typeNameRealResource="default_db:CRM_WSKAZNIK"
  3671. typeName="default_db:CRM_WSKAZNIK"
  3672. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  3673. flat_relation_cache_name="ID"
  3674. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  3675. system_cache__appinfo:maxOccurs="0"
  3676. system_cache__appinfo:minOccurs="0"
  3677. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  3678. xpath="ID_PROCES"
  3679. xpath_value="../ID">
  3680. <default_db:CRM_WSKAZNIK xml_id="d11410e1315_child"
  3681. system_cache__appinfo:maxOccurs="0"
  3682. system_cache__appinfo:minOccurs="0"
  3683. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  3684. <ID xpath="ID" xml_id="d11410e1321"/>
  3685. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e1323"/>
  3686. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e1325"/>
  3687. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  3688. <RelatedFeature xml_id="d11410e1327"
  3689. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  3690. typeName="default_db:CRM_LISTA_ZASOBOW"
  3691. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  3692. flat_relation_cache_name="ID_ZASOB"
  3693. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  3694. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  3695. xpath="ID"
  3696. xpath_value="../ID_ZASOB">
  3697. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e1327_child"
  3698. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  3699. <ID xpath="ID" xml_id="d11410e1333"/>
  3700. <DESC xpath="DESC" xml_id="d11410e1335"/>
  3701. <DESC_PL xpath="DESC_PL" xml_id="d11410e1337"/>
  3702. </default_db:CRM_LISTA_ZASOBOW>
  3703. </RelatedFeature>
  3704. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e1339"/>
  3705. </default_db:CRM_WSKAZNIK>
  3706. </RelatedFeature>
  3707. </default_db:PROCES_GROUP_2>
  3708. </RelatedFeature>
  3709. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  3710. <RelatedFeatureLoop xml_id="d11410e1341"
  3711. typeNameRealResource="default_db:CRM_PROCES"
  3712. typeName="default_db:PROCES_BENEFIT_INFO"
  3713. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  3714. flat_relation_cache_name="ID"
  3715. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3716. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  3717. system_cache__appinfo:maxOccurs="unbounded"
  3718. system_cache__appinfo:minOccurs="0"
  3719. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  3720. xpath="PARENT_ID"
  3721. xpath_value="../ID">
  3722. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  3723. <ogc:Or>
  3724. <ogc:PropertyIsEqualTo>
  3725. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3726. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  3727. </ogc:PropertyIsEqualTo>
  3728. </ogc:Or>
  3729. </simpleTypeMakeOgcFilter>
  3730. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e1341"
  3731. system_cache__appinfo:maxOccurs="unbounded"
  3732. system_cache__appinfo:minOccurs="0"
  3733. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  3734. </RelatedFeatureLoop>
  3735. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  3736. <RelatedFeature xml_id="d11410e1347"
  3737. typeNameRealResource="default_db:CRM_WSKAZNIK"
  3738. typeName="default_db:CRM_WSKAZNIK"
  3739. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  3740. flat_relation_cache_name="ID"
  3741. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  3742. system_cache__appinfo:maxOccurs="0"
  3743. system_cache__appinfo:minOccurs="0"
  3744. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  3745. xpath="ID_PROCES"
  3746. xpath_value="../ID">
  3747. <default_db:CRM_WSKAZNIK xml_id="d11410e1347_child"
  3748. system_cache__appinfo:maxOccurs="0"
  3749. system_cache__appinfo:minOccurs="0"
  3750. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  3751. <ID xpath="ID" xml_id="d11410e1353"/>
  3752. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e1355"/>
  3753. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e1357"/>
  3754. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  3755. <RelatedFeature xml_id="d11410e1359"
  3756. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  3757. typeName="default_db:CRM_LISTA_ZASOBOW"
  3758. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  3759. flat_relation_cache_name="ID_ZASOB"
  3760. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  3761. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  3762. xpath="ID"
  3763. xpath_value="../ID_ZASOB">
  3764. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e1359_child"
  3765. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  3766. <ID xpath="ID" xml_id="d11410e1365"/>
  3767. <DESC xpath="DESC" xml_id="d11410e1367"/>
  3768. <DESC_PL xpath="DESC_PL" xml_id="d11410e1369"/>
  3769. </default_db:CRM_LISTA_ZASOBOW>
  3770. </RelatedFeature>
  3771. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e1371"/>
  3772. </default_db:CRM_WSKAZNIK>
  3773. </RelatedFeature>
  3774. </default_db:PROCES_BENEFIT_INFO>
  3775. </RelatedFeature>
  3776. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  3777. <RelatedFeature xml_id="d11410e1374"
  3778. typeNameRealResource="default_db:CRM_WSKAZNIK"
  3779. typeName="default_db:CRM_WSKAZNIK"
  3780. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  3781. flat_relation_cache_name="ID"
  3782. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  3783. system_cache__appinfo:maxOccurs="unbounded"
  3784. system_cache__appinfo:minOccurs="0"
  3785. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  3786. xpath="ID_PROCES"
  3787. xpath_value="../ID">
  3788. <default_db:CRM_WSKAZNIK xml_id="d11410e1374_child"
  3789. system_cache__appinfo:maxOccurs="unbounded"
  3790. system_cache__appinfo:minOccurs="0"
  3791. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  3792. <ID xpath="ID" xml_id="d11410e1380"/>
  3793. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e1382"/>
  3794. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e1384"/>
  3795. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  3796. <RelatedFeature xml_id="d11410e1386"
  3797. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  3798. typeName="default_db:CRM_LISTA_ZASOBOW"
  3799. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  3800. flat_relation_cache_name="ID_ZASOB"
  3801. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  3802. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  3803. xpath="ID"
  3804. xpath_value="../ID_ZASOB">
  3805. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e1386_child"
  3806. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  3807. <ID xpath="ID" xml_id="d11410e1392"/>
  3808. <DESC xpath="DESC" xml_id="d11410e1394"/>
  3809. <DESC_PL xpath="DESC_PL" xml_id="d11410e1396"/>
  3810. </default_db:CRM_LISTA_ZASOBOW>
  3811. </RelatedFeature>
  3812. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e1398"/>
  3813. </default_db:CRM_WSKAZNIK>
  3814. </RelatedFeature>
  3815. </default_db:PROCES_INIT>
  3816. </RelatedFeature>
  3817. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  3818. <RelatedFeatureLoop xml_id="d11410e1400"
  3819. typeNameRealResource="default_db:CRM_PROCES"
  3820. typeName="default_db:PROCES_GROUP_1"
  3821. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  3822. flat_relation_cache_name="ID"
  3823. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3824. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  3825. system_cache__appinfo:maxOccurs="unbounded"
  3826. system_cache__appinfo:minOccurs="0"
  3827. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  3828. xpath="PARENT_ID"
  3829. xpath_value="../ID">
  3830. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  3831. <ogc:Or>
  3832. <ogc:PropertyIsEqualTo>
  3833. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3834. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  3835. </ogc:PropertyIsEqualTo>
  3836. </ogc:Or>
  3837. </simpleTypeMakeOgcFilter>
  3838. <default_db:PROCES_GROUP_1 xml_id="d11410e1400"
  3839. system_cache__appinfo:maxOccurs="unbounded"
  3840. system_cache__appinfo:minOccurs="0"
  3841. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  3842. </RelatedFeatureLoop>
  3843. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  3844. <RelatedFeature xml_id="d11410e1405"
  3845. typeNameRealResource="default_db:CRM_PROCES"
  3846. typeName="default_db:PROCES_GROUP_2"
  3847. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  3848. flat_relation_cache_name="ID"
  3849. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3850. system_cache__appinfo:maxOccurs="unbounded"
  3851. system_cache__appinfo:minOccurs="0"
  3852. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  3853. xpath="PARENT_ID"
  3854. xpath_value="../ID">
  3855. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  3856. <ogc:Or>
  3857. <ogc:PropertyIsEqualTo>
  3858. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3859. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  3860. </ogc:PropertyIsEqualTo>
  3861. </ogc:Or>
  3862. </simpleTypeMakeOgcFilter>
  3863. <default_db:PROCES_GROUP_2 xml_id="d11410e1405_child"
  3864. system_cache__appinfo:maxOccurs="unbounded"
  3865. system_cache__appinfo:minOccurs="0"
  3866. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  3867. <ID xpath="ID" xml_id="d11410e1412"/>
  3868. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1414"/>
  3869. <path xpath="path" xml_id="d11410e1416"/>
  3870. <DESC xpath="DESC" xml_id="d11410e1418"/>
  3871. <TYPE xpath="TYPE" xml_id="d11410e1420"/>
  3872. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  3873. <RelatedFeatureLoop xml_id="d11410e1422"
  3874. typeNameRealResource="default_db:CRM_PROCES"
  3875. typeName="default_db:PROCES"
  3876. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  3877. flat_relation_cache_name="ID"
  3878. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3879. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  3880. system_cache__appinfo:maxOccurs="0"
  3881. system_cache__appinfo:minOccurs="0"
  3882. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  3883. xpath="PARENT_ID"
  3884. xpath_value="../ID">
  3885. <simpleTypeMakeOgcFilter name="PROCES">
  3886. <ogc:Or>
  3887. <ogc:PropertyIsEqualTo>
  3888. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3889. <ogc:Literal>PROCES</ogc:Literal>
  3890. </ogc:PropertyIsEqualTo>
  3891. </ogc:Or>
  3892. </simpleTypeMakeOgcFilter>
  3893. <default_db:PROCES xml_id="d11410e1422"
  3894. system_cache__appinfo:maxOccurs="0"
  3895. system_cache__appinfo:minOccurs="0"
  3896. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  3897. </RelatedFeatureLoop>
  3898. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  3899. <RelatedFeature xml_id="d11410e1427"
  3900. typeNameRealResource="default_db:CRM_PROCES"
  3901. typeName="default_db:PROCES_INIT"
  3902. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  3903. flat_relation_cache_name="ID"
  3904. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3905. system_cache__appinfo:maxOccurs="unbounded"
  3906. system_cache__appinfo:minOccurs="0"
  3907. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  3908. xpath="PARENT_ID"
  3909. xpath_value="../ID">
  3910. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  3911. <ogc:Or>
  3912. <ogc:PropertyIsEqualTo>
  3913. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3914. <ogc:Literal>PROCES_INIT</ogc:Literal>
  3915. </ogc:PropertyIsEqualTo>
  3916. </ogc:Or>
  3917. </simpleTypeMakeOgcFilter>
  3918. <default_db:PROCES_INIT xml_id="d11410e1427_child"
  3919. system_cache__appinfo:maxOccurs="unbounded"
  3920. system_cache__appinfo:minOccurs="0"
  3921. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  3922. <ID xpath="ID" xml_id="d11410e1434"/>
  3923. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1436"/>
  3924. <path xpath="path" xml_id="d11410e1438"/>
  3925. <DESC xpath="DESC" xml_id="d11410e1440"/>
  3926. <TYPE xpath="TYPE" xml_id="d11410e1442"/>
  3927. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  3928. <RelatedFeatureLoop xml_id="d11410e1444"
  3929. typeNameRealResource="default_db:CRM_PROCES"
  3930. typeName="default_db:PROCES"
  3931. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  3932. flat_relation_cache_name="ID"
  3933. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3934. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  3935. system_cache__appinfo:maxOccurs="unbounded"
  3936. system_cache__appinfo:minOccurs="0"
  3937. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  3938. xpath="PARENT_ID"
  3939. xpath_value="../ID">
  3940. <simpleTypeMakeOgcFilter name="PROCES">
  3941. <ogc:Or>
  3942. <ogc:PropertyIsEqualTo>
  3943. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3944. <ogc:Literal>PROCES</ogc:Literal>
  3945. </ogc:PropertyIsEqualTo>
  3946. </ogc:Or>
  3947. </simpleTypeMakeOgcFilter>
  3948. <default_db:PROCES xml_id="d11410e1444"
  3949. system_cache__appinfo:maxOccurs="unbounded"
  3950. system_cache__appinfo:minOccurs="0"
  3951. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  3952. </RelatedFeatureLoop>
  3953. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  3954. <RelatedFeatureLoop xml_id="d11410e1449"
  3955. typeNameRealResource="default_db:CRM_PROCES"
  3956. typeName="default_db:PROCES_INIT"
  3957. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  3958. flat_relation_cache_name="ID"
  3959. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3960. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  3961. system_cache__appinfo:maxOccurs="0"
  3962. system_cache__appinfo:minOccurs="0"
  3963. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  3964. xpath="PARENT_ID"
  3965. xpath_value="../ID">
  3966. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  3967. <ogc:Or>
  3968. <ogc:PropertyIsEqualTo>
  3969. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3970. <ogc:Literal>PROCES_INIT</ogc:Literal>
  3971. </ogc:PropertyIsEqualTo>
  3972. </ogc:Or>
  3973. </simpleTypeMakeOgcFilter>
  3974. <default_db:PROCES_INIT xml_id="d11410e1449"
  3975. system_cache__appinfo:maxOccurs="0"
  3976. system_cache__appinfo:minOccurs="0"
  3977. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  3978. </RelatedFeatureLoop>
  3979. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  3980. <RelatedFeatureLoop xml_id="d11410e1454"
  3981. typeNameRealResource="default_db:CRM_PROCES"
  3982. typeName="default_db:PROCES_GROUP_1"
  3983. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  3984. flat_relation_cache_name="ID"
  3985. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  3986. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  3987. system_cache__appinfo:maxOccurs="0"
  3988. system_cache__appinfo:minOccurs="0"
  3989. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  3990. xpath="PARENT_ID"
  3991. xpath_value="../ID">
  3992. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  3993. <ogc:Or>
  3994. <ogc:PropertyIsEqualTo>
  3995. <ogc:PropertyName>TYPE</ogc:PropertyName>
  3996. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  3997. </ogc:PropertyIsEqualTo>
  3998. </ogc:Or>
  3999. </simpleTypeMakeOgcFilter>
  4000. <default_db:PROCES_GROUP_1 xml_id="d11410e1454"
  4001. system_cache__appinfo:maxOccurs="0"
  4002. system_cache__appinfo:minOccurs="0"
  4003. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  4004. </RelatedFeatureLoop>
  4005. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  4006. <RelatedFeatureLoop xml_id="d11410e1459"
  4007. typeNameRealResource="default_db:CRM_PROCES"
  4008. typeName="default_db:PROCES_GROUP_2"
  4009. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  4010. flat_relation_cache_name="ID"
  4011. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4012. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  4013. system_cache__appinfo:maxOccurs="0"
  4014. system_cache__appinfo:minOccurs="0"
  4015. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  4016. xpath="PARENT_ID"
  4017. xpath_value="../ID">
  4018. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  4019. <ogc:Or>
  4020. <ogc:PropertyIsEqualTo>
  4021. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4022. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  4023. </ogc:PropertyIsEqualTo>
  4024. </ogc:Or>
  4025. </simpleTypeMakeOgcFilter>
  4026. <default_db:PROCES_GROUP_2 xml_id="d11410e1459"
  4027. system_cache__appinfo:maxOccurs="0"
  4028. system_cache__appinfo:minOccurs="0"
  4029. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  4030. </RelatedFeatureLoop>
  4031. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  4032. <RelatedFeature xml_id="d11410e1464"
  4033. typeNameRealResource="default_db:CRM_PROCES"
  4034. typeName="default_db:PROCES_BENEFIT_INFO"
  4035. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  4036. flat_relation_cache_name="ID"
  4037. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4038. system_cache__appinfo:maxOccurs="unbounded"
  4039. system_cache__appinfo:minOccurs="0"
  4040. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  4041. xpath="PARENT_ID"
  4042. xpath_value="../ID">
  4043. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  4044. <ogc:Or>
  4045. <ogc:PropertyIsEqualTo>
  4046. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4047. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  4048. </ogc:PropertyIsEqualTo>
  4049. </ogc:Or>
  4050. </simpleTypeMakeOgcFilter>
  4051. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e1464_child"
  4052. system_cache__appinfo:maxOccurs="unbounded"
  4053. system_cache__appinfo:minOccurs="0"
  4054. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  4055. <ID xpath="ID" xml_id="d11410e1471"/>
  4056. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1473"/>
  4057. <path xpath="path" xml_id="d11410e1475"/>
  4058. <DESC xpath="DESC" xml_id="d11410e1477"/>
  4059. <TYPE xpath="TYPE" xml_id="d11410e1479"/>
  4060. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  4061. <RelatedFeatureLoop xml_id="d11410e1481"
  4062. typeNameRealResource="default_db:CRM_PROCES"
  4063. typeName="default_db:PROCES"
  4064. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  4065. flat_relation_cache_name="ID"
  4066. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4067. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  4068. system_cache__appinfo:maxOccurs="0"
  4069. system_cache__appinfo:minOccurs="0"
  4070. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  4071. xpath="PARENT_ID"
  4072. xpath_value="../ID">
  4073. <simpleTypeMakeOgcFilter name="PROCES">
  4074. <ogc:Or>
  4075. <ogc:PropertyIsEqualTo>
  4076. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4077. <ogc:Literal>PROCES</ogc:Literal>
  4078. </ogc:PropertyIsEqualTo>
  4079. </ogc:Or>
  4080. </simpleTypeMakeOgcFilter>
  4081. <default_db:PROCES xml_id="d11410e1481"
  4082. system_cache__appinfo:maxOccurs="0"
  4083. system_cache__appinfo:minOccurs="0"
  4084. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  4085. </RelatedFeatureLoop>
  4086. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  4087. <RelatedFeatureLoop xml_id="d11410e1486"
  4088. typeNameRealResource="default_db:CRM_PROCES"
  4089. typeName="default_db:PROCES_INIT"
  4090. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  4091. flat_relation_cache_name="ID"
  4092. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4093. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  4094. system_cache__appinfo:maxOccurs="0"
  4095. system_cache__appinfo:minOccurs="0"
  4096. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  4097. xpath="PARENT_ID"
  4098. xpath_value="../ID">
  4099. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  4100. <ogc:Or>
  4101. <ogc:PropertyIsEqualTo>
  4102. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4103. <ogc:Literal>PROCES_INIT</ogc:Literal>
  4104. </ogc:PropertyIsEqualTo>
  4105. </ogc:Or>
  4106. </simpleTypeMakeOgcFilter>
  4107. <default_db:PROCES_INIT xml_id="d11410e1486"
  4108. system_cache__appinfo:maxOccurs="0"
  4109. system_cache__appinfo:minOccurs="0"
  4110. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  4111. </RelatedFeatureLoop>
  4112. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  4113. <RelatedFeatureLoop xml_id="d11410e1491"
  4114. typeNameRealResource="default_db:CRM_PROCES"
  4115. typeName="default_db:PROCES_GROUP_1"
  4116. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  4117. flat_relation_cache_name="ID"
  4118. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4119. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  4120. system_cache__appinfo:maxOccurs="0"
  4121. system_cache__appinfo:minOccurs="0"
  4122. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  4123. xpath="PARENT_ID"
  4124. xpath_value="../ID">
  4125. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  4126. <ogc:Or>
  4127. <ogc:PropertyIsEqualTo>
  4128. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4129. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  4130. </ogc:PropertyIsEqualTo>
  4131. </ogc:Or>
  4132. </simpleTypeMakeOgcFilter>
  4133. <default_db:PROCES_GROUP_1 xml_id="d11410e1491"
  4134. system_cache__appinfo:maxOccurs="0"
  4135. system_cache__appinfo:minOccurs="0"
  4136. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  4137. </RelatedFeatureLoop>
  4138. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  4139. <RelatedFeatureLoop xml_id="d11410e1496"
  4140. typeNameRealResource="default_db:CRM_PROCES"
  4141. typeName="default_db:PROCES_GROUP_2"
  4142. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  4143. flat_relation_cache_name="ID"
  4144. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4145. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  4146. system_cache__appinfo:maxOccurs="0"
  4147. system_cache__appinfo:minOccurs="0"
  4148. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  4149. xpath="PARENT_ID"
  4150. xpath_value="../ID">
  4151. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  4152. <ogc:Or>
  4153. <ogc:PropertyIsEqualTo>
  4154. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4155. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  4156. </ogc:PropertyIsEqualTo>
  4157. </ogc:Or>
  4158. </simpleTypeMakeOgcFilter>
  4159. <default_db:PROCES_GROUP_2 xml_id="d11410e1496"
  4160. system_cache__appinfo:maxOccurs="0"
  4161. system_cache__appinfo:minOccurs="0"
  4162. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  4163. </RelatedFeatureLoop>
  4164. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  4165. <RelatedFeatureLoop xml_id="d11410e1501"
  4166. typeNameRealResource="default_db:CRM_PROCES"
  4167. typeName="default_db:PROCES_BENEFIT_INFO"
  4168. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  4169. flat_relation_cache_name="ID"
  4170. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4171. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  4172. system_cache__appinfo:maxOccurs="unbounded"
  4173. system_cache__appinfo:minOccurs="0"
  4174. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  4175. xpath="PARENT_ID"
  4176. xpath_value="../ID">
  4177. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  4178. <ogc:Or>
  4179. <ogc:PropertyIsEqualTo>
  4180. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4181. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  4182. </ogc:PropertyIsEqualTo>
  4183. </ogc:Or>
  4184. </simpleTypeMakeOgcFilter>
  4185. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e1501"
  4186. system_cache__appinfo:maxOccurs="unbounded"
  4187. system_cache__appinfo:minOccurs="0"
  4188. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  4189. </RelatedFeatureLoop>
  4190. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  4191. <RelatedFeature xml_id="d11410e1507"
  4192. typeNameRealResource="default_db:CRM_WSKAZNIK"
  4193. typeName="default_db:CRM_WSKAZNIK"
  4194. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  4195. flat_relation_cache_name="ID"
  4196. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  4197. system_cache__appinfo:maxOccurs="0"
  4198. system_cache__appinfo:minOccurs="0"
  4199. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  4200. xpath="ID_PROCES"
  4201. xpath_value="../ID">
  4202. <default_db:CRM_WSKAZNIK xml_id="d11410e1507_child"
  4203. system_cache__appinfo:maxOccurs="0"
  4204. system_cache__appinfo:minOccurs="0"
  4205. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  4206. <ID xpath="ID" xml_id="d11410e1513"/>
  4207. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e1515"/>
  4208. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e1517"/>
  4209. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  4210. <RelatedFeature xml_id="d11410e1519"
  4211. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  4212. typeName="default_db:CRM_LISTA_ZASOBOW"
  4213. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  4214. flat_relation_cache_name="ID_ZASOB"
  4215. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  4216. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  4217. xpath="ID"
  4218. xpath_value="../ID_ZASOB">
  4219. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e1519_child"
  4220. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  4221. <ID xpath="ID" xml_id="d11410e1525"/>
  4222. <DESC xpath="DESC" xml_id="d11410e1527"/>
  4223. <DESC_PL xpath="DESC_PL" xml_id="d11410e1529"/>
  4224. </default_db:CRM_LISTA_ZASOBOW>
  4225. </RelatedFeature>
  4226. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e1531"/>
  4227. </default_db:CRM_WSKAZNIK>
  4228. </RelatedFeature>
  4229. </default_db:PROCES_BENEFIT_INFO>
  4230. </RelatedFeature>
  4231. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  4232. <RelatedFeature xml_id="d11410e1534"
  4233. typeNameRealResource="default_db:CRM_WSKAZNIK"
  4234. typeName="default_db:CRM_WSKAZNIK"
  4235. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  4236. flat_relation_cache_name="ID"
  4237. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  4238. system_cache__appinfo:maxOccurs="unbounded"
  4239. system_cache__appinfo:minOccurs="0"
  4240. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  4241. xpath="ID_PROCES"
  4242. xpath_value="../ID">
  4243. <default_db:CRM_WSKAZNIK xml_id="d11410e1534_child"
  4244. system_cache__appinfo:maxOccurs="unbounded"
  4245. system_cache__appinfo:minOccurs="0"
  4246. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  4247. <ID xpath="ID" xml_id="d11410e1540"/>
  4248. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e1542"/>
  4249. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e1544"/>
  4250. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  4251. <RelatedFeature xml_id="d11410e1546"
  4252. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  4253. typeName="default_db:CRM_LISTA_ZASOBOW"
  4254. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  4255. flat_relation_cache_name="ID_ZASOB"
  4256. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  4257. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  4258. xpath="ID"
  4259. xpath_value="../ID_ZASOB">
  4260. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e1546_child"
  4261. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  4262. <ID xpath="ID" xml_id="d11410e1552"/>
  4263. <DESC xpath="DESC" xml_id="d11410e1554"/>
  4264. <DESC_PL xpath="DESC_PL" xml_id="d11410e1556"/>
  4265. </default_db:CRM_LISTA_ZASOBOW>
  4266. </RelatedFeature>
  4267. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e1558"/>
  4268. </default_db:CRM_WSKAZNIK>
  4269. </RelatedFeature>
  4270. </default_db:PROCES_INIT>
  4271. </RelatedFeature>
  4272. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  4273. <RelatedFeatureLoop xml_id="d11410e1560"
  4274. typeNameRealResource="default_db:CRM_PROCES"
  4275. typeName="default_db:PROCES_GROUP_1"
  4276. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  4277. flat_relation_cache_name="ID"
  4278. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4279. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  4280. system_cache__appinfo:maxOccurs="0"
  4281. system_cache__appinfo:minOccurs="0"
  4282. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  4283. xpath="PARENT_ID"
  4284. xpath_value="../ID">
  4285. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  4286. <ogc:Or>
  4287. <ogc:PropertyIsEqualTo>
  4288. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4289. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  4290. </ogc:PropertyIsEqualTo>
  4291. </ogc:Or>
  4292. </simpleTypeMakeOgcFilter>
  4293. <default_db:PROCES_GROUP_1 xml_id="d11410e1560"
  4294. system_cache__appinfo:maxOccurs="0"
  4295. system_cache__appinfo:minOccurs="0"
  4296. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  4297. </RelatedFeatureLoop>
  4298. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  4299. <RelatedFeatureLoop xml_id="d11410e1565"
  4300. typeNameRealResource="default_db:CRM_PROCES"
  4301. typeName="default_db:PROCES_GROUP_2"
  4302. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  4303. flat_relation_cache_name="ID"
  4304. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4305. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  4306. system_cache__appinfo:maxOccurs="unbounded"
  4307. system_cache__appinfo:minOccurs="0"
  4308. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  4309. xpath="PARENT_ID"
  4310. xpath_value="../ID">
  4311. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  4312. <ogc:Or>
  4313. <ogc:PropertyIsEqualTo>
  4314. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4315. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  4316. </ogc:PropertyIsEqualTo>
  4317. </ogc:Or>
  4318. </simpleTypeMakeOgcFilter>
  4319. <default_db:PROCES_GROUP_2 xml_id="d11410e1565"
  4320. system_cache__appinfo:maxOccurs="unbounded"
  4321. system_cache__appinfo:minOccurs="0"
  4322. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  4323. </RelatedFeatureLoop>
  4324. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  4325. <RelatedFeature xml_id="d11410e1570"
  4326. typeNameRealResource="default_db:CRM_PROCES"
  4327. typeName="default_db:PROCES_BENEFIT_INFO"
  4328. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  4329. flat_relation_cache_name="ID"
  4330. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4331. system_cache__appinfo:maxOccurs="1"
  4332. system_cache__appinfo:minOccurs="0"
  4333. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  4334. xpath="PARENT_ID"
  4335. xpath_value="../ID">
  4336. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  4337. <ogc:Or>
  4338. <ogc:PropertyIsEqualTo>
  4339. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4340. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  4341. </ogc:PropertyIsEqualTo>
  4342. </ogc:Or>
  4343. </simpleTypeMakeOgcFilter>
  4344. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e1570_child"
  4345. system_cache__appinfo:maxOccurs="1"
  4346. system_cache__appinfo:minOccurs="0"
  4347. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  4348. <ID xpath="ID" xml_id="d11410e1577"/>
  4349. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1579"/>
  4350. <path xpath="path" xml_id="d11410e1581"/>
  4351. <DESC xpath="DESC" xml_id="d11410e1583"/>
  4352. <TYPE xpath="TYPE" xml_id="d11410e1585"/>
  4353. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  4354. <RelatedFeatureLoop xml_id="d11410e1587"
  4355. typeNameRealResource="default_db:CRM_PROCES"
  4356. typeName="default_db:PROCES"
  4357. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  4358. flat_relation_cache_name="ID"
  4359. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4360. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  4361. system_cache__appinfo:maxOccurs="0"
  4362. system_cache__appinfo:minOccurs="0"
  4363. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  4364. xpath="PARENT_ID"
  4365. xpath_value="../ID">
  4366. <simpleTypeMakeOgcFilter name="PROCES">
  4367. <ogc:Or>
  4368. <ogc:PropertyIsEqualTo>
  4369. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4370. <ogc:Literal>PROCES</ogc:Literal>
  4371. </ogc:PropertyIsEqualTo>
  4372. </ogc:Or>
  4373. </simpleTypeMakeOgcFilter>
  4374. <default_db:PROCES xml_id="d11410e1587"
  4375. system_cache__appinfo:maxOccurs="0"
  4376. system_cache__appinfo:minOccurs="0"
  4377. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  4378. </RelatedFeatureLoop>
  4379. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  4380. <RelatedFeature xml_id="d11410e1592"
  4381. typeNameRealResource="default_db:CRM_PROCES"
  4382. typeName="default_db:PROCES_INIT"
  4383. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  4384. flat_relation_cache_name="ID"
  4385. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4386. system_cache__appinfo:maxOccurs="0"
  4387. system_cache__appinfo:minOccurs="0"
  4388. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  4389. xpath="PARENT_ID"
  4390. xpath_value="../ID">
  4391. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  4392. <ogc:Or>
  4393. <ogc:PropertyIsEqualTo>
  4394. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4395. <ogc:Literal>PROCES_INIT</ogc:Literal>
  4396. </ogc:PropertyIsEqualTo>
  4397. </ogc:Or>
  4398. </simpleTypeMakeOgcFilter>
  4399. <default_db:PROCES_INIT xml_id="d11410e1592_child"
  4400. system_cache__appinfo:maxOccurs="0"
  4401. system_cache__appinfo:minOccurs="0"
  4402. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  4403. <ID xpath="ID" xml_id="d11410e1599"/>
  4404. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1601"/>
  4405. <path xpath="path" xml_id="d11410e1603"/>
  4406. <DESC xpath="DESC" xml_id="d11410e1605"/>
  4407. <TYPE xpath="TYPE" xml_id="d11410e1607"/>
  4408. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  4409. <RelatedFeatureLoop xml_id="d11410e1609"
  4410. typeNameRealResource="default_db:CRM_PROCES"
  4411. typeName="default_db:PROCES"
  4412. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  4413. flat_relation_cache_name="ID"
  4414. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4415. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  4416. system_cache__appinfo:maxOccurs="unbounded"
  4417. system_cache__appinfo:minOccurs="0"
  4418. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  4419. xpath="PARENT_ID"
  4420. xpath_value="../ID">
  4421. <simpleTypeMakeOgcFilter name="PROCES">
  4422. <ogc:Or>
  4423. <ogc:PropertyIsEqualTo>
  4424. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4425. <ogc:Literal>PROCES</ogc:Literal>
  4426. </ogc:PropertyIsEqualTo>
  4427. </ogc:Or>
  4428. </simpleTypeMakeOgcFilter>
  4429. <default_db:PROCES xml_id="d11410e1609"
  4430. system_cache__appinfo:maxOccurs="unbounded"
  4431. system_cache__appinfo:minOccurs="0"
  4432. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  4433. </RelatedFeatureLoop>
  4434. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  4435. <RelatedFeatureLoop xml_id="d11410e1614"
  4436. typeNameRealResource="default_db:CRM_PROCES"
  4437. typeName="default_db:PROCES_INIT"
  4438. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  4439. flat_relation_cache_name="ID"
  4440. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4441. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  4442. system_cache__appinfo:maxOccurs="0"
  4443. system_cache__appinfo:minOccurs="0"
  4444. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  4445. xpath="PARENT_ID"
  4446. xpath_value="../ID">
  4447. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  4448. <ogc:Or>
  4449. <ogc:PropertyIsEqualTo>
  4450. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4451. <ogc:Literal>PROCES_INIT</ogc:Literal>
  4452. </ogc:PropertyIsEqualTo>
  4453. </ogc:Or>
  4454. </simpleTypeMakeOgcFilter>
  4455. <default_db:PROCES_INIT xml_id="d11410e1614"
  4456. system_cache__appinfo:maxOccurs="0"
  4457. system_cache__appinfo:minOccurs="0"
  4458. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  4459. </RelatedFeatureLoop>
  4460. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  4461. <RelatedFeatureLoop xml_id="d11410e1619"
  4462. typeNameRealResource="default_db:CRM_PROCES"
  4463. typeName="default_db:PROCES_GROUP_1"
  4464. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  4465. flat_relation_cache_name="ID"
  4466. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4467. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  4468. system_cache__appinfo:maxOccurs="0"
  4469. system_cache__appinfo:minOccurs="0"
  4470. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  4471. xpath="PARENT_ID"
  4472. xpath_value="../ID">
  4473. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  4474. <ogc:Or>
  4475. <ogc:PropertyIsEqualTo>
  4476. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4477. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  4478. </ogc:PropertyIsEqualTo>
  4479. </ogc:Or>
  4480. </simpleTypeMakeOgcFilter>
  4481. <default_db:PROCES_GROUP_1 xml_id="d11410e1619"
  4482. system_cache__appinfo:maxOccurs="0"
  4483. system_cache__appinfo:minOccurs="0"
  4484. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  4485. </RelatedFeatureLoop>
  4486. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  4487. <RelatedFeatureLoop xml_id="d11410e1624"
  4488. typeNameRealResource="default_db:CRM_PROCES"
  4489. typeName="default_db:PROCES_GROUP_2"
  4490. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  4491. flat_relation_cache_name="ID"
  4492. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4493. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  4494. system_cache__appinfo:maxOccurs="0"
  4495. system_cache__appinfo:minOccurs="0"
  4496. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  4497. xpath="PARENT_ID"
  4498. xpath_value="../ID">
  4499. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  4500. <ogc:Or>
  4501. <ogc:PropertyIsEqualTo>
  4502. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4503. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  4504. </ogc:PropertyIsEqualTo>
  4505. </ogc:Or>
  4506. </simpleTypeMakeOgcFilter>
  4507. <default_db:PROCES_GROUP_2 xml_id="d11410e1624"
  4508. system_cache__appinfo:maxOccurs="0"
  4509. system_cache__appinfo:minOccurs="0"
  4510. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  4511. </RelatedFeatureLoop>
  4512. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  4513. <RelatedFeatureLoop xml_id="d11410e1629"
  4514. typeNameRealResource="default_db:CRM_PROCES"
  4515. typeName="default_db:PROCES_BENEFIT_INFO"
  4516. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  4517. flat_relation_cache_name="ID"
  4518. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4519. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  4520. system_cache__appinfo:maxOccurs="unbounded"
  4521. system_cache__appinfo:minOccurs="0"
  4522. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  4523. xpath="PARENT_ID"
  4524. xpath_value="../ID">
  4525. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  4526. <ogc:Or>
  4527. <ogc:PropertyIsEqualTo>
  4528. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4529. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  4530. </ogc:PropertyIsEqualTo>
  4531. </ogc:Or>
  4532. </simpleTypeMakeOgcFilter>
  4533. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e1629"
  4534. system_cache__appinfo:maxOccurs="unbounded"
  4535. system_cache__appinfo:minOccurs="0"
  4536. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  4537. </RelatedFeatureLoop>
  4538. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  4539. <RelatedFeature xml_id="d11410e1635"
  4540. typeNameRealResource="default_db:CRM_WSKAZNIK"
  4541. typeName="default_db:CRM_WSKAZNIK"
  4542. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  4543. flat_relation_cache_name="ID"
  4544. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  4545. system_cache__appinfo:maxOccurs="unbounded"
  4546. system_cache__appinfo:minOccurs="0"
  4547. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  4548. xpath="ID_PROCES"
  4549. xpath_value="../ID">
  4550. <default_db:CRM_WSKAZNIK xml_id="d11410e1635_child"
  4551. system_cache__appinfo:maxOccurs="unbounded"
  4552. system_cache__appinfo:minOccurs="0"
  4553. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  4554. <ID xpath="ID" xml_id="d11410e1641"/>
  4555. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e1643"/>
  4556. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e1645"/>
  4557. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  4558. <RelatedFeature xml_id="d11410e1647"
  4559. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  4560. typeName="default_db:CRM_LISTA_ZASOBOW"
  4561. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  4562. flat_relation_cache_name="ID_ZASOB"
  4563. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  4564. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  4565. xpath="ID"
  4566. xpath_value="../ID_ZASOB">
  4567. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e1647_child"
  4568. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  4569. <ID xpath="ID" xml_id="d11410e1653"/>
  4570. <DESC xpath="DESC" xml_id="d11410e1655"/>
  4571. <DESC_PL xpath="DESC_PL" xml_id="d11410e1657"/>
  4572. </default_db:CRM_LISTA_ZASOBOW>
  4573. </RelatedFeature>
  4574. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e1659"/>
  4575. </default_db:CRM_WSKAZNIK>
  4576. </RelatedFeature>
  4577. </default_db:PROCES_INIT>
  4578. </RelatedFeature>
  4579. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  4580. <RelatedFeatureLoop xml_id="d11410e1661"
  4581. typeNameRealResource="default_db:CRM_PROCES"
  4582. typeName="default_db:PROCES_GROUP_1"
  4583. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  4584. flat_relation_cache_name="ID"
  4585. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4586. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  4587. system_cache__appinfo:maxOccurs="0"
  4588. system_cache__appinfo:minOccurs="0"
  4589. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  4590. xpath="PARENT_ID"
  4591. xpath_value="../ID">
  4592. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  4593. <ogc:Or>
  4594. <ogc:PropertyIsEqualTo>
  4595. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4596. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  4597. </ogc:PropertyIsEqualTo>
  4598. </ogc:Or>
  4599. </simpleTypeMakeOgcFilter>
  4600. <default_db:PROCES_GROUP_1 xml_id="d11410e1661"
  4601. system_cache__appinfo:maxOccurs="0"
  4602. system_cache__appinfo:minOccurs="0"
  4603. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  4604. </RelatedFeatureLoop>
  4605. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  4606. <RelatedFeatureLoop xml_id="d11410e1666"
  4607. typeNameRealResource="default_db:CRM_PROCES"
  4608. typeName="default_db:PROCES_GROUP_2"
  4609. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  4610. flat_relation_cache_name="ID"
  4611. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4612. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  4613. system_cache__appinfo:maxOccurs="0"
  4614. system_cache__appinfo:minOccurs="0"
  4615. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  4616. xpath="PARENT_ID"
  4617. xpath_value="../ID">
  4618. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  4619. <ogc:Or>
  4620. <ogc:PropertyIsEqualTo>
  4621. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4622. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  4623. </ogc:PropertyIsEqualTo>
  4624. </ogc:Or>
  4625. </simpleTypeMakeOgcFilter>
  4626. <default_db:PROCES_GROUP_2 xml_id="d11410e1666"
  4627. system_cache__appinfo:maxOccurs="0"
  4628. system_cache__appinfo:minOccurs="0"
  4629. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  4630. </RelatedFeatureLoop>
  4631. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  4632. <RelatedFeatureLoop xml_id="d11410e1671"
  4633. typeNameRealResource="default_db:CRM_PROCES"
  4634. typeName="default_db:PROCES_BENEFIT_INFO"
  4635. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  4636. flat_relation_cache_name="ID"
  4637. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4638. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  4639. system_cache__appinfo:maxOccurs="unbounded"
  4640. system_cache__appinfo:minOccurs="0"
  4641. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  4642. xpath="PARENT_ID"
  4643. xpath_value="../ID">
  4644. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  4645. <ogc:Or>
  4646. <ogc:PropertyIsEqualTo>
  4647. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4648. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  4649. </ogc:PropertyIsEqualTo>
  4650. </ogc:Or>
  4651. </simpleTypeMakeOgcFilter>
  4652. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e1671"
  4653. system_cache__appinfo:maxOccurs="unbounded"
  4654. system_cache__appinfo:minOccurs="0"
  4655. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  4656. </RelatedFeatureLoop>
  4657. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  4658. <RelatedFeature xml_id="d11410e1677"
  4659. typeNameRealResource="default_db:CRM_WSKAZNIK"
  4660. typeName="default_db:CRM_WSKAZNIK"
  4661. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  4662. flat_relation_cache_name="ID"
  4663. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  4664. system_cache__appinfo:maxOccurs="0"
  4665. system_cache__appinfo:minOccurs="0"
  4666. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  4667. xpath="ID_PROCES"
  4668. xpath_value="../ID">
  4669. <default_db:CRM_WSKAZNIK xml_id="d11410e1677_child"
  4670. system_cache__appinfo:maxOccurs="0"
  4671. system_cache__appinfo:minOccurs="0"
  4672. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  4673. <ID xpath="ID" xml_id="d11410e1683"/>
  4674. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e1685"/>
  4675. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e1687"/>
  4676. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  4677. <RelatedFeature xml_id="d11410e1689"
  4678. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  4679. typeName="default_db:CRM_LISTA_ZASOBOW"
  4680. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  4681. flat_relation_cache_name="ID_ZASOB"
  4682. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  4683. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  4684. xpath="ID"
  4685. xpath_value="../ID_ZASOB">
  4686. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e1689_child"
  4687. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  4688. <ID xpath="ID" xml_id="d11410e1695"/>
  4689. <DESC xpath="DESC" xml_id="d11410e1697"/>
  4690. <DESC_PL xpath="DESC_PL" xml_id="d11410e1699"/>
  4691. </default_db:CRM_LISTA_ZASOBOW>
  4692. </RelatedFeature>
  4693. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e1701"/>
  4694. </default_db:CRM_WSKAZNIK>
  4695. </RelatedFeature>
  4696. </default_db:PROCES_BENEFIT_INFO>
  4697. </RelatedFeature>
  4698. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  4699. <RelatedFeature xml_id="d11410e1704"
  4700. typeNameRealResource="default_db:CRM_WSKAZNIK"
  4701. typeName="default_db:CRM_WSKAZNIK"
  4702. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  4703. flat_relation_cache_name="ID"
  4704. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  4705. system_cache__appinfo:maxOccurs="0"
  4706. system_cache__appinfo:minOccurs="0"
  4707. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  4708. xpath="ID_PROCES"
  4709. xpath_value="../ID">
  4710. <default_db:CRM_WSKAZNIK xml_id="d11410e1704_child"
  4711. system_cache__appinfo:maxOccurs="0"
  4712. system_cache__appinfo:minOccurs="0"
  4713. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  4714. <ID xpath="ID" xml_id="d11410e1710"/>
  4715. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e1712"/>
  4716. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e1714"/>
  4717. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  4718. <RelatedFeature xml_id="d11410e1716"
  4719. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  4720. typeName="default_db:CRM_LISTA_ZASOBOW"
  4721. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  4722. flat_relation_cache_name="ID_ZASOB"
  4723. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  4724. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  4725. xpath="ID"
  4726. xpath_value="../ID_ZASOB">
  4727. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e1716_child"
  4728. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  4729. <ID xpath="ID" xml_id="d11410e1722"/>
  4730. <DESC xpath="DESC" xml_id="d11410e1724"/>
  4731. <DESC_PL xpath="DESC_PL" xml_id="d11410e1726"/>
  4732. </default_db:CRM_LISTA_ZASOBOW>
  4733. </RelatedFeature>
  4734. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e1728"/>
  4735. </default_db:CRM_WSKAZNIK>
  4736. </RelatedFeature>
  4737. </default_db:PROCES_GROUP_2>
  4738. </RelatedFeature>
  4739. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  4740. <RelatedFeature xml_id="d11410e1730"
  4741. typeNameRealResource="default_db:CRM_PROCES"
  4742. typeName="default_db:PROCES_BENEFIT_INFO"
  4743. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  4744. flat_relation_cache_name="ID"
  4745. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4746. system_cache__appinfo:maxOccurs="1"
  4747. system_cache__appinfo:minOccurs="0"
  4748. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  4749. xpath="PARENT_ID"
  4750. xpath_value="../ID">
  4751. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  4752. <ogc:Or>
  4753. <ogc:PropertyIsEqualTo>
  4754. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4755. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  4756. </ogc:PropertyIsEqualTo>
  4757. </ogc:Or>
  4758. </simpleTypeMakeOgcFilter>
  4759. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e1730_child"
  4760. system_cache__appinfo:maxOccurs="1"
  4761. system_cache__appinfo:minOccurs="0"
  4762. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  4763. <ID xpath="ID" xml_id="d11410e1737"/>
  4764. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1739"/>
  4765. <path xpath="path" xml_id="d11410e1741"/>
  4766. <DESC xpath="DESC" xml_id="d11410e1743"/>
  4767. <TYPE xpath="TYPE" xml_id="d11410e1745"/>
  4768. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  4769. <RelatedFeatureLoop xml_id="d11410e1747"
  4770. typeNameRealResource="default_db:CRM_PROCES"
  4771. typeName="default_db:PROCES"
  4772. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  4773. flat_relation_cache_name="ID"
  4774. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4775. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  4776. system_cache__appinfo:maxOccurs="0"
  4777. system_cache__appinfo:minOccurs="0"
  4778. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  4779. xpath="PARENT_ID"
  4780. xpath_value="../ID">
  4781. <simpleTypeMakeOgcFilter name="PROCES">
  4782. <ogc:Or>
  4783. <ogc:PropertyIsEqualTo>
  4784. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4785. <ogc:Literal>PROCES</ogc:Literal>
  4786. </ogc:PropertyIsEqualTo>
  4787. </ogc:Or>
  4788. </simpleTypeMakeOgcFilter>
  4789. <default_db:PROCES xml_id="d11410e1747"
  4790. system_cache__appinfo:maxOccurs="0"
  4791. system_cache__appinfo:minOccurs="0"
  4792. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  4793. </RelatedFeatureLoop>
  4794. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  4795. <RelatedFeature xml_id="d11410e1752"
  4796. typeNameRealResource="default_db:CRM_PROCES"
  4797. typeName="default_db:PROCES_INIT"
  4798. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  4799. flat_relation_cache_name="ID"
  4800. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4801. system_cache__appinfo:maxOccurs="0"
  4802. system_cache__appinfo:minOccurs="0"
  4803. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  4804. xpath="PARENT_ID"
  4805. xpath_value="../ID">
  4806. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  4807. <ogc:Or>
  4808. <ogc:PropertyIsEqualTo>
  4809. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4810. <ogc:Literal>PROCES_INIT</ogc:Literal>
  4811. </ogc:PropertyIsEqualTo>
  4812. </ogc:Or>
  4813. </simpleTypeMakeOgcFilter>
  4814. <default_db:PROCES_INIT xml_id="d11410e1752_child"
  4815. system_cache__appinfo:maxOccurs="0"
  4816. system_cache__appinfo:minOccurs="0"
  4817. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  4818. <ID xpath="ID" xml_id="d11410e1759"/>
  4819. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1761"/>
  4820. <path xpath="path" xml_id="d11410e1763"/>
  4821. <DESC xpath="DESC" xml_id="d11410e1765"/>
  4822. <TYPE xpath="TYPE" xml_id="d11410e1767"/>
  4823. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  4824. <RelatedFeatureLoop xml_id="d11410e1769"
  4825. typeNameRealResource="default_db:CRM_PROCES"
  4826. typeName="default_db:PROCES"
  4827. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  4828. flat_relation_cache_name="ID"
  4829. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4830. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  4831. system_cache__appinfo:maxOccurs="unbounded"
  4832. system_cache__appinfo:minOccurs="0"
  4833. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  4834. xpath="PARENT_ID"
  4835. xpath_value="../ID">
  4836. <simpleTypeMakeOgcFilter name="PROCES">
  4837. <ogc:Or>
  4838. <ogc:PropertyIsEqualTo>
  4839. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4840. <ogc:Literal>PROCES</ogc:Literal>
  4841. </ogc:PropertyIsEqualTo>
  4842. </ogc:Or>
  4843. </simpleTypeMakeOgcFilter>
  4844. <default_db:PROCES xml_id="d11410e1769"
  4845. system_cache__appinfo:maxOccurs="unbounded"
  4846. system_cache__appinfo:minOccurs="0"
  4847. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  4848. </RelatedFeatureLoop>
  4849. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  4850. <RelatedFeatureLoop xml_id="d11410e1774"
  4851. typeNameRealResource="default_db:CRM_PROCES"
  4852. typeName="default_db:PROCES_INIT"
  4853. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  4854. flat_relation_cache_name="ID"
  4855. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4856. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  4857. system_cache__appinfo:maxOccurs="0"
  4858. system_cache__appinfo:minOccurs="0"
  4859. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  4860. xpath="PARENT_ID"
  4861. xpath_value="../ID">
  4862. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  4863. <ogc:Or>
  4864. <ogc:PropertyIsEqualTo>
  4865. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4866. <ogc:Literal>PROCES_INIT</ogc:Literal>
  4867. </ogc:PropertyIsEqualTo>
  4868. </ogc:Or>
  4869. </simpleTypeMakeOgcFilter>
  4870. <default_db:PROCES_INIT xml_id="d11410e1774"
  4871. system_cache__appinfo:maxOccurs="0"
  4872. system_cache__appinfo:minOccurs="0"
  4873. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  4874. </RelatedFeatureLoop>
  4875. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  4876. <RelatedFeatureLoop xml_id="d11410e1779"
  4877. typeNameRealResource="default_db:CRM_PROCES"
  4878. typeName="default_db:PROCES_GROUP_1"
  4879. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  4880. flat_relation_cache_name="ID"
  4881. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4882. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  4883. system_cache__appinfo:maxOccurs="0"
  4884. system_cache__appinfo:minOccurs="0"
  4885. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  4886. xpath="PARENT_ID"
  4887. xpath_value="../ID">
  4888. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  4889. <ogc:Or>
  4890. <ogc:PropertyIsEqualTo>
  4891. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4892. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  4893. </ogc:PropertyIsEqualTo>
  4894. </ogc:Or>
  4895. </simpleTypeMakeOgcFilter>
  4896. <default_db:PROCES_GROUP_1 xml_id="d11410e1779"
  4897. system_cache__appinfo:maxOccurs="0"
  4898. system_cache__appinfo:minOccurs="0"
  4899. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  4900. </RelatedFeatureLoop>
  4901. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  4902. <RelatedFeature xml_id="d11410e1784"
  4903. typeNameRealResource="default_db:CRM_PROCES"
  4904. typeName="default_db:PROCES_GROUP_2"
  4905. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  4906. flat_relation_cache_name="ID"
  4907. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4908. system_cache__appinfo:maxOccurs="0"
  4909. system_cache__appinfo:minOccurs="0"
  4910. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  4911. xpath="PARENT_ID"
  4912. xpath_value="../ID">
  4913. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  4914. <ogc:Or>
  4915. <ogc:PropertyIsEqualTo>
  4916. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4917. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  4918. </ogc:PropertyIsEqualTo>
  4919. </ogc:Or>
  4920. </simpleTypeMakeOgcFilter>
  4921. <default_db:PROCES_GROUP_2 xml_id="d11410e1784_child"
  4922. system_cache__appinfo:maxOccurs="0"
  4923. system_cache__appinfo:minOccurs="0"
  4924. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  4925. <ID xpath="ID" xml_id="d11410e1791"/>
  4926. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1793"/>
  4927. <path xpath="path" xml_id="d11410e1795"/>
  4928. <DESC xpath="DESC" xml_id="d11410e1797"/>
  4929. <TYPE xpath="TYPE" xml_id="d11410e1799"/>
  4930. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  4931. <RelatedFeatureLoop xml_id="d11410e1801"
  4932. typeNameRealResource="default_db:CRM_PROCES"
  4933. typeName="default_db:PROCES"
  4934. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  4935. flat_relation_cache_name="ID"
  4936. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4937. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  4938. system_cache__appinfo:maxOccurs="0"
  4939. system_cache__appinfo:minOccurs="0"
  4940. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  4941. xpath="PARENT_ID"
  4942. xpath_value="../ID">
  4943. <simpleTypeMakeOgcFilter name="PROCES">
  4944. <ogc:Or>
  4945. <ogc:PropertyIsEqualTo>
  4946. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4947. <ogc:Literal>PROCES</ogc:Literal>
  4948. </ogc:PropertyIsEqualTo>
  4949. </ogc:Or>
  4950. </simpleTypeMakeOgcFilter>
  4951. <default_db:PROCES xml_id="d11410e1801"
  4952. system_cache__appinfo:maxOccurs="0"
  4953. system_cache__appinfo:minOccurs="0"
  4954. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  4955. </RelatedFeatureLoop>
  4956. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  4957. <RelatedFeatureLoop xml_id="d11410e1806"
  4958. typeNameRealResource="default_db:CRM_PROCES"
  4959. typeName="default_db:PROCES_INIT"
  4960. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  4961. flat_relation_cache_name="ID"
  4962. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4963. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  4964. system_cache__appinfo:maxOccurs="unbounded"
  4965. system_cache__appinfo:minOccurs="0"
  4966. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  4967. xpath="PARENT_ID"
  4968. xpath_value="../ID">
  4969. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  4970. <ogc:Or>
  4971. <ogc:PropertyIsEqualTo>
  4972. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4973. <ogc:Literal>PROCES_INIT</ogc:Literal>
  4974. </ogc:PropertyIsEqualTo>
  4975. </ogc:Or>
  4976. </simpleTypeMakeOgcFilter>
  4977. <default_db:PROCES_INIT xml_id="d11410e1806"
  4978. system_cache__appinfo:maxOccurs="unbounded"
  4979. system_cache__appinfo:minOccurs="0"
  4980. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  4981. </RelatedFeatureLoop>
  4982. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  4983. <RelatedFeatureLoop xml_id="d11410e1811"
  4984. typeNameRealResource="default_db:CRM_PROCES"
  4985. typeName="default_db:PROCES_GROUP_1"
  4986. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  4987. flat_relation_cache_name="ID"
  4988. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  4989. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  4990. system_cache__appinfo:maxOccurs="0"
  4991. system_cache__appinfo:minOccurs="0"
  4992. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  4993. xpath="PARENT_ID"
  4994. xpath_value="../ID">
  4995. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  4996. <ogc:Or>
  4997. <ogc:PropertyIsEqualTo>
  4998. <ogc:PropertyName>TYPE</ogc:PropertyName>
  4999. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  5000. </ogc:PropertyIsEqualTo>
  5001. </ogc:Or>
  5002. </simpleTypeMakeOgcFilter>
  5003. <default_db:PROCES_GROUP_1 xml_id="d11410e1811"
  5004. system_cache__appinfo:maxOccurs="0"
  5005. system_cache__appinfo:minOccurs="0"
  5006. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  5007. </RelatedFeatureLoop>
  5008. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  5009. <RelatedFeatureLoop xml_id="d11410e1816"
  5010. typeNameRealResource="default_db:CRM_PROCES"
  5011. typeName="default_db:PROCES_GROUP_2"
  5012. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  5013. flat_relation_cache_name="ID"
  5014. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5015. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  5016. system_cache__appinfo:maxOccurs="unbounded"
  5017. system_cache__appinfo:minOccurs="0"
  5018. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  5019. xpath="PARENT_ID"
  5020. xpath_value="../ID">
  5021. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  5022. <ogc:Or>
  5023. <ogc:PropertyIsEqualTo>
  5024. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5025. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  5026. </ogc:PropertyIsEqualTo>
  5027. </ogc:Or>
  5028. </simpleTypeMakeOgcFilter>
  5029. <default_db:PROCES_GROUP_2 xml_id="d11410e1816"
  5030. system_cache__appinfo:maxOccurs="unbounded"
  5031. system_cache__appinfo:minOccurs="0"
  5032. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  5033. </RelatedFeatureLoop>
  5034. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  5035. <RelatedFeatureLoop xml_id="d11410e1821"
  5036. typeNameRealResource="default_db:CRM_PROCES"
  5037. typeName="default_db:PROCES_BENEFIT_INFO"
  5038. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  5039. flat_relation_cache_name="ID"
  5040. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5041. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  5042. system_cache__appinfo:maxOccurs="1"
  5043. system_cache__appinfo:minOccurs="0"
  5044. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  5045. xpath="PARENT_ID"
  5046. xpath_value="../ID">
  5047. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  5048. <ogc:Or>
  5049. <ogc:PropertyIsEqualTo>
  5050. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5051. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  5052. </ogc:PropertyIsEqualTo>
  5053. </ogc:Or>
  5054. </simpleTypeMakeOgcFilter>
  5055. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e1821"
  5056. system_cache__appinfo:maxOccurs="1"
  5057. system_cache__appinfo:minOccurs="0"
  5058. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  5059. </RelatedFeatureLoop>
  5060. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  5061. <RelatedFeature xml_id="d11410e1827"
  5062. typeNameRealResource="default_db:CRM_WSKAZNIK"
  5063. typeName="default_db:CRM_WSKAZNIK"
  5064. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  5065. flat_relation_cache_name="ID"
  5066. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  5067. system_cache__appinfo:maxOccurs="0"
  5068. system_cache__appinfo:minOccurs="0"
  5069. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  5070. xpath="ID_PROCES"
  5071. xpath_value="../ID">
  5072. <default_db:CRM_WSKAZNIK xml_id="d11410e1827_child"
  5073. system_cache__appinfo:maxOccurs="0"
  5074. system_cache__appinfo:minOccurs="0"
  5075. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  5076. <ID xpath="ID" xml_id="d11410e1833"/>
  5077. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e1835"/>
  5078. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e1837"/>
  5079. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  5080. <RelatedFeature xml_id="d11410e1839"
  5081. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  5082. typeName="default_db:CRM_LISTA_ZASOBOW"
  5083. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  5084. flat_relation_cache_name="ID_ZASOB"
  5085. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  5086. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  5087. xpath="ID"
  5088. xpath_value="../ID_ZASOB">
  5089. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e1839_child"
  5090. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  5091. <ID xpath="ID" xml_id="d11410e1845"/>
  5092. <DESC xpath="DESC" xml_id="d11410e1847"/>
  5093. <DESC_PL xpath="DESC_PL" xml_id="d11410e1849"/>
  5094. </default_db:CRM_LISTA_ZASOBOW>
  5095. </RelatedFeature>
  5096. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e1851"/>
  5097. </default_db:CRM_WSKAZNIK>
  5098. </RelatedFeature>
  5099. </default_db:PROCES_GROUP_2>
  5100. </RelatedFeature>
  5101. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  5102. <RelatedFeatureLoop xml_id="d11410e1853"
  5103. typeNameRealResource="default_db:CRM_PROCES"
  5104. typeName="default_db:PROCES_BENEFIT_INFO"
  5105. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  5106. flat_relation_cache_name="ID"
  5107. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5108. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  5109. system_cache__appinfo:maxOccurs="unbounded"
  5110. system_cache__appinfo:minOccurs="0"
  5111. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  5112. xpath="PARENT_ID"
  5113. xpath_value="../ID">
  5114. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  5115. <ogc:Or>
  5116. <ogc:PropertyIsEqualTo>
  5117. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5118. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  5119. </ogc:PropertyIsEqualTo>
  5120. </ogc:Or>
  5121. </simpleTypeMakeOgcFilter>
  5122. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e1853"
  5123. system_cache__appinfo:maxOccurs="unbounded"
  5124. system_cache__appinfo:minOccurs="0"
  5125. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  5126. </RelatedFeatureLoop>
  5127. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  5128. <RelatedFeature xml_id="d11410e1859"
  5129. typeNameRealResource="default_db:CRM_WSKAZNIK"
  5130. typeName="default_db:CRM_WSKAZNIK"
  5131. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  5132. flat_relation_cache_name="ID"
  5133. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  5134. system_cache__appinfo:maxOccurs="unbounded"
  5135. system_cache__appinfo:minOccurs="0"
  5136. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  5137. xpath="ID_PROCES"
  5138. xpath_value="../ID">
  5139. <default_db:CRM_WSKAZNIK xml_id="d11410e1859_child"
  5140. system_cache__appinfo:maxOccurs="unbounded"
  5141. system_cache__appinfo:minOccurs="0"
  5142. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  5143. <ID xpath="ID" xml_id="d11410e1865"/>
  5144. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e1867"/>
  5145. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e1869"/>
  5146. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  5147. <RelatedFeature xml_id="d11410e1871"
  5148. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  5149. typeName="default_db:CRM_LISTA_ZASOBOW"
  5150. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  5151. flat_relation_cache_name="ID_ZASOB"
  5152. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  5153. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  5154. xpath="ID"
  5155. xpath_value="../ID_ZASOB">
  5156. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e1871_child"
  5157. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  5158. <ID xpath="ID" xml_id="d11410e1877"/>
  5159. <DESC xpath="DESC" xml_id="d11410e1879"/>
  5160. <DESC_PL xpath="DESC_PL" xml_id="d11410e1881"/>
  5161. </default_db:CRM_LISTA_ZASOBOW>
  5162. </RelatedFeature>
  5163. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e1883"/>
  5164. </default_db:CRM_WSKAZNIK>
  5165. </RelatedFeature>
  5166. </default_db:PROCES_INIT>
  5167. </RelatedFeature>
  5168. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  5169. <RelatedFeatureLoop xml_id="d11410e1885"
  5170. typeNameRealResource="default_db:CRM_PROCES"
  5171. typeName="default_db:PROCES_GROUP_1"
  5172. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  5173. flat_relation_cache_name="ID"
  5174. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5175. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  5176. system_cache__appinfo:maxOccurs="0"
  5177. system_cache__appinfo:minOccurs="0"
  5178. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  5179. xpath="PARENT_ID"
  5180. xpath_value="../ID">
  5181. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  5182. <ogc:Or>
  5183. <ogc:PropertyIsEqualTo>
  5184. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5185. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  5186. </ogc:PropertyIsEqualTo>
  5187. </ogc:Or>
  5188. </simpleTypeMakeOgcFilter>
  5189. <default_db:PROCES_GROUP_1 xml_id="d11410e1885"
  5190. system_cache__appinfo:maxOccurs="0"
  5191. system_cache__appinfo:minOccurs="0"
  5192. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  5193. </RelatedFeatureLoop>
  5194. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  5195. <RelatedFeature xml_id="d11410e1890"
  5196. typeNameRealResource="default_db:CRM_PROCES"
  5197. typeName="default_db:PROCES_GROUP_2"
  5198. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  5199. flat_relation_cache_name="ID"
  5200. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5201. system_cache__appinfo:maxOccurs="0"
  5202. system_cache__appinfo:minOccurs="0"
  5203. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  5204. xpath="PARENT_ID"
  5205. xpath_value="../ID">
  5206. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  5207. <ogc:Or>
  5208. <ogc:PropertyIsEqualTo>
  5209. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5210. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  5211. </ogc:PropertyIsEqualTo>
  5212. </ogc:Or>
  5213. </simpleTypeMakeOgcFilter>
  5214. <default_db:PROCES_GROUP_2 xml_id="d11410e1890_child"
  5215. system_cache__appinfo:maxOccurs="0"
  5216. system_cache__appinfo:minOccurs="0"
  5217. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  5218. <ID xpath="ID" xml_id="d11410e1897"/>
  5219. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1899"/>
  5220. <path xpath="path" xml_id="d11410e1901"/>
  5221. <DESC xpath="DESC" xml_id="d11410e1903"/>
  5222. <TYPE xpath="TYPE" xml_id="d11410e1905"/>
  5223. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  5224. <RelatedFeatureLoop xml_id="d11410e1907"
  5225. typeNameRealResource="default_db:CRM_PROCES"
  5226. typeName="default_db:PROCES"
  5227. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  5228. flat_relation_cache_name="ID"
  5229. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5230. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  5231. system_cache__appinfo:maxOccurs="0"
  5232. system_cache__appinfo:minOccurs="0"
  5233. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  5234. xpath="PARENT_ID"
  5235. xpath_value="../ID">
  5236. <simpleTypeMakeOgcFilter name="PROCES">
  5237. <ogc:Or>
  5238. <ogc:PropertyIsEqualTo>
  5239. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5240. <ogc:Literal>PROCES</ogc:Literal>
  5241. </ogc:PropertyIsEqualTo>
  5242. </ogc:Or>
  5243. </simpleTypeMakeOgcFilter>
  5244. <default_db:PROCES xml_id="d11410e1907"
  5245. system_cache__appinfo:maxOccurs="0"
  5246. system_cache__appinfo:minOccurs="0"
  5247. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  5248. </RelatedFeatureLoop>
  5249. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  5250. <RelatedFeature xml_id="d11410e1912"
  5251. typeNameRealResource="default_db:CRM_PROCES"
  5252. typeName="default_db:PROCES_INIT"
  5253. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  5254. flat_relation_cache_name="ID"
  5255. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5256. system_cache__appinfo:maxOccurs="unbounded"
  5257. system_cache__appinfo:minOccurs="0"
  5258. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  5259. xpath="PARENT_ID"
  5260. xpath_value="../ID">
  5261. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  5262. <ogc:Or>
  5263. <ogc:PropertyIsEqualTo>
  5264. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5265. <ogc:Literal>PROCES_INIT</ogc:Literal>
  5266. </ogc:PropertyIsEqualTo>
  5267. </ogc:Or>
  5268. </simpleTypeMakeOgcFilter>
  5269. <default_db:PROCES_INIT xml_id="d11410e1912_child"
  5270. system_cache__appinfo:maxOccurs="unbounded"
  5271. system_cache__appinfo:minOccurs="0"
  5272. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  5273. <ID xpath="ID" xml_id="d11410e1919"/>
  5274. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e1921"/>
  5275. <path xpath="path" xml_id="d11410e1923"/>
  5276. <DESC xpath="DESC" xml_id="d11410e1925"/>
  5277. <TYPE xpath="TYPE" xml_id="d11410e1927"/>
  5278. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  5279. <RelatedFeatureLoop xml_id="d11410e1929"
  5280. typeNameRealResource="default_db:CRM_PROCES"
  5281. typeName="default_db:PROCES"
  5282. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  5283. flat_relation_cache_name="ID"
  5284. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5285. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  5286. system_cache__appinfo:maxOccurs="unbounded"
  5287. system_cache__appinfo:minOccurs="0"
  5288. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  5289. xpath="PARENT_ID"
  5290. xpath_value="../ID">
  5291. <simpleTypeMakeOgcFilter name="PROCES">
  5292. <ogc:Or>
  5293. <ogc:PropertyIsEqualTo>
  5294. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5295. <ogc:Literal>PROCES</ogc:Literal>
  5296. </ogc:PropertyIsEqualTo>
  5297. </ogc:Or>
  5298. </simpleTypeMakeOgcFilter>
  5299. <default_db:PROCES xml_id="d11410e1929"
  5300. system_cache__appinfo:maxOccurs="unbounded"
  5301. system_cache__appinfo:minOccurs="0"
  5302. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  5303. </RelatedFeatureLoop>
  5304. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  5305. <RelatedFeatureLoop xml_id="d11410e1934"
  5306. typeNameRealResource="default_db:CRM_PROCES"
  5307. typeName="default_db:PROCES_INIT"
  5308. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  5309. flat_relation_cache_name="ID"
  5310. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5311. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  5312. system_cache__appinfo:maxOccurs="0"
  5313. system_cache__appinfo:minOccurs="0"
  5314. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  5315. xpath="PARENT_ID"
  5316. xpath_value="../ID">
  5317. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  5318. <ogc:Or>
  5319. <ogc:PropertyIsEqualTo>
  5320. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5321. <ogc:Literal>PROCES_INIT</ogc:Literal>
  5322. </ogc:PropertyIsEqualTo>
  5323. </ogc:Or>
  5324. </simpleTypeMakeOgcFilter>
  5325. <default_db:PROCES_INIT xml_id="d11410e1934"
  5326. system_cache__appinfo:maxOccurs="0"
  5327. system_cache__appinfo:minOccurs="0"
  5328. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  5329. </RelatedFeatureLoop>
  5330. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  5331. <RelatedFeatureLoop xml_id="d11410e1939"
  5332. typeNameRealResource="default_db:CRM_PROCES"
  5333. typeName="default_db:PROCES_GROUP_1"
  5334. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  5335. flat_relation_cache_name="ID"
  5336. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5337. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  5338. system_cache__appinfo:maxOccurs="0"
  5339. system_cache__appinfo:minOccurs="0"
  5340. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  5341. xpath="PARENT_ID"
  5342. xpath_value="../ID">
  5343. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  5344. <ogc:Or>
  5345. <ogc:PropertyIsEqualTo>
  5346. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5347. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  5348. </ogc:PropertyIsEqualTo>
  5349. </ogc:Or>
  5350. </simpleTypeMakeOgcFilter>
  5351. <default_db:PROCES_GROUP_1 xml_id="d11410e1939"
  5352. system_cache__appinfo:maxOccurs="0"
  5353. system_cache__appinfo:minOccurs="0"
  5354. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  5355. </RelatedFeatureLoop>
  5356. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  5357. <RelatedFeatureLoop xml_id="d11410e1944"
  5358. typeNameRealResource="default_db:CRM_PROCES"
  5359. typeName="default_db:PROCES_GROUP_2"
  5360. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  5361. flat_relation_cache_name="ID"
  5362. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5363. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  5364. system_cache__appinfo:maxOccurs="0"
  5365. system_cache__appinfo:minOccurs="0"
  5366. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  5367. xpath="PARENT_ID"
  5368. xpath_value="../ID">
  5369. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  5370. <ogc:Or>
  5371. <ogc:PropertyIsEqualTo>
  5372. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5373. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  5374. </ogc:PropertyIsEqualTo>
  5375. </ogc:Or>
  5376. </simpleTypeMakeOgcFilter>
  5377. <default_db:PROCES_GROUP_2 xml_id="d11410e1944"
  5378. system_cache__appinfo:maxOccurs="0"
  5379. system_cache__appinfo:minOccurs="0"
  5380. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  5381. </RelatedFeatureLoop>
  5382. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  5383. <RelatedFeatureLoop xml_id="d11410e1949"
  5384. typeNameRealResource="default_db:CRM_PROCES"
  5385. typeName="default_db:PROCES_BENEFIT_INFO"
  5386. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  5387. flat_relation_cache_name="ID"
  5388. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5389. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  5390. system_cache__appinfo:maxOccurs="unbounded"
  5391. system_cache__appinfo:minOccurs="0"
  5392. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  5393. xpath="PARENT_ID"
  5394. xpath_value="../ID">
  5395. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  5396. <ogc:Or>
  5397. <ogc:PropertyIsEqualTo>
  5398. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5399. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  5400. </ogc:PropertyIsEqualTo>
  5401. </ogc:Or>
  5402. </simpleTypeMakeOgcFilter>
  5403. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e1949"
  5404. system_cache__appinfo:maxOccurs="unbounded"
  5405. system_cache__appinfo:minOccurs="0"
  5406. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  5407. </RelatedFeatureLoop>
  5408. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  5409. <RelatedFeature xml_id="d11410e1955"
  5410. typeNameRealResource="default_db:CRM_WSKAZNIK"
  5411. typeName="default_db:CRM_WSKAZNIK"
  5412. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  5413. flat_relation_cache_name="ID"
  5414. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  5415. system_cache__appinfo:maxOccurs="unbounded"
  5416. system_cache__appinfo:minOccurs="0"
  5417. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  5418. xpath="ID_PROCES"
  5419. xpath_value="../ID">
  5420. <default_db:CRM_WSKAZNIK xml_id="d11410e1955_child"
  5421. system_cache__appinfo:maxOccurs="unbounded"
  5422. system_cache__appinfo:minOccurs="0"
  5423. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  5424. <ID xpath="ID" xml_id="d11410e1961"/>
  5425. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e1963"/>
  5426. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e1965"/>
  5427. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  5428. <RelatedFeature xml_id="d11410e1967"
  5429. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  5430. typeName="default_db:CRM_LISTA_ZASOBOW"
  5431. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  5432. flat_relation_cache_name="ID_ZASOB"
  5433. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  5434. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  5435. xpath="ID"
  5436. xpath_value="../ID_ZASOB">
  5437. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e1967_child"
  5438. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  5439. <ID xpath="ID" xml_id="d11410e1973"/>
  5440. <DESC xpath="DESC" xml_id="d11410e1975"/>
  5441. <DESC_PL xpath="DESC_PL" xml_id="d11410e1977"/>
  5442. </default_db:CRM_LISTA_ZASOBOW>
  5443. </RelatedFeature>
  5444. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e1979"/>
  5445. </default_db:CRM_WSKAZNIK>
  5446. </RelatedFeature>
  5447. </default_db:PROCES_INIT>
  5448. </RelatedFeature>
  5449. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  5450. <RelatedFeatureLoop xml_id="d11410e1981"
  5451. typeNameRealResource="default_db:CRM_PROCES"
  5452. typeName="default_db:PROCES_GROUP_1"
  5453. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  5454. flat_relation_cache_name="ID"
  5455. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5456. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  5457. system_cache__appinfo:maxOccurs="0"
  5458. system_cache__appinfo:minOccurs="0"
  5459. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  5460. xpath="PARENT_ID"
  5461. xpath_value="../ID">
  5462. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  5463. <ogc:Or>
  5464. <ogc:PropertyIsEqualTo>
  5465. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5466. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  5467. </ogc:PropertyIsEqualTo>
  5468. </ogc:Or>
  5469. </simpleTypeMakeOgcFilter>
  5470. <default_db:PROCES_GROUP_1 xml_id="d11410e1981"
  5471. system_cache__appinfo:maxOccurs="0"
  5472. system_cache__appinfo:minOccurs="0"
  5473. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  5474. </RelatedFeatureLoop>
  5475. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  5476. <RelatedFeatureLoop xml_id="d11410e1986"
  5477. typeNameRealResource="default_db:CRM_PROCES"
  5478. typeName="default_db:PROCES_GROUP_2"
  5479. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  5480. flat_relation_cache_name="ID"
  5481. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5482. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  5483. system_cache__appinfo:maxOccurs="unbounded"
  5484. system_cache__appinfo:minOccurs="0"
  5485. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  5486. xpath="PARENT_ID"
  5487. xpath_value="../ID">
  5488. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  5489. <ogc:Or>
  5490. <ogc:PropertyIsEqualTo>
  5491. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5492. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  5493. </ogc:PropertyIsEqualTo>
  5494. </ogc:Or>
  5495. </simpleTypeMakeOgcFilter>
  5496. <default_db:PROCES_GROUP_2 xml_id="d11410e1986"
  5497. system_cache__appinfo:maxOccurs="unbounded"
  5498. system_cache__appinfo:minOccurs="0"
  5499. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  5500. </RelatedFeatureLoop>
  5501. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  5502. <RelatedFeatureLoop xml_id="d11410e1991"
  5503. typeNameRealResource="default_db:CRM_PROCES"
  5504. typeName="default_db:PROCES_BENEFIT_INFO"
  5505. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  5506. flat_relation_cache_name="ID"
  5507. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5508. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  5509. system_cache__appinfo:maxOccurs="1"
  5510. system_cache__appinfo:minOccurs="0"
  5511. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  5512. xpath="PARENT_ID"
  5513. xpath_value="../ID">
  5514. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  5515. <ogc:Or>
  5516. <ogc:PropertyIsEqualTo>
  5517. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5518. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  5519. </ogc:PropertyIsEqualTo>
  5520. </ogc:Or>
  5521. </simpleTypeMakeOgcFilter>
  5522. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e1991"
  5523. system_cache__appinfo:maxOccurs="1"
  5524. system_cache__appinfo:minOccurs="0"
  5525. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  5526. </RelatedFeatureLoop>
  5527. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  5528. <RelatedFeature xml_id="d11410e1997"
  5529. typeNameRealResource="default_db:CRM_WSKAZNIK"
  5530. typeName="default_db:CRM_WSKAZNIK"
  5531. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  5532. flat_relation_cache_name="ID"
  5533. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  5534. system_cache__appinfo:maxOccurs="0"
  5535. system_cache__appinfo:minOccurs="0"
  5536. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  5537. xpath="ID_PROCES"
  5538. xpath_value="../ID">
  5539. <default_db:CRM_WSKAZNIK xml_id="d11410e1997_child"
  5540. system_cache__appinfo:maxOccurs="0"
  5541. system_cache__appinfo:minOccurs="0"
  5542. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  5543. <ID xpath="ID" xml_id="d11410e2003"/>
  5544. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2005"/>
  5545. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2007"/>
  5546. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  5547. <RelatedFeature xml_id="d11410e2009"
  5548. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  5549. typeName="default_db:CRM_LISTA_ZASOBOW"
  5550. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  5551. flat_relation_cache_name="ID_ZASOB"
  5552. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  5553. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  5554. xpath="ID"
  5555. xpath_value="../ID_ZASOB">
  5556. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2009_child"
  5557. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  5558. <ID xpath="ID" xml_id="d11410e2015"/>
  5559. <DESC xpath="DESC" xml_id="d11410e2017"/>
  5560. <DESC_PL xpath="DESC_PL" xml_id="d11410e2019"/>
  5561. </default_db:CRM_LISTA_ZASOBOW>
  5562. </RelatedFeature>
  5563. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e2021"/>
  5564. </default_db:CRM_WSKAZNIK>
  5565. </RelatedFeature>
  5566. </default_db:PROCES_GROUP_2>
  5567. </RelatedFeature>
  5568. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  5569. <RelatedFeatureLoop xml_id="d11410e2023"
  5570. typeNameRealResource="default_db:CRM_PROCES"
  5571. typeName="default_db:PROCES_BENEFIT_INFO"
  5572. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  5573. flat_relation_cache_name="ID"
  5574. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5575. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  5576. system_cache__appinfo:maxOccurs="unbounded"
  5577. system_cache__appinfo:minOccurs="0"
  5578. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  5579. xpath="PARENT_ID"
  5580. xpath_value="../ID">
  5581. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  5582. <ogc:Or>
  5583. <ogc:PropertyIsEqualTo>
  5584. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5585. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  5586. </ogc:PropertyIsEqualTo>
  5587. </ogc:Or>
  5588. </simpleTypeMakeOgcFilter>
  5589. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e2023"
  5590. system_cache__appinfo:maxOccurs="unbounded"
  5591. system_cache__appinfo:minOccurs="0"
  5592. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  5593. </RelatedFeatureLoop>
  5594. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  5595. <RelatedFeature xml_id="d11410e2029"
  5596. typeNameRealResource="default_db:CRM_WSKAZNIK"
  5597. typeName="default_db:CRM_WSKAZNIK"
  5598. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  5599. flat_relation_cache_name="ID"
  5600. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  5601. system_cache__appinfo:maxOccurs="0"
  5602. system_cache__appinfo:minOccurs="0"
  5603. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  5604. xpath="ID_PROCES"
  5605. xpath_value="../ID">
  5606. <default_db:CRM_WSKAZNIK xml_id="d11410e2029_child"
  5607. system_cache__appinfo:maxOccurs="0"
  5608. system_cache__appinfo:minOccurs="0"
  5609. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  5610. <ID xpath="ID" xml_id="d11410e2035"/>
  5611. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2037"/>
  5612. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2039"/>
  5613. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  5614. <RelatedFeature xml_id="d11410e2041"
  5615. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  5616. typeName="default_db:CRM_LISTA_ZASOBOW"
  5617. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  5618. flat_relation_cache_name="ID_ZASOB"
  5619. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  5620. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  5621. xpath="ID"
  5622. xpath_value="../ID_ZASOB">
  5623. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2041_child"
  5624. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  5625. <ID xpath="ID" xml_id="d11410e2047"/>
  5626. <DESC xpath="DESC" xml_id="d11410e2049"/>
  5627. <DESC_PL xpath="DESC_PL" xml_id="d11410e2051"/>
  5628. </default_db:CRM_LISTA_ZASOBOW>
  5629. </RelatedFeature>
  5630. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e2053"/>
  5631. </default_db:CRM_WSKAZNIK>
  5632. </RelatedFeature>
  5633. </default_db:PROCES_BENEFIT_INFO>
  5634. </RelatedFeature>
  5635. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  5636. <RelatedFeature xml_id="d11410e2056"
  5637. typeNameRealResource="default_db:CRM_WSKAZNIK"
  5638. typeName="default_db:CRM_WSKAZNIK"
  5639. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  5640. flat_relation_cache_name="ID"
  5641. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  5642. system_cache__appinfo:maxOccurs="0"
  5643. system_cache__appinfo:minOccurs="0"
  5644. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  5645. xpath="ID_PROCES"
  5646. xpath_value="../ID">
  5647. <default_db:CRM_WSKAZNIK xml_id="d11410e2056_child"
  5648. system_cache__appinfo:maxOccurs="0"
  5649. system_cache__appinfo:minOccurs="0"
  5650. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  5651. <ID xpath="ID" xml_id="d11410e2062"/>
  5652. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2064"/>
  5653. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2066"/>
  5654. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  5655. <RelatedFeature xml_id="d11410e2068"
  5656. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  5657. typeName="default_db:CRM_LISTA_ZASOBOW"
  5658. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  5659. flat_relation_cache_name="ID_ZASOB"
  5660. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  5661. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  5662. xpath="ID"
  5663. xpath_value="../ID_ZASOB">
  5664. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2068_child"
  5665. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  5666. <ID xpath="ID" xml_id="d11410e2074"/>
  5667. <DESC xpath="DESC" xml_id="d11410e2076"/>
  5668. <DESC_PL xpath="DESC_PL" xml_id="d11410e2078"/>
  5669. </default_db:CRM_LISTA_ZASOBOW>
  5670. </RelatedFeature>
  5671. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e2080"/>
  5672. </default_db:CRM_WSKAZNIK>
  5673. </RelatedFeature>
  5674. </default_db:PROCES_GROUP_1>
  5675. </RelatedFeature>
  5676. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  5677. <RelatedFeature xml_id="d11410e2082"
  5678. typeNameRealResource="default_db:CRM_PROCES"
  5679. typeName="default_db:PROCES_GROUP_2"
  5680. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  5681. flat_relation_cache_name="ID"
  5682. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5683. system_cache__appinfo:maxOccurs="0"
  5684. system_cache__appinfo:minOccurs="0"
  5685. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  5686. xpath="PARENT_ID"
  5687. xpath_value="../ID">
  5688. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  5689. <ogc:Or>
  5690. <ogc:PropertyIsEqualTo>
  5691. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5692. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  5693. </ogc:PropertyIsEqualTo>
  5694. </ogc:Or>
  5695. </simpleTypeMakeOgcFilter>
  5696. <default_db:PROCES_GROUP_2 xml_id="d11410e2082_child"
  5697. system_cache__appinfo:maxOccurs="0"
  5698. system_cache__appinfo:minOccurs="0"
  5699. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  5700. <ID xpath="ID" xml_id="d11410e2089"/>
  5701. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2091"/>
  5702. <path xpath="path" xml_id="d11410e2093"/>
  5703. <DESC xpath="DESC" xml_id="d11410e2095"/>
  5704. <TYPE xpath="TYPE" xml_id="d11410e2097"/>
  5705. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  5706. <RelatedFeatureLoop xml_id="d11410e2099"
  5707. typeNameRealResource="default_db:CRM_PROCES"
  5708. typeName="default_db:PROCES"
  5709. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  5710. flat_relation_cache_name="ID"
  5711. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5712. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  5713. system_cache__appinfo:maxOccurs="0"
  5714. system_cache__appinfo:minOccurs="0"
  5715. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  5716. xpath="PARENT_ID"
  5717. xpath_value="../ID">
  5718. <simpleTypeMakeOgcFilter name="PROCES">
  5719. <ogc:Or>
  5720. <ogc:PropertyIsEqualTo>
  5721. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5722. <ogc:Literal>PROCES</ogc:Literal>
  5723. </ogc:PropertyIsEqualTo>
  5724. </ogc:Or>
  5725. </simpleTypeMakeOgcFilter>
  5726. <default_db:PROCES xml_id="d11410e2099"
  5727. system_cache__appinfo:maxOccurs="0"
  5728. system_cache__appinfo:minOccurs="0"
  5729. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  5730. </RelatedFeatureLoop>
  5731. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  5732. <RelatedFeature xml_id="d11410e2104"
  5733. typeNameRealResource="default_db:CRM_PROCES"
  5734. typeName="default_db:PROCES_INIT"
  5735. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  5736. flat_relation_cache_name="ID"
  5737. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5738. system_cache__appinfo:maxOccurs="unbounded"
  5739. system_cache__appinfo:minOccurs="0"
  5740. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  5741. xpath="PARENT_ID"
  5742. xpath_value="../ID">
  5743. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  5744. <ogc:Or>
  5745. <ogc:PropertyIsEqualTo>
  5746. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5747. <ogc:Literal>PROCES_INIT</ogc:Literal>
  5748. </ogc:PropertyIsEqualTo>
  5749. </ogc:Or>
  5750. </simpleTypeMakeOgcFilter>
  5751. <default_db:PROCES_INIT xml_id="d11410e2104_child"
  5752. system_cache__appinfo:maxOccurs="unbounded"
  5753. system_cache__appinfo:minOccurs="0"
  5754. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  5755. <ID xpath="ID" xml_id="d11410e2111"/>
  5756. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2113"/>
  5757. <path xpath="path" xml_id="d11410e2115"/>
  5758. <DESC xpath="DESC" xml_id="d11410e2117"/>
  5759. <TYPE xpath="TYPE" xml_id="d11410e2119"/>
  5760. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  5761. <RelatedFeatureLoop xml_id="d11410e2121"
  5762. typeNameRealResource="default_db:CRM_PROCES"
  5763. typeName="default_db:PROCES"
  5764. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  5765. flat_relation_cache_name="ID"
  5766. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5767. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  5768. system_cache__appinfo:maxOccurs="unbounded"
  5769. system_cache__appinfo:minOccurs="0"
  5770. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  5771. xpath="PARENT_ID"
  5772. xpath_value="../ID">
  5773. <simpleTypeMakeOgcFilter name="PROCES">
  5774. <ogc:Or>
  5775. <ogc:PropertyIsEqualTo>
  5776. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5777. <ogc:Literal>PROCES</ogc:Literal>
  5778. </ogc:PropertyIsEqualTo>
  5779. </ogc:Or>
  5780. </simpleTypeMakeOgcFilter>
  5781. <default_db:PROCES xml_id="d11410e2121"
  5782. system_cache__appinfo:maxOccurs="unbounded"
  5783. system_cache__appinfo:minOccurs="0"
  5784. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  5785. </RelatedFeatureLoop>
  5786. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  5787. <RelatedFeatureLoop xml_id="d11410e2126"
  5788. typeNameRealResource="default_db:CRM_PROCES"
  5789. typeName="default_db:PROCES_INIT"
  5790. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  5791. flat_relation_cache_name="ID"
  5792. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5793. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  5794. system_cache__appinfo:maxOccurs="0"
  5795. system_cache__appinfo:minOccurs="0"
  5796. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  5797. xpath="PARENT_ID"
  5798. xpath_value="../ID">
  5799. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  5800. <ogc:Or>
  5801. <ogc:PropertyIsEqualTo>
  5802. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5803. <ogc:Literal>PROCES_INIT</ogc:Literal>
  5804. </ogc:PropertyIsEqualTo>
  5805. </ogc:Or>
  5806. </simpleTypeMakeOgcFilter>
  5807. <default_db:PROCES_INIT xml_id="d11410e2126"
  5808. system_cache__appinfo:maxOccurs="0"
  5809. system_cache__appinfo:minOccurs="0"
  5810. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  5811. </RelatedFeatureLoop>
  5812. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  5813. <RelatedFeature xml_id="d11410e2131"
  5814. typeNameRealResource="default_db:CRM_PROCES"
  5815. typeName="default_db:PROCES_GROUP_1"
  5816. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  5817. flat_relation_cache_name="ID"
  5818. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5819. system_cache__appinfo:maxOccurs="0"
  5820. system_cache__appinfo:minOccurs="0"
  5821. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  5822. xpath="PARENT_ID"
  5823. xpath_value="../ID">
  5824. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  5825. <ogc:Or>
  5826. <ogc:PropertyIsEqualTo>
  5827. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5828. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  5829. </ogc:PropertyIsEqualTo>
  5830. </ogc:Or>
  5831. </simpleTypeMakeOgcFilter>
  5832. <default_db:PROCES_GROUP_1 xml_id="d11410e2131_child"
  5833. system_cache__appinfo:maxOccurs="0"
  5834. system_cache__appinfo:minOccurs="0"
  5835. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  5836. <ID xpath="ID" xml_id="d11410e2138"/>
  5837. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2140"/>
  5838. <path xpath="path" xml_id="d11410e2142"/>
  5839. <DESC xpath="DESC" xml_id="d11410e2144"/>
  5840. <TYPE xpath="TYPE" xml_id="d11410e2146"/>
  5841. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  5842. <RelatedFeatureLoop xml_id="d11410e2148"
  5843. typeNameRealResource="default_db:CRM_PROCES"
  5844. typeName="default_db:PROCES"
  5845. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  5846. flat_relation_cache_name="ID"
  5847. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5848. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  5849. system_cache__appinfo:maxOccurs="0"
  5850. system_cache__appinfo:minOccurs="0"
  5851. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  5852. xpath="PARENT_ID"
  5853. xpath_value="../ID">
  5854. <simpleTypeMakeOgcFilter name="PROCES">
  5855. <ogc:Or>
  5856. <ogc:PropertyIsEqualTo>
  5857. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5858. <ogc:Literal>PROCES</ogc:Literal>
  5859. </ogc:PropertyIsEqualTo>
  5860. </ogc:Or>
  5861. </simpleTypeMakeOgcFilter>
  5862. <default_db:PROCES xml_id="d11410e2148"
  5863. system_cache__appinfo:maxOccurs="0"
  5864. system_cache__appinfo:minOccurs="0"
  5865. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  5866. </RelatedFeatureLoop>
  5867. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  5868. <RelatedFeatureLoop xml_id="d11410e2153"
  5869. typeNameRealResource="default_db:CRM_PROCES"
  5870. typeName="default_db:PROCES_INIT"
  5871. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  5872. flat_relation_cache_name="ID"
  5873. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5874. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  5875. system_cache__appinfo:maxOccurs="unbounded"
  5876. system_cache__appinfo:minOccurs="0"
  5877. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  5878. xpath="PARENT_ID"
  5879. xpath_value="../ID">
  5880. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  5881. <ogc:Or>
  5882. <ogc:PropertyIsEqualTo>
  5883. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5884. <ogc:Literal>PROCES_INIT</ogc:Literal>
  5885. </ogc:PropertyIsEqualTo>
  5886. </ogc:Or>
  5887. </simpleTypeMakeOgcFilter>
  5888. <default_db:PROCES_INIT xml_id="d11410e2153"
  5889. system_cache__appinfo:maxOccurs="unbounded"
  5890. system_cache__appinfo:minOccurs="0"
  5891. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  5892. </RelatedFeatureLoop>
  5893. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  5894. <RelatedFeatureLoop xml_id="d11410e2158"
  5895. typeNameRealResource="default_db:CRM_PROCES"
  5896. typeName="default_db:PROCES_GROUP_1"
  5897. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  5898. flat_relation_cache_name="ID"
  5899. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5900. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  5901. system_cache__appinfo:maxOccurs="unbounded"
  5902. system_cache__appinfo:minOccurs="0"
  5903. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  5904. xpath="PARENT_ID"
  5905. xpath_value="../ID">
  5906. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  5907. <ogc:Or>
  5908. <ogc:PropertyIsEqualTo>
  5909. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5910. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  5911. </ogc:PropertyIsEqualTo>
  5912. </ogc:Or>
  5913. </simpleTypeMakeOgcFilter>
  5914. <default_db:PROCES_GROUP_1 xml_id="d11410e2158"
  5915. system_cache__appinfo:maxOccurs="unbounded"
  5916. system_cache__appinfo:minOccurs="0"
  5917. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  5918. </RelatedFeatureLoop>
  5919. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  5920. <RelatedFeatureLoop xml_id="d11410e2163"
  5921. typeNameRealResource="default_db:CRM_PROCES"
  5922. typeName="default_db:PROCES_GROUP_2"
  5923. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  5924. flat_relation_cache_name="ID"
  5925. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5926. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  5927. system_cache__appinfo:maxOccurs="unbounded"
  5928. system_cache__appinfo:minOccurs="0"
  5929. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  5930. xpath="PARENT_ID"
  5931. xpath_value="../ID">
  5932. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  5933. <ogc:Or>
  5934. <ogc:PropertyIsEqualTo>
  5935. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5936. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  5937. </ogc:PropertyIsEqualTo>
  5938. </ogc:Or>
  5939. </simpleTypeMakeOgcFilter>
  5940. <default_db:PROCES_GROUP_2 xml_id="d11410e2163"
  5941. system_cache__appinfo:maxOccurs="unbounded"
  5942. system_cache__appinfo:minOccurs="0"
  5943. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  5944. </RelatedFeatureLoop>
  5945. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  5946. <RelatedFeature xml_id="d11410e2168"
  5947. typeNameRealResource="default_db:CRM_PROCES"
  5948. typeName="default_db:PROCES_BENEFIT_INFO"
  5949. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  5950. flat_relation_cache_name="ID"
  5951. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5952. system_cache__appinfo:maxOccurs="1"
  5953. system_cache__appinfo:minOccurs="0"
  5954. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  5955. xpath="PARENT_ID"
  5956. xpath_value="../ID">
  5957. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  5958. <ogc:Or>
  5959. <ogc:PropertyIsEqualTo>
  5960. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5961. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  5962. </ogc:PropertyIsEqualTo>
  5963. </ogc:Or>
  5964. </simpleTypeMakeOgcFilter>
  5965. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e2168_child"
  5966. system_cache__appinfo:maxOccurs="1"
  5967. system_cache__appinfo:minOccurs="0"
  5968. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  5969. <ID xpath="ID" xml_id="d11410e2175"/>
  5970. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2177"/>
  5971. <path xpath="path" xml_id="d11410e2179"/>
  5972. <DESC xpath="DESC" xml_id="d11410e2181"/>
  5973. <TYPE xpath="TYPE" xml_id="d11410e2183"/>
  5974. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  5975. <RelatedFeatureLoop xml_id="d11410e2185"
  5976. typeNameRealResource="default_db:CRM_PROCES"
  5977. typeName="default_db:PROCES"
  5978. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  5979. flat_relation_cache_name="ID"
  5980. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  5981. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  5982. system_cache__appinfo:maxOccurs="0"
  5983. system_cache__appinfo:minOccurs="0"
  5984. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  5985. xpath="PARENT_ID"
  5986. xpath_value="../ID">
  5987. <simpleTypeMakeOgcFilter name="PROCES">
  5988. <ogc:Or>
  5989. <ogc:PropertyIsEqualTo>
  5990. <ogc:PropertyName>TYPE</ogc:PropertyName>
  5991. <ogc:Literal>PROCES</ogc:Literal>
  5992. </ogc:PropertyIsEqualTo>
  5993. </ogc:Or>
  5994. </simpleTypeMakeOgcFilter>
  5995. <default_db:PROCES xml_id="d11410e2185"
  5996. system_cache__appinfo:maxOccurs="0"
  5997. system_cache__appinfo:minOccurs="0"
  5998. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  5999. </RelatedFeatureLoop>
  6000. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  6001. <RelatedFeatureLoop xml_id="d11410e2190"
  6002. typeNameRealResource="default_db:CRM_PROCES"
  6003. typeName="default_db:PROCES_INIT"
  6004. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  6005. flat_relation_cache_name="ID"
  6006. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6007. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  6008. system_cache__appinfo:maxOccurs="0"
  6009. system_cache__appinfo:minOccurs="0"
  6010. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  6011. xpath="PARENT_ID"
  6012. xpath_value="../ID">
  6013. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  6014. <ogc:Or>
  6015. <ogc:PropertyIsEqualTo>
  6016. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6017. <ogc:Literal>PROCES_INIT</ogc:Literal>
  6018. </ogc:PropertyIsEqualTo>
  6019. </ogc:Or>
  6020. </simpleTypeMakeOgcFilter>
  6021. <default_db:PROCES_INIT xml_id="d11410e2190"
  6022. system_cache__appinfo:maxOccurs="0"
  6023. system_cache__appinfo:minOccurs="0"
  6024. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  6025. </RelatedFeatureLoop>
  6026. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  6027. <RelatedFeatureLoop xml_id="d11410e2195"
  6028. typeNameRealResource="default_db:CRM_PROCES"
  6029. typeName="default_db:PROCES_GROUP_1"
  6030. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  6031. flat_relation_cache_name="ID"
  6032. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6033. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  6034. system_cache__appinfo:maxOccurs="0"
  6035. system_cache__appinfo:minOccurs="0"
  6036. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  6037. xpath="PARENT_ID"
  6038. xpath_value="../ID">
  6039. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  6040. <ogc:Or>
  6041. <ogc:PropertyIsEqualTo>
  6042. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6043. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  6044. </ogc:PropertyIsEqualTo>
  6045. </ogc:Or>
  6046. </simpleTypeMakeOgcFilter>
  6047. <default_db:PROCES_GROUP_1 xml_id="d11410e2195"
  6048. system_cache__appinfo:maxOccurs="0"
  6049. system_cache__appinfo:minOccurs="0"
  6050. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  6051. </RelatedFeatureLoop>
  6052. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  6053. <RelatedFeatureLoop xml_id="d11410e2200"
  6054. typeNameRealResource="default_db:CRM_PROCES"
  6055. typeName="default_db:PROCES_GROUP_2"
  6056. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  6057. flat_relation_cache_name="ID"
  6058. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6059. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  6060. system_cache__appinfo:maxOccurs="0"
  6061. system_cache__appinfo:minOccurs="0"
  6062. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  6063. xpath="PARENT_ID"
  6064. xpath_value="../ID">
  6065. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  6066. <ogc:Or>
  6067. <ogc:PropertyIsEqualTo>
  6068. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6069. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  6070. </ogc:PropertyIsEqualTo>
  6071. </ogc:Or>
  6072. </simpleTypeMakeOgcFilter>
  6073. <default_db:PROCES_GROUP_2 xml_id="d11410e2200"
  6074. system_cache__appinfo:maxOccurs="0"
  6075. system_cache__appinfo:minOccurs="0"
  6076. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  6077. </RelatedFeatureLoop>
  6078. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  6079. <RelatedFeatureLoop xml_id="d11410e2205"
  6080. typeNameRealResource="default_db:CRM_PROCES"
  6081. typeName="default_db:PROCES_BENEFIT_INFO"
  6082. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  6083. flat_relation_cache_name="ID"
  6084. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6085. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  6086. system_cache__appinfo:maxOccurs="unbounded"
  6087. system_cache__appinfo:minOccurs="0"
  6088. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  6089. xpath="PARENT_ID"
  6090. xpath_value="../ID">
  6091. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  6092. <ogc:Or>
  6093. <ogc:PropertyIsEqualTo>
  6094. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6095. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  6096. </ogc:PropertyIsEqualTo>
  6097. </ogc:Or>
  6098. </simpleTypeMakeOgcFilter>
  6099. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e2205"
  6100. system_cache__appinfo:maxOccurs="unbounded"
  6101. system_cache__appinfo:minOccurs="0"
  6102. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  6103. </RelatedFeatureLoop>
  6104. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  6105. <RelatedFeature xml_id="d11410e2211"
  6106. typeNameRealResource="default_db:CRM_WSKAZNIK"
  6107. typeName="default_db:CRM_WSKAZNIK"
  6108. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  6109. flat_relation_cache_name="ID"
  6110. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  6111. system_cache__appinfo:maxOccurs="0"
  6112. system_cache__appinfo:minOccurs="0"
  6113. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  6114. xpath="ID_PROCES"
  6115. xpath_value="../ID">
  6116. <default_db:CRM_WSKAZNIK xml_id="d11410e2211_child"
  6117. system_cache__appinfo:maxOccurs="0"
  6118. system_cache__appinfo:minOccurs="0"
  6119. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  6120. <ID xpath="ID" xml_id="d11410e2217"/>
  6121. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2219"/>
  6122. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2221"/>
  6123. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  6124. <RelatedFeature xml_id="d11410e2223"
  6125. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  6126. typeName="default_db:CRM_LISTA_ZASOBOW"
  6127. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  6128. flat_relation_cache_name="ID_ZASOB"
  6129. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  6130. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  6131. xpath="ID"
  6132. xpath_value="../ID_ZASOB">
  6133. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2223_child"
  6134. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  6135. <ID xpath="ID" xml_id="d11410e2229"/>
  6136. <DESC xpath="DESC" xml_id="d11410e2231"/>
  6137. <DESC_PL xpath="DESC_PL" xml_id="d11410e2233"/>
  6138. </default_db:CRM_LISTA_ZASOBOW>
  6139. </RelatedFeature>
  6140. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e2235"/>
  6141. </default_db:CRM_WSKAZNIK>
  6142. </RelatedFeature>
  6143. </default_db:PROCES_BENEFIT_INFO>
  6144. </RelatedFeature>
  6145. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  6146. <RelatedFeature xml_id="d11410e2238"
  6147. typeNameRealResource="default_db:CRM_WSKAZNIK"
  6148. typeName="default_db:CRM_WSKAZNIK"
  6149. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  6150. flat_relation_cache_name="ID"
  6151. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  6152. system_cache__appinfo:maxOccurs="0"
  6153. system_cache__appinfo:minOccurs="0"
  6154. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  6155. xpath="ID_PROCES"
  6156. xpath_value="../ID">
  6157. <default_db:CRM_WSKAZNIK xml_id="d11410e2238_child"
  6158. system_cache__appinfo:maxOccurs="0"
  6159. system_cache__appinfo:minOccurs="0"
  6160. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  6161. <ID xpath="ID" xml_id="d11410e2244"/>
  6162. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2246"/>
  6163. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2248"/>
  6164. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  6165. <RelatedFeature xml_id="d11410e2250"
  6166. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  6167. typeName="default_db:CRM_LISTA_ZASOBOW"
  6168. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  6169. flat_relation_cache_name="ID_ZASOB"
  6170. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  6171. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  6172. xpath="ID"
  6173. xpath_value="../ID_ZASOB">
  6174. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2250_child"
  6175. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  6176. <ID xpath="ID" xml_id="d11410e2256"/>
  6177. <DESC xpath="DESC" xml_id="d11410e2258"/>
  6178. <DESC_PL xpath="DESC_PL" xml_id="d11410e2260"/>
  6179. </default_db:CRM_LISTA_ZASOBOW>
  6180. </RelatedFeature>
  6181. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e2262"/>
  6182. </default_db:CRM_WSKAZNIK>
  6183. </RelatedFeature>
  6184. </default_db:PROCES_GROUP_1>
  6185. </RelatedFeature>
  6186. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  6187. <RelatedFeatureLoop xml_id="d11410e2264"
  6188. typeNameRealResource="default_db:CRM_PROCES"
  6189. typeName="default_db:PROCES_GROUP_2"
  6190. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  6191. flat_relation_cache_name="ID"
  6192. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6193. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  6194. system_cache__appinfo:maxOccurs="0"
  6195. system_cache__appinfo:minOccurs="0"
  6196. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  6197. xpath="PARENT_ID"
  6198. xpath_value="../ID">
  6199. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  6200. <ogc:Or>
  6201. <ogc:PropertyIsEqualTo>
  6202. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6203. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  6204. </ogc:PropertyIsEqualTo>
  6205. </ogc:Or>
  6206. </simpleTypeMakeOgcFilter>
  6207. <default_db:PROCES_GROUP_2 xml_id="d11410e2264"
  6208. system_cache__appinfo:maxOccurs="0"
  6209. system_cache__appinfo:minOccurs="0"
  6210. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  6211. </RelatedFeatureLoop>
  6212. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  6213. <RelatedFeature xml_id="d11410e2269"
  6214. typeNameRealResource="default_db:CRM_PROCES"
  6215. typeName="default_db:PROCES_BENEFIT_INFO"
  6216. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  6217. flat_relation_cache_name="ID"
  6218. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6219. system_cache__appinfo:maxOccurs="unbounded"
  6220. system_cache__appinfo:minOccurs="0"
  6221. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  6222. xpath="PARENT_ID"
  6223. xpath_value="../ID">
  6224. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  6225. <ogc:Or>
  6226. <ogc:PropertyIsEqualTo>
  6227. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6228. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  6229. </ogc:PropertyIsEqualTo>
  6230. </ogc:Or>
  6231. </simpleTypeMakeOgcFilter>
  6232. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e2269_child"
  6233. system_cache__appinfo:maxOccurs="unbounded"
  6234. system_cache__appinfo:minOccurs="0"
  6235. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  6236. <ID xpath="ID" xml_id="d11410e2276"/>
  6237. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2278"/>
  6238. <path xpath="path" xml_id="d11410e2280"/>
  6239. <DESC xpath="DESC" xml_id="d11410e2282"/>
  6240. <TYPE xpath="TYPE" xml_id="d11410e2284"/>
  6241. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  6242. <RelatedFeatureLoop xml_id="d11410e2286"
  6243. typeNameRealResource="default_db:CRM_PROCES"
  6244. typeName="default_db:PROCES"
  6245. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  6246. flat_relation_cache_name="ID"
  6247. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6248. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  6249. system_cache__appinfo:maxOccurs="0"
  6250. system_cache__appinfo:minOccurs="0"
  6251. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  6252. xpath="PARENT_ID"
  6253. xpath_value="../ID">
  6254. <simpleTypeMakeOgcFilter name="PROCES">
  6255. <ogc:Or>
  6256. <ogc:PropertyIsEqualTo>
  6257. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6258. <ogc:Literal>PROCES</ogc:Literal>
  6259. </ogc:PropertyIsEqualTo>
  6260. </ogc:Or>
  6261. </simpleTypeMakeOgcFilter>
  6262. <default_db:PROCES xml_id="d11410e2286"
  6263. system_cache__appinfo:maxOccurs="0"
  6264. system_cache__appinfo:minOccurs="0"
  6265. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  6266. </RelatedFeatureLoop>
  6267. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  6268. <RelatedFeatureLoop xml_id="d11410e2291"
  6269. typeNameRealResource="default_db:CRM_PROCES"
  6270. typeName="default_db:PROCES_INIT"
  6271. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  6272. flat_relation_cache_name="ID"
  6273. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6274. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  6275. system_cache__appinfo:maxOccurs="0"
  6276. system_cache__appinfo:minOccurs="0"
  6277. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  6278. xpath="PARENT_ID"
  6279. xpath_value="../ID">
  6280. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  6281. <ogc:Or>
  6282. <ogc:PropertyIsEqualTo>
  6283. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6284. <ogc:Literal>PROCES_INIT</ogc:Literal>
  6285. </ogc:PropertyIsEqualTo>
  6286. </ogc:Or>
  6287. </simpleTypeMakeOgcFilter>
  6288. <default_db:PROCES_INIT xml_id="d11410e2291"
  6289. system_cache__appinfo:maxOccurs="0"
  6290. system_cache__appinfo:minOccurs="0"
  6291. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  6292. </RelatedFeatureLoop>
  6293. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  6294. <RelatedFeature xml_id="d11410e2296"
  6295. typeNameRealResource="default_db:CRM_PROCES"
  6296. typeName="default_db:PROCES_GROUP_1"
  6297. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  6298. flat_relation_cache_name="ID"
  6299. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6300. system_cache__appinfo:maxOccurs="0"
  6301. system_cache__appinfo:minOccurs="0"
  6302. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  6303. xpath="PARENT_ID"
  6304. xpath_value="../ID">
  6305. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  6306. <ogc:Or>
  6307. <ogc:PropertyIsEqualTo>
  6308. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6309. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  6310. </ogc:PropertyIsEqualTo>
  6311. </ogc:Or>
  6312. </simpleTypeMakeOgcFilter>
  6313. <default_db:PROCES_GROUP_1 xml_id="d11410e2296_child"
  6314. system_cache__appinfo:maxOccurs="0"
  6315. system_cache__appinfo:minOccurs="0"
  6316. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  6317. <ID xpath="ID" xml_id="d11410e2303"/>
  6318. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2305"/>
  6319. <path xpath="path" xml_id="d11410e2307"/>
  6320. <DESC xpath="DESC" xml_id="d11410e2309"/>
  6321. <TYPE xpath="TYPE" xml_id="d11410e2311"/>
  6322. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  6323. <RelatedFeatureLoop xml_id="d11410e2313"
  6324. typeNameRealResource="default_db:CRM_PROCES"
  6325. typeName="default_db:PROCES"
  6326. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  6327. flat_relation_cache_name="ID"
  6328. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6329. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  6330. system_cache__appinfo:maxOccurs="0"
  6331. system_cache__appinfo:minOccurs="0"
  6332. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  6333. xpath="PARENT_ID"
  6334. xpath_value="../ID">
  6335. <simpleTypeMakeOgcFilter name="PROCES">
  6336. <ogc:Or>
  6337. <ogc:PropertyIsEqualTo>
  6338. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6339. <ogc:Literal>PROCES</ogc:Literal>
  6340. </ogc:PropertyIsEqualTo>
  6341. </ogc:Or>
  6342. </simpleTypeMakeOgcFilter>
  6343. <default_db:PROCES xml_id="d11410e2313"
  6344. system_cache__appinfo:maxOccurs="0"
  6345. system_cache__appinfo:minOccurs="0"
  6346. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  6347. </RelatedFeatureLoop>
  6348. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  6349. <RelatedFeatureLoop xml_id="d11410e2318"
  6350. typeNameRealResource="default_db:CRM_PROCES"
  6351. typeName="default_db:PROCES_INIT"
  6352. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  6353. flat_relation_cache_name="ID"
  6354. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6355. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  6356. system_cache__appinfo:maxOccurs="unbounded"
  6357. system_cache__appinfo:minOccurs="0"
  6358. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  6359. xpath="PARENT_ID"
  6360. xpath_value="../ID">
  6361. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  6362. <ogc:Or>
  6363. <ogc:PropertyIsEqualTo>
  6364. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6365. <ogc:Literal>PROCES_INIT</ogc:Literal>
  6366. </ogc:PropertyIsEqualTo>
  6367. </ogc:Or>
  6368. </simpleTypeMakeOgcFilter>
  6369. <default_db:PROCES_INIT xml_id="d11410e2318"
  6370. system_cache__appinfo:maxOccurs="unbounded"
  6371. system_cache__appinfo:minOccurs="0"
  6372. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  6373. </RelatedFeatureLoop>
  6374. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  6375. <RelatedFeatureLoop xml_id="d11410e2323"
  6376. typeNameRealResource="default_db:CRM_PROCES"
  6377. typeName="default_db:PROCES_GROUP_1"
  6378. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  6379. flat_relation_cache_name="ID"
  6380. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6381. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  6382. system_cache__appinfo:maxOccurs="unbounded"
  6383. system_cache__appinfo:minOccurs="0"
  6384. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  6385. xpath="PARENT_ID"
  6386. xpath_value="../ID">
  6387. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  6388. <ogc:Or>
  6389. <ogc:PropertyIsEqualTo>
  6390. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6391. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  6392. </ogc:PropertyIsEqualTo>
  6393. </ogc:Or>
  6394. </simpleTypeMakeOgcFilter>
  6395. <default_db:PROCES_GROUP_1 xml_id="d11410e2323"
  6396. system_cache__appinfo:maxOccurs="unbounded"
  6397. system_cache__appinfo:minOccurs="0"
  6398. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  6399. </RelatedFeatureLoop>
  6400. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  6401. <RelatedFeatureLoop xml_id="d11410e2328"
  6402. typeNameRealResource="default_db:CRM_PROCES"
  6403. typeName="default_db:PROCES_GROUP_2"
  6404. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  6405. flat_relation_cache_name="ID"
  6406. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6407. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  6408. system_cache__appinfo:maxOccurs="unbounded"
  6409. system_cache__appinfo:minOccurs="0"
  6410. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  6411. xpath="PARENT_ID"
  6412. xpath_value="../ID">
  6413. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  6414. <ogc:Or>
  6415. <ogc:PropertyIsEqualTo>
  6416. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6417. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  6418. </ogc:PropertyIsEqualTo>
  6419. </ogc:Or>
  6420. </simpleTypeMakeOgcFilter>
  6421. <default_db:PROCES_GROUP_2 xml_id="d11410e2328"
  6422. system_cache__appinfo:maxOccurs="unbounded"
  6423. system_cache__appinfo:minOccurs="0"
  6424. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  6425. </RelatedFeatureLoop>
  6426. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  6427. <RelatedFeatureLoop xml_id="d11410e2333"
  6428. typeNameRealResource="default_db:CRM_PROCES"
  6429. typeName="default_db:PROCES_BENEFIT_INFO"
  6430. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  6431. flat_relation_cache_name="ID"
  6432. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6433. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  6434. system_cache__appinfo:maxOccurs="1"
  6435. system_cache__appinfo:minOccurs="0"
  6436. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  6437. xpath="PARENT_ID"
  6438. xpath_value="../ID">
  6439. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  6440. <ogc:Or>
  6441. <ogc:PropertyIsEqualTo>
  6442. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6443. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  6444. </ogc:PropertyIsEqualTo>
  6445. </ogc:Or>
  6446. </simpleTypeMakeOgcFilter>
  6447. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e2333"
  6448. system_cache__appinfo:maxOccurs="1"
  6449. system_cache__appinfo:minOccurs="0"
  6450. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  6451. </RelatedFeatureLoop>
  6452. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  6453. <RelatedFeature xml_id="d11410e2339"
  6454. typeNameRealResource="default_db:CRM_WSKAZNIK"
  6455. typeName="default_db:CRM_WSKAZNIK"
  6456. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  6457. flat_relation_cache_name="ID"
  6458. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  6459. system_cache__appinfo:maxOccurs="0"
  6460. system_cache__appinfo:minOccurs="0"
  6461. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  6462. xpath="ID_PROCES"
  6463. xpath_value="../ID">
  6464. <default_db:CRM_WSKAZNIK xml_id="d11410e2339_child"
  6465. system_cache__appinfo:maxOccurs="0"
  6466. system_cache__appinfo:minOccurs="0"
  6467. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  6468. <ID xpath="ID" xml_id="d11410e2345"/>
  6469. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2347"/>
  6470. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2349"/>
  6471. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  6472. <RelatedFeature xml_id="d11410e2351"
  6473. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  6474. typeName="default_db:CRM_LISTA_ZASOBOW"
  6475. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  6476. flat_relation_cache_name="ID_ZASOB"
  6477. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  6478. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  6479. xpath="ID"
  6480. xpath_value="../ID_ZASOB">
  6481. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2351_child"
  6482. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  6483. <ID xpath="ID" xml_id="d11410e2357"/>
  6484. <DESC xpath="DESC" xml_id="d11410e2359"/>
  6485. <DESC_PL xpath="DESC_PL" xml_id="d11410e2361"/>
  6486. </default_db:CRM_LISTA_ZASOBOW>
  6487. </RelatedFeature>
  6488. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e2363"/>
  6489. </default_db:CRM_WSKAZNIK>
  6490. </RelatedFeature>
  6491. </default_db:PROCES_GROUP_1>
  6492. </RelatedFeature>
  6493. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  6494. <RelatedFeatureLoop xml_id="d11410e2365"
  6495. typeNameRealResource="default_db:CRM_PROCES"
  6496. typeName="default_db:PROCES_GROUP_2"
  6497. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  6498. flat_relation_cache_name="ID"
  6499. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6500. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  6501. system_cache__appinfo:maxOccurs="0"
  6502. system_cache__appinfo:minOccurs="0"
  6503. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  6504. xpath="PARENT_ID"
  6505. xpath_value="../ID">
  6506. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  6507. <ogc:Or>
  6508. <ogc:PropertyIsEqualTo>
  6509. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6510. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  6511. </ogc:PropertyIsEqualTo>
  6512. </ogc:Or>
  6513. </simpleTypeMakeOgcFilter>
  6514. <default_db:PROCES_GROUP_2 xml_id="d11410e2365"
  6515. system_cache__appinfo:maxOccurs="0"
  6516. system_cache__appinfo:minOccurs="0"
  6517. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  6518. </RelatedFeatureLoop>
  6519. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  6520. <RelatedFeatureLoop xml_id="d11410e2370"
  6521. typeNameRealResource="default_db:CRM_PROCES"
  6522. typeName="default_db:PROCES_BENEFIT_INFO"
  6523. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  6524. flat_relation_cache_name="ID"
  6525. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6526. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  6527. system_cache__appinfo:maxOccurs="unbounded"
  6528. system_cache__appinfo:minOccurs="0"
  6529. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  6530. xpath="PARENT_ID"
  6531. xpath_value="../ID">
  6532. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  6533. <ogc:Or>
  6534. <ogc:PropertyIsEqualTo>
  6535. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6536. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  6537. </ogc:PropertyIsEqualTo>
  6538. </ogc:Or>
  6539. </simpleTypeMakeOgcFilter>
  6540. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e2370"
  6541. system_cache__appinfo:maxOccurs="unbounded"
  6542. system_cache__appinfo:minOccurs="0"
  6543. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  6544. </RelatedFeatureLoop>
  6545. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  6546. <RelatedFeature xml_id="d11410e2376"
  6547. typeNameRealResource="default_db:CRM_WSKAZNIK"
  6548. typeName="default_db:CRM_WSKAZNIK"
  6549. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  6550. flat_relation_cache_name="ID"
  6551. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  6552. system_cache__appinfo:maxOccurs="0"
  6553. system_cache__appinfo:minOccurs="0"
  6554. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  6555. xpath="ID_PROCES"
  6556. xpath_value="../ID">
  6557. <default_db:CRM_WSKAZNIK xml_id="d11410e2376_child"
  6558. system_cache__appinfo:maxOccurs="0"
  6559. system_cache__appinfo:minOccurs="0"
  6560. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  6561. <ID xpath="ID" xml_id="d11410e2382"/>
  6562. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2384"/>
  6563. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2386"/>
  6564. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  6565. <RelatedFeature xml_id="d11410e2388"
  6566. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  6567. typeName="default_db:CRM_LISTA_ZASOBOW"
  6568. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  6569. flat_relation_cache_name="ID_ZASOB"
  6570. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  6571. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  6572. xpath="ID"
  6573. xpath_value="../ID_ZASOB">
  6574. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2388_child"
  6575. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  6576. <ID xpath="ID" xml_id="d11410e2394"/>
  6577. <DESC xpath="DESC" xml_id="d11410e2396"/>
  6578. <DESC_PL xpath="DESC_PL" xml_id="d11410e2398"/>
  6579. </default_db:CRM_LISTA_ZASOBOW>
  6580. </RelatedFeature>
  6581. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e2400"/>
  6582. </default_db:CRM_WSKAZNIK>
  6583. </RelatedFeature>
  6584. </default_db:PROCES_BENEFIT_INFO>
  6585. </RelatedFeature>
  6586. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  6587. <RelatedFeature xml_id="d11410e2403"
  6588. typeNameRealResource="default_db:CRM_WSKAZNIK"
  6589. typeName="default_db:CRM_WSKAZNIK"
  6590. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  6591. flat_relation_cache_name="ID"
  6592. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  6593. system_cache__appinfo:maxOccurs="unbounded"
  6594. system_cache__appinfo:minOccurs="0"
  6595. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  6596. xpath="ID_PROCES"
  6597. xpath_value="../ID">
  6598. <default_db:CRM_WSKAZNIK xml_id="d11410e2403_child"
  6599. system_cache__appinfo:maxOccurs="unbounded"
  6600. system_cache__appinfo:minOccurs="0"
  6601. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  6602. <ID xpath="ID" xml_id="d11410e2409"/>
  6603. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2411"/>
  6604. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2413"/>
  6605. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  6606. <RelatedFeature xml_id="d11410e2415"
  6607. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  6608. typeName="default_db:CRM_LISTA_ZASOBOW"
  6609. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  6610. flat_relation_cache_name="ID_ZASOB"
  6611. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  6612. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  6613. xpath="ID"
  6614. xpath_value="../ID_ZASOB">
  6615. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2415_child"
  6616. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  6617. <ID xpath="ID" xml_id="d11410e2421"/>
  6618. <DESC xpath="DESC" xml_id="d11410e2423"/>
  6619. <DESC_PL xpath="DESC_PL" xml_id="d11410e2425"/>
  6620. </default_db:CRM_LISTA_ZASOBOW>
  6621. </RelatedFeature>
  6622. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e2427"/>
  6623. </default_db:CRM_WSKAZNIK>
  6624. </RelatedFeature>
  6625. </default_db:PROCES_INIT>
  6626. </RelatedFeature>
  6627. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  6628. <RelatedFeature xml_id="d11410e2429"
  6629. typeNameRealResource="default_db:CRM_PROCES"
  6630. typeName="default_db:PROCES_GROUP_1"
  6631. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  6632. flat_relation_cache_name="ID"
  6633. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6634. system_cache__appinfo:maxOccurs="0"
  6635. system_cache__appinfo:minOccurs="0"
  6636. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  6637. xpath="PARENT_ID"
  6638. xpath_value="../ID">
  6639. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  6640. <ogc:Or>
  6641. <ogc:PropertyIsEqualTo>
  6642. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6643. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  6644. </ogc:PropertyIsEqualTo>
  6645. </ogc:Or>
  6646. </simpleTypeMakeOgcFilter>
  6647. <default_db:PROCES_GROUP_1 xml_id="d11410e2429_child"
  6648. system_cache__appinfo:maxOccurs="0"
  6649. system_cache__appinfo:minOccurs="0"
  6650. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  6651. <ID xpath="ID" xml_id="d11410e2436"/>
  6652. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2438"/>
  6653. <path xpath="path" xml_id="d11410e2440"/>
  6654. <DESC xpath="DESC" xml_id="d11410e2442"/>
  6655. <TYPE xpath="TYPE" xml_id="d11410e2444"/>
  6656. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  6657. <RelatedFeatureLoop xml_id="d11410e2446"
  6658. typeNameRealResource="default_db:CRM_PROCES"
  6659. typeName="default_db:PROCES"
  6660. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  6661. flat_relation_cache_name="ID"
  6662. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6663. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  6664. system_cache__appinfo:maxOccurs="0"
  6665. system_cache__appinfo:minOccurs="0"
  6666. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  6667. xpath="PARENT_ID"
  6668. xpath_value="../ID">
  6669. <simpleTypeMakeOgcFilter name="PROCES">
  6670. <ogc:Or>
  6671. <ogc:PropertyIsEqualTo>
  6672. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6673. <ogc:Literal>PROCES</ogc:Literal>
  6674. </ogc:PropertyIsEqualTo>
  6675. </ogc:Or>
  6676. </simpleTypeMakeOgcFilter>
  6677. <default_db:PROCES xml_id="d11410e2446"
  6678. system_cache__appinfo:maxOccurs="0"
  6679. system_cache__appinfo:minOccurs="0"
  6680. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  6681. </RelatedFeatureLoop>
  6682. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  6683. <RelatedFeature xml_id="d11410e2451"
  6684. typeNameRealResource="default_db:CRM_PROCES"
  6685. typeName="default_db:PROCES_INIT"
  6686. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  6687. flat_relation_cache_name="ID"
  6688. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6689. system_cache__appinfo:maxOccurs="unbounded"
  6690. system_cache__appinfo:minOccurs="0"
  6691. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  6692. xpath="PARENT_ID"
  6693. xpath_value="../ID">
  6694. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  6695. <ogc:Or>
  6696. <ogc:PropertyIsEqualTo>
  6697. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6698. <ogc:Literal>PROCES_INIT</ogc:Literal>
  6699. </ogc:PropertyIsEqualTo>
  6700. </ogc:Or>
  6701. </simpleTypeMakeOgcFilter>
  6702. <default_db:PROCES_INIT xml_id="d11410e2451_child"
  6703. system_cache__appinfo:maxOccurs="unbounded"
  6704. system_cache__appinfo:minOccurs="0"
  6705. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  6706. <ID xpath="ID" xml_id="d11410e2458"/>
  6707. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2460"/>
  6708. <path xpath="path" xml_id="d11410e2462"/>
  6709. <DESC xpath="DESC" xml_id="d11410e2464"/>
  6710. <TYPE xpath="TYPE" xml_id="d11410e2466"/>
  6711. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  6712. <RelatedFeatureLoop xml_id="d11410e2468"
  6713. typeNameRealResource="default_db:CRM_PROCES"
  6714. typeName="default_db:PROCES"
  6715. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  6716. flat_relation_cache_name="ID"
  6717. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6718. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  6719. system_cache__appinfo:maxOccurs="unbounded"
  6720. system_cache__appinfo:minOccurs="0"
  6721. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  6722. xpath="PARENT_ID"
  6723. xpath_value="../ID">
  6724. <simpleTypeMakeOgcFilter name="PROCES">
  6725. <ogc:Or>
  6726. <ogc:PropertyIsEqualTo>
  6727. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6728. <ogc:Literal>PROCES</ogc:Literal>
  6729. </ogc:PropertyIsEqualTo>
  6730. </ogc:Or>
  6731. </simpleTypeMakeOgcFilter>
  6732. <default_db:PROCES xml_id="d11410e2468"
  6733. system_cache__appinfo:maxOccurs="unbounded"
  6734. system_cache__appinfo:minOccurs="0"
  6735. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  6736. </RelatedFeatureLoop>
  6737. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  6738. <RelatedFeatureLoop xml_id="d11410e2473"
  6739. typeNameRealResource="default_db:CRM_PROCES"
  6740. typeName="default_db:PROCES_INIT"
  6741. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  6742. flat_relation_cache_name="ID"
  6743. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6744. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  6745. system_cache__appinfo:maxOccurs="0"
  6746. system_cache__appinfo:minOccurs="0"
  6747. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  6748. xpath="PARENT_ID"
  6749. xpath_value="../ID">
  6750. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  6751. <ogc:Or>
  6752. <ogc:PropertyIsEqualTo>
  6753. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6754. <ogc:Literal>PROCES_INIT</ogc:Literal>
  6755. </ogc:PropertyIsEqualTo>
  6756. </ogc:Or>
  6757. </simpleTypeMakeOgcFilter>
  6758. <default_db:PROCES_INIT xml_id="d11410e2473"
  6759. system_cache__appinfo:maxOccurs="0"
  6760. system_cache__appinfo:minOccurs="0"
  6761. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  6762. </RelatedFeatureLoop>
  6763. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  6764. <RelatedFeatureLoop xml_id="d11410e2478"
  6765. typeNameRealResource="default_db:CRM_PROCES"
  6766. typeName="default_db:PROCES_GROUP_1"
  6767. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  6768. flat_relation_cache_name="ID"
  6769. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6770. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  6771. system_cache__appinfo:maxOccurs="0"
  6772. system_cache__appinfo:minOccurs="0"
  6773. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  6774. xpath="PARENT_ID"
  6775. xpath_value="../ID">
  6776. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  6777. <ogc:Or>
  6778. <ogc:PropertyIsEqualTo>
  6779. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6780. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  6781. </ogc:PropertyIsEqualTo>
  6782. </ogc:Or>
  6783. </simpleTypeMakeOgcFilter>
  6784. <default_db:PROCES_GROUP_1 xml_id="d11410e2478"
  6785. system_cache__appinfo:maxOccurs="0"
  6786. system_cache__appinfo:minOccurs="0"
  6787. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  6788. </RelatedFeatureLoop>
  6789. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  6790. <RelatedFeatureLoop xml_id="d11410e2483"
  6791. typeNameRealResource="default_db:CRM_PROCES"
  6792. typeName="default_db:PROCES_GROUP_2"
  6793. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  6794. flat_relation_cache_name="ID"
  6795. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6796. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  6797. system_cache__appinfo:maxOccurs="0"
  6798. system_cache__appinfo:minOccurs="0"
  6799. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  6800. xpath="PARENT_ID"
  6801. xpath_value="../ID">
  6802. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  6803. <ogc:Or>
  6804. <ogc:PropertyIsEqualTo>
  6805. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6806. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  6807. </ogc:PropertyIsEqualTo>
  6808. </ogc:Or>
  6809. </simpleTypeMakeOgcFilter>
  6810. <default_db:PROCES_GROUP_2 xml_id="d11410e2483"
  6811. system_cache__appinfo:maxOccurs="0"
  6812. system_cache__appinfo:minOccurs="0"
  6813. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  6814. </RelatedFeatureLoop>
  6815. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  6816. <RelatedFeature xml_id="d11410e2488"
  6817. typeNameRealResource="default_db:CRM_PROCES"
  6818. typeName="default_db:PROCES_BENEFIT_INFO"
  6819. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  6820. flat_relation_cache_name="ID"
  6821. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6822. system_cache__appinfo:maxOccurs="unbounded"
  6823. system_cache__appinfo:minOccurs="0"
  6824. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  6825. xpath="PARENT_ID"
  6826. xpath_value="../ID">
  6827. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  6828. <ogc:Or>
  6829. <ogc:PropertyIsEqualTo>
  6830. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6831. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  6832. </ogc:PropertyIsEqualTo>
  6833. </ogc:Or>
  6834. </simpleTypeMakeOgcFilter>
  6835. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e2488_child"
  6836. system_cache__appinfo:maxOccurs="unbounded"
  6837. system_cache__appinfo:minOccurs="0"
  6838. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  6839. <ID xpath="ID" xml_id="d11410e2495"/>
  6840. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2497"/>
  6841. <path xpath="path" xml_id="d11410e2499"/>
  6842. <DESC xpath="DESC" xml_id="d11410e2501"/>
  6843. <TYPE xpath="TYPE" xml_id="d11410e2503"/>
  6844. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  6845. <RelatedFeatureLoop xml_id="d11410e2505"
  6846. typeNameRealResource="default_db:CRM_PROCES"
  6847. typeName="default_db:PROCES"
  6848. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  6849. flat_relation_cache_name="ID"
  6850. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6851. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  6852. system_cache__appinfo:maxOccurs="0"
  6853. system_cache__appinfo:minOccurs="0"
  6854. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  6855. xpath="PARENT_ID"
  6856. xpath_value="../ID">
  6857. <simpleTypeMakeOgcFilter name="PROCES">
  6858. <ogc:Or>
  6859. <ogc:PropertyIsEqualTo>
  6860. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6861. <ogc:Literal>PROCES</ogc:Literal>
  6862. </ogc:PropertyIsEqualTo>
  6863. </ogc:Or>
  6864. </simpleTypeMakeOgcFilter>
  6865. <default_db:PROCES xml_id="d11410e2505"
  6866. system_cache__appinfo:maxOccurs="0"
  6867. system_cache__appinfo:minOccurs="0"
  6868. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  6869. </RelatedFeatureLoop>
  6870. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  6871. <RelatedFeatureLoop xml_id="d11410e2510"
  6872. typeNameRealResource="default_db:CRM_PROCES"
  6873. typeName="default_db:PROCES_INIT"
  6874. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  6875. flat_relation_cache_name="ID"
  6876. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6877. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  6878. system_cache__appinfo:maxOccurs="0"
  6879. system_cache__appinfo:minOccurs="0"
  6880. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  6881. xpath="PARENT_ID"
  6882. xpath_value="../ID">
  6883. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  6884. <ogc:Or>
  6885. <ogc:PropertyIsEqualTo>
  6886. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6887. <ogc:Literal>PROCES_INIT</ogc:Literal>
  6888. </ogc:PropertyIsEqualTo>
  6889. </ogc:Or>
  6890. </simpleTypeMakeOgcFilter>
  6891. <default_db:PROCES_INIT xml_id="d11410e2510"
  6892. system_cache__appinfo:maxOccurs="0"
  6893. system_cache__appinfo:minOccurs="0"
  6894. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  6895. </RelatedFeatureLoop>
  6896. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  6897. <RelatedFeatureLoop xml_id="d11410e2515"
  6898. typeNameRealResource="default_db:CRM_PROCES"
  6899. typeName="default_db:PROCES_GROUP_1"
  6900. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  6901. flat_relation_cache_name="ID"
  6902. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6903. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  6904. system_cache__appinfo:maxOccurs="0"
  6905. system_cache__appinfo:minOccurs="0"
  6906. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  6907. xpath="PARENT_ID"
  6908. xpath_value="../ID">
  6909. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  6910. <ogc:Or>
  6911. <ogc:PropertyIsEqualTo>
  6912. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6913. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  6914. </ogc:PropertyIsEqualTo>
  6915. </ogc:Or>
  6916. </simpleTypeMakeOgcFilter>
  6917. <default_db:PROCES_GROUP_1 xml_id="d11410e2515"
  6918. system_cache__appinfo:maxOccurs="0"
  6919. system_cache__appinfo:minOccurs="0"
  6920. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  6921. </RelatedFeatureLoop>
  6922. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  6923. <RelatedFeatureLoop xml_id="d11410e2520"
  6924. typeNameRealResource="default_db:CRM_PROCES"
  6925. typeName="default_db:PROCES_GROUP_2"
  6926. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  6927. flat_relation_cache_name="ID"
  6928. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6929. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  6930. system_cache__appinfo:maxOccurs="0"
  6931. system_cache__appinfo:minOccurs="0"
  6932. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  6933. xpath="PARENT_ID"
  6934. xpath_value="../ID">
  6935. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  6936. <ogc:Or>
  6937. <ogc:PropertyIsEqualTo>
  6938. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6939. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  6940. </ogc:PropertyIsEqualTo>
  6941. </ogc:Or>
  6942. </simpleTypeMakeOgcFilter>
  6943. <default_db:PROCES_GROUP_2 xml_id="d11410e2520"
  6944. system_cache__appinfo:maxOccurs="0"
  6945. system_cache__appinfo:minOccurs="0"
  6946. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  6947. </RelatedFeatureLoop>
  6948. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  6949. <RelatedFeatureLoop xml_id="d11410e2525"
  6950. typeNameRealResource="default_db:CRM_PROCES"
  6951. typeName="default_db:PROCES_BENEFIT_INFO"
  6952. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  6953. flat_relation_cache_name="ID"
  6954. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  6955. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  6956. system_cache__appinfo:maxOccurs="unbounded"
  6957. system_cache__appinfo:minOccurs="0"
  6958. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  6959. xpath="PARENT_ID"
  6960. xpath_value="../ID">
  6961. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  6962. <ogc:Or>
  6963. <ogc:PropertyIsEqualTo>
  6964. <ogc:PropertyName>TYPE</ogc:PropertyName>
  6965. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  6966. </ogc:PropertyIsEqualTo>
  6967. </ogc:Or>
  6968. </simpleTypeMakeOgcFilter>
  6969. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e2525"
  6970. system_cache__appinfo:maxOccurs="unbounded"
  6971. system_cache__appinfo:minOccurs="0"
  6972. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  6973. </RelatedFeatureLoop>
  6974. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  6975. <RelatedFeature xml_id="d11410e2531"
  6976. typeNameRealResource="default_db:CRM_WSKAZNIK"
  6977. typeName="default_db:CRM_WSKAZNIK"
  6978. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  6979. flat_relation_cache_name="ID"
  6980. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  6981. system_cache__appinfo:maxOccurs="0"
  6982. system_cache__appinfo:minOccurs="0"
  6983. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  6984. xpath="ID_PROCES"
  6985. xpath_value="../ID">
  6986. <default_db:CRM_WSKAZNIK xml_id="d11410e2531_child"
  6987. system_cache__appinfo:maxOccurs="0"
  6988. system_cache__appinfo:minOccurs="0"
  6989. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  6990. <ID xpath="ID" xml_id="d11410e2537"/>
  6991. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2539"/>
  6992. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2541"/>
  6993. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  6994. <RelatedFeature xml_id="d11410e2543"
  6995. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  6996. typeName="default_db:CRM_LISTA_ZASOBOW"
  6997. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  6998. flat_relation_cache_name="ID_ZASOB"
  6999. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  7000. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  7001. xpath="ID"
  7002. xpath_value="../ID_ZASOB">
  7003. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2543_child"
  7004. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  7005. <ID xpath="ID" xml_id="d11410e2549"/>
  7006. <DESC xpath="DESC" xml_id="d11410e2551"/>
  7007. <DESC_PL xpath="DESC_PL" xml_id="d11410e2553"/>
  7008. </default_db:CRM_LISTA_ZASOBOW>
  7009. </RelatedFeature>
  7010. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e2555"/>
  7011. </default_db:CRM_WSKAZNIK>
  7012. </RelatedFeature>
  7013. </default_db:PROCES_BENEFIT_INFO>
  7014. </RelatedFeature>
  7015. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  7016. <RelatedFeature xml_id="d11410e2558"
  7017. typeNameRealResource="default_db:CRM_WSKAZNIK"
  7018. typeName="default_db:CRM_WSKAZNIK"
  7019. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  7020. flat_relation_cache_name="ID"
  7021. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  7022. system_cache__appinfo:maxOccurs="unbounded"
  7023. system_cache__appinfo:minOccurs="0"
  7024. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  7025. xpath="ID_PROCES"
  7026. xpath_value="../ID">
  7027. <default_db:CRM_WSKAZNIK xml_id="d11410e2558_child"
  7028. system_cache__appinfo:maxOccurs="unbounded"
  7029. system_cache__appinfo:minOccurs="0"
  7030. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  7031. <ID xpath="ID" xml_id="d11410e2564"/>
  7032. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2566"/>
  7033. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2568"/>
  7034. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  7035. <RelatedFeature xml_id="d11410e2570"
  7036. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  7037. typeName="default_db:CRM_LISTA_ZASOBOW"
  7038. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  7039. flat_relation_cache_name="ID_ZASOB"
  7040. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  7041. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  7042. xpath="ID"
  7043. xpath_value="../ID_ZASOB">
  7044. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2570_child"
  7045. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  7046. <ID xpath="ID" xml_id="d11410e2576"/>
  7047. <DESC xpath="DESC" xml_id="d11410e2578"/>
  7048. <DESC_PL xpath="DESC_PL" xml_id="d11410e2580"/>
  7049. </default_db:CRM_LISTA_ZASOBOW>
  7050. </RelatedFeature>
  7051. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e2582"/>
  7052. </default_db:CRM_WSKAZNIK>
  7053. </RelatedFeature>
  7054. </default_db:PROCES_INIT>
  7055. </RelatedFeature>
  7056. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  7057. <RelatedFeatureLoop xml_id="d11410e2584"
  7058. typeNameRealResource="default_db:CRM_PROCES"
  7059. typeName="default_db:PROCES_GROUP_1"
  7060. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  7061. flat_relation_cache_name="ID"
  7062. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7063. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  7064. system_cache__appinfo:maxOccurs="unbounded"
  7065. system_cache__appinfo:minOccurs="0"
  7066. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  7067. xpath="PARENT_ID"
  7068. xpath_value="../ID">
  7069. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  7070. <ogc:Or>
  7071. <ogc:PropertyIsEqualTo>
  7072. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7073. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  7074. </ogc:PropertyIsEqualTo>
  7075. </ogc:Or>
  7076. </simpleTypeMakeOgcFilter>
  7077. <default_db:PROCES_GROUP_1 xml_id="d11410e2584"
  7078. system_cache__appinfo:maxOccurs="unbounded"
  7079. system_cache__appinfo:minOccurs="0"
  7080. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  7081. </RelatedFeatureLoop>
  7082. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  7083. <RelatedFeatureLoop xml_id="d11410e2589"
  7084. typeNameRealResource="default_db:CRM_PROCES"
  7085. typeName="default_db:PROCES_GROUP_2"
  7086. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  7087. flat_relation_cache_name="ID"
  7088. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7089. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  7090. system_cache__appinfo:maxOccurs="unbounded"
  7091. system_cache__appinfo:minOccurs="0"
  7092. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  7093. xpath="PARENT_ID"
  7094. xpath_value="../ID">
  7095. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  7096. <ogc:Or>
  7097. <ogc:PropertyIsEqualTo>
  7098. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7099. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  7100. </ogc:PropertyIsEqualTo>
  7101. </ogc:Or>
  7102. </simpleTypeMakeOgcFilter>
  7103. <default_db:PROCES_GROUP_2 xml_id="d11410e2589"
  7104. system_cache__appinfo:maxOccurs="unbounded"
  7105. system_cache__appinfo:minOccurs="0"
  7106. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  7107. </RelatedFeatureLoop>
  7108. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  7109. <RelatedFeature xml_id="d11410e2594"
  7110. typeNameRealResource="default_db:CRM_PROCES"
  7111. typeName="default_db:PROCES_BENEFIT_INFO"
  7112. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  7113. flat_relation_cache_name="ID"
  7114. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7115. system_cache__appinfo:maxOccurs="1"
  7116. system_cache__appinfo:minOccurs="0"
  7117. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  7118. xpath="PARENT_ID"
  7119. xpath_value="../ID">
  7120. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  7121. <ogc:Or>
  7122. <ogc:PropertyIsEqualTo>
  7123. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7124. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  7125. </ogc:PropertyIsEqualTo>
  7126. </ogc:Or>
  7127. </simpleTypeMakeOgcFilter>
  7128. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e2594_child"
  7129. system_cache__appinfo:maxOccurs="1"
  7130. system_cache__appinfo:minOccurs="0"
  7131. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  7132. <ID xpath="ID" xml_id="d11410e2601"/>
  7133. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2603"/>
  7134. <path xpath="path" xml_id="d11410e2605"/>
  7135. <DESC xpath="DESC" xml_id="d11410e2607"/>
  7136. <TYPE xpath="TYPE" xml_id="d11410e2609"/>
  7137. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  7138. <RelatedFeatureLoop xml_id="d11410e2611"
  7139. typeNameRealResource="default_db:CRM_PROCES"
  7140. typeName="default_db:PROCES"
  7141. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  7142. flat_relation_cache_name="ID"
  7143. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7144. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  7145. system_cache__appinfo:maxOccurs="0"
  7146. system_cache__appinfo:minOccurs="0"
  7147. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  7148. xpath="PARENT_ID"
  7149. xpath_value="../ID">
  7150. <simpleTypeMakeOgcFilter name="PROCES">
  7151. <ogc:Or>
  7152. <ogc:PropertyIsEqualTo>
  7153. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7154. <ogc:Literal>PROCES</ogc:Literal>
  7155. </ogc:PropertyIsEqualTo>
  7156. </ogc:Or>
  7157. </simpleTypeMakeOgcFilter>
  7158. <default_db:PROCES xml_id="d11410e2611"
  7159. system_cache__appinfo:maxOccurs="0"
  7160. system_cache__appinfo:minOccurs="0"
  7161. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  7162. </RelatedFeatureLoop>
  7163. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  7164. <RelatedFeature xml_id="d11410e2616"
  7165. typeNameRealResource="default_db:CRM_PROCES"
  7166. typeName="default_db:PROCES_INIT"
  7167. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  7168. flat_relation_cache_name="ID"
  7169. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7170. system_cache__appinfo:maxOccurs="0"
  7171. system_cache__appinfo:minOccurs="0"
  7172. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  7173. xpath="PARENT_ID"
  7174. xpath_value="../ID">
  7175. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  7176. <ogc:Or>
  7177. <ogc:PropertyIsEqualTo>
  7178. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7179. <ogc:Literal>PROCES_INIT</ogc:Literal>
  7180. </ogc:PropertyIsEqualTo>
  7181. </ogc:Or>
  7182. </simpleTypeMakeOgcFilter>
  7183. <default_db:PROCES_INIT xml_id="d11410e2616_child"
  7184. system_cache__appinfo:maxOccurs="0"
  7185. system_cache__appinfo:minOccurs="0"
  7186. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  7187. <ID xpath="ID" xml_id="d11410e2623"/>
  7188. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2625"/>
  7189. <path xpath="path" xml_id="d11410e2627"/>
  7190. <DESC xpath="DESC" xml_id="d11410e2629"/>
  7191. <TYPE xpath="TYPE" xml_id="d11410e2631"/>
  7192. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  7193. <RelatedFeatureLoop xml_id="d11410e2633"
  7194. typeNameRealResource="default_db:CRM_PROCES"
  7195. typeName="default_db:PROCES"
  7196. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  7197. flat_relation_cache_name="ID"
  7198. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7199. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  7200. system_cache__appinfo:maxOccurs="unbounded"
  7201. system_cache__appinfo:minOccurs="0"
  7202. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  7203. xpath="PARENT_ID"
  7204. xpath_value="../ID">
  7205. <simpleTypeMakeOgcFilter name="PROCES">
  7206. <ogc:Or>
  7207. <ogc:PropertyIsEqualTo>
  7208. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7209. <ogc:Literal>PROCES</ogc:Literal>
  7210. </ogc:PropertyIsEqualTo>
  7211. </ogc:Or>
  7212. </simpleTypeMakeOgcFilter>
  7213. <default_db:PROCES xml_id="d11410e2633"
  7214. system_cache__appinfo:maxOccurs="unbounded"
  7215. system_cache__appinfo:minOccurs="0"
  7216. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  7217. </RelatedFeatureLoop>
  7218. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  7219. <RelatedFeatureLoop xml_id="d11410e2638"
  7220. typeNameRealResource="default_db:CRM_PROCES"
  7221. typeName="default_db:PROCES_INIT"
  7222. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  7223. flat_relation_cache_name="ID"
  7224. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7225. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  7226. system_cache__appinfo:maxOccurs="0"
  7227. system_cache__appinfo:minOccurs="0"
  7228. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  7229. xpath="PARENT_ID"
  7230. xpath_value="../ID">
  7231. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  7232. <ogc:Or>
  7233. <ogc:PropertyIsEqualTo>
  7234. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7235. <ogc:Literal>PROCES_INIT</ogc:Literal>
  7236. </ogc:PropertyIsEqualTo>
  7237. </ogc:Or>
  7238. </simpleTypeMakeOgcFilter>
  7239. <default_db:PROCES_INIT xml_id="d11410e2638"
  7240. system_cache__appinfo:maxOccurs="0"
  7241. system_cache__appinfo:minOccurs="0"
  7242. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  7243. </RelatedFeatureLoop>
  7244. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  7245. <RelatedFeatureLoop xml_id="d11410e2643"
  7246. typeNameRealResource="default_db:CRM_PROCES"
  7247. typeName="default_db:PROCES_GROUP_1"
  7248. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  7249. flat_relation_cache_name="ID"
  7250. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7251. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  7252. system_cache__appinfo:maxOccurs="0"
  7253. system_cache__appinfo:minOccurs="0"
  7254. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  7255. xpath="PARENT_ID"
  7256. xpath_value="../ID">
  7257. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  7258. <ogc:Or>
  7259. <ogc:PropertyIsEqualTo>
  7260. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7261. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  7262. </ogc:PropertyIsEqualTo>
  7263. </ogc:Or>
  7264. </simpleTypeMakeOgcFilter>
  7265. <default_db:PROCES_GROUP_1 xml_id="d11410e2643"
  7266. system_cache__appinfo:maxOccurs="0"
  7267. system_cache__appinfo:minOccurs="0"
  7268. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  7269. </RelatedFeatureLoop>
  7270. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  7271. <RelatedFeatureLoop xml_id="d11410e2648"
  7272. typeNameRealResource="default_db:CRM_PROCES"
  7273. typeName="default_db:PROCES_GROUP_2"
  7274. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  7275. flat_relation_cache_name="ID"
  7276. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7277. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  7278. system_cache__appinfo:maxOccurs="0"
  7279. system_cache__appinfo:minOccurs="0"
  7280. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  7281. xpath="PARENT_ID"
  7282. xpath_value="../ID">
  7283. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  7284. <ogc:Or>
  7285. <ogc:PropertyIsEqualTo>
  7286. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7287. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  7288. </ogc:PropertyIsEqualTo>
  7289. </ogc:Or>
  7290. </simpleTypeMakeOgcFilter>
  7291. <default_db:PROCES_GROUP_2 xml_id="d11410e2648"
  7292. system_cache__appinfo:maxOccurs="0"
  7293. system_cache__appinfo:minOccurs="0"
  7294. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  7295. </RelatedFeatureLoop>
  7296. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  7297. <RelatedFeatureLoop xml_id="d11410e2653"
  7298. typeNameRealResource="default_db:CRM_PROCES"
  7299. typeName="default_db:PROCES_BENEFIT_INFO"
  7300. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  7301. flat_relation_cache_name="ID"
  7302. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7303. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  7304. system_cache__appinfo:maxOccurs="unbounded"
  7305. system_cache__appinfo:minOccurs="0"
  7306. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  7307. xpath="PARENT_ID"
  7308. xpath_value="../ID">
  7309. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  7310. <ogc:Or>
  7311. <ogc:PropertyIsEqualTo>
  7312. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7313. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  7314. </ogc:PropertyIsEqualTo>
  7315. </ogc:Or>
  7316. </simpleTypeMakeOgcFilter>
  7317. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e2653"
  7318. system_cache__appinfo:maxOccurs="unbounded"
  7319. system_cache__appinfo:minOccurs="0"
  7320. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  7321. </RelatedFeatureLoop>
  7322. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  7323. <RelatedFeature xml_id="d11410e2659"
  7324. typeNameRealResource="default_db:CRM_WSKAZNIK"
  7325. typeName="default_db:CRM_WSKAZNIK"
  7326. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  7327. flat_relation_cache_name="ID"
  7328. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  7329. system_cache__appinfo:maxOccurs="unbounded"
  7330. system_cache__appinfo:minOccurs="0"
  7331. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  7332. xpath="ID_PROCES"
  7333. xpath_value="../ID">
  7334. <default_db:CRM_WSKAZNIK xml_id="d11410e2659_child"
  7335. system_cache__appinfo:maxOccurs="unbounded"
  7336. system_cache__appinfo:minOccurs="0"
  7337. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  7338. <ID xpath="ID" xml_id="d11410e2665"/>
  7339. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2667"/>
  7340. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2669"/>
  7341. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  7342. <RelatedFeature xml_id="d11410e2671"
  7343. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  7344. typeName="default_db:CRM_LISTA_ZASOBOW"
  7345. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  7346. flat_relation_cache_name="ID_ZASOB"
  7347. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  7348. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  7349. xpath="ID"
  7350. xpath_value="../ID_ZASOB">
  7351. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2671_child"
  7352. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  7353. <ID xpath="ID" xml_id="d11410e2677"/>
  7354. <DESC xpath="DESC" xml_id="d11410e2679"/>
  7355. <DESC_PL xpath="DESC_PL" xml_id="d11410e2681"/>
  7356. </default_db:CRM_LISTA_ZASOBOW>
  7357. </RelatedFeature>
  7358. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e2683"/>
  7359. </default_db:CRM_WSKAZNIK>
  7360. </RelatedFeature>
  7361. </default_db:PROCES_INIT>
  7362. </RelatedFeature>
  7363. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  7364. <RelatedFeatureLoop xml_id="d11410e2685"
  7365. typeNameRealResource="default_db:CRM_PROCES"
  7366. typeName="default_db:PROCES_GROUP_1"
  7367. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  7368. flat_relation_cache_name="ID"
  7369. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7370. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  7371. system_cache__appinfo:maxOccurs="0"
  7372. system_cache__appinfo:minOccurs="0"
  7373. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  7374. xpath="PARENT_ID"
  7375. xpath_value="../ID">
  7376. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  7377. <ogc:Or>
  7378. <ogc:PropertyIsEqualTo>
  7379. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7380. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  7381. </ogc:PropertyIsEqualTo>
  7382. </ogc:Or>
  7383. </simpleTypeMakeOgcFilter>
  7384. <default_db:PROCES_GROUP_1 xml_id="d11410e2685"
  7385. system_cache__appinfo:maxOccurs="0"
  7386. system_cache__appinfo:minOccurs="0"
  7387. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  7388. </RelatedFeatureLoop>
  7389. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  7390. <RelatedFeatureLoop xml_id="d11410e2690"
  7391. typeNameRealResource="default_db:CRM_PROCES"
  7392. typeName="default_db:PROCES_GROUP_2"
  7393. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  7394. flat_relation_cache_name="ID"
  7395. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7396. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  7397. system_cache__appinfo:maxOccurs="0"
  7398. system_cache__appinfo:minOccurs="0"
  7399. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  7400. xpath="PARENT_ID"
  7401. xpath_value="../ID">
  7402. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  7403. <ogc:Or>
  7404. <ogc:PropertyIsEqualTo>
  7405. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7406. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  7407. </ogc:PropertyIsEqualTo>
  7408. </ogc:Or>
  7409. </simpleTypeMakeOgcFilter>
  7410. <default_db:PROCES_GROUP_2 xml_id="d11410e2690"
  7411. system_cache__appinfo:maxOccurs="0"
  7412. system_cache__appinfo:minOccurs="0"
  7413. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  7414. </RelatedFeatureLoop>
  7415. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  7416. <RelatedFeatureLoop xml_id="d11410e2695"
  7417. typeNameRealResource="default_db:CRM_PROCES"
  7418. typeName="default_db:PROCES_BENEFIT_INFO"
  7419. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  7420. flat_relation_cache_name="ID"
  7421. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7422. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  7423. system_cache__appinfo:maxOccurs="unbounded"
  7424. system_cache__appinfo:minOccurs="0"
  7425. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  7426. xpath="PARENT_ID"
  7427. xpath_value="../ID">
  7428. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  7429. <ogc:Or>
  7430. <ogc:PropertyIsEqualTo>
  7431. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7432. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  7433. </ogc:PropertyIsEqualTo>
  7434. </ogc:Or>
  7435. </simpleTypeMakeOgcFilter>
  7436. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e2695"
  7437. system_cache__appinfo:maxOccurs="unbounded"
  7438. system_cache__appinfo:minOccurs="0"
  7439. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  7440. </RelatedFeatureLoop>
  7441. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  7442. <RelatedFeature xml_id="d11410e2701"
  7443. typeNameRealResource="default_db:CRM_WSKAZNIK"
  7444. typeName="default_db:CRM_WSKAZNIK"
  7445. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  7446. flat_relation_cache_name="ID"
  7447. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  7448. system_cache__appinfo:maxOccurs="0"
  7449. system_cache__appinfo:minOccurs="0"
  7450. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  7451. xpath="ID_PROCES"
  7452. xpath_value="../ID">
  7453. <default_db:CRM_WSKAZNIK xml_id="d11410e2701_child"
  7454. system_cache__appinfo:maxOccurs="0"
  7455. system_cache__appinfo:minOccurs="0"
  7456. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  7457. <ID xpath="ID" xml_id="d11410e2707"/>
  7458. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2709"/>
  7459. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2711"/>
  7460. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  7461. <RelatedFeature xml_id="d11410e2713"
  7462. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  7463. typeName="default_db:CRM_LISTA_ZASOBOW"
  7464. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  7465. flat_relation_cache_name="ID_ZASOB"
  7466. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  7467. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  7468. xpath="ID"
  7469. xpath_value="../ID_ZASOB">
  7470. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2713_child"
  7471. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  7472. <ID xpath="ID" xml_id="d11410e2719"/>
  7473. <DESC xpath="DESC" xml_id="d11410e2721"/>
  7474. <DESC_PL xpath="DESC_PL" xml_id="d11410e2723"/>
  7475. </default_db:CRM_LISTA_ZASOBOW>
  7476. </RelatedFeature>
  7477. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e2725"/>
  7478. </default_db:CRM_WSKAZNIK>
  7479. </RelatedFeature>
  7480. </default_db:PROCES_BENEFIT_INFO>
  7481. </RelatedFeature>
  7482. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  7483. <RelatedFeature xml_id="d11410e2728"
  7484. typeNameRealResource="default_db:CRM_WSKAZNIK"
  7485. typeName="default_db:CRM_WSKAZNIK"
  7486. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  7487. flat_relation_cache_name="ID"
  7488. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  7489. system_cache__appinfo:maxOccurs="0"
  7490. system_cache__appinfo:minOccurs="0"
  7491. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  7492. xpath="ID_PROCES"
  7493. xpath_value="../ID">
  7494. <default_db:CRM_WSKAZNIK xml_id="d11410e2728_child"
  7495. system_cache__appinfo:maxOccurs="0"
  7496. system_cache__appinfo:minOccurs="0"
  7497. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  7498. <ID xpath="ID" xml_id="d11410e2734"/>
  7499. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2736"/>
  7500. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2738"/>
  7501. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  7502. <RelatedFeature xml_id="d11410e2740"
  7503. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  7504. typeName="default_db:CRM_LISTA_ZASOBOW"
  7505. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  7506. flat_relation_cache_name="ID_ZASOB"
  7507. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  7508. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  7509. xpath="ID"
  7510. xpath_value="../ID_ZASOB">
  7511. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2740_child"
  7512. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  7513. <ID xpath="ID" xml_id="d11410e2746"/>
  7514. <DESC xpath="DESC" xml_id="d11410e2748"/>
  7515. <DESC_PL xpath="DESC_PL" xml_id="d11410e2750"/>
  7516. </default_db:CRM_LISTA_ZASOBOW>
  7517. </RelatedFeature>
  7518. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e2752"/>
  7519. </default_db:CRM_WSKAZNIK>
  7520. </RelatedFeature>
  7521. </default_db:PROCES_GROUP_1>
  7522. </RelatedFeature>
  7523. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  7524. <RelatedFeatureLoop xml_id="d11410e2754"
  7525. typeNameRealResource="default_db:CRM_PROCES"
  7526. typeName="default_db:PROCES_GROUP_2"
  7527. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  7528. flat_relation_cache_name="ID"
  7529. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7530. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  7531. system_cache__appinfo:maxOccurs="unbounded"
  7532. system_cache__appinfo:minOccurs="0"
  7533. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  7534. xpath="PARENT_ID"
  7535. xpath_value="../ID">
  7536. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  7537. <ogc:Or>
  7538. <ogc:PropertyIsEqualTo>
  7539. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7540. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  7541. </ogc:PropertyIsEqualTo>
  7542. </ogc:Or>
  7543. </simpleTypeMakeOgcFilter>
  7544. <default_db:PROCES_GROUP_2 xml_id="d11410e2754"
  7545. system_cache__appinfo:maxOccurs="unbounded"
  7546. system_cache__appinfo:minOccurs="0"
  7547. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  7548. </RelatedFeatureLoop>
  7549. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  7550. <RelatedFeature xml_id="d11410e2759"
  7551. typeNameRealResource="default_db:CRM_PROCES"
  7552. typeName="default_db:PROCES_BENEFIT_INFO"
  7553. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  7554. flat_relation_cache_name="ID"
  7555. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7556. system_cache__appinfo:maxOccurs="1"
  7557. system_cache__appinfo:minOccurs="0"
  7558. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  7559. xpath="PARENT_ID"
  7560. xpath_value="../ID">
  7561. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  7562. <ogc:Or>
  7563. <ogc:PropertyIsEqualTo>
  7564. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7565. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  7566. </ogc:PropertyIsEqualTo>
  7567. </ogc:Or>
  7568. </simpleTypeMakeOgcFilter>
  7569. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e2759_child"
  7570. system_cache__appinfo:maxOccurs="1"
  7571. system_cache__appinfo:minOccurs="0"
  7572. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  7573. <ID xpath="ID" xml_id="d11410e2766"/>
  7574. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2768"/>
  7575. <path xpath="path" xml_id="d11410e2770"/>
  7576. <DESC xpath="DESC" xml_id="d11410e2772"/>
  7577. <TYPE xpath="TYPE" xml_id="d11410e2774"/>
  7578. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  7579. <RelatedFeatureLoop xml_id="d11410e2776"
  7580. typeNameRealResource="default_db:CRM_PROCES"
  7581. typeName="default_db:PROCES"
  7582. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  7583. flat_relation_cache_name="ID"
  7584. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7585. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  7586. system_cache__appinfo:maxOccurs="0"
  7587. system_cache__appinfo:minOccurs="0"
  7588. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  7589. xpath="PARENT_ID"
  7590. xpath_value="../ID">
  7591. <simpleTypeMakeOgcFilter name="PROCES">
  7592. <ogc:Or>
  7593. <ogc:PropertyIsEqualTo>
  7594. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7595. <ogc:Literal>PROCES</ogc:Literal>
  7596. </ogc:PropertyIsEqualTo>
  7597. </ogc:Or>
  7598. </simpleTypeMakeOgcFilter>
  7599. <default_db:PROCES xml_id="d11410e2776"
  7600. system_cache__appinfo:maxOccurs="0"
  7601. system_cache__appinfo:minOccurs="0"
  7602. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  7603. </RelatedFeatureLoop>
  7604. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  7605. <RelatedFeature xml_id="d11410e2781"
  7606. typeNameRealResource="default_db:CRM_PROCES"
  7607. typeName="default_db:PROCES_INIT"
  7608. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  7609. flat_relation_cache_name="ID"
  7610. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7611. system_cache__appinfo:maxOccurs="0"
  7612. system_cache__appinfo:minOccurs="0"
  7613. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  7614. xpath="PARENT_ID"
  7615. xpath_value="../ID">
  7616. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  7617. <ogc:Or>
  7618. <ogc:PropertyIsEqualTo>
  7619. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7620. <ogc:Literal>PROCES_INIT</ogc:Literal>
  7621. </ogc:PropertyIsEqualTo>
  7622. </ogc:Or>
  7623. </simpleTypeMakeOgcFilter>
  7624. <default_db:PROCES_INIT xml_id="d11410e2781_child"
  7625. system_cache__appinfo:maxOccurs="0"
  7626. system_cache__appinfo:minOccurs="0"
  7627. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  7628. <ID xpath="ID" xml_id="d11410e2788"/>
  7629. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2790"/>
  7630. <path xpath="path" xml_id="d11410e2792"/>
  7631. <DESC xpath="DESC" xml_id="d11410e2794"/>
  7632. <TYPE xpath="TYPE" xml_id="d11410e2796"/>
  7633. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  7634. <RelatedFeatureLoop xml_id="d11410e2798"
  7635. typeNameRealResource="default_db:CRM_PROCES"
  7636. typeName="default_db:PROCES"
  7637. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  7638. flat_relation_cache_name="ID"
  7639. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7640. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  7641. system_cache__appinfo:maxOccurs="unbounded"
  7642. system_cache__appinfo:minOccurs="0"
  7643. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  7644. xpath="PARENT_ID"
  7645. xpath_value="../ID">
  7646. <simpleTypeMakeOgcFilter name="PROCES">
  7647. <ogc:Or>
  7648. <ogc:PropertyIsEqualTo>
  7649. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7650. <ogc:Literal>PROCES</ogc:Literal>
  7651. </ogc:PropertyIsEqualTo>
  7652. </ogc:Or>
  7653. </simpleTypeMakeOgcFilter>
  7654. <default_db:PROCES xml_id="d11410e2798"
  7655. system_cache__appinfo:maxOccurs="unbounded"
  7656. system_cache__appinfo:minOccurs="0"
  7657. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  7658. </RelatedFeatureLoop>
  7659. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  7660. <RelatedFeatureLoop xml_id="d11410e2803"
  7661. typeNameRealResource="default_db:CRM_PROCES"
  7662. typeName="default_db:PROCES_INIT"
  7663. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  7664. flat_relation_cache_name="ID"
  7665. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7666. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  7667. system_cache__appinfo:maxOccurs="0"
  7668. system_cache__appinfo:minOccurs="0"
  7669. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  7670. xpath="PARENT_ID"
  7671. xpath_value="../ID">
  7672. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  7673. <ogc:Or>
  7674. <ogc:PropertyIsEqualTo>
  7675. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7676. <ogc:Literal>PROCES_INIT</ogc:Literal>
  7677. </ogc:PropertyIsEqualTo>
  7678. </ogc:Or>
  7679. </simpleTypeMakeOgcFilter>
  7680. <default_db:PROCES_INIT xml_id="d11410e2803"
  7681. system_cache__appinfo:maxOccurs="0"
  7682. system_cache__appinfo:minOccurs="0"
  7683. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  7684. </RelatedFeatureLoop>
  7685. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  7686. <RelatedFeature xml_id="d11410e2808"
  7687. typeNameRealResource="default_db:CRM_PROCES"
  7688. typeName="default_db:PROCES_GROUP_1"
  7689. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  7690. flat_relation_cache_name="ID"
  7691. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7692. system_cache__appinfo:maxOccurs="0"
  7693. system_cache__appinfo:minOccurs="0"
  7694. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  7695. xpath="PARENT_ID"
  7696. xpath_value="../ID">
  7697. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  7698. <ogc:Or>
  7699. <ogc:PropertyIsEqualTo>
  7700. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7701. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  7702. </ogc:PropertyIsEqualTo>
  7703. </ogc:Or>
  7704. </simpleTypeMakeOgcFilter>
  7705. <default_db:PROCES_GROUP_1 xml_id="d11410e2808_child"
  7706. system_cache__appinfo:maxOccurs="0"
  7707. system_cache__appinfo:minOccurs="0"
  7708. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  7709. <ID xpath="ID" xml_id="d11410e2815"/>
  7710. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2817"/>
  7711. <path xpath="path" xml_id="d11410e2819"/>
  7712. <DESC xpath="DESC" xml_id="d11410e2821"/>
  7713. <TYPE xpath="TYPE" xml_id="d11410e2823"/>
  7714. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  7715. <RelatedFeatureLoop xml_id="d11410e2825"
  7716. typeNameRealResource="default_db:CRM_PROCES"
  7717. typeName="default_db:PROCES"
  7718. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  7719. flat_relation_cache_name="ID"
  7720. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7721. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  7722. system_cache__appinfo:maxOccurs="0"
  7723. system_cache__appinfo:minOccurs="0"
  7724. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  7725. xpath="PARENT_ID"
  7726. xpath_value="../ID">
  7727. <simpleTypeMakeOgcFilter name="PROCES">
  7728. <ogc:Or>
  7729. <ogc:PropertyIsEqualTo>
  7730. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7731. <ogc:Literal>PROCES</ogc:Literal>
  7732. </ogc:PropertyIsEqualTo>
  7733. </ogc:Or>
  7734. </simpleTypeMakeOgcFilter>
  7735. <default_db:PROCES xml_id="d11410e2825"
  7736. system_cache__appinfo:maxOccurs="0"
  7737. system_cache__appinfo:minOccurs="0"
  7738. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  7739. </RelatedFeatureLoop>
  7740. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  7741. <RelatedFeatureLoop xml_id="d11410e2830"
  7742. typeNameRealResource="default_db:CRM_PROCES"
  7743. typeName="default_db:PROCES_INIT"
  7744. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  7745. flat_relation_cache_name="ID"
  7746. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7747. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  7748. system_cache__appinfo:maxOccurs="unbounded"
  7749. system_cache__appinfo:minOccurs="0"
  7750. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  7751. xpath="PARENT_ID"
  7752. xpath_value="../ID">
  7753. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  7754. <ogc:Or>
  7755. <ogc:PropertyIsEqualTo>
  7756. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7757. <ogc:Literal>PROCES_INIT</ogc:Literal>
  7758. </ogc:PropertyIsEqualTo>
  7759. </ogc:Or>
  7760. </simpleTypeMakeOgcFilter>
  7761. <default_db:PROCES_INIT xml_id="d11410e2830"
  7762. system_cache__appinfo:maxOccurs="unbounded"
  7763. system_cache__appinfo:minOccurs="0"
  7764. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  7765. </RelatedFeatureLoop>
  7766. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  7767. <RelatedFeatureLoop xml_id="d11410e2835"
  7768. typeNameRealResource="default_db:CRM_PROCES"
  7769. typeName="default_db:PROCES_GROUP_1"
  7770. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  7771. flat_relation_cache_name="ID"
  7772. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7773. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  7774. system_cache__appinfo:maxOccurs="unbounded"
  7775. system_cache__appinfo:minOccurs="0"
  7776. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  7777. xpath="PARENT_ID"
  7778. xpath_value="../ID">
  7779. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  7780. <ogc:Or>
  7781. <ogc:PropertyIsEqualTo>
  7782. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7783. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  7784. </ogc:PropertyIsEqualTo>
  7785. </ogc:Or>
  7786. </simpleTypeMakeOgcFilter>
  7787. <default_db:PROCES_GROUP_1 xml_id="d11410e2835"
  7788. system_cache__appinfo:maxOccurs="unbounded"
  7789. system_cache__appinfo:minOccurs="0"
  7790. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  7791. </RelatedFeatureLoop>
  7792. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  7793. <RelatedFeatureLoop xml_id="d11410e2840"
  7794. typeNameRealResource="default_db:CRM_PROCES"
  7795. typeName="default_db:PROCES_GROUP_2"
  7796. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  7797. flat_relation_cache_name="ID"
  7798. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7799. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  7800. system_cache__appinfo:maxOccurs="unbounded"
  7801. system_cache__appinfo:minOccurs="0"
  7802. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  7803. xpath="PARENT_ID"
  7804. xpath_value="../ID">
  7805. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  7806. <ogc:Or>
  7807. <ogc:PropertyIsEqualTo>
  7808. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7809. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  7810. </ogc:PropertyIsEqualTo>
  7811. </ogc:Or>
  7812. </simpleTypeMakeOgcFilter>
  7813. <default_db:PROCES_GROUP_2 xml_id="d11410e2840"
  7814. system_cache__appinfo:maxOccurs="unbounded"
  7815. system_cache__appinfo:minOccurs="0"
  7816. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  7817. </RelatedFeatureLoop>
  7818. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  7819. <RelatedFeatureLoop xml_id="d11410e2845"
  7820. typeNameRealResource="default_db:CRM_PROCES"
  7821. typeName="default_db:PROCES_BENEFIT_INFO"
  7822. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  7823. flat_relation_cache_name="ID"
  7824. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7825. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  7826. system_cache__appinfo:maxOccurs="1"
  7827. system_cache__appinfo:minOccurs="0"
  7828. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  7829. xpath="PARENT_ID"
  7830. xpath_value="../ID">
  7831. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  7832. <ogc:Or>
  7833. <ogc:PropertyIsEqualTo>
  7834. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7835. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  7836. </ogc:PropertyIsEqualTo>
  7837. </ogc:Or>
  7838. </simpleTypeMakeOgcFilter>
  7839. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e2845"
  7840. system_cache__appinfo:maxOccurs="1"
  7841. system_cache__appinfo:minOccurs="0"
  7842. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  7843. </RelatedFeatureLoop>
  7844. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  7845. <RelatedFeature xml_id="d11410e2851"
  7846. typeNameRealResource="default_db:CRM_WSKAZNIK"
  7847. typeName="default_db:CRM_WSKAZNIK"
  7848. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  7849. flat_relation_cache_name="ID"
  7850. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  7851. system_cache__appinfo:maxOccurs="0"
  7852. system_cache__appinfo:minOccurs="0"
  7853. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  7854. xpath="ID_PROCES"
  7855. xpath_value="../ID">
  7856. <default_db:CRM_WSKAZNIK xml_id="d11410e2851_child"
  7857. system_cache__appinfo:maxOccurs="0"
  7858. system_cache__appinfo:minOccurs="0"
  7859. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  7860. <ID xpath="ID" xml_id="d11410e2857"/>
  7861. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2859"/>
  7862. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2861"/>
  7863. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  7864. <RelatedFeature xml_id="d11410e2863"
  7865. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  7866. typeName="default_db:CRM_LISTA_ZASOBOW"
  7867. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  7868. flat_relation_cache_name="ID_ZASOB"
  7869. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  7870. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  7871. xpath="ID"
  7872. xpath_value="../ID_ZASOB">
  7873. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2863_child"
  7874. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  7875. <ID xpath="ID" xml_id="d11410e2869"/>
  7876. <DESC xpath="DESC" xml_id="d11410e2871"/>
  7877. <DESC_PL xpath="DESC_PL" xml_id="d11410e2873"/>
  7878. </default_db:CRM_LISTA_ZASOBOW>
  7879. </RelatedFeature>
  7880. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e2875"/>
  7881. </default_db:CRM_WSKAZNIK>
  7882. </RelatedFeature>
  7883. </default_db:PROCES_GROUP_1>
  7884. </RelatedFeature>
  7885. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  7886. <RelatedFeatureLoop xml_id="d11410e2877"
  7887. typeNameRealResource="default_db:CRM_PROCES"
  7888. typeName="default_db:PROCES_GROUP_2"
  7889. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  7890. flat_relation_cache_name="ID"
  7891. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7892. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  7893. system_cache__appinfo:maxOccurs="0"
  7894. system_cache__appinfo:minOccurs="0"
  7895. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  7896. xpath="PARENT_ID"
  7897. xpath_value="../ID">
  7898. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  7899. <ogc:Or>
  7900. <ogc:PropertyIsEqualTo>
  7901. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7902. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  7903. </ogc:PropertyIsEqualTo>
  7904. </ogc:Or>
  7905. </simpleTypeMakeOgcFilter>
  7906. <default_db:PROCES_GROUP_2 xml_id="d11410e2877"
  7907. system_cache__appinfo:maxOccurs="0"
  7908. system_cache__appinfo:minOccurs="0"
  7909. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  7910. </RelatedFeatureLoop>
  7911. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  7912. <RelatedFeatureLoop xml_id="d11410e2882"
  7913. typeNameRealResource="default_db:CRM_PROCES"
  7914. typeName="default_db:PROCES_BENEFIT_INFO"
  7915. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  7916. flat_relation_cache_name="ID"
  7917. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7918. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  7919. system_cache__appinfo:maxOccurs="unbounded"
  7920. system_cache__appinfo:minOccurs="0"
  7921. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  7922. xpath="PARENT_ID"
  7923. xpath_value="../ID">
  7924. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  7925. <ogc:Or>
  7926. <ogc:PropertyIsEqualTo>
  7927. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7928. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  7929. </ogc:PropertyIsEqualTo>
  7930. </ogc:Or>
  7931. </simpleTypeMakeOgcFilter>
  7932. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e2882"
  7933. system_cache__appinfo:maxOccurs="unbounded"
  7934. system_cache__appinfo:minOccurs="0"
  7935. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  7936. </RelatedFeatureLoop>
  7937. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  7938. <RelatedFeature xml_id="d11410e2888"
  7939. typeNameRealResource="default_db:CRM_WSKAZNIK"
  7940. typeName="default_db:CRM_WSKAZNIK"
  7941. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  7942. flat_relation_cache_name="ID"
  7943. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  7944. system_cache__appinfo:maxOccurs="unbounded"
  7945. system_cache__appinfo:minOccurs="0"
  7946. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  7947. xpath="ID_PROCES"
  7948. xpath_value="../ID">
  7949. <default_db:CRM_WSKAZNIK xml_id="d11410e2888_child"
  7950. system_cache__appinfo:maxOccurs="unbounded"
  7951. system_cache__appinfo:minOccurs="0"
  7952. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  7953. <ID xpath="ID" xml_id="d11410e2894"/>
  7954. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2896"/>
  7955. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2898"/>
  7956. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  7957. <RelatedFeature xml_id="d11410e2900"
  7958. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  7959. typeName="default_db:CRM_LISTA_ZASOBOW"
  7960. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  7961. flat_relation_cache_name="ID_ZASOB"
  7962. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  7963. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  7964. xpath="ID"
  7965. xpath_value="../ID_ZASOB">
  7966. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2900_child"
  7967. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  7968. <ID xpath="ID" xml_id="d11410e2906"/>
  7969. <DESC xpath="DESC" xml_id="d11410e2908"/>
  7970. <DESC_PL xpath="DESC_PL" xml_id="d11410e2910"/>
  7971. </default_db:CRM_LISTA_ZASOBOW>
  7972. </RelatedFeature>
  7973. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e2912"/>
  7974. </default_db:CRM_WSKAZNIK>
  7975. </RelatedFeature>
  7976. </default_db:PROCES_INIT>
  7977. </RelatedFeature>
  7978. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  7979. <RelatedFeature xml_id="d11410e2914"
  7980. typeNameRealResource="default_db:CRM_PROCES"
  7981. typeName="default_db:PROCES_GROUP_1"
  7982. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  7983. flat_relation_cache_name="ID"
  7984. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  7985. system_cache__appinfo:maxOccurs="0"
  7986. system_cache__appinfo:minOccurs="0"
  7987. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  7988. xpath="PARENT_ID"
  7989. xpath_value="../ID">
  7990. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  7991. <ogc:Or>
  7992. <ogc:PropertyIsEqualTo>
  7993. <ogc:PropertyName>TYPE</ogc:PropertyName>
  7994. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  7995. </ogc:PropertyIsEqualTo>
  7996. </ogc:Or>
  7997. </simpleTypeMakeOgcFilter>
  7998. <default_db:PROCES_GROUP_1 xml_id="d11410e2914_child"
  7999. system_cache__appinfo:maxOccurs="0"
  8000. system_cache__appinfo:minOccurs="0"
  8001. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  8002. <ID xpath="ID" xml_id="d11410e2921"/>
  8003. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2923"/>
  8004. <path xpath="path" xml_id="d11410e2925"/>
  8005. <DESC xpath="DESC" xml_id="d11410e2927"/>
  8006. <TYPE xpath="TYPE" xml_id="d11410e2929"/>
  8007. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  8008. <RelatedFeatureLoop xml_id="d11410e2931"
  8009. typeNameRealResource="default_db:CRM_PROCES"
  8010. typeName="default_db:PROCES"
  8011. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  8012. flat_relation_cache_name="ID"
  8013. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8014. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  8015. system_cache__appinfo:maxOccurs="0"
  8016. system_cache__appinfo:minOccurs="0"
  8017. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  8018. xpath="PARENT_ID"
  8019. xpath_value="../ID">
  8020. <simpleTypeMakeOgcFilter name="PROCES">
  8021. <ogc:Or>
  8022. <ogc:PropertyIsEqualTo>
  8023. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8024. <ogc:Literal>PROCES</ogc:Literal>
  8025. </ogc:PropertyIsEqualTo>
  8026. </ogc:Or>
  8027. </simpleTypeMakeOgcFilter>
  8028. <default_db:PROCES xml_id="d11410e2931"
  8029. system_cache__appinfo:maxOccurs="0"
  8030. system_cache__appinfo:minOccurs="0"
  8031. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  8032. </RelatedFeatureLoop>
  8033. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  8034. <RelatedFeature xml_id="d11410e2936"
  8035. typeNameRealResource="default_db:CRM_PROCES"
  8036. typeName="default_db:PROCES_INIT"
  8037. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  8038. flat_relation_cache_name="ID"
  8039. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8040. system_cache__appinfo:maxOccurs="unbounded"
  8041. system_cache__appinfo:minOccurs="0"
  8042. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  8043. xpath="PARENT_ID"
  8044. xpath_value="../ID">
  8045. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  8046. <ogc:Or>
  8047. <ogc:PropertyIsEqualTo>
  8048. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8049. <ogc:Literal>PROCES_INIT</ogc:Literal>
  8050. </ogc:PropertyIsEqualTo>
  8051. </ogc:Or>
  8052. </simpleTypeMakeOgcFilter>
  8053. <default_db:PROCES_INIT xml_id="d11410e2936_child"
  8054. system_cache__appinfo:maxOccurs="unbounded"
  8055. system_cache__appinfo:minOccurs="0"
  8056. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  8057. <ID xpath="ID" xml_id="d11410e2943"/>
  8058. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e2945"/>
  8059. <path xpath="path" xml_id="d11410e2947"/>
  8060. <DESC xpath="DESC" xml_id="d11410e2949"/>
  8061. <TYPE xpath="TYPE" xml_id="d11410e2951"/>
  8062. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  8063. <RelatedFeatureLoop xml_id="d11410e2953"
  8064. typeNameRealResource="default_db:CRM_PROCES"
  8065. typeName="default_db:PROCES"
  8066. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  8067. flat_relation_cache_name="ID"
  8068. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8069. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  8070. system_cache__appinfo:maxOccurs="unbounded"
  8071. system_cache__appinfo:minOccurs="0"
  8072. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  8073. xpath="PARENT_ID"
  8074. xpath_value="../ID">
  8075. <simpleTypeMakeOgcFilter name="PROCES">
  8076. <ogc:Or>
  8077. <ogc:PropertyIsEqualTo>
  8078. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8079. <ogc:Literal>PROCES</ogc:Literal>
  8080. </ogc:PropertyIsEqualTo>
  8081. </ogc:Or>
  8082. </simpleTypeMakeOgcFilter>
  8083. <default_db:PROCES xml_id="d11410e2953"
  8084. system_cache__appinfo:maxOccurs="unbounded"
  8085. system_cache__appinfo:minOccurs="0"
  8086. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  8087. </RelatedFeatureLoop>
  8088. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  8089. <RelatedFeatureLoop xml_id="d11410e2958"
  8090. typeNameRealResource="default_db:CRM_PROCES"
  8091. typeName="default_db:PROCES_INIT"
  8092. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  8093. flat_relation_cache_name="ID"
  8094. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8095. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  8096. system_cache__appinfo:maxOccurs="0"
  8097. system_cache__appinfo:minOccurs="0"
  8098. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  8099. xpath="PARENT_ID"
  8100. xpath_value="../ID">
  8101. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  8102. <ogc:Or>
  8103. <ogc:PropertyIsEqualTo>
  8104. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8105. <ogc:Literal>PROCES_INIT</ogc:Literal>
  8106. </ogc:PropertyIsEqualTo>
  8107. </ogc:Or>
  8108. </simpleTypeMakeOgcFilter>
  8109. <default_db:PROCES_INIT xml_id="d11410e2958"
  8110. system_cache__appinfo:maxOccurs="0"
  8111. system_cache__appinfo:minOccurs="0"
  8112. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  8113. </RelatedFeatureLoop>
  8114. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  8115. <RelatedFeatureLoop xml_id="d11410e2963"
  8116. typeNameRealResource="default_db:CRM_PROCES"
  8117. typeName="default_db:PROCES_GROUP_1"
  8118. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  8119. flat_relation_cache_name="ID"
  8120. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8121. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  8122. system_cache__appinfo:maxOccurs="0"
  8123. system_cache__appinfo:minOccurs="0"
  8124. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  8125. xpath="PARENT_ID"
  8126. xpath_value="../ID">
  8127. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  8128. <ogc:Or>
  8129. <ogc:PropertyIsEqualTo>
  8130. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8131. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  8132. </ogc:PropertyIsEqualTo>
  8133. </ogc:Or>
  8134. </simpleTypeMakeOgcFilter>
  8135. <default_db:PROCES_GROUP_1 xml_id="d11410e2963"
  8136. system_cache__appinfo:maxOccurs="0"
  8137. system_cache__appinfo:minOccurs="0"
  8138. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  8139. </RelatedFeatureLoop>
  8140. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  8141. <RelatedFeatureLoop xml_id="d11410e2968"
  8142. typeNameRealResource="default_db:CRM_PROCES"
  8143. typeName="default_db:PROCES_GROUP_2"
  8144. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  8145. flat_relation_cache_name="ID"
  8146. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8147. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  8148. system_cache__appinfo:maxOccurs="0"
  8149. system_cache__appinfo:minOccurs="0"
  8150. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  8151. xpath="PARENT_ID"
  8152. xpath_value="../ID">
  8153. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  8154. <ogc:Or>
  8155. <ogc:PropertyIsEqualTo>
  8156. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8157. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  8158. </ogc:PropertyIsEqualTo>
  8159. </ogc:Or>
  8160. </simpleTypeMakeOgcFilter>
  8161. <default_db:PROCES_GROUP_2 xml_id="d11410e2968"
  8162. system_cache__appinfo:maxOccurs="0"
  8163. system_cache__appinfo:minOccurs="0"
  8164. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  8165. </RelatedFeatureLoop>
  8166. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  8167. <RelatedFeatureLoop xml_id="d11410e2973"
  8168. typeNameRealResource="default_db:CRM_PROCES"
  8169. typeName="default_db:PROCES_BENEFIT_INFO"
  8170. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  8171. flat_relation_cache_name="ID"
  8172. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8173. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  8174. system_cache__appinfo:maxOccurs="unbounded"
  8175. system_cache__appinfo:minOccurs="0"
  8176. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  8177. xpath="PARENT_ID"
  8178. xpath_value="../ID">
  8179. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  8180. <ogc:Or>
  8181. <ogc:PropertyIsEqualTo>
  8182. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8183. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  8184. </ogc:PropertyIsEqualTo>
  8185. </ogc:Or>
  8186. </simpleTypeMakeOgcFilter>
  8187. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e2973"
  8188. system_cache__appinfo:maxOccurs="unbounded"
  8189. system_cache__appinfo:minOccurs="0"
  8190. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  8191. </RelatedFeatureLoop>
  8192. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  8193. <RelatedFeature xml_id="d11410e2979"
  8194. typeNameRealResource="default_db:CRM_WSKAZNIK"
  8195. typeName="default_db:CRM_WSKAZNIK"
  8196. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  8197. flat_relation_cache_name="ID"
  8198. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  8199. system_cache__appinfo:maxOccurs="unbounded"
  8200. system_cache__appinfo:minOccurs="0"
  8201. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  8202. xpath="ID_PROCES"
  8203. xpath_value="../ID">
  8204. <default_db:CRM_WSKAZNIK xml_id="d11410e2979_child"
  8205. system_cache__appinfo:maxOccurs="unbounded"
  8206. system_cache__appinfo:minOccurs="0"
  8207. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  8208. <ID xpath="ID" xml_id="d11410e2985"/>
  8209. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e2987"/>
  8210. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e2989"/>
  8211. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  8212. <RelatedFeature xml_id="d11410e2991"
  8213. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  8214. typeName="default_db:CRM_LISTA_ZASOBOW"
  8215. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  8216. flat_relation_cache_name="ID_ZASOB"
  8217. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  8218. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  8219. xpath="ID"
  8220. xpath_value="../ID_ZASOB">
  8221. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e2991_child"
  8222. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  8223. <ID xpath="ID" xml_id="d11410e2997"/>
  8224. <DESC xpath="DESC" xml_id="d11410e2999"/>
  8225. <DESC_PL xpath="DESC_PL" xml_id="d11410e3001"/>
  8226. </default_db:CRM_LISTA_ZASOBOW>
  8227. </RelatedFeature>
  8228. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3003"/>
  8229. </default_db:CRM_WSKAZNIK>
  8230. </RelatedFeature>
  8231. </default_db:PROCES_INIT>
  8232. </RelatedFeature>
  8233. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  8234. <RelatedFeatureLoop xml_id="d11410e3005"
  8235. typeNameRealResource="default_db:CRM_PROCES"
  8236. typeName="default_db:PROCES_GROUP_1"
  8237. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  8238. flat_relation_cache_name="ID"
  8239. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8240. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  8241. system_cache__appinfo:maxOccurs="unbounded"
  8242. system_cache__appinfo:minOccurs="0"
  8243. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  8244. xpath="PARENT_ID"
  8245. xpath_value="../ID">
  8246. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  8247. <ogc:Or>
  8248. <ogc:PropertyIsEqualTo>
  8249. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8250. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  8251. </ogc:PropertyIsEqualTo>
  8252. </ogc:Or>
  8253. </simpleTypeMakeOgcFilter>
  8254. <default_db:PROCES_GROUP_1 xml_id="d11410e3005"
  8255. system_cache__appinfo:maxOccurs="unbounded"
  8256. system_cache__appinfo:minOccurs="0"
  8257. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  8258. </RelatedFeatureLoop>
  8259. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  8260. <RelatedFeatureLoop xml_id="d11410e3010"
  8261. typeNameRealResource="default_db:CRM_PROCES"
  8262. typeName="default_db:PROCES_GROUP_2"
  8263. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  8264. flat_relation_cache_name="ID"
  8265. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8266. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  8267. system_cache__appinfo:maxOccurs="unbounded"
  8268. system_cache__appinfo:minOccurs="0"
  8269. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  8270. xpath="PARENT_ID"
  8271. xpath_value="../ID">
  8272. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  8273. <ogc:Or>
  8274. <ogc:PropertyIsEqualTo>
  8275. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8276. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  8277. </ogc:PropertyIsEqualTo>
  8278. </ogc:Or>
  8279. </simpleTypeMakeOgcFilter>
  8280. <default_db:PROCES_GROUP_2 xml_id="d11410e3010"
  8281. system_cache__appinfo:maxOccurs="unbounded"
  8282. system_cache__appinfo:minOccurs="0"
  8283. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  8284. </RelatedFeatureLoop>
  8285. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  8286. <RelatedFeatureLoop xml_id="d11410e3015"
  8287. typeNameRealResource="default_db:CRM_PROCES"
  8288. typeName="default_db:PROCES_BENEFIT_INFO"
  8289. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  8290. flat_relation_cache_name="ID"
  8291. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8292. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  8293. system_cache__appinfo:maxOccurs="1"
  8294. system_cache__appinfo:minOccurs="0"
  8295. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  8296. xpath="PARENT_ID"
  8297. xpath_value="../ID">
  8298. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  8299. <ogc:Or>
  8300. <ogc:PropertyIsEqualTo>
  8301. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8302. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  8303. </ogc:PropertyIsEqualTo>
  8304. </ogc:Or>
  8305. </simpleTypeMakeOgcFilter>
  8306. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3015"
  8307. system_cache__appinfo:maxOccurs="1"
  8308. system_cache__appinfo:minOccurs="0"
  8309. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  8310. </RelatedFeatureLoop>
  8311. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  8312. <RelatedFeature xml_id="d11410e3021"
  8313. typeNameRealResource="default_db:CRM_WSKAZNIK"
  8314. typeName="default_db:CRM_WSKAZNIK"
  8315. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  8316. flat_relation_cache_name="ID"
  8317. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  8318. system_cache__appinfo:maxOccurs="0"
  8319. system_cache__appinfo:minOccurs="0"
  8320. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  8321. xpath="ID_PROCES"
  8322. xpath_value="../ID">
  8323. <default_db:CRM_WSKAZNIK xml_id="d11410e3021_child"
  8324. system_cache__appinfo:maxOccurs="0"
  8325. system_cache__appinfo:minOccurs="0"
  8326. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  8327. <ID xpath="ID" xml_id="d11410e3027"/>
  8328. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e3029"/>
  8329. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e3031"/>
  8330. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  8331. <RelatedFeature xml_id="d11410e3033"
  8332. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  8333. typeName="default_db:CRM_LISTA_ZASOBOW"
  8334. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  8335. flat_relation_cache_name="ID_ZASOB"
  8336. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  8337. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  8338. xpath="ID"
  8339. xpath_value="../ID_ZASOB">
  8340. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e3033_child"
  8341. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  8342. <ID xpath="ID" xml_id="d11410e3039"/>
  8343. <DESC xpath="DESC" xml_id="d11410e3041"/>
  8344. <DESC_PL xpath="DESC_PL" xml_id="d11410e3043"/>
  8345. </default_db:CRM_LISTA_ZASOBOW>
  8346. </RelatedFeature>
  8347. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3045"/>
  8348. </default_db:CRM_WSKAZNIK>
  8349. </RelatedFeature>
  8350. </default_db:PROCES_GROUP_1>
  8351. </RelatedFeature>
  8352. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  8353. <RelatedFeatureLoop xml_id="d11410e3047"
  8354. typeNameRealResource="default_db:CRM_PROCES"
  8355. typeName="default_db:PROCES_GROUP_2"
  8356. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  8357. flat_relation_cache_name="ID"
  8358. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8359. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  8360. system_cache__appinfo:maxOccurs="0"
  8361. system_cache__appinfo:minOccurs="0"
  8362. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  8363. xpath="PARENT_ID"
  8364. xpath_value="../ID">
  8365. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  8366. <ogc:Or>
  8367. <ogc:PropertyIsEqualTo>
  8368. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8369. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  8370. </ogc:PropertyIsEqualTo>
  8371. </ogc:Or>
  8372. </simpleTypeMakeOgcFilter>
  8373. <default_db:PROCES_GROUP_2 xml_id="d11410e3047"
  8374. system_cache__appinfo:maxOccurs="0"
  8375. system_cache__appinfo:minOccurs="0"
  8376. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  8377. </RelatedFeatureLoop>
  8378. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  8379. <RelatedFeatureLoop xml_id="d11410e3052"
  8380. typeNameRealResource="default_db:CRM_PROCES"
  8381. typeName="default_db:PROCES_BENEFIT_INFO"
  8382. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  8383. flat_relation_cache_name="ID"
  8384. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8385. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  8386. system_cache__appinfo:maxOccurs="unbounded"
  8387. system_cache__appinfo:minOccurs="0"
  8388. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  8389. xpath="PARENT_ID"
  8390. xpath_value="../ID">
  8391. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  8392. <ogc:Or>
  8393. <ogc:PropertyIsEqualTo>
  8394. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8395. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  8396. </ogc:PropertyIsEqualTo>
  8397. </ogc:Or>
  8398. </simpleTypeMakeOgcFilter>
  8399. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3052"
  8400. system_cache__appinfo:maxOccurs="unbounded"
  8401. system_cache__appinfo:minOccurs="0"
  8402. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  8403. </RelatedFeatureLoop>
  8404. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  8405. <RelatedFeature xml_id="d11410e3058"
  8406. typeNameRealResource="default_db:CRM_WSKAZNIK"
  8407. typeName="default_db:CRM_WSKAZNIK"
  8408. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  8409. flat_relation_cache_name="ID"
  8410. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  8411. system_cache__appinfo:maxOccurs="0"
  8412. system_cache__appinfo:minOccurs="0"
  8413. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  8414. xpath="ID_PROCES"
  8415. xpath_value="../ID">
  8416. <default_db:CRM_WSKAZNIK xml_id="d11410e3058_child"
  8417. system_cache__appinfo:maxOccurs="0"
  8418. system_cache__appinfo:minOccurs="0"
  8419. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  8420. <ID xpath="ID" xml_id="d11410e3064"/>
  8421. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e3066"/>
  8422. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e3068"/>
  8423. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  8424. <RelatedFeature xml_id="d11410e3070"
  8425. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  8426. typeName="default_db:CRM_LISTA_ZASOBOW"
  8427. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  8428. flat_relation_cache_name="ID_ZASOB"
  8429. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  8430. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  8431. xpath="ID"
  8432. xpath_value="../ID_ZASOB">
  8433. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e3070_child"
  8434. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  8435. <ID xpath="ID" xml_id="d11410e3076"/>
  8436. <DESC xpath="DESC" xml_id="d11410e3078"/>
  8437. <DESC_PL xpath="DESC_PL" xml_id="d11410e3080"/>
  8438. </default_db:CRM_LISTA_ZASOBOW>
  8439. </RelatedFeature>
  8440. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3082"/>
  8441. </default_db:CRM_WSKAZNIK>
  8442. </RelatedFeature>
  8443. </default_db:PROCES_BENEFIT_INFO>
  8444. </RelatedFeature>
  8445. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  8446. <RelatedFeature xml_id="d11410e3085"
  8447. typeNameRealResource="default_db:CRM_WSKAZNIK"
  8448. typeName="default_db:CRM_WSKAZNIK"
  8449. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  8450. flat_relation_cache_name="ID"
  8451. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  8452. system_cache__appinfo:maxOccurs="0"
  8453. system_cache__appinfo:minOccurs="0"
  8454. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  8455. xpath="ID_PROCES"
  8456. xpath_value="../ID">
  8457. <default_db:CRM_WSKAZNIK xml_id="d11410e3085_child"
  8458. system_cache__appinfo:maxOccurs="0"
  8459. system_cache__appinfo:minOccurs="0"
  8460. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  8461. <ID xpath="ID" xml_id="d11410e3091"/>
  8462. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e3093"/>
  8463. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e3095"/>
  8464. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  8465. <RelatedFeature xml_id="d11410e3097"
  8466. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  8467. typeName="default_db:CRM_LISTA_ZASOBOW"
  8468. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  8469. flat_relation_cache_name="ID_ZASOB"
  8470. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  8471. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  8472. xpath="ID"
  8473. xpath_value="../ID_ZASOB">
  8474. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e3097_child"
  8475. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  8476. <ID xpath="ID" xml_id="d11410e3103"/>
  8477. <DESC xpath="DESC" xml_id="d11410e3105"/>
  8478. <DESC_PL xpath="DESC_PL" xml_id="d11410e3107"/>
  8479. </default_db:CRM_LISTA_ZASOBOW>
  8480. </RelatedFeature>
  8481. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3109"/>
  8482. </default_db:CRM_WSKAZNIK>
  8483. </RelatedFeature>
  8484. </default_db:PROCES_GROUP_2>
  8485. </RelatedFeature>
  8486. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  8487. <RelatedFeature xml_id="d11410e3111"
  8488. typeNameRealResource="default_db:CRM_PROCES"
  8489. typeName="default_db:PROCES_BENEFIT_INFO"
  8490. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  8491. flat_relation_cache_name="ID"
  8492. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8493. system_cache__appinfo:maxOccurs="1"
  8494. system_cache__appinfo:minOccurs="0"
  8495. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  8496. xpath="PARENT_ID"
  8497. xpath_value="../ID">
  8498. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  8499. <ogc:Or>
  8500. <ogc:PropertyIsEqualTo>
  8501. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8502. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  8503. </ogc:PropertyIsEqualTo>
  8504. </ogc:Or>
  8505. </simpleTypeMakeOgcFilter>
  8506. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3111_child"
  8507. system_cache__appinfo:maxOccurs="1"
  8508. system_cache__appinfo:minOccurs="0"
  8509. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1">
  8510. <ID xpath="ID" xml_id="d11410e3118"/>
  8511. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3120"/>
  8512. <path xpath="path" xml_id="d11410e3122"/>
  8513. <DESC xpath="DESC" xml_id="d11410e3124"/>
  8514. <TYPE xpath="TYPE" xml_id="d11410e3126"/>
  8515. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  8516. <RelatedFeatureLoop xml_id="d11410e3128"
  8517. typeNameRealResource="default_db:CRM_PROCES"
  8518. typeName="default_db:PROCES"
  8519. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  8520. flat_relation_cache_name="ID"
  8521. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8522. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  8523. system_cache__appinfo:maxOccurs="0"
  8524. system_cache__appinfo:minOccurs="0"
  8525. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  8526. xpath="PARENT_ID"
  8527. xpath_value="../ID">
  8528. <simpleTypeMakeOgcFilter name="PROCES">
  8529. <ogc:Or>
  8530. <ogc:PropertyIsEqualTo>
  8531. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8532. <ogc:Literal>PROCES</ogc:Literal>
  8533. </ogc:PropertyIsEqualTo>
  8534. </ogc:Or>
  8535. </simpleTypeMakeOgcFilter>
  8536. <default_db:PROCES xml_id="d11410e3128"
  8537. system_cache__appinfo:maxOccurs="0"
  8538. system_cache__appinfo:minOccurs="0"
  8539. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  8540. </RelatedFeatureLoop>
  8541. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  8542. <RelatedFeature xml_id="d11410e3133"
  8543. typeNameRealResource="default_db:CRM_PROCES"
  8544. typeName="default_db:PROCES_INIT"
  8545. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  8546. flat_relation_cache_name="ID"
  8547. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8548. system_cache__appinfo:maxOccurs="0"
  8549. system_cache__appinfo:minOccurs="0"
  8550. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  8551. xpath="PARENT_ID"
  8552. xpath_value="../ID">
  8553. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  8554. <ogc:Or>
  8555. <ogc:PropertyIsEqualTo>
  8556. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8557. <ogc:Literal>PROCES_INIT</ogc:Literal>
  8558. </ogc:PropertyIsEqualTo>
  8559. </ogc:Or>
  8560. </simpleTypeMakeOgcFilter>
  8561. <default_db:PROCES_INIT xml_id="d11410e3133_child"
  8562. system_cache__appinfo:maxOccurs="0"
  8563. system_cache__appinfo:minOccurs="0"
  8564. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  8565. <ID xpath="ID" xml_id="d11410e3140"/>
  8566. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3142"/>
  8567. <path xpath="path" xml_id="d11410e3144"/>
  8568. <DESC xpath="DESC" xml_id="d11410e3146"/>
  8569. <TYPE xpath="TYPE" xml_id="d11410e3148"/>
  8570. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  8571. <RelatedFeatureLoop xml_id="d11410e3150"
  8572. typeNameRealResource="default_db:CRM_PROCES"
  8573. typeName="default_db:PROCES"
  8574. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  8575. flat_relation_cache_name="ID"
  8576. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8577. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  8578. system_cache__appinfo:maxOccurs="unbounded"
  8579. system_cache__appinfo:minOccurs="0"
  8580. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  8581. xpath="PARENT_ID"
  8582. xpath_value="../ID">
  8583. <simpleTypeMakeOgcFilter name="PROCES">
  8584. <ogc:Or>
  8585. <ogc:PropertyIsEqualTo>
  8586. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8587. <ogc:Literal>PROCES</ogc:Literal>
  8588. </ogc:PropertyIsEqualTo>
  8589. </ogc:Or>
  8590. </simpleTypeMakeOgcFilter>
  8591. <default_db:PROCES xml_id="d11410e3150"
  8592. system_cache__appinfo:maxOccurs="unbounded"
  8593. system_cache__appinfo:minOccurs="0"
  8594. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  8595. </RelatedFeatureLoop>
  8596. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  8597. <RelatedFeatureLoop xml_id="d11410e3155"
  8598. typeNameRealResource="default_db:CRM_PROCES"
  8599. typeName="default_db:PROCES_INIT"
  8600. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  8601. flat_relation_cache_name="ID"
  8602. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8603. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  8604. system_cache__appinfo:maxOccurs="0"
  8605. system_cache__appinfo:minOccurs="0"
  8606. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  8607. xpath="PARENT_ID"
  8608. xpath_value="../ID">
  8609. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  8610. <ogc:Or>
  8611. <ogc:PropertyIsEqualTo>
  8612. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8613. <ogc:Literal>PROCES_INIT</ogc:Literal>
  8614. </ogc:PropertyIsEqualTo>
  8615. </ogc:Or>
  8616. </simpleTypeMakeOgcFilter>
  8617. <default_db:PROCES_INIT xml_id="d11410e3155"
  8618. system_cache__appinfo:maxOccurs="0"
  8619. system_cache__appinfo:minOccurs="0"
  8620. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  8621. </RelatedFeatureLoop>
  8622. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  8623. <RelatedFeature xml_id="d11410e3160"
  8624. typeNameRealResource="default_db:CRM_PROCES"
  8625. typeName="default_db:PROCES_GROUP_1"
  8626. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  8627. flat_relation_cache_name="ID"
  8628. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8629. system_cache__appinfo:maxOccurs="0"
  8630. system_cache__appinfo:minOccurs="0"
  8631. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  8632. xpath="PARENT_ID"
  8633. xpath_value="../ID">
  8634. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  8635. <ogc:Or>
  8636. <ogc:PropertyIsEqualTo>
  8637. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8638. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  8639. </ogc:PropertyIsEqualTo>
  8640. </ogc:Or>
  8641. </simpleTypeMakeOgcFilter>
  8642. <default_db:PROCES_GROUP_1 xml_id="d11410e3160_child"
  8643. system_cache__appinfo:maxOccurs="0"
  8644. system_cache__appinfo:minOccurs="0"
  8645. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  8646. <ID xpath="ID" xml_id="d11410e3167"/>
  8647. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3169"/>
  8648. <path xpath="path" xml_id="d11410e3171"/>
  8649. <DESC xpath="DESC" xml_id="d11410e3173"/>
  8650. <TYPE xpath="TYPE" xml_id="d11410e3175"/>
  8651. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  8652. <RelatedFeatureLoop xml_id="d11410e3177"
  8653. typeNameRealResource="default_db:CRM_PROCES"
  8654. typeName="default_db:PROCES"
  8655. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  8656. flat_relation_cache_name="ID"
  8657. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8658. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  8659. system_cache__appinfo:maxOccurs="0"
  8660. system_cache__appinfo:minOccurs="0"
  8661. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  8662. xpath="PARENT_ID"
  8663. xpath_value="../ID">
  8664. <simpleTypeMakeOgcFilter name="PROCES">
  8665. <ogc:Or>
  8666. <ogc:PropertyIsEqualTo>
  8667. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8668. <ogc:Literal>PROCES</ogc:Literal>
  8669. </ogc:PropertyIsEqualTo>
  8670. </ogc:Or>
  8671. </simpleTypeMakeOgcFilter>
  8672. <default_db:PROCES xml_id="d11410e3177"
  8673. system_cache__appinfo:maxOccurs="0"
  8674. system_cache__appinfo:minOccurs="0"
  8675. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  8676. </RelatedFeatureLoop>
  8677. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  8678. <RelatedFeatureLoop xml_id="d11410e3182"
  8679. typeNameRealResource="default_db:CRM_PROCES"
  8680. typeName="default_db:PROCES_INIT"
  8681. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  8682. flat_relation_cache_name="ID"
  8683. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8684. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  8685. system_cache__appinfo:maxOccurs="unbounded"
  8686. system_cache__appinfo:minOccurs="0"
  8687. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  8688. xpath="PARENT_ID"
  8689. xpath_value="../ID">
  8690. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  8691. <ogc:Or>
  8692. <ogc:PropertyIsEqualTo>
  8693. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8694. <ogc:Literal>PROCES_INIT</ogc:Literal>
  8695. </ogc:PropertyIsEqualTo>
  8696. </ogc:Or>
  8697. </simpleTypeMakeOgcFilter>
  8698. <default_db:PROCES_INIT xml_id="d11410e3182"
  8699. system_cache__appinfo:maxOccurs="unbounded"
  8700. system_cache__appinfo:minOccurs="0"
  8701. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  8702. </RelatedFeatureLoop>
  8703. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  8704. <RelatedFeatureLoop xml_id="d11410e3187"
  8705. typeNameRealResource="default_db:CRM_PROCES"
  8706. typeName="default_db:PROCES_GROUP_1"
  8707. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  8708. flat_relation_cache_name="ID"
  8709. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8710. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  8711. system_cache__appinfo:maxOccurs="unbounded"
  8712. system_cache__appinfo:minOccurs="0"
  8713. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  8714. xpath="PARENT_ID"
  8715. xpath_value="../ID">
  8716. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  8717. <ogc:Or>
  8718. <ogc:PropertyIsEqualTo>
  8719. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8720. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  8721. </ogc:PropertyIsEqualTo>
  8722. </ogc:Or>
  8723. </simpleTypeMakeOgcFilter>
  8724. <default_db:PROCES_GROUP_1 xml_id="d11410e3187"
  8725. system_cache__appinfo:maxOccurs="unbounded"
  8726. system_cache__appinfo:minOccurs="0"
  8727. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  8728. </RelatedFeatureLoop>
  8729. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  8730. <RelatedFeature xml_id="d11410e3192"
  8731. typeNameRealResource="default_db:CRM_PROCES"
  8732. typeName="default_db:PROCES_GROUP_2"
  8733. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  8734. flat_relation_cache_name="ID"
  8735. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8736. system_cache__appinfo:maxOccurs="unbounded"
  8737. system_cache__appinfo:minOccurs="0"
  8738. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  8739. xpath="PARENT_ID"
  8740. xpath_value="../ID">
  8741. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  8742. <ogc:Or>
  8743. <ogc:PropertyIsEqualTo>
  8744. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8745. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  8746. </ogc:PropertyIsEqualTo>
  8747. </ogc:Or>
  8748. </simpleTypeMakeOgcFilter>
  8749. <default_db:PROCES_GROUP_2 xml_id="d11410e3192_child"
  8750. system_cache__appinfo:maxOccurs="unbounded"
  8751. system_cache__appinfo:minOccurs="0"
  8752. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  8753. <ID xpath="ID" xml_id="d11410e3199"/>
  8754. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3201"/>
  8755. <path xpath="path" xml_id="d11410e3203"/>
  8756. <DESC xpath="DESC" xml_id="d11410e3205"/>
  8757. <TYPE xpath="TYPE" xml_id="d11410e3207"/>
  8758. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  8759. <RelatedFeatureLoop xml_id="d11410e3209"
  8760. typeNameRealResource="default_db:CRM_PROCES"
  8761. typeName="default_db:PROCES"
  8762. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  8763. flat_relation_cache_name="ID"
  8764. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8765. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  8766. system_cache__appinfo:maxOccurs="0"
  8767. system_cache__appinfo:minOccurs="0"
  8768. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  8769. xpath="PARENT_ID"
  8770. xpath_value="../ID">
  8771. <simpleTypeMakeOgcFilter name="PROCES">
  8772. <ogc:Or>
  8773. <ogc:PropertyIsEqualTo>
  8774. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8775. <ogc:Literal>PROCES</ogc:Literal>
  8776. </ogc:PropertyIsEqualTo>
  8777. </ogc:Or>
  8778. </simpleTypeMakeOgcFilter>
  8779. <default_db:PROCES xml_id="d11410e3209"
  8780. system_cache__appinfo:maxOccurs="0"
  8781. system_cache__appinfo:minOccurs="0"
  8782. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  8783. </RelatedFeatureLoop>
  8784. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  8785. <RelatedFeatureLoop xml_id="d11410e3214"
  8786. typeNameRealResource="default_db:CRM_PROCES"
  8787. typeName="default_db:PROCES_INIT"
  8788. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  8789. flat_relation_cache_name="ID"
  8790. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8791. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  8792. system_cache__appinfo:maxOccurs="unbounded"
  8793. system_cache__appinfo:minOccurs="0"
  8794. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  8795. xpath="PARENT_ID"
  8796. xpath_value="../ID">
  8797. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  8798. <ogc:Or>
  8799. <ogc:PropertyIsEqualTo>
  8800. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8801. <ogc:Literal>PROCES_INIT</ogc:Literal>
  8802. </ogc:PropertyIsEqualTo>
  8803. </ogc:Or>
  8804. </simpleTypeMakeOgcFilter>
  8805. <default_db:PROCES_INIT xml_id="d11410e3214"
  8806. system_cache__appinfo:maxOccurs="unbounded"
  8807. system_cache__appinfo:minOccurs="0"
  8808. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  8809. </RelatedFeatureLoop>
  8810. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  8811. <RelatedFeatureLoop xml_id="d11410e3219"
  8812. typeNameRealResource="default_db:CRM_PROCES"
  8813. typeName="default_db:PROCES_GROUP_1"
  8814. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  8815. flat_relation_cache_name="ID"
  8816. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8817. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  8818. system_cache__appinfo:maxOccurs="0"
  8819. system_cache__appinfo:minOccurs="0"
  8820. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  8821. xpath="PARENT_ID"
  8822. xpath_value="../ID">
  8823. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  8824. <ogc:Or>
  8825. <ogc:PropertyIsEqualTo>
  8826. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8827. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  8828. </ogc:PropertyIsEqualTo>
  8829. </ogc:Or>
  8830. </simpleTypeMakeOgcFilter>
  8831. <default_db:PROCES_GROUP_1 xml_id="d11410e3219"
  8832. system_cache__appinfo:maxOccurs="0"
  8833. system_cache__appinfo:minOccurs="0"
  8834. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  8835. </RelatedFeatureLoop>
  8836. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  8837. <RelatedFeatureLoop xml_id="d11410e3224"
  8838. typeNameRealResource="default_db:CRM_PROCES"
  8839. typeName="default_db:PROCES_GROUP_2"
  8840. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  8841. flat_relation_cache_name="ID"
  8842. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8843. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  8844. system_cache__appinfo:maxOccurs="unbounded"
  8845. system_cache__appinfo:minOccurs="0"
  8846. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  8847. xpath="PARENT_ID"
  8848. xpath_value="../ID">
  8849. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  8850. <ogc:Or>
  8851. <ogc:PropertyIsEqualTo>
  8852. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8853. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  8854. </ogc:PropertyIsEqualTo>
  8855. </ogc:Or>
  8856. </simpleTypeMakeOgcFilter>
  8857. <default_db:PROCES_GROUP_2 xml_id="d11410e3224"
  8858. system_cache__appinfo:maxOccurs="unbounded"
  8859. system_cache__appinfo:minOccurs="0"
  8860. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  8861. </RelatedFeatureLoop>
  8862. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  8863. <RelatedFeatureLoop xml_id="d11410e3229"
  8864. typeNameRealResource="default_db:CRM_PROCES"
  8865. typeName="default_db:PROCES_BENEFIT_INFO"
  8866. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  8867. flat_relation_cache_name="ID"
  8868. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8869. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  8870. system_cache__appinfo:maxOccurs="1"
  8871. system_cache__appinfo:minOccurs="0"
  8872. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  8873. xpath="PARENT_ID"
  8874. xpath_value="../ID">
  8875. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  8876. <ogc:Or>
  8877. <ogc:PropertyIsEqualTo>
  8878. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8879. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  8880. </ogc:PropertyIsEqualTo>
  8881. </ogc:Or>
  8882. </simpleTypeMakeOgcFilter>
  8883. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3229"
  8884. system_cache__appinfo:maxOccurs="1"
  8885. system_cache__appinfo:minOccurs="0"
  8886. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  8887. </RelatedFeatureLoop>
  8888. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  8889. <RelatedFeature xml_id="d11410e3235"
  8890. typeNameRealResource="default_db:CRM_WSKAZNIK"
  8891. typeName="default_db:CRM_WSKAZNIK"
  8892. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  8893. flat_relation_cache_name="ID"
  8894. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  8895. system_cache__appinfo:maxOccurs="0"
  8896. system_cache__appinfo:minOccurs="0"
  8897. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  8898. xpath="ID_PROCES"
  8899. xpath_value="../ID">
  8900. <default_db:CRM_WSKAZNIK xml_id="d11410e3235_child"
  8901. system_cache__appinfo:maxOccurs="0"
  8902. system_cache__appinfo:minOccurs="0"
  8903. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  8904. <ID xpath="ID" xml_id="d11410e3241"/>
  8905. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e3243"/>
  8906. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e3245"/>
  8907. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  8908. <RelatedFeature xml_id="d11410e3247"
  8909. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  8910. typeName="default_db:CRM_LISTA_ZASOBOW"
  8911. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  8912. flat_relation_cache_name="ID_ZASOB"
  8913. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  8914. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  8915. xpath="ID"
  8916. xpath_value="../ID_ZASOB">
  8917. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e3247_child"
  8918. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  8919. <ID xpath="ID" xml_id="d11410e3253"/>
  8920. <DESC xpath="DESC" xml_id="d11410e3255"/>
  8921. <DESC_PL xpath="DESC_PL" xml_id="d11410e3257"/>
  8922. </default_db:CRM_LISTA_ZASOBOW>
  8923. </RelatedFeature>
  8924. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3259"/>
  8925. </default_db:CRM_WSKAZNIK>
  8926. </RelatedFeature>
  8927. </default_db:PROCES_GROUP_2>
  8928. </RelatedFeature>
  8929. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  8930. <RelatedFeatureLoop xml_id="d11410e3261"
  8931. typeNameRealResource="default_db:CRM_PROCES"
  8932. typeName="default_db:PROCES_BENEFIT_INFO"
  8933. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  8934. flat_relation_cache_name="ID"
  8935. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  8936. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  8937. system_cache__appinfo:maxOccurs="1"
  8938. system_cache__appinfo:minOccurs="0"
  8939. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  8940. xpath="PARENT_ID"
  8941. xpath_value="../ID">
  8942. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  8943. <ogc:Or>
  8944. <ogc:PropertyIsEqualTo>
  8945. <ogc:PropertyName>TYPE</ogc:PropertyName>
  8946. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  8947. </ogc:PropertyIsEqualTo>
  8948. </ogc:Or>
  8949. </simpleTypeMakeOgcFilter>
  8950. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3261"
  8951. system_cache__appinfo:maxOccurs="1"
  8952. system_cache__appinfo:minOccurs="0"
  8953. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  8954. </RelatedFeatureLoop>
  8955. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  8956. <RelatedFeature xml_id="d11410e3267"
  8957. typeNameRealResource="default_db:CRM_WSKAZNIK"
  8958. typeName="default_db:CRM_WSKAZNIK"
  8959. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  8960. flat_relation_cache_name="ID"
  8961. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  8962. system_cache__appinfo:maxOccurs="0"
  8963. system_cache__appinfo:minOccurs="0"
  8964. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  8965. xpath="ID_PROCES"
  8966. xpath_value="../ID">
  8967. <default_db:CRM_WSKAZNIK xml_id="d11410e3267_child"
  8968. system_cache__appinfo:maxOccurs="0"
  8969. system_cache__appinfo:minOccurs="0"
  8970. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  8971. <ID xpath="ID" xml_id="d11410e3273"/>
  8972. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e3275"/>
  8973. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e3277"/>
  8974. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  8975. <RelatedFeature xml_id="d11410e3279"
  8976. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  8977. typeName="default_db:CRM_LISTA_ZASOBOW"
  8978. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  8979. flat_relation_cache_name="ID_ZASOB"
  8980. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  8981. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  8982. xpath="ID"
  8983. xpath_value="../ID_ZASOB">
  8984. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e3279_child"
  8985. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  8986. <ID xpath="ID" xml_id="d11410e3285"/>
  8987. <DESC xpath="DESC" xml_id="d11410e3287"/>
  8988. <DESC_PL xpath="DESC_PL" xml_id="d11410e3289"/>
  8989. </default_db:CRM_LISTA_ZASOBOW>
  8990. </RelatedFeature>
  8991. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3291"/>
  8992. </default_db:CRM_WSKAZNIK>
  8993. </RelatedFeature>
  8994. </default_db:PROCES_GROUP_1>
  8995. </RelatedFeature>
  8996. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  8997. <RelatedFeature xml_id="d11410e3293"
  8998. typeNameRealResource="default_db:CRM_PROCES"
  8999. typeName="default_db:PROCES_GROUP_2"
  9000. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  9001. flat_relation_cache_name="ID"
  9002. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9003. system_cache__appinfo:maxOccurs="0"
  9004. system_cache__appinfo:minOccurs="0"
  9005. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  9006. xpath="PARENT_ID"
  9007. xpath_value="../ID">
  9008. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  9009. <ogc:Or>
  9010. <ogc:PropertyIsEqualTo>
  9011. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9012. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  9013. </ogc:PropertyIsEqualTo>
  9014. </ogc:Or>
  9015. </simpleTypeMakeOgcFilter>
  9016. <default_db:PROCES_GROUP_2 xml_id="d11410e3293_child"
  9017. system_cache__appinfo:maxOccurs="0"
  9018. system_cache__appinfo:minOccurs="0"
  9019. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  9020. <ID xpath="ID" xml_id="d11410e3300"/>
  9021. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3302"/>
  9022. <path xpath="path" xml_id="d11410e3304"/>
  9023. <DESC xpath="DESC" xml_id="d11410e3306"/>
  9024. <TYPE xpath="TYPE" xml_id="d11410e3308"/>
  9025. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  9026. <RelatedFeatureLoop xml_id="d11410e3310"
  9027. typeNameRealResource="default_db:CRM_PROCES"
  9028. typeName="default_db:PROCES"
  9029. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  9030. flat_relation_cache_name="ID"
  9031. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9032. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  9033. system_cache__appinfo:maxOccurs="0"
  9034. system_cache__appinfo:minOccurs="0"
  9035. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  9036. xpath="PARENT_ID"
  9037. xpath_value="../ID">
  9038. <simpleTypeMakeOgcFilter name="PROCES">
  9039. <ogc:Or>
  9040. <ogc:PropertyIsEqualTo>
  9041. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9042. <ogc:Literal>PROCES</ogc:Literal>
  9043. </ogc:PropertyIsEqualTo>
  9044. </ogc:Or>
  9045. </simpleTypeMakeOgcFilter>
  9046. <default_db:PROCES xml_id="d11410e3310"
  9047. system_cache__appinfo:maxOccurs="0"
  9048. system_cache__appinfo:minOccurs="0"
  9049. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  9050. </RelatedFeatureLoop>
  9051. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  9052. <RelatedFeatureLoop xml_id="d11410e3315"
  9053. typeNameRealResource="default_db:CRM_PROCES"
  9054. typeName="default_db:PROCES_INIT"
  9055. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  9056. flat_relation_cache_name="ID"
  9057. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9058. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  9059. system_cache__appinfo:maxOccurs="unbounded"
  9060. system_cache__appinfo:minOccurs="0"
  9061. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  9062. xpath="PARENT_ID"
  9063. xpath_value="../ID">
  9064. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  9065. <ogc:Or>
  9066. <ogc:PropertyIsEqualTo>
  9067. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9068. <ogc:Literal>PROCES_INIT</ogc:Literal>
  9069. </ogc:PropertyIsEqualTo>
  9070. </ogc:Or>
  9071. </simpleTypeMakeOgcFilter>
  9072. <default_db:PROCES_INIT xml_id="d11410e3315"
  9073. system_cache__appinfo:maxOccurs="unbounded"
  9074. system_cache__appinfo:minOccurs="0"
  9075. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  9076. </RelatedFeatureLoop>
  9077. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  9078. <RelatedFeature xml_id="d11410e3320"
  9079. typeNameRealResource="default_db:CRM_PROCES"
  9080. typeName="default_db:PROCES_GROUP_1"
  9081. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  9082. flat_relation_cache_name="ID"
  9083. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9084. system_cache__appinfo:maxOccurs="0"
  9085. system_cache__appinfo:minOccurs="0"
  9086. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  9087. xpath="PARENT_ID"
  9088. xpath_value="../ID">
  9089. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  9090. <ogc:Or>
  9091. <ogc:PropertyIsEqualTo>
  9092. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9093. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  9094. </ogc:PropertyIsEqualTo>
  9095. </ogc:Or>
  9096. </simpleTypeMakeOgcFilter>
  9097. <default_db:PROCES_GROUP_1 xml_id="d11410e3320_child"
  9098. system_cache__appinfo:maxOccurs="0"
  9099. system_cache__appinfo:minOccurs="0"
  9100. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  9101. <ID xpath="ID" xml_id="d11410e3327"/>
  9102. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3329"/>
  9103. <path xpath="path" xml_id="d11410e3331"/>
  9104. <DESC xpath="DESC" xml_id="d11410e3333"/>
  9105. <TYPE xpath="TYPE" xml_id="d11410e3335"/>
  9106. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  9107. <RelatedFeatureLoop xml_id="d11410e3337"
  9108. typeNameRealResource="default_db:CRM_PROCES"
  9109. typeName="default_db:PROCES"
  9110. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  9111. flat_relation_cache_name="ID"
  9112. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9113. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  9114. system_cache__appinfo:maxOccurs="0"
  9115. system_cache__appinfo:minOccurs="0"
  9116. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  9117. xpath="PARENT_ID"
  9118. xpath_value="../ID">
  9119. <simpleTypeMakeOgcFilter name="PROCES">
  9120. <ogc:Or>
  9121. <ogc:PropertyIsEqualTo>
  9122. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9123. <ogc:Literal>PROCES</ogc:Literal>
  9124. </ogc:PropertyIsEqualTo>
  9125. </ogc:Or>
  9126. </simpleTypeMakeOgcFilter>
  9127. <default_db:PROCES xml_id="d11410e3337"
  9128. system_cache__appinfo:maxOccurs="0"
  9129. system_cache__appinfo:minOccurs="0"
  9130. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  9131. </RelatedFeatureLoop>
  9132. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  9133. <RelatedFeatureLoop xml_id="d11410e3342"
  9134. typeNameRealResource="default_db:CRM_PROCES"
  9135. typeName="default_db:PROCES_INIT"
  9136. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  9137. flat_relation_cache_name="ID"
  9138. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9139. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  9140. system_cache__appinfo:maxOccurs="unbounded"
  9141. system_cache__appinfo:minOccurs="0"
  9142. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  9143. xpath="PARENT_ID"
  9144. xpath_value="../ID">
  9145. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  9146. <ogc:Or>
  9147. <ogc:PropertyIsEqualTo>
  9148. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9149. <ogc:Literal>PROCES_INIT</ogc:Literal>
  9150. </ogc:PropertyIsEqualTo>
  9151. </ogc:Or>
  9152. </simpleTypeMakeOgcFilter>
  9153. <default_db:PROCES_INIT xml_id="d11410e3342"
  9154. system_cache__appinfo:maxOccurs="unbounded"
  9155. system_cache__appinfo:minOccurs="0"
  9156. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  9157. </RelatedFeatureLoop>
  9158. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  9159. <RelatedFeatureLoop xml_id="d11410e3347"
  9160. typeNameRealResource="default_db:CRM_PROCES"
  9161. typeName="default_db:PROCES_GROUP_1"
  9162. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  9163. flat_relation_cache_name="ID"
  9164. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9165. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  9166. system_cache__appinfo:maxOccurs="unbounded"
  9167. system_cache__appinfo:minOccurs="0"
  9168. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  9169. xpath="PARENT_ID"
  9170. xpath_value="../ID">
  9171. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  9172. <ogc:Or>
  9173. <ogc:PropertyIsEqualTo>
  9174. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9175. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  9176. </ogc:PropertyIsEqualTo>
  9177. </ogc:Or>
  9178. </simpleTypeMakeOgcFilter>
  9179. <default_db:PROCES_GROUP_1 xml_id="d11410e3347"
  9180. system_cache__appinfo:maxOccurs="unbounded"
  9181. system_cache__appinfo:minOccurs="0"
  9182. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  9183. </RelatedFeatureLoop>
  9184. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  9185. <RelatedFeatureLoop xml_id="d11410e3352"
  9186. typeNameRealResource="default_db:CRM_PROCES"
  9187. typeName="default_db:PROCES_GROUP_2"
  9188. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  9189. flat_relation_cache_name="ID"
  9190. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9191. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  9192. system_cache__appinfo:maxOccurs="unbounded"
  9193. system_cache__appinfo:minOccurs="0"
  9194. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  9195. xpath="PARENT_ID"
  9196. xpath_value="../ID">
  9197. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  9198. <ogc:Or>
  9199. <ogc:PropertyIsEqualTo>
  9200. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9201. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  9202. </ogc:PropertyIsEqualTo>
  9203. </ogc:Or>
  9204. </simpleTypeMakeOgcFilter>
  9205. <default_db:PROCES_GROUP_2 xml_id="d11410e3352"
  9206. system_cache__appinfo:maxOccurs="unbounded"
  9207. system_cache__appinfo:minOccurs="0"
  9208. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  9209. </RelatedFeatureLoop>
  9210. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  9211. <RelatedFeatureLoop xml_id="d11410e3357"
  9212. typeNameRealResource="default_db:CRM_PROCES"
  9213. typeName="default_db:PROCES_BENEFIT_INFO"
  9214. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  9215. flat_relation_cache_name="ID"
  9216. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9217. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  9218. system_cache__appinfo:maxOccurs="1"
  9219. system_cache__appinfo:minOccurs="0"
  9220. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  9221. xpath="PARENT_ID"
  9222. xpath_value="../ID">
  9223. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  9224. <ogc:Or>
  9225. <ogc:PropertyIsEqualTo>
  9226. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9227. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  9228. </ogc:PropertyIsEqualTo>
  9229. </ogc:Or>
  9230. </simpleTypeMakeOgcFilter>
  9231. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3357"
  9232. system_cache__appinfo:maxOccurs="1"
  9233. system_cache__appinfo:minOccurs="0"
  9234. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  9235. </RelatedFeatureLoop>
  9236. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  9237. <RelatedFeature xml_id="d11410e3363"
  9238. typeNameRealResource="default_db:CRM_WSKAZNIK"
  9239. typeName="default_db:CRM_WSKAZNIK"
  9240. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  9241. flat_relation_cache_name="ID"
  9242. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  9243. system_cache__appinfo:maxOccurs="0"
  9244. system_cache__appinfo:minOccurs="0"
  9245. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  9246. xpath="ID_PROCES"
  9247. xpath_value="../ID">
  9248. <default_db:CRM_WSKAZNIK xml_id="d11410e3363_child"
  9249. system_cache__appinfo:maxOccurs="0"
  9250. system_cache__appinfo:minOccurs="0"
  9251. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  9252. <ID xpath="ID" xml_id="d11410e3369"/>
  9253. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e3371"/>
  9254. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e3373"/>
  9255. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  9256. <RelatedFeature xml_id="d11410e3375"
  9257. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  9258. typeName="default_db:CRM_LISTA_ZASOBOW"
  9259. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  9260. flat_relation_cache_name="ID_ZASOB"
  9261. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  9262. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  9263. xpath="ID"
  9264. xpath_value="../ID_ZASOB">
  9265. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e3375_child"
  9266. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  9267. <ID xpath="ID" xml_id="d11410e3381"/>
  9268. <DESC xpath="DESC" xml_id="d11410e3383"/>
  9269. <DESC_PL xpath="DESC_PL" xml_id="d11410e3385"/>
  9270. </default_db:CRM_LISTA_ZASOBOW>
  9271. </RelatedFeature>
  9272. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3387"/>
  9273. </default_db:CRM_WSKAZNIK>
  9274. </RelatedFeature>
  9275. </default_db:PROCES_GROUP_1>
  9276. </RelatedFeature>
  9277. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  9278. <RelatedFeatureLoop xml_id="d11410e3389"
  9279. typeNameRealResource="default_db:CRM_PROCES"
  9280. typeName="default_db:PROCES_GROUP_2"
  9281. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  9282. flat_relation_cache_name="ID"
  9283. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9284. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  9285. system_cache__appinfo:maxOccurs="unbounded"
  9286. system_cache__appinfo:minOccurs="0"
  9287. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  9288. xpath="PARENT_ID"
  9289. xpath_value="../ID">
  9290. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  9291. <ogc:Or>
  9292. <ogc:PropertyIsEqualTo>
  9293. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9294. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  9295. </ogc:PropertyIsEqualTo>
  9296. </ogc:Or>
  9297. </simpleTypeMakeOgcFilter>
  9298. <default_db:PROCES_GROUP_2 xml_id="d11410e3389"
  9299. system_cache__appinfo:maxOccurs="unbounded"
  9300. system_cache__appinfo:minOccurs="0"
  9301. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  9302. </RelatedFeatureLoop>
  9303. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  9304. <RelatedFeatureLoop xml_id="d11410e3394"
  9305. typeNameRealResource="default_db:CRM_PROCES"
  9306. typeName="default_db:PROCES_BENEFIT_INFO"
  9307. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  9308. flat_relation_cache_name="ID"
  9309. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9310. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  9311. system_cache__appinfo:maxOccurs="1"
  9312. system_cache__appinfo:minOccurs="0"
  9313. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  9314. xpath="PARENT_ID"
  9315. xpath_value="../ID">
  9316. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  9317. <ogc:Or>
  9318. <ogc:PropertyIsEqualTo>
  9319. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9320. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  9321. </ogc:PropertyIsEqualTo>
  9322. </ogc:Or>
  9323. </simpleTypeMakeOgcFilter>
  9324. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3394"
  9325. system_cache__appinfo:maxOccurs="1"
  9326. system_cache__appinfo:minOccurs="0"
  9327. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  9328. </RelatedFeatureLoop>
  9329. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  9330. <RelatedFeature xml_id="d11410e3400"
  9331. typeNameRealResource="default_db:CRM_WSKAZNIK"
  9332. typeName="default_db:CRM_WSKAZNIK"
  9333. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  9334. flat_relation_cache_name="ID"
  9335. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  9336. system_cache__appinfo:maxOccurs="0"
  9337. system_cache__appinfo:minOccurs="0"
  9338. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  9339. xpath="ID_PROCES"
  9340. xpath_value="../ID">
  9341. <default_db:CRM_WSKAZNIK xml_id="d11410e3400_child"
  9342. system_cache__appinfo:maxOccurs="0"
  9343. system_cache__appinfo:minOccurs="0"
  9344. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  9345. <ID xpath="ID" xml_id="d11410e3406"/>
  9346. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e3408"/>
  9347. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e3410"/>
  9348. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  9349. <RelatedFeature xml_id="d11410e3412"
  9350. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  9351. typeName="default_db:CRM_LISTA_ZASOBOW"
  9352. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  9353. flat_relation_cache_name="ID_ZASOB"
  9354. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  9355. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  9356. xpath="ID"
  9357. xpath_value="../ID_ZASOB">
  9358. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e3412_child"
  9359. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  9360. <ID xpath="ID" xml_id="d11410e3418"/>
  9361. <DESC xpath="DESC" xml_id="d11410e3420"/>
  9362. <DESC_PL xpath="DESC_PL" xml_id="d11410e3422"/>
  9363. </default_db:CRM_LISTA_ZASOBOW>
  9364. </RelatedFeature>
  9365. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3424"/>
  9366. </default_db:CRM_WSKAZNIK>
  9367. </RelatedFeature>
  9368. </default_db:PROCES_GROUP_2>
  9369. </RelatedFeature>
  9370. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  9371. <RelatedFeatureLoop xml_id="d11410e3426"
  9372. typeNameRealResource="default_db:CRM_PROCES"
  9373. typeName="default_db:PROCES_BENEFIT_INFO"
  9374. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  9375. flat_relation_cache_name="ID"
  9376. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9377. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  9378. system_cache__appinfo:maxOccurs="unbounded"
  9379. system_cache__appinfo:minOccurs="0"
  9380. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  9381. xpath="PARENT_ID"
  9382. xpath_value="../ID">
  9383. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  9384. <ogc:Or>
  9385. <ogc:PropertyIsEqualTo>
  9386. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9387. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  9388. </ogc:PropertyIsEqualTo>
  9389. </ogc:Or>
  9390. </simpleTypeMakeOgcFilter>
  9391. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3426"
  9392. system_cache__appinfo:maxOccurs="unbounded"
  9393. system_cache__appinfo:minOccurs="0"
  9394. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  9395. </RelatedFeatureLoop>
  9396. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  9397. <RelatedFeature xml_id="d11410e3432"
  9398. typeNameRealResource="default_db:CRM_WSKAZNIK"
  9399. typeName="default_db:CRM_WSKAZNIK"
  9400. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  9401. flat_relation_cache_name="ID"
  9402. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  9403. system_cache__appinfo:maxOccurs="unbounded"
  9404. system_cache__appinfo:minOccurs="0"
  9405. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  9406. xpath="ID_PROCES"
  9407. xpath_value="../ID">
  9408. <default_db:CRM_WSKAZNIK xml_id="d11410e3432_child"
  9409. system_cache__appinfo:maxOccurs="unbounded"
  9410. system_cache__appinfo:minOccurs="0"
  9411. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  9412. <ID xpath="ID" xml_id="d11410e3438"/>
  9413. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e3440"/>
  9414. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e3442"/>
  9415. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  9416. <RelatedFeature xml_id="d11410e3444"
  9417. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  9418. typeName="default_db:CRM_LISTA_ZASOBOW"
  9419. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  9420. flat_relation_cache_name="ID_ZASOB"
  9421. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  9422. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  9423. xpath="ID"
  9424. xpath_value="../ID_ZASOB">
  9425. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e3444_child"
  9426. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  9427. <ID xpath="ID" xml_id="d11410e3450"/>
  9428. <DESC xpath="DESC" xml_id="d11410e3452"/>
  9429. <DESC_PL xpath="DESC_PL" xml_id="d11410e3454"/>
  9430. </default_db:CRM_LISTA_ZASOBOW>
  9431. </RelatedFeature>
  9432. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3456"/>
  9433. </default_db:CRM_WSKAZNIK>
  9434. </RelatedFeature>
  9435. </default_db:PROCES_INIT>
  9436. </RelatedFeature>
  9437. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  9438. <RelatedFeature xml_id="d11410e3458"
  9439. typeNameRealResource="default_db:CRM_PROCES"
  9440. typeName="default_db:PROCES_GROUP_1"
  9441. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  9442. flat_relation_cache_name="ID"
  9443. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9444. system_cache__appinfo:maxOccurs="0"
  9445. system_cache__appinfo:minOccurs="0"
  9446. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  9447. xpath="PARENT_ID"
  9448. xpath_value="../ID">
  9449. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  9450. <ogc:Or>
  9451. <ogc:PropertyIsEqualTo>
  9452. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9453. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  9454. </ogc:PropertyIsEqualTo>
  9455. </ogc:Or>
  9456. </simpleTypeMakeOgcFilter>
  9457. <default_db:PROCES_GROUP_1 xml_id="d11410e3458_child"
  9458. system_cache__appinfo:maxOccurs="0"
  9459. system_cache__appinfo:minOccurs="0"
  9460. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  9461. <ID xpath="ID" xml_id="d11410e3465"/>
  9462. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3467"/>
  9463. <path xpath="path" xml_id="d11410e3469"/>
  9464. <DESC xpath="DESC" xml_id="d11410e3471"/>
  9465. <TYPE xpath="TYPE" xml_id="d11410e3473"/>
  9466. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  9467. <RelatedFeatureLoop xml_id="d11410e3475"
  9468. typeNameRealResource="default_db:CRM_PROCES"
  9469. typeName="default_db:PROCES"
  9470. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  9471. flat_relation_cache_name="ID"
  9472. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9473. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  9474. system_cache__appinfo:maxOccurs="0"
  9475. system_cache__appinfo:minOccurs="0"
  9476. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  9477. xpath="PARENT_ID"
  9478. xpath_value="../ID">
  9479. <simpleTypeMakeOgcFilter name="PROCES">
  9480. <ogc:Or>
  9481. <ogc:PropertyIsEqualTo>
  9482. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9483. <ogc:Literal>PROCES</ogc:Literal>
  9484. </ogc:PropertyIsEqualTo>
  9485. </ogc:Or>
  9486. </simpleTypeMakeOgcFilter>
  9487. <default_db:PROCES xml_id="d11410e3475"
  9488. system_cache__appinfo:maxOccurs="0"
  9489. system_cache__appinfo:minOccurs="0"
  9490. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  9491. </RelatedFeatureLoop>
  9492. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  9493. <RelatedFeature xml_id="d11410e3480"
  9494. typeNameRealResource="default_db:CRM_PROCES"
  9495. typeName="default_db:PROCES_INIT"
  9496. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  9497. flat_relation_cache_name="ID"
  9498. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9499. system_cache__appinfo:maxOccurs="unbounded"
  9500. system_cache__appinfo:minOccurs="0"
  9501. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  9502. xpath="PARENT_ID"
  9503. xpath_value="../ID">
  9504. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  9505. <ogc:Or>
  9506. <ogc:PropertyIsEqualTo>
  9507. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9508. <ogc:Literal>PROCES_INIT</ogc:Literal>
  9509. </ogc:PropertyIsEqualTo>
  9510. </ogc:Or>
  9511. </simpleTypeMakeOgcFilter>
  9512. <default_db:PROCES_INIT xml_id="d11410e3480_child"
  9513. system_cache__appinfo:maxOccurs="unbounded"
  9514. system_cache__appinfo:minOccurs="0"
  9515. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  9516. <ID xpath="ID" xml_id="d11410e3487"/>
  9517. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3489"/>
  9518. <path xpath="path" xml_id="d11410e3491"/>
  9519. <DESC xpath="DESC" xml_id="d11410e3493"/>
  9520. <TYPE xpath="TYPE" xml_id="d11410e3495"/>
  9521. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  9522. <RelatedFeatureLoop xml_id="d11410e3497"
  9523. typeNameRealResource="default_db:CRM_PROCES"
  9524. typeName="default_db:PROCES"
  9525. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  9526. flat_relation_cache_name="ID"
  9527. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9528. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  9529. system_cache__appinfo:maxOccurs="unbounded"
  9530. system_cache__appinfo:minOccurs="0"
  9531. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  9532. xpath="PARENT_ID"
  9533. xpath_value="../ID">
  9534. <simpleTypeMakeOgcFilter name="PROCES">
  9535. <ogc:Or>
  9536. <ogc:PropertyIsEqualTo>
  9537. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9538. <ogc:Literal>PROCES</ogc:Literal>
  9539. </ogc:PropertyIsEqualTo>
  9540. </ogc:Or>
  9541. </simpleTypeMakeOgcFilter>
  9542. <default_db:PROCES xml_id="d11410e3497"
  9543. system_cache__appinfo:maxOccurs="unbounded"
  9544. system_cache__appinfo:minOccurs="0"
  9545. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  9546. </RelatedFeatureLoop>
  9547. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  9548. <RelatedFeatureLoop xml_id="d11410e3502"
  9549. typeNameRealResource="default_db:CRM_PROCES"
  9550. typeName="default_db:PROCES_INIT"
  9551. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  9552. flat_relation_cache_name="ID"
  9553. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9554. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  9555. system_cache__appinfo:maxOccurs="0"
  9556. system_cache__appinfo:minOccurs="0"
  9557. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  9558. xpath="PARENT_ID"
  9559. xpath_value="../ID">
  9560. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  9561. <ogc:Or>
  9562. <ogc:PropertyIsEqualTo>
  9563. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9564. <ogc:Literal>PROCES_INIT</ogc:Literal>
  9565. </ogc:PropertyIsEqualTo>
  9566. </ogc:Or>
  9567. </simpleTypeMakeOgcFilter>
  9568. <default_db:PROCES_INIT xml_id="d11410e3502"
  9569. system_cache__appinfo:maxOccurs="0"
  9570. system_cache__appinfo:minOccurs="0"
  9571. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  9572. </RelatedFeatureLoop>
  9573. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  9574. <RelatedFeatureLoop xml_id="d11410e3507"
  9575. typeNameRealResource="default_db:CRM_PROCES"
  9576. typeName="default_db:PROCES_GROUP_1"
  9577. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  9578. flat_relation_cache_name="ID"
  9579. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9580. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  9581. system_cache__appinfo:maxOccurs="0"
  9582. system_cache__appinfo:minOccurs="0"
  9583. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  9584. xpath="PARENT_ID"
  9585. xpath_value="../ID">
  9586. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  9587. <ogc:Or>
  9588. <ogc:PropertyIsEqualTo>
  9589. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9590. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  9591. </ogc:PropertyIsEqualTo>
  9592. </ogc:Or>
  9593. </simpleTypeMakeOgcFilter>
  9594. <default_db:PROCES_GROUP_1 xml_id="d11410e3507"
  9595. system_cache__appinfo:maxOccurs="0"
  9596. system_cache__appinfo:minOccurs="0"
  9597. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  9598. </RelatedFeatureLoop>
  9599. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  9600. <RelatedFeature xml_id="d11410e3512"
  9601. typeNameRealResource="default_db:CRM_PROCES"
  9602. typeName="default_db:PROCES_GROUP_2"
  9603. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  9604. flat_relation_cache_name="ID"
  9605. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9606. system_cache__appinfo:maxOccurs="0"
  9607. system_cache__appinfo:minOccurs="0"
  9608. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  9609. xpath="PARENT_ID"
  9610. xpath_value="../ID">
  9611. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  9612. <ogc:Or>
  9613. <ogc:PropertyIsEqualTo>
  9614. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9615. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  9616. </ogc:PropertyIsEqualTo>
  9617. </ogc:Or>
  9618. </simpleTypeMakeOgcFilter>
  9619. <default_db:PROCES_GROUP_2 xml_id="d11410e3512_child"
  9620. system_cache__appinfo:maxOccurs="0"
  9621. system_cache__appinfo:minOccurs="0"
  9622. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  9623. <ID xpath="ID" xml_id="d11410e3519"/>
  9624. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3521"/>
  9625. <path xpath="path" xml_id="d11410e3523"/>
  9626. <DESC xpath="DESC" xml_id="d11410e3525"/>
  9627. <TYPE xpath="TYPE" xml_id="d11410e3527"/>
  9628. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  9629. <RelatedFeatureLoop xml_id="d11410e3529"
  9630. typeNameRealResource="default_db:CRM_PROCES"
  9631. typeName="default_db:PROCES"
  9632. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  9633. flat_relation_cache_name="ID"
  9634. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9635. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  9636. system_cache__appinfo:maxOccurs="0"
  9637. system_cache__appinfo:minOccurs="0"
  9638. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  9639. xpath="PARENT_ID"
  9640. xpath_value="../ID">
  9641. <simpleTypeMakeOgcFilter name="PROCES">
  9642. <ogc:Or>
  9643. <ogc:PropertyIsEqualTo>
  9644. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9645. <ogc:Literal>PROCES</ogc:Literal>
  9646. </ogc:PropertyIsEqualTo>
  9647. </ogc:Or>
  9648. </simpleTypeMakeOgcFilter>
  9649. <default_db:PROCES xml_id="d11410e3529"
  9650. system_cache__appinfo:maxOccurs="0"
  9651. system_cache__appinfo:minOccurs="0"
  9652. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  9653. </RelatedFeatureLoop>
  9654. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  9655. <RelatedFeatureLoop xml_id="d11410e3534"
  9656. typeNameRealResource="default_db:CRM_PROCES"
  9657. typeName="default_db:PROCES_INIT"
  9658. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  9659. flat_relation_cache_name="ID"
  9660. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9661. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  9662. system_cache__appinfo:maxOccurs="unbounded"
  9663. system_cache__appinfo:minOccurs="0"
  9664. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  9665. xpath="PARENT_ID"
  9666. xpath_value="../ID">
  9667. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  9668. <ogc:Or>
  9669. <ogc:PropertyIsEqualTo>
  9670. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9671. <ogc:Literal>PROCES_INIT</ogc:Literal>
  9672. </ogc:PropertyIsEqualTo>
  9673. </ogc:Or>
  9674. </simpleTypeMakeOgcFilter>
  9675. <default_db:PROCES_INIT xml_id="d11410e3534"
  9676. system_cache__appinfo:maxOccurs="unbounded"
  9677. system_cache__appinfo:minOccurs="0"
  9678. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  9679. </RelatedFeatureLoop>
  9680. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  9681. <RelatedFeatureLoop xml_id="d11410e3539"
  9682. typeNameRealResource="default_db:CRM_PROCES"
  9683. typeName="default_db:PROCES_GROUP_1"
  9684. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  9685. flat_relation_cache_name="ID"
  9686. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9687. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  9688. system_cache__appinfo:maxOccurs="0"
  9689. system_cache__appinfo:minOccurs="0"
  9690. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  9691. xpath="PARENT_ID"
  9692. xpath_value="../ID">
  9693. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  9694. <ogc:Or>
  9695. <ogc:PropertyIsEqualTo>
  9696. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9697. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  9698. </ogc:PropertyIsEqualTo>
  9699. </ogc:Or>
  9700. </simpleTypeMakeOgcFilter>
  9701. <default_db:PROCES_GROUP_1 xml_id="d11410e3539"
  9702. system_cache__appinfo:maxOccurs="0"
  9703. system_cache__appinfo:minOccurs="0"
  9704. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  9705. </RelatedFeatureLoop>
  9706. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  9707. <RelatedFeatureLoop xml_id="d11410e3544"
  9708. typeNameRealResource="default_db:CRM_PROCES"
  9709. typeName="default_db:PROCES_GROUP_2"
  9710. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  9711. flat_relation_cache_name="ID"
  9712. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9713. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  9714. system_cache__appinfo:maxOccurs="unbounded"
  9715. system_cache__appinfo:minOccurs="0"
  9716. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  9717. xpath="PARENT_ID"
  9718. xpath_value="../ID">
  9719. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  9720. <ogc:Or>
  9721. <ogc:PropertyIsEqualTo>
  9722. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9723. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  9724. </ogc:PropertyIsEqualTo>
  9725. </ogc:Or>
  9726. </simpleTypeMakeOgcFilter>
  9727. <default_db:PROCES_GROUP_2 xml_id="d11410e3544"
  9728. system_cache__appinfo:maxOccurs="unbounded"
  9729. system_cache__appinfo:minOccurs="0"
  9730. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  9731. </RelatedFeatureLoop>
  9732. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  9733. <RelatedFeatureLoop xml_id="d11410e3549"
  9734. typeNameRealResource="default_db:CRM_PROCES"
  9735. typeName="default_db:PROCES_BENEFIT_INFO"
  9736. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  9737. flat_relation_cache_name="ID"
  9738. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9739. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  9740. system_cache__appinfo:maxOccurs="1"
  9741. system_cache__appinfo:minOccurs="0"
  9742. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  9743. xpath="PARENT_ID"
  9744. xpath_value="../ID">
  9745. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  9746. <ogc:Or>
  9747. <ogc:PropertyIsEqualTo>
  9748. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9749. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  9750. </ogc:PropertyIsEqualTo>
  9751. </ogc:Or>
  9752. </simpleTypeMakeOgcFilter>
  9753. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3549"
  9754. system_cache__appinfo:maxOccurs="1"
  9755. system_cache__appinfo:minOccurs="0"
  9756. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  9757. </RelatedFeatureLoop>
  9758. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  9759. <RelatedFeature xml_id="d11410e3555"
  9760. typeNameRealResource="default_db:CRM_WSKAZNIK"
  9761. typeName="default_db:CRM_WSKAZNIK"
  9762. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  9763. flat_relation_cache_name="ID"
  9764. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  9765. system_cache__appinfo:maxOccurs="0"
  9766. system_cache__appinfo:minOccurs="0"
  9767. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  9768. xpath="ID_PROCES"
  9769. xpath_value="../ID">
  9770. <default_db:CRM_WSKAZNIK xml_id="d11410e3555_child"
  9771. system_cache__appinfo:maxOccurs="0"
  9772. system_cache__appinfo:minOccurs="0"
  9773. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  9774. <ID xpath="ID" xml_id="d11410e3561"/>
  9775. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e3563"/>
  9776. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e3565"/>
  9777. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  9778. <RelatedFeature xml_id="d11410e3567"
  9779. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  9780. typeName="default_db:CRM_LISTA_ZASOBOW"
  9781. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  9782. flat_relation_cache_name="ID_ZASOB"
  9783. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  9784. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  9785. xpath="ID"
  9786. xpath_value="../ID_ZASOB">
  9787. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e3567_child"
  9788. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  9789. <ID xpath="ID" xml_id="d11410e3573"/>
  9790. <DESC xpath="DESC" xml_id="d11410e3575"/>
  9791. <DESC_PL xpath="DESC_PL" xml_id="d11410e3577"/>
  9792. </default_db:CRM_LISTA_ZASOBOW>
  9793. </RelatedFeature>
  9794. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3579"/>
  9795. </default_db:CRM_WSKAZNIK>
  9796. </RelatedFeature>
  9797. </default_db:PROCES_GROUP_2>
  9798. </RelatedFeature>
  9799. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  9800. <RelatedFeatureLoop xml_id="d11410e3581"
  9801. typeNameRealResource="default_db:CRM_PROCES"
  9802. typeName="default_db:PROCES_BENEFIT_INFO"
  9803. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  9804. flat_relation_cache_name="ID"
  9805. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9806. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  9807. system_cache__appinfo:maxOccurs="unbounded"
  9808. system_cache__appinfo:minOccurs="0"
  9809. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  9810. xpath="PARENT_ID"
  9811. xpath_value="../ID">
  9812. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  9813. <ogc:Or>
  9814. <ogc:PropertyIsEqualTo>
  9815. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9816. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  9817. </ogc:PropertyIsEqualTo>
  9818. </ogc:Or>
  9819. </simpleTypeMakeOgcFilter>
  9820. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3581"
  9821. system_cache__appinfo:maxOccurs="unbounded"
  9822. system_cache__appinfo:minOccurs="0"
  9823. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  9824. </RelatedFeatureLoop>
  9825. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  9826. <RelatedFeature xml_id="d11410e3587"
  9827. typeNameRealResource="default_db:CRM_WSKAZNIK"
  9828. typeName="default_db:CRM_WSKAZNIK"
  9829. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  9830. flat_relation_cache_name="ID"
  9831. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  9832. system_cache__appinfo:maxOccurs="unbounded"
  9833. system_cache__appinfo:minOccurs="0"
  9834. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  9835. xpath="ID_PROCES"
  9836. xpath_value="../ID">
  9837. <default_db:CRM_WSKAZNIK xml_id="d11410e3587_child"
  9838. system_cache__appinfo:maxOccurs="unbounded"
  9839. system_cache__appinfo:minOccurs="0"
  9840. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  9841. <ID xpath="ID" xml_id="d11410e3593"/>
  9842. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e3595"/>
  9843. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e3597"/>
  9844. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  9845. <RelatedFeature xml_id="d11410e3599"
  9846. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  9847. typeName="default_db:CRM_LISTA_ZASOBOW"
  9848. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  9849. flat_relation_cache_name="ID_ZASOB"
  9850. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  9851. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  9852. xpath="ID"
  9853. xpath_value="../ID_ZASOB">
  9854. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e3599_child"
  9855. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  9856. <ID xpath="ID" xml_id="d11410e3605"/>
  9857. <DESC xpath="DESC" xml_id="d11410e3607"/>
  9858. <DESC_PL xpath="DESC_PL" xml_id="d11410e3609"/>
  9859. </default_db:CRM_LISTA_ZASOBOW>
  9860. </RelatedFeature>
  9861. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3611"/>
  9862. </default_db:CRM_WSKAZNIK>
  9863. </RelatedFeature>
  9864. </default_db:PROCES_INIT>
  9865. </RelatedFeature>
  9866. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  9867. <RelatedFeatureLoop xml_id="d11410e3613"
  9868. typeNameRealResource="default_db:CRM_PROCES"
  9869. typeName="default_db:PROCES_GROUP_1"
  9870. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  9871. flat_relation_cache_name="ID"
  9872. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9873. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  9874. system_cache__appinfo:maxOccurs="unbounded"
  9875. system_cache__appinfo:minOccurs="0"
  9876. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  9877. xpath="PARENT_ID"
  9878. xpath_value="../ID">
  9879. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  9880. <ogc:Or>
  9881. <ogc:PropertyIsEqualTo>
  9882. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9883. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  9884. </ogc:PropertyIsEqualTo>
  9885. </ogc:Or>
  9886. </simpleTypeMakeOgcFilter>
  9887. <default_db:PROCES_GROUP_1 xml_id="d11410e3613"
  9888. system_cache__appinfo:maxOccurs="unbounded"
  9889. system_cache__appinfo:minOccurs="0"
  9890. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  9891. </RelatedFeatureLoop>
  9892. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  9893. <RelatedFeature xml_id="d11410e3618"
  9894. typeNameRealResource="default_db:CRM_PROCES"
  9895. typeName="default_db:PROCES_GROUP_2"
  9896. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  9897. flat_relation_cache_name="ID"
  9898. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9899. system_cache__appinfo:maxOccurs="unbounded"
  9900. system_cache__appinfo:minOccurs="0"
  9901. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  9902. xpath="PARENT_ID"
  9903. xpath_value="../ID">
  9904. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  9905. <ogc:Or>
  9906. <ogc:PropertyIsEqualTo>
  9907. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9908. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  9909. </ogc:PropertyIsEqualTo>
  9910. </ogc:Or>
  9911. </simpleTypeMakeOgcFilter>
  9912. <default_db:PROCES_GROUP_2 xml_id="d11410e3618_child"
  9913. system_cache__appinfo:maxOccurs="unbounded"
  9914. system_cache__appinfo:minOccurs="0"
  9915. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  9916. <ID xpath="ID" xml_id="d11410e3625"/>
  9917. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3627"/>
  9918. <path xpath="path" xml_id="d11410e3629"/>
  9919. <DESC xpath="DESC" xml_id="d11410e3631"/>
  9920. <TYPE xpath="TYPE" xml_id="d11410e3633"/>
  9921. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  9922. <RelatedFeatureLoop xml_id="d11410e3635"
  9923. typeNameRealResource="default_db:CRM_PROCES"
  9924. typeName="default_db:PROCES"
  9925. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  9926. flat_relation_cache_name="ID"
  9927. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9928. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  9929. system_cache__appinfo:maxOccurs="0"
  9930. system_cache__appinfo:minOccurs="0"
  9931. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  9932. xpath="PARENT_ID"
  9933. xpath_value="../ID">
  9934. <simpleTypeMakeOgcFilter name="PROCES">
  9935. <ogc:Or>
  9936. <ogc:PropertyIsEqualTo>
  9937. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9938. <ogc:Literal>PROCES</ogc:Literal>
  9939. </ogc:PropertyIsEqualTo>
  9940. </ogc:Or>
  9941. </simpleTypeMakeOgcFilter>
  9942. <default_db:PROCES xml_id="d11410e3635"
  9943. system_cache__appinfo:maxOccurs="0"
  9944. system_cache__appinfo:minOccurs="0"
  9945. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  9946. </RelatedFeatureLoop>
  9947. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  9948. <RelatedFeature xml_id="d11410e3640"
  9949. typeNameRealResource="default_db:CRM_PROCES"
  9950. typeName="default_db:PROCES_INIT"
  9951. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  9952. flat_relation_cache_name="ID"
  9953. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9954. system_cache__appinfo:maxOccurs="unbounded"
  9955. system_cache__appinfo:minOccurs="0"
  9956. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  9957. xpath="PARENT_ID"
  9958. xpath_value="../ID">
  9959. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  9960. <ogc:Or>
  9961. <ogc:PropertyIsEqualTo>
  9962. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9963. <ogc:Literal>PROCES_INIT</ogc:Literal>
  9964. </ogc:PropertyIsEqualTo>
  9965. </ogc:Or>
  9966. </simpleTypeMakeOgcFilter>
  9967. <default_db:PROCES_INIT xml_id="d11410e3640_child"
  9968. system_cache__appinfo:maxOccurs="unbounded"
  9969. system_cache__appinfo:minOccurs="0"
  9970. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  9971. <ID xpath="ID" xml_id="d11410e3647"/>
  9972. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3649"/>
  9973. <path xpath="path" xml_id="d11410e3651"/>
  9974. <DESC xpath="DESC" xml_id="d11410e3653"/>
  9975. <TYPE xpath="TYPE" xml_id="d11410e3655"/>
  9976. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  9977. <RelatedFeatureLoop xml_id="d11410e3657"
  9978. typeNameRealResource="default_db:CRM_PROCES"
  9979. typeName="default_db:PROCES"
  9980. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  9981. flat_relation_cache_name="ID"
  9982. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  9983. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  9984. system_cache__appinfo:maxOccurs="unbounded"
  9985. system_cache__appinfo:minOccurs="0"
  9986. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  9987. xpath="PARENT_ID"
  9988. xpath_value="../ID">
  9989. <simpleTypeMakeOgcFilter name="PROCES">
  9990. <ogc:Or>
  9991. <ogc:PropertyIsEqualTo>
  9992. <ogc:PropertyName>TYPE</ogc:PropertyName>
  9993. <ogc:Literal>PROCES</ogc:Literal>
  9994. </ogc:PropertyIsEqualTo>
  9995. </ogc:Or>
  9996. </simpleTypeMakeOgcFilter>
  9997. <default_db:PROCES xml_id="d11410e3657"
  9998. system_cache__appinfo:maxOccurs="unbounded"
  9999. system_cache__appinfo:minOccurs="0"
  10000. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  10001. </RelatedFeatureLoop>
  10002. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  10003. <RelatedFeatureLoop xml_id="d11410e3662"
  10004. typeNameRealResource="default_db:CRM_PROCES"
  10005. typeName="default_db:PROCES_INIT"
  10006. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  10007. flat_relation_cache_name="ID"
  10008. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10009. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  10010. system_cache__appinfo:maxOccurs="0"
  10011. system_cache__appinfo:minOccurs="0"
  10012. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  10013. xpath="PARENT_ID"
  10014. xpath_value="../ID">
  10015. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  10016. <ogc:Or>
  10017. <ogc:PropertyIsEqualTo>
  10018. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10019. <ogc:Literal>PROCES_INIT</ogc:Literal>
  10020. </ogc:PropertyIsEqualTo>
  10021. </ogc:Or>
  10022. </simpleTypeMakeOgcFilter>
  10023. <default_db:PROCES_INIT xml_id="d11410e3662"
  10024. system_cache__appinfo:maxOccurs="0"
  10025. system_cache__appinfo:minOccurs="0"
  10026. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  10027. </RelatedFeatureLoop>
  10028. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  10029. <RelatedFeatureLoop xml_id="d11410e3667"
  10030. typeNameRealResource="default_db:CRM_PROCES"
  10031. typeName="default_db:PROCES_GROUP_1"
  10032. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  10033. flat_relation_cache_name="ID"
  10034. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10035. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  10036. system_cache__appinfo:maxOccurs="0"
  10037. system_cache__appinfo:minOccurs="0"
  10038. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  10039. xpath="PARENT_ID"
  10040. xpath_value="../ID">
  10041. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  10042. <ogc:Or>
  10043. <ogc:PropertyIsEqualTo>
  10044. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10045. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  10046. </ogc:PropertyIsEqualTo>
  10047. </ogc:Or>
  10048. </simpleTypeMakeOgcFilter>
  10049. <default_db:PROCES_GROUP_1 xml_id="d11410e3667"
  10050. system_cache__appinfo:maxOccurs="0"
  10051. system_cache__appinfo:minOccurs="0"
  10052. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  10053. </RelatedFeatureLoop>
  10054. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  10055. <RelatedFeatureLoop xml_id="d11410e3672"
  10056. typeNameRealResource="default_db:CRM_PROCES"
  10057. typeName="default_db:PROCES_GROUP_2"
  10058. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  10059. flat_relation_cache_name="ID"
  10060. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10061. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  10062. system_cache__appinfo:maxOccurs="0"
  10063. system_cache__appinfo:minOccurs="0"
  10064. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  10065. xpath="PARENT_ID"
  10066. xpath_value="../ID">
  10067. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  10068. <ogc:Or>
  10069. <ogc:PropertyIsEqualTo>
  10070. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10071. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  10072. </ogc:PropertyIsEqualTo>
  10073. </ogc:Or>
  10074. </simpleTypeMakeOgcFilter>
  10075. <default_db:PROCES_GROUP_2 xml_id="d11410e3672"
  10076. system_cache__appinfo:maxOccurs="0"
  10077. system_cache__appinfo:minOccurs="0"
  10078. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  10079. </RelatedFeatureLoop>
  10080. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  10081. <RelatedFeatureLoop xml_id="d11410e3677"
  10082. typeNameRealResource="default_db:CRM_PROCES"
  10083. typeName="default_db:PROCES_BENEFIT_INFO"
  10084. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  10085. flat_relation_cache_name="ID"
  10086. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10087. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  10088. system_cache__appinfo:maxOccurs="unbounded"
  10089. system_cache__appinfo:minOccurs="0"
  10090. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  10091. xpath="PARENT_ID"
  10092. xpath_value="../ID">
  10093. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  10094. <ogc:Or>
  10095. <ogc:PropertyIsEqualTo>
  10096. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10097. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  10098. </ogc:PropertyIsEqualTo>
  10099. </ogc:Or>
  10100. </simpleTypeMakeOgcFilter>
  10101. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3677"
  10102. system_cache__appinfo:maxOccurs="unbounded"
  10103. system_cache__appinfo:minOccurs="0"
  10104. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  10105. </RelatedFeatureLoop>
  10106. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  10107. <RelatedFeature xml_id="d11410e3683"
  10108. typeNameRealResource="default_db:CRM_WSKAZNIK"
  10109. typeName="default_db:CRM_WSKAZNIK"
  10110. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  10111. flat_relation_cache_name="ID"
  10112. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  10113. system_cache__appinfo:maxOccurs="unbounded"
  10114. system_cache__appinfo:minOccurs="0"
  10115. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  10116. xpath="ID_PROCES"
  10117. xpath_value="../ID">
  10118. <default_db:CRM_WSKAZNIK xml_id="d11410e3683_child"
  10119. system_cache__appinfo:maxOccurs="unbounded"
  10120. system_cache__appinfo:minOccurs="0"
  10121. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  10122. <ID xpath="ID" xml_id="d11410e3689"/>
  10123. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e3691"/>
  10124. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e3693"/>
  10125. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  10126. <RelatedFeature xml_id="d11410e3695"
  10127. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  10128. typeName="default_db:CRM_LISTA_ZASOBOW"
  10129. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  10130. flat_relation_cache_name="ID_ZASOB"
  10131. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  10132. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  10133. xpath="ID"
  10134. xpath_value="../ID_ZASOB">
  10135. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e3695_child"
  10136. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  10137. <ID xpath="ID" xml_id="d11410e3701"/>
  10138. <DESC xpath="DESC" xml_id="d11410e3703"/>
  10139. <DESC_PL xpath="DESC_PL" xml_id="d11410e3705"/>
  10140. </default_db:CRM_LISTA_ZASOBOW>
  10141. </RelatedFeature>
  10142. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3707"/>
  10143. </default_db:CRM_WSKAZNIK>
  10144. </RelatedFeature>
  10145. </default_db:PROCES_INIT>
  10146. </RelatedFeature>
  10147. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  10148. <RelatedFeatureLoop xml_id="d11410e3709"
  10149. typeNameRealResource="default_db:CRM_PROCES"
  10150. typeName="default_db:PROCES_GROUP_1"
  10151. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  10152. flat_relation_cache_name="ID"
  10153. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10154. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  10155. system_cache__appinfo:maxOccurs="0"
  10156. system_cache__appinfo:minOccurs="0"
  10157. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  10158. xpath="PARENT_ID"
  10159. xpath_value="../ID">
  10160. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  10161. <ogc:Or>
  10162. <ogc:PropertyIsEqualTo>
  10163. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10164. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  10165. </ogc:PropertyIsEqualTo>
  10166. </ogc:Or>
  10167. </simpleTypeMakeOgcFilter>
  10168. <default_db:PROCES_GROUP_1 xml_id="d11410e3709"
  10169. system_cache__appinfo:maxOccurs="0"
  10170. system_cache__appinfo:minOccurs="0"
  10171. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  10172. </RelatedFeatureLoop>
  10173. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  10174. <RelatedFeatureLoop xml_id="d11410e3714"
  10175. typeNameRealResource="default_db:CRM_PROCES"
  10176. typeName="default_db:PROCES_GROUP_2"
  10177. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  10178. flat_relation_cache_name="ID"
  10179. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10180. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  10181. system_cache__appinfo:maxOccurs="unbounded"
  10182. system_cache__appinfo:minOccurs="0"
  10183. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  10184. xpath="PARENT_ID"
  10185. xpath_value="../ID">
  10186. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  10187. <ogc:Or>
  10188. <ogc:PropertyIsEqualTo>
  10189. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10190. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  10191. </ogc:PropertyIsEqualTo>
  10192. </ogc:Or>
  10193. </simpleTypeMakeOgcFilter>
  10194. <default_db:PROCES_GROUP_2 xml_id="d11410e3714"
  10195. system_cache__appinfo:maxOccurs="unbounded"
  10196. system_cache__appinfo:minOccurs="0"
  10197. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  10198. </RelatedFeatureLoop>
  10199. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  10200. <RelatedFeatureLoop xml_id="d11410e3719"
  10201. typeNameRealResource="default_db:CRM_PROCES"
  10202. typeName="default_db:PROCES_BENEFIT_INFO"
  10203. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  10204. flat_relation_cache_name="ID"
  10205. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10206. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  10207. system_cache__appinfo:maxOccurs="1"
  10208. system_cache__appinfo:minOccurs="0"
  10209. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  10210. xpath="PARENT_ID"
  10211. xpath_value="../ID">
  10212. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  10213. <ogc:Or>
  10214. <ogc:PropertyIsEqualTo>
  10215. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10216. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  10217. </ogc:PropertyIsEqualTo>
  10218. </ogc:Or>
  10219. </simpleTypeMakeOgcFilter>
  10220. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3719"
  10221. system_cache__appinfo:maxOccurs="1"
  10222. system_cache__appinfo:minOccurs="0"
  10223. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  10224. </RelatedFeatureLoop>
  10225. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  10226. <RelatedFeature xml_id="d11410e3725"
  10227. typeNameRealResource="default_db:CRM_WSKAZNIK"
  10228. typeName="default_db:CRM_WSKAZNIK"
  10229. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  10230. flat_relation_cache_name="ID"
  10231. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  10232. system_cache__appinfo:maxOccurs="0"
  10233. system_cache__appinfo:minOccurs="0"
  10234. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  10235. xpath="ID_PROCES"
  10236. xpath_value="../ID">
  10237. <default_db:CRM_WSKAZNIK xml_id="d11410e3725_child"
  10238. system_cache__appinfo:maxOccurs="0"
  10239. system_cache__appinfo:minOccurs="0"
  10240. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  10241. <ID xpath="ID" xml_id="d11410e3731"/>
  10242. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e3733"/>
  10243. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e3735"/>
  10244. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  10245. <RelatedFeature xml_id="d11410e3737"
  10246. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  10247. typeName="default_db:CRM_LISTA_ZASOBOW"
  10248. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  10249. flat_relation_cache_name="ID_ZASOB"
  10250. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  10251. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  10252. xpath="ID"
  10253. xpath_value="../ID_ZASOB">
  10254. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e3737_child"
  10255. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  10256. <ID xpath="ID" xml_id="d11410e3743"/>
  10257. <DESC xpath="DESC" xml_id="d11410e3745"/>
  10258. <DESC_PL xpath="DESC_PL" xml_id="d11410e3747"/>
  10259. </default_db:CRM_LISTA_ZASOBOW>
  10260. </RelatedFeature>
  10261. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3749"/>
  10262. </default_db:CRM_WSKAZNIK>
  10263. </RelatedFeature>
  10264. </default_db:PROCES_GROUP_2>
  10265. </RelatedFeature>
  10266. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  10267. <RelatedFeatureLoop xml_id="d11410e3751"
  10268. typeNameRealResource="default_db:CRM_PROCES"
  10269. typeName="default_db:PROCES_BENEFIT_INFO"
  10270. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  10271. flat_relation_cache_name="ID"
  10272. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10273. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  10274. system_cache__appinfo:maxOccurs="1"
  10275. system_cache__appinfo:minOccurs="0"
  10276. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  10277. xpath="PARENT_ID"
  10278. xpath_value="../ID">
  10279. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  10280. <ogc:Or>
  10281. <ogc:PropertyIsEqualTo>
  10282. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10283. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  10284. </ogc:PropertyIsEqualTo>
  10285. </ogc:Or>
  10286. </simpleTypeMakeOgcFilter>
  10287. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3751"
  10288. system_cache__appinfo:maxOccurs="1"
  10289. system_cache__appinfo:minOccurs="0"
  10290. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  10291. </RelatedFeatureLoop>
  10292. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  10293. <RelatedFeature xml_id="d11410e3757"
  10294. typeNameRealResource="default_db:CRM_WSKAZNIK"
  10295. typeName="default_db:CRM_WSKAZNIK"
  10296. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  10297. flat_relation_cache_name="ID"
  10298. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  10299. system_cache__appinfo:maxOccurs="0"
  10300. system_cache__appinfo:minOccurs="0"
  10301. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  10302. xpath="ID_PROCES"
  10303. xpath_value="../ID">
  10304. <default_db:CRM_WSKAZNIK xml_id="d11410e3757_child"
  10305. system_cache__appinfo:maxOccurs="0"
  10306. system_cache__appinfo:minOccurs="0"
  10307. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  10308. <ID xpath="ID" xml_id="d11410e3763"/>
  10309. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e3765"/>
  10310. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e3767"/>
  10311. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  10312. <RelatedFeature xml_id="d11410e3769"
  10313. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  10314. typeName="default_db:CRM_LISTA_ZASOBOW"
  10315. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  10316. flat_relation_cache_name="ID_ZASOB"
  10317. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  10318. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  10319. xpath="ID"
  10320. xpath_value="../ID_ZASOB">
  10321. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e3769_child"
  10322. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  10323. <ID xpath="ID" xml_id="d11410e3775"/>
  10324. <DESC xpath="DESC" xml_id="d11410e3777"/>
  10325. <DESC_PL xpath="DESC_PL" xml_id="d11410e3779"/>
  10326. </default_db:CRM_LISTA_ZASOBOW>
  10327. </RelatedFeature>
  10328. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3781"/>
  10329. </default_db:CRM_WSKAZNIK>
  10330. </RelatedFeature>
  10331. </default_db:PROCES_GROUP_1>
  10332. </RelatedFeature>
  10333. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  10334. <RelatedFeature xml_id="d11410e3783"
  10335. typeNameRealResource="default_db:CRM_PROCES"
  10336. typeName="default_db:PROCES_GROUP_2"
  10337. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  10338. flat_relation_cache_name="ID"
  10339. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10340. system_cache__appinfo:maxOccurs="0"
  10341. system_cache__appinfo:minOccurs="0"
  10342. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  10343. xpath="PARENT_ID"
  10344. xpath_value="../ID">
  10345. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  10346. <ogc:Or>
  10347. <ogc:PropertyIsEqualTo>
  10348. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10349. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  10350. </ogc:PropertyIsEqualTo>
  10351. </ogc:Or>
  10352. </simpleTypeMakeOgcFilter>
  10353. <default_db:PROCES_GROUP_2 xml_id="d11410e3783_child"
  10354. system_cache__appinfo:maxOccurs="0"
  10355. system_cache__appinfo:minOccurs="0"
  10356. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1">
  10357. <ID xpath="ID" xml_id="d11410e3790"/>
  10358. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3792"/>
  10359. <path xpath="path" xml_id="d11410e3794"/>
  10360. <DESC xpath="DESC" xml_id="d11410e3796"/>
  10361. <TYPE xpath="TYPE" xml_id="d11410e3798"/>
  10362. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  10363. <RelatedFeatureLoop xml_id="d11410e3800"
  10364. typeNameRealResource="default_db:CRM_PROCES"
  10365. typeName="default_db:PROCES"
  10366. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  10367. flat_relation_cache_name="ID"
  10368. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10369. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  10370. system_cache__appinfo:maxOccurs="0"
  10371. system_cache__appinfo:minOccurs="0"
  10372. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  10373. xpath="PARENT_ID"
  10374. xpath_value="../ID">
  10375. <simpleTypeMakeOgcFilter name="PROCES">
  10376. <ogc:Or>
  10377. <ogc:PropertyIsEqualTo>
  10378. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10379. <ogc:Literal>PROCES</ogc:Literal>
  10380. </ogc:PropertyIsEqualTo>
  10381. </ogc:Or>
  10382. </simpleTypeMakeOgcFilter>
  10383. <default_db:PROCES xml_id="d11410e3800"
  10384. system_cache__appinfo:maxOccurs="0"
  10385. system_cache__appinfo:minOccurs="0"
  10386. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  10387. </RelatedFeatureLoop>
  10388. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  10389. <RelatedFeature xml_id="d11410e3805"
  10390. typeNameRealResource="default_db:CRM_PROCES"
  10391. typeName="default_db:PROCES_INIT"
  10392. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  10393. flat_relation_cache_name="ID"
  10394. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10395. system_cache__appinfo:maxOccurs="unbounded"
  10396. system_cache__appinfo:minOccurs="0"
  10397. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  10398. xpath="PARENT_ID"
  10399. xpath_value="../ID">
  10400. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  10401. <ogc:Or>
  10402. <ogc:PropertyIsEqualTo>
  10403. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10404. <ogc:Literal>PROCES_INIT</ogc:Literal>
  10405. </ogc:PropertyIsEqualTo>
  10406. </ogc:Or>
  10407. </simpleTypeMakeOgcFilter>
  10408. <default_db:PROCES_INIT xml_id="d11410e3805_child"
  10409. system_cache__appinfo:maxOccurs="unbounded"
  10410. system_cache__appinfo:minOccurs="0"
  10411. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  10412. <ID xpath="ID" xml_id="d11410e3812"/>
  10413. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3814"/>
  10414. <path xpath="path" xml_id="d11410e3816"/>
  10415. <DESC xpath="DESC" xml_id="d11410e3818"/>
  10416. <TYPE xpath="TYPE" xml_id="d11410e3820"/>
  10417. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  10418. <RelatedFeatureLoop xml_id="d11410e3822"
  10419. typeNameRealResource="default_db:CRM_PROCES"
  10420. typeName="default_db:PROCES"
  10421. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  10422. flat_relation_cache_name="ID"
  10423. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10424. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  10425. system_cache__appinfo:maxOccurs="unbounded"
  10426. system_cache__appinfo:minOccurs="0"
  10427. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  10428. xpath="PARENT_ID"
  10429. xpath_value="../ID">
  10430. <simpleTypeMakeOgcFilter name="PROCES">
  10431. <ogc:Or>
  10432. <ogc:PropertyIsEqualTo>
  10433. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10434. <ogc:Literal>PROCES</ogc:Literal>
  10435. </ogc:PropertyIsEqualTo>
  10436. </ogc:Or>
  10437. </simpleTypeMakeOgcFilter>
  10438. <default_db:PROCES xml_id="d11410e3822"
  10439. system_cache__appinfo:maxOccurs="unbounded"
  10440. system_cache__appinfo:minOccurs="0"
  10441. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  10442. </RelatedFeatureLoop>
  10443. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  10444. <RelatedFeatureLoop xml_id="d11410e3827"
  10445. typeNameRealResource="default_db:CRM_PROCES"
  10446. typeName="default_db:PROCES_INIT"
  10447. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  10448. flat_relation_cache_name="ID"
  10449. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10450. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  10451. system_cache__appinfo:maxOccurs="0"
  10452. system_cache__appinfo:minOccurs="0"
  10453. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  10454. xpath="PARENT_ID"
  10455. xpath_value="../ID">
  10456. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  10457. <ogc:Or>
  10458. <ogc:PropertyIsEqualTo>
  10459. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10460. <ogc:Literal>PROCES_INIT</ogc:Literal>
  10461. </ogc:PropertyIsEqualTo>
  10462. </ogc:Or>
  10463. </simpleTypeMakeOgcFilter>
  10464. <default_db:PROCES_INIT xml_id="d11410e3827"
  10465. system_cache__appinfo:maxOccurs="0"
  10466. system_cache__appinfo:minOccurs="0"
  10467. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  10468. </RelatedFeatureLoop>
  10469. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  10470. <RelatedFeature xml_id="d11410e3832"
  10471. typeNameRealResource="default_db:CRM_PROCES"
  10472. typeName="default_db:PROCES_GROUP_1"
  10473. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  10474. flat_relation_cache_name="ID"
  10475. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10476. system_cache__appinfo:maxOccurs="0"
  10477. system_cache__appinfo:minOccurs="0"
  10478. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  10479. xpath="PARENT_ID"
  10480. xpath_value="../ID">
  10481. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  10482. <ogc:Or>
  10483. <ogc:PropertyIsEqualTo>
  10484. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10485. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  10486. </ogc:PropertyIsEqualTo>
  10487. </ogc:Or>
  10488. </simpleTypeMakeOgcFilter>
  10489. <default_db:PROCES_GROUP_1 xml_id="d11410e3832_child"
  10490. system_cache__appinfo:maxOccurs="0"
  10491. system_cache__appinfo:minOccurs="0"
  10492. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  10493. <ID xpath="ID" xml_id="d11410e3839"/>
  10494. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3841"/>
  10495. <path xpath="path" xml_id="d11410e3843"/>
  10496. <DESC xpath="DESC" xml_id="d11410e3845"/>
  10497. <TYPE xpath="TYPE" xml_id="d11410e3847"/>
  10498. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  10499. <RelatedFeatureLoop xml_id="d11410e3849"
  10500. typeNameRealResource="default_db:CRM_PROCES"
  10501. typeName="default_db:PROCES"
  10502. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  10503. flat_relation_cache_name="ID"
  10504. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10505. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  10506. system_cache__appinfo:maxOccurs="0"
  10507. system_cache__appinfo:minOccurs="0"
  10508. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  10509. xpath="PARENT_ID"
  10510. xpath_value="../ID">
  10511. <simpleTypeMakeOgcFilter name="PROCES">
  10512. <ogc:Or>
  10513. <ogc:PropertyIsEqualTo>
  10514. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10515. <ogc:Literal>PROCES</ogc:Literal>
  10516. </ogc:PropertyIsEqualTo>
  10517. </ogc:Or>
  10518. </simpleTypeMakeOgcFilter>
  10519. <default_db:PROCES xml_id="d11410e3849"
  10520. system_cache__appinfo:maxOccurs="0"
  10521. system_cache__appinfo:minOccurs="0"
  10522. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  10523. </RelatedFeatureLoop>
  10524. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  10525. <RelatedFeatureLoop xml_id="d11410e3854"
  10526. typeNameRealResource="default_db:CRM_PROCES"
  10527. typeName="default_db:PROCES_INIT"
  10528. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  10529. flat_relation_cache_name="ID"
  10530. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10531. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  10532. system_cache__appinfo:maxOccurs="unbounded"
  10533. system_cache__appinfo:minOccurs="0"
  10534. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  10535. xpath="PARENT_ID"
  10536. xpath_value="../ID">
  10537. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  10538. <ogc:Or>
  10539. <ogc:PropertyIsEqualTo>
  10540. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10541. <ogc:Literal>PROCES_INIT</ogc:Literal>
  10542. </ogc:PropertyIsEqualTo>
  10543. </ogc:Or>
  10544. </simpleTypeMakeOgcFilter>
  10545. <default_db:PROCES_INIT xml_id="d11410e3854"
  10546. system_cache__appinfo:maxOccurs="unbounded"
  10547. system_cache__appinfo:minOccurs="0"
  10548. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  10549. </RelatedFeatureLoop>
  10550. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  10551. <RelatedFeatureLoop xml_id="d11410e3859"
  10552. typeNameRealResource="default_db:CRM_PROCES"
  10553. typeName="default_db:PROCES_GROUP_1"
  10554. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  10555. flat_relation_cache_name="ID"
  10556. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10557. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  10558. system_cache__appinfo:maxOccurs="unbounded"
  10559. system_cache__appinfo:minOccurs="0"
  10560. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  10561. xpath="PARENT_ID"
  10562. xpath_value="../ID">
  10563. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  10564. <ogc:Or>
  10565. <ogc:PropertyIsEqualTo>
  10566. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10567. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  10568. </ogc:PropertyIsEqualTo>
  10569. </ogc:Or>
  10570. </simpleTypeMakeOgcFilter>
  10571. <default_db:PROCES_GROUP_1 xml_id="d11410e3859"
  10572. system_cache__appinfo:maxOccurs="unbounded"
  10573. system_cache__appinfo:minOccurs="0"
  10574. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  10575. </RelatedFeatureLoop>
  10576. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  10577. <RelatedFeatureLoop xml_id="d11410e3864"
  10578. typeNameRealResource="default_db:CRM_PROCES"
  10579. typeName="default_db:PROCES_GROUP_2"
  10580. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  10581. flat_relation_cache_name="ID"
  10582. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10583. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  10584. system_cache__appinfo:maxOccurs="unbounded"
  10585. system_cache__appinfo:minOccurs="0"
  10586. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  10587. xpath="PARENT_ID"
  10588. xpath_value="../ID">
  10589. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  10590. <ogc:Or>
  10591. <ogc:PropertyIsEqualTo>
  10592. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10593. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  10594. </ogc:PropertyIsEqualTo>
  10595. </ogc:Or>
  10596. </simpleTypeMakeOgcFilter>
  10597. <default_db:PROCES_GROUP_2 xml_id="d11410e3864"
  10598. system_cache__appinfo:maxOccurs="unbounded"
  10599. system_cache__appinfo:minOccurs="0"
  10600. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  10601. </RelatedFeatureLoop>
  10602. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  10603. <RelatedFeatureLoop xml_id="d11410e3869"
  10604. typeNameRealResource="default_db:CRM_PROCES"
  10605. typeName="default_db:PROCES_BENEFIT_INFO"
  10606. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  10607. flat_relation_cache_name="ID"
  10608. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10609. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  10610. system_cache__appinfo:maxOccurs="1"
  10611. system_cache__appinfo:minOccurs="0"
  10612. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  10613. xpath="PARENT_ID"
  10614. xpath_value="../ID">
  10615. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  10616. <ogc:Or>
  10617. <ogc:PropertyIsEqualTo>
  10618. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10619. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  10620. </ogc:PropertyIsEqualTo>
  10621. </ogc:Or>
  10622. </simpleTypeMakeOgcFilter>
  10623. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3869"
  10624. system_cache__appinfo:maxOccurs="1"
  10625. system_cache__appinfo:minOccurs="0"
  10626. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  10627. </RelatedFeatureLoop>
  10628. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  10629. <RelatedFeature xml_id="d11410e3875"
  10630. typeNameRealResource="default_db:CRM_WSKAZNIK"
  10631. typeName="default_db:CRM_WSKAZNIK"
  10632. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  10633. flat_relation_cache_name="ID"
  10634. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  10635. system_cache__appinfo:maxOccurs="0"
  10636. system_cache__appinfo:minOccurs="0"
  10637. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  10638. xpath="ID_PROCES"
  10639. xpath_value="../ID">
  10640. <default_db:CRM_WSKAZNIK xml_id="d11410e3875_child"
  10641. system_cache__appinfo:maxOccurs="0"
  10642. system_cache__appinfo:minOccurs="0"
  10643. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  10644. <ID xpath="ID" xml_id="d11410e3881"/>
  10645. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e3883"/>
  10646. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e3885"/>
  10647. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  10648. <RelatedFeature xml_id="d11410e3887"
  10649. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  10650. typeName="default_db:CRM_LISTA_ZASOBOW"
  10651. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  10652. flat_relation_cache_name="ID_ZASOB"
  10653. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  10654. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  10655. xpath="ID"
  10656. xpath_value="../ID_ZASOB">
  10657. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e3887_child"
  10658. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  10659. <ID xpath="ID" xml_id="d11410e3893"/>
  10660. <DESC xpath="DESC" xml_id="d11410e3895"/>
  10661. <DESC_PL xpath="DESC_PL" xml_id="d11410e3897"/>
  10662. </default_db:CRM_LISTA_ZASOBOW>
  10663. </RelatedFeature>
  10664. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3899"/>
  10665. </default_db:CRM_WSKAZNIK>
  10666. </RelatedFeature>
  10667. </default_db:PROCES_GROUP_1>
  10668. </RelatedFeature>
  10669. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  10670. <RelatedFeatureLoop xml_id="d11410e3901"
  10671. typeNameRealResource="default_db:CRM_PROCES"
  10672. typeName="default_db:PROCES_GROUP_2"
  10673. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  10674. flat_relation_cache_name="ID"
  10675. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10676. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  10677. system_cache__appinfo:maxOccurs="0"
  10678. system_cache__appinfo:minOccurs="0"
  10679. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  10680. xpath="PARENT_ID"
  10681. xpath_value="../ID">
  10682. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  10683. <ogc:Or>
  10684. <ogc:PropertyIsEqualTo>
  10685. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10686. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  10687. </ogc:PropertyIsEqualTo>
  10688. </ogc:Or>
  10689. </simpleTypeMakeOgcFilter>
  10690. <default_db:PROCES_GROUP_2 xml_id="d11410e3901"
  10691. system_cache__appinfo:maxOccurs="0"
  10692. system_cache__appinfo:minOccurs="0"
  10693. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  10694. </RelatedFeatureLoop>
  10695. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  10696. <RelatedFeatureLoop xml_id="d11410e3906"
  10697. typeNameRealResource="default_db:CRM_PROCES"
  10698. typeName="default_db:PROCES_BENEFIT_INFO"
  10699. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  10700. flat_relation_cache_name="ID"
  10701. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10702. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  10703. system_cache__appinfo:maxOccurs="unbounded"
  10704. system_cache__appinfo:minOccurs="0"
  10705. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  10706. xpath="PARENT_ID"
  10707. xpath_value="../ID">
  10708. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  10709. <ogc:Or>
  10710. <ogc:PropertyIsEqualTo>
  10711. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10712. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  10713. </ogc:PropertyIsEqualTo>
  10714. </ogc:Or>
  10715. </simpleTypeMakeOgcFilter>
  10716. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3906"
  10717. system_cache__appinfo:maxOccurs="unbounded"
  10718. system_cache__appinfo:minOccurs="0"
  10719. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  10720. </RelatedFeatureLoop>
  10721. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  10722. <RelatedFeature xml_id="d11410e3912"
  10723. typeNameRealResource="default_db:CRM_WSKAZNIK"
  10724. typeName="default_db:CRM_WSKAZNIK"
  10725. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  10726. flat_relation_cache_name="ID"
  10727. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  10728. system_cache__appinfo:maxOccurs="unbounded"
  10729. system_cache__appinfo:minOccurs="0"
  10730. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  10731. xpath="ID_PROCES"
  10732. xpath_value="../ID">
  10733. <default_db:CRM_WSKAZNIK xml_id="d11410e3912_child"
  10734. system_cache__appinfo:maxOccurs="unbounded"
  10735. system_cache__appinfo:minOccurs="0"
  10736. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  10737. <ID xpath="ID" xml_id="d11410e3918"/>
  10738. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e3920"/>
  10739. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e3922"/>
  10740. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  10741. <RelatedFeature xml_id="d11410e3924"
  10742. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  10743. typeName="default_db:CRM_LISTA_ZASOBOW"
  10744. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  10745. flat_relation_cache_name="ID_ZASOB"
  10746. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  10747. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  10748. xpath="ID"
  10749. xpath_value="../ID_ZASOB">
  10750. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e3924_child"
  10751. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  10752. <ID xpath="ID" xml_id="d11410e3930"/>
  10753. <DESC xpath="DESC" xml_id="d11410e3932"/>
  10754. <DESC_PL xpath="DESC_PL" xml_id="d11410e3934"/>
  10755. </default_db:CRM_LISTA_ZASOBOW>
  10756. </RelatedFeature>
  10757. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e3936"/>
  10758. </default_db:CRM_WSKAZNIK>
  10759. </RelatedFeature>
  10760. </default_db:PROCES_INIT>
  10761. </RelatedFeature>
  10762. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  10763. <RelatedFeature xml_id="d11410e3938"
  10764. typeNameRealResource="default_db:CRM_PROCES"
  10765. typeName="default_db:PROCES_GROUP_1"
  10766. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  10767. flat_relation_cache_name="ID"
  10768. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10769. system_cache__appinfo:maxOccurs="0"
  10770. system_cache__appinfo:minOccurs="0"
  10771. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  10772. xpath="PARENT_ID"
  10773. xpath_value="../ID">
  10774. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  10775. <ogc:Or>
  10776. <ogc:PropertyIsEqualTo>
  10777. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10778. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  10779. </ogc:PropertyIsEqualTo>
  10780. </ogc:Or>
  10781. </simpleTypeMakeOgcFilter>
  10782. <default_db:PROCES_GROUP_1 xml_id="d11410e3938_child"
  10783. system_cache__appinfo:maxOccurs="0"
  10784. system_cache__appinfo:minOccurs="0"
  10785. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1">
  10786. <ID xpath="ID" xml_id="d11410e3945"/>
  10787. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3947"/>
  10788. <path xpath="path" xml_id="d11410e3949"/>
  10789. <DESC xpath="DESC" xml_id="d11410e3951"/>
  10790. <TYPE xpath="TYPE" xml_id="d11410e3953"/>
  10791. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  10792. <RelatedFeatureLoop xml_id="d11410e3955"
  10793. typeNameRealResource="default_db:CRM_PROCES"
  10794. typeName="default_db:PROCES"
  10795. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  10796. flat_relation_cache_name="ID"
  10797. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10798. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  10799. system_cache__appinfo:maxOccurs="0"
  10800. system_cache__appinfo:minOccurs="0"
  10801. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  10802. xpath="PARENT_ID"
  10803. xpath_value="../ID">
  10804. <simpleTypeMakeOgcFilter name="PROCES">
  10805. <ogc:Or>
  10806. <ogc:PropertyIsEqualTo>
  10807. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10808. <ogc:Literal>PROCES</ogc:Literal>
  10809. </ogc:PropertyIsEqualTo>
  10810. </ogc:Or>
  10811. </simpleTypeMakeOgcFilter>
  10812. <default_db:PROCES xml_id="d11410e3955"
  10813. system_cache__appinfo:maxOccurs="0"
  10814. system_cache__appinfo:minOccurs="0"
  10815. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  10816. </RelatedFeatureLoop>
  10817. <!--#138 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  10818. <RelatedFeature xml_id="d11410e3960"
  10819. typeNameRealResource="default_db:CRM_PROCES"
  10820. typeName="default_db:PROCES_INIT"
  10821. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_INIT/PARENT_ID"
  10822. flat_relation_cache_name="ID"
  10823. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10824. system_cache__appinfo:maxOccurs="unbounded"
  10825. system_cache__appinfo:minOccurs="0"
  10826. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  10827. xpath="PARENT_ID"
  10828. xpath_value="../ID">
  10829. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  10830. <ogc:Or>
  10831. <ogc:PropertyIsEqualTo>
  10832. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10833. <ogc:Literal>PROCES_INIT</ogc:Literal>
  10834. </ogc:PropertyIsEqualTo>
  10835. </ogc:Or>
  10836. </simpleTypeMakeOgcFilter>
  10837. <default_db:PROCES_INIT xml_id="d11410e3960_child"
  10838. system_cache__appinfo:maxOccurs="unbounded"
  10839. system_cache__appinfo:minOccurs="0"
  10840. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1">
  10841. <ID xpath="ID" xml_id="d11410e3967"/>
  10842. <PARENT_ID xpath="PARENT_ID" xml_id="d11410e3969"/>
  10843. <path xpath="path" xml_id="d11410e3971"/>
  10844. <DESC xpath="DESC" xml_id="d11410e3973"/>
  10845. <TYPE xpath="TYPE" xml_id="d11410e3975"/>
  10846. <!--#190 from default_db__x3A__CRM_PROCES:PROCES; I get prefixed_object_info/@element PROCES; -->
  10847. <RelatedFeatureLoop xml_id="d11410e3977"
  10848. typeNameRealResource="default_db:CRM_PROCES"
  10849. typeName="default_db:PROCES"
  10850. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES/PARENT_ID"
  10851. flat_relation_cache_name="ID"
  10852. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10853. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4970-1_PROCES"
  10854. system_cache__appinfo:maxOccurs="unbounded"
  10855. system_cache__appinfo:minOccurs="0"
  10856. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"
  10857. xpath="PARENT_ID"
  10858. xpath_value="../ID">
  10859. <simpleTypeMakeOgcFilter name="PROCES">
  10860. <ogc:Or>
  10861. <ogc:PropertyIsEqualTo>
  10862. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10863. <ogc:Literal>PROCES</ogc:Literal>
  10864. </ogc:PropertyIsEqualTo>
  10865. </ogc:Or>
  10866. </simpleTypeMakeOgcFilter>
  10867. <default_db:PROCES xml_id="d11410e3977"
  10868. system_cache__appinfo:maxOccurs="unbounded"
  10869. system_cache__appinfo:minOccurs="0"
  10870. system_cache__appinfo:id="_CRM_PROCES___d4e4704-1"/>
  10871. </RelatedFeatureLoop>
  10872. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_INIT; I get prefixed_object_info/@element PROCES_INIT; -->
  10873. <RelatedFeatureLoop xml_id="d11410e3982"
  10874. typeNameRealResource="default_db:CRM_PROCES"
  10875. typeName="default_db:PROCES_INIT"
  10876. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES_INIT/PARENT_ID"
  10877. flat_relation_cache_name="ID"
  10878. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10879. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4802-1_PROCES_INI"
  10880. system_cache__appinfo:maxOccurs="0"
  10881. system_cache__appinfo:minOccurs="0"
  10882. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"
  10883. xpath="PARENT_ID"
  10884. xpath_value="../ID">
  10885. <simpleTypeMakeOgcFilter name="PROCES_INIT">
  10886. <ogc:Or>
  10887. <ogc:PropertyIsEqualTo>
  10888. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10889. <ogc:Literal>PROCES_INIT</ogc:Literal>
  10890. </ogc:PropertyIsEqualTo>
  10891. </ogc:Or>
  10892. </simpleTypeMakeOgcFilter>
  10893. <default_db:PROCES_INIT xml_id="d11410e3982"
  10894. system_cache__appinfo:maxOccurs="0"
  10895. system_cache__appinfo:minOccurs="0"
  10896. system_cache__appinfo:id="_CRM_PROCES___d4e4711-1"/>
  10897. </RelatedFeatureLoop>
  10898. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  10899. <RelatedFeatureLoop xml_id="d11410e3987"
  10900. typeNameRealResource="default_db:CRM_PROCES"
  10901. typeName="default_db:PROCES_GROUP_1"
  10902. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:CRM_PROCES/PARENT_ID"
  10903. flat_relation_cache_name="ID"
  10904. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10905. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  10906. system_cache__appinfo:maxOccurs="0"
  10907. system_cache__appinfo:minOccurs="0"
  10908. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  10909. xpath="PARENT_ID"
  10910. xpath_value="../ID">
  10911. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  10912. <ogc:Or>
  10913. <ogc:PropertyIsEqualTo>
  10914. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10915. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  10916. </ogc:PropertyIsEqualTo>
  10917. </ogc:Or>
  10918. </simpleTypeMakeOgcFilter>
  10919. <default_db:PROCES_GROUP_1 xml_id="d11410e3987"
  10920. system_cache__appinfo:maxOccurs="0"
  10921. system_cache__appinfo:minOccurs="0"
  10922. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  10923. </RelatedFeatureLoop>
  10924. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  10925. <RelatedFeatureLoop xml_id="d11410e3992"
  10926. typeNameRealResource="default_db:CRM_PROCES"
  10927. typeName="default_db:PROCES_GROUP_2"
  10928. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  10929. flat_relation_cache_name="ID"
  10930. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10931. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  10932. system_cache__appinfo:maxOccurs="0"
  10933. system_cache__appinfo:minOccurs="0"
  10934. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  10935. xpath="PARENT_ID"
  10936. xpath_value="../ID">
  10937. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  10938. <ogc:Or>
  10939. <ogc:PropertyIsEqualTo>
  10940. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10941. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  10942. </ogc:PropertyIsEqualTo>
  10943. </ogc:Or>
  10944. </simpleTypeMakeOgcFilter>
  10945. <default_db:PROCES_GROUP_2 xml_id="d11410e3992"
  10946. system_cache__appinfo:maxOccurs="0"
  10947. system_cache__appinfo:minOccurs="0"
  10948. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  10949. </RelatedFeatureLoop>
  10950. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  10951. <RelatedFeatureLoop xml_id="d11410e3997"
  10952. typeNameRealResource="default_db:CRM_PROCES"
  10953. typeName="default_db:PROCES_BENEFIT_INFO"
  10954. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  10955. flat_relation_cache_name="ID"
  10956. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  10957. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  10958. system_cache__appinfo:maxOccurs="unbounded"
  10959. system_cache__appinfo:minOccurs="0"
  10960. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  10961. xpath="PARENT_ID"
  10962. xpath_value="../ID">
  10963. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  10964. <ogc:Or>
  10965. <ogc:PropertyIsEqualTo>
  10966. <ogc:PropertyName>TYPE</ogc:PropertyName>
  10967. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  10968. </ogc:PropertyIsEqualTo>
  10969. </ogc:Or>
  10970. </simpleTypeMakeOgcFilter>
  10971. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e3997"
  10972. system_cache__appinfo:maxOccurs="unbounded"
  10973. system_cache__appinfo:minOccurs="0"
  10974. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  10975. </RelatedFeatureLoop>
  10976. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  10977. <RelatedFeature xml_id="d11410e4003"
  10978. typeNameRealResource="default_db:CRM_WSKAZNIK"
  10979. typeName="default_db:CRM_WSKAZNIK"
  10980. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  10981. flat_relation_cache_name="ID"
  10982. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  10983. system_cache__appinfo:maxOccurs="unbounded"
  10984. system_cache__appinfo:minOccurs="0"
  10985. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  10986. xpath="ID_PROCES"
  10987. xpath_value="../ID">
  10988. <default_db:CRM_WSKAZNIK xml_id="d11410e4003_child"
  10989. system_cache__appinfo:maxOccurs="unbounded"
  10990. system_cache__appinfo:minOccurs="0"
  10991. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  10992. <ID xpath="ID" xml_id="d11410e4009"/>
  10993. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e4011"/>
  10994. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e4013"/>
  10995. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  10996. <RelatedFeature xml_id="d11410e4015"
  10997. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  10998. typeName="default_db:CRM_LISTA_ZASOBOW"
  10999. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  11000. flat_relation_cache_name="ID_ZASOB"
  11001. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  11002. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  11003. xpath="ID"
  11004. xpath_value="../ID_ZASOB">
  11005. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e4015_child"
  11006. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  11007. <ID xpath="ID" xml_id="d11410e4021"/>
  11008. <DESC xpath="DESC" xml_id="d11410e4023"/>
  11009. <DESC_PL xpath="DESC_PL" xml_id="d11410e4025"/>
  11010. </default_db:CRM_LISTA_ZASOBOW>
  11011. </RelatedFeature>
  11012. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e4027"/>
  11013. </default_db:CRM_WSKAZNIK>
  11014. </RelatedFeature>
  11015. </default_db:PROCES_INIT>
  11016. </RelatedFeature>
  11017. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_1; I get prefixed_object_info/@element PROCES_GROUP_1; -->
  11018. <RelatedFeatureLoop xml_id="d11410e4029"
  11019. typeNameRealResource="default_db:CRM_PROCES"
  11020. typeName="default_db:PROCES_GROUP_1"
  11021. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_1/PARENT_ID"
  11022. flat_relation_cache_name="ID"
  11023. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  11024. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4858-1_PROCES_GRO"
  11025. system_cache__appinfo:maxOccurs="unbounded"
  11026. system_cache__appinfo:minOccurs="0"
  11027. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"
  11028. xpath="PARENT_ID"
  11029. xpath_value="../ID">
  11030. <simpleTypeMakeOgcFilter name="PROCES_GROUP_1">
  11031. <ogc:Or>
  11032. <ogc:PropertyIsEqualTo>
  11033. <ogc:PropertyName>TYPE</ogc:PropertyName>
  11034. <ogc:Literal>PROCES_GROUP_1</ogc:Literal>
  11035. </ogc:PropertyIsEqualTo>
  11036. </ogc:Or>
  11037. </simpleTypeMakeOgcFilter>
  11038. <default_db:PROCES_GROUP_1 xml_id="d11410e4029"
  11039. system_cache__appinfo:maxOccurs="unbounded"
  11040. system_cache__appinfo:minOccurs="0"
  11041. system_cache__appinfo:id="_CRM_PROCES___d4e4718-1"/>
  11042. </RelatedFeatureLoop>
  11043. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  11044. <RelatedFeatureLoop xml_id="d11410e4034"
  11045. typeNameRealResource="default_db:CRM_PROCES"
  11046. typeName="default_db:PROCES_GROUP_2"
  11047. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  11048. flat_relation_cache_name="ID"
  11049. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  11050. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  11051. system_cache__appinfo:maxOccurs="unbounded"
  11052. system_cache__appinfo:minOccurs="0"
  11053. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  11054. xpath="PARENT_ID"
  11055. xpath_value="../ID">
  11056. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  11057. <ogc:Or>
  11058. <ogc:PropertyIsEqualTo>
  11059. <ogc:PropertyName>TYPE</ogc:PropertyName>
  11060. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  11061. </ogc:PropertyIsEqualTo>
  11062. </ogc:Or>
  11063. </simpleTypeMakeOgcFilter>
  11064. <default_db:PROCES_GROUP_2 xml_id="d11410e4034"
  11065. system_cache__appinfo:maxOccurs="unbounded"
  11066. system_cache__appinfo:minOccurs="0"
  11067. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  11068. </RelatedFeatureLoop>
  11069. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  11070. <RelatedFeatureLoop xml_id="d11410e4039"
  11071. typeNameRealResource="default_db:CRM_PROCES"
  11072. typeName="default_db:PROCES_BENEFIT_INFO"
  11073. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  11074. flat_relation_cache_name="ID"
  11075. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  11076. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  11077. system_cache__appinfo:maxOccurs="1"
  11078. system_cache__appinfo:minOccurs="0"
  11079. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  11080. xpath="PARENT_ID"
  11081. xpath_value="../ID">
  11082. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  11083. <ogc:Or>
  11084. <ogc:PropertyIsEqualTo>
  11085. <ogc:PropertyName>TYPE</ogc:PropertyName>
  11086. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  11087. </ogc:PropertyIsEqualTo>
  11088. </ogc:Or>
  11089. </simpleTypeMakeOgcFilter>
  11090. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e4039"
  11091. system_cache__appinfo:maxOccurs="1"
  11092. system_cache__appinfo:minOccurs="0"
  11093. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  11094. </RelatedFeatureLoop>
  11095. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  11096. <RelatedFeature xml_id="d11410e4045"
  11097. typeNameRealResource="default_db:CRM_WSKAZNIK"
  11098. typeName="default_db:CRM_WSKAZNIK"
  11099. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  11100. flat_relation_cache_name="ID"
  11101. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  11102. system_cache__appinfo:maxOccurs="0"
  11103. system_cache__appinfo:minOccurs="0"
  11104. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  11105. xpath="ID_PROCES"
  11106. xpath_value="../ID">
  11107. <default_db:CRM_WSKAZNIK xml_id="d11410e4045_child"
  11108. system_cache__appinfo:maxOccurs="0"
  11109. system_cache__appinfo:minOccurs="0"
  11110. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  11111. <ID xpath="ID" xml_id="d11410e4051"/>
  11112. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e4053"/>
  11113. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e4055"/>
  11114. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  11115. <RelatedFeature xml_id="d11410e4057"
  11116. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  11117. typeName="default_db:CRM_LISTA_ZASOBOW"
  11118. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  11119. flat_relation_cache_name="ID_ZASOB"
  11120. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  11121. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  11122. xpath="ID"
  11123. xpath_value="../ID_ZASOB">
  11124. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e4057_child"
  11125. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  11126. <ID xpath="ID" xml_id="d11410e4063"/>
  11127. <DESC xpath="DESC" xml_id="d11410e4065"/>
  11128. <DESC_PL xpath="DESC_PL" xml_id="d11410e4067"/>
  11129. </default_db:CRM_LISTA_ZASOBOW>
  11130. </RelatedFeature>
  11131. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e4069"/>
  11132. </default_db:CRM_WSKAZNIK>
  11133. </RelatedFeature>
  11134. </default_db:PROCES_GROUP_1>
  11135. </RelatedFeature>
  11136. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_GROUP_2; I get prefixed_object_info/@element PROCES_GROUP_2; -->
  11137. <RelatedFeatureLoop xml_id="d11410e4071"
  11138. typeNameRealResource="default_db:CRM_PROCES"
  11139. typeName="default_db:PROCES_GROUP_2"
  11140. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_GROUP_2/PARENT_ID"
  11141. flat_relation_cache_name="ID"
  11142. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  11143. system_cache__appinfo:loop_id="_CRM_PROCES___d4e4914-1_PROCES_GRO"
  11144. system_cache__appinfo:maxOccurs="unbounded"
  11145. system_cache__appinfo:minOccurs="0"
  11146. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"
  11147. xpath="PARENT_ID"
  11148. xpath_value="../ID">
  11149. <simpleTypeMakeOgcFilter name="PROCES_GROUP_2">
  11150. <ogc:Or>
  11151. <ogc:PropertyIsEqualTo>
  11152. <ogc:PropertyName>TYPE</ogc:PropertyName>
  11153. <ogc:Literal>PROCES_GROUP_2</ogc:Literal>
  11154. </ogc:PropertyIsEqualTo>
  11155. </ogc:Or>
  11156. </simpleTypeMakeOgcFilter>
  11157. <default_db:PROCES_GROUP_2 xml_id="d11410e4071"
  11158. system_cache__appinfo:maxOccurs="unbounded"
  11159. system_cache__appinfo:minOccurs="0"
  11160. system_cache__appinfo:id="_CRM_PROCES___d4e4725-1"/>
  11161. </RelatedFeatureLoop>
  11162. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  11163. <RelatedFeatureLoop xml_id="d11410e4076"
  11164. typeNameRealResource="default_db:CRM_PROCES"
  11165. typeName="default_db:PROCES_BENEFIT_INFO"
  11166. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  11167. flat_relation_cache_name="ID"
  11168. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  11169. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  11170. system_cache__appinfo:maxOccurs="1"
  11171. system_cache__appinfo:minOccurs="0"
  11172. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  11173. xpath="PARENT_ID"
  11174. xpath_value="../ID">
  11175. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  11176. <ogc:Or>
  11177. <ogc:PropertyIsEqualTo>
  11178. <ogc:PropertyName>TYPE</ogc:PropertyName>
  11179. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  11180. </ogc:PropertyIsEqualTo>
  11181. </ogc:Or>
  11182. </simpleTypeMakeOgcFilter>
  11183. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e4076"
  11184. system_cache__appinfo:maxOccurs="1"
  11185. system_cache__appinfo:minOccurs="0"
  11186. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  11187. </RelatedFeatureLoop>
  11188. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  11189. <RelatedFeature xml_id="d11410e4082"
  11190. typeNameRealResource="default_db:CRM_WSKAZNIK"
  11191. typeName="default_db:CRM_WSKAZNIK"
  11192. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  11193. flat_relation_cache_name="ID"
  11194. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  11195. system_cache__appinfo:maxOccurs="0"
  11196. system_cache__appinfo:minOccurs="0"
  11197. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  11198. xpath="ID_PROCES"
  11199. xpath_value="../ID">
  11200. <default_db:CRM_WSKAZNIK xml_id="d11410e4082_child"
  11201. system_cache__appinfo:maxOccurs="0"
  11202. system_cache__appinfo:minOccurs="0"
  11203. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  11204. <ID xpath="ID" xml_id="d11410e4088"/>
  11205. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e4090"/>
  11206. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e4092"/>
  11207. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  11208. <RelatedFeature xml_id="d11410e4094"
  11209. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  11210. typeName="default_db:CRM_LISTA_ZASOBOW"
  11211. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  11212. flat_relation_cache_name="ID_ZASOB"
  11213. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  11214. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  11215. xpath="ID"
  11216. xpath_value="../ID_ZASOB">
  11217. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e4094_child"
  11218. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  11219. <ID xpath="ID" xml_id="d11410e4100"/>
  11220. <DESC xpath="DESC" xml_id="d11410e4102"/>
  11221. <DESC_PL xpath="DESC_PL" xml_id="d11410e4104"/>
  11222. </default_db:CRM_LISTA_ZASOBOW>
  11223. </RelatedFeature>
  11224. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e4106"/>
  11225. </default_db:CRM_WSKAZNIK>
  11226. </RelatedFeature>
  11227. </default_db:PROCES_GROUP_2>
  11228. </RelatedFeature>
  11229. <!--#190 from default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO; I get prefixed_object_info/@element PROCES_BENEFIT_INFO; -->
  11230. <RelatedFeatureLoop xml_id="d11410e4108"
  11231. typeNameRealResource="default_db:CRM_PROCES"
  11232. typeName="default_db:PROCES_BENEFIT_INFO"
  11233. flat_relation_cache_xpath="default_db__x3A__CRM_PROCES:PROCES_BENEFIT_INFO/PARENT_ID"
  11234. flat_relation_cache_name="ID"
  11235. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_PROCES"
  11236. system_cache__appinfo:loop_id="_CRM_PROCES___d4e5029-1_PROCES_BEN"
  11237. system_cache__appinfo:maxOccurs="unbounded"
  11238. system_cache__appinfo:minOccurs="0"
  11239. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"
  11240. xpath="PARENT_ID"
  11241. xpath_value="../ID">
  11242. <simpleTypeMakeOgcFilter name="PROCES_BENEFIT_INFO">
  11243. <ogc:Or>
  11244. <ogc:PropertyIsEqualTo>
  11245. <ogc:PropertyName>TYPE</ogc:PropertyName>
  11246. <ogc:Literal>PROCES_BENEFIT_INFO</ogc:Literal>
  11247. </ogc:PropertyIsEqualTo>
  11248. </ogc:Or>
  11249. </simpleTypeMakeOgcFilter>
  11250. <default_db:PROCES_BENEFIT_INFO xml_id="d11410e4108"
  11251. system_cache__appinfo:maxOccurs="unbounded"
  11252. system_cache__appinfo:minOccurs="0"
  11253. system_cache__appinfo:id="_CRM_PROCES___d4e4732-1"/>
  11254. </RelatedFeatureLoop>
  11255. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  11256. <RelatedFeature xml_id="d11410e4114"
  11257. typeNameRealResource="default_db:CRM_WSKAZNIK"
  11258. typeName="default_db:CRM_WSKAZNIK"
  11259. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  11260. flat_relation_cache_name="ID"
  11261. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  11262. system_cache__appinfo:maxOccurs="0"
  11263. system_cache__appinfo:minOccurs="0"
  11264. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  11265. xpath="ID_PROCES"
  11266. xpath_value="../ID">
  11267. <default_db:CRM_WSKAZNIK xml_id="d11410e4114_child"
  11268. system_cache__appinfo:maxOccurs="0"
  11269. system_cache__appinfo:minOccurs="0"
  11270. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  11271. <ID xpath="ID" xml_id="d11410e4120"/>
  11272. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e4122"/>
  11273. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e4124"/>
  11274. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  11275. <RelatedFeature xml_id="d11410e4126"
  11276. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  11277. typeName="default_db:CRM_LISTA_ZASOBOW"
  11278. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  11279. flat_relation_cache_name="ID_ZASOB"
  11280. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  11281. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  11282. xpath="ID"
  11283. xpath_value="../ID_ZASOB">
  11284. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e4126_child"
  11285. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  11286. <ID xpath="ID" xml_id="d11410e4132"/>
  11287. <DESC xpath="DESC" xml_id="d11410e4134"/>
  11288. <DESC_PL xpath="DESC_PL" xml_id="d11410e4136"/>
  11289. </default_db:CRM_LISTA_ZASOBOW>
  11290. </RelatedFeature>
  11291. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e4138"/>
  11292. </default_db:CRM_WSKAZNIK>
  11293. </RelatedFeature>
  11294. </default_db:PROCES_BENEFIT_INFO>
  11295. </RelatedFeature>
  11296. <!--#138 from default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK; I get prefixed_object_info/@element CRM_WSKAZNIK; -->
  11297. <RelatedFeature xml_id="d11410e4141"
  11298. typeNameRealResource="default_db:CRM_WSKAZNIK"
  11299. typeName="default_db:CRM_WSKAZNIK"
  11300. flat_relation_cache_xpath="default_db__x3A__CRM_WSKAZNIK:CRM_WSKAZNIK/ID_PROCES"
  11301. flat_relation_cache_name="ID"
  11302. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_WSKAZNIK"
  11303. system_cache__appinfo:maxOccurs="unbounded"
  11304. system_cache__appinfo:minOccurs="0"
  11305. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1"
  11306. xpath="ID_PROCES"
  11307. xpath_value="../ID">
  11308. <default_db:CRM_WSKAZNIK xml_id="d11410e4141_child"
  11309. system_cache__appinfo:maxOccurs="unbounded"
  11310. system_cache__appinfo:minOccurs="0"
  11311. system_cache__appinfo:id="_CRM_PROCES___d4e4739-1">
  11312. <ID xpath="ID" xml_id="d11410e4147"/>
  11313. <ID_PROCES xpath="ID_PROCES" xml_id="d11410e4149"/>
  11314. <ID_ZASOB xpath="ID_ZASOB" xml_id="d11410e4151"/>
  11315. <!--#138 from default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW; I get prefixed_object_info/@element CRM_LISTA_ZASOBOW; -->
  11316. <RelatedFeature xml_id="d11410e4153"
  11317. typeNameRealResource="default_db:CRM_LISTA_ZASOBOW"
  11318. typeName="default_db:CRM_LISTA_ZASOBOW"
  11319. flat_relation_cache_xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"
  11320. flat_relation_cache_name="ID_ZASOB"
  11321. system_cache__appinfo:get_default_db_obj_url_table_name="CRM_LISTA_ZASOBOW"
  11322. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1"
  11323. xpath="ID"
  11324. xpath_value="../ID_ZASOB">
  11325. <default_db:CRM_LISTA_ZASOBOW xml_id="d11410e4153_child"
  11326. system_cache__appinfo:id="RM_WSKAZNIK___d14e4488-1">
  11327. <ID xpath="ID" xml_id="d11410e4159"/>
  11328. <DESC xpath="DESC" xml_id="d11410e4161"/>
  11329. <DESC_PL xpath="DESC_PL" xml_id="d11410e4163"/>
  11330. </default_db:CRM_LISTA_ZASOBOW>
  11331. </RelatedFeature>
  11332. <ID_PRZYPADEK xpath="ID_PRZYPADEK" xml_id="d11410e4165"/>
  11333. </default_db:CRM_WSKAZNIK>
  11334. </RelatedFeature>
  11335. </default_db:PROCES>
  11336. </RelatedFeature>