datamodel.itop-change-mgmt.xml 167 KB

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