PTR - 2013-09-12

Hey,

I was trying to add a new type of Change. We're using the full itil-change model.

I wrote a new extension for a new Class derived from "ApprovedChange" (which seemed to be the basis for normal and emergency-change).

My Problem is, that the toolkit never finishes "Checking the consistency of the data model definition...". It just keeps on loading... I reduced the xml code to the absolute bare minimum like this:

<?xml version="1.0" encoding="UTF-8"?>
<itop_design xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0">
  <classes>
   <class id="ITChange" _delta="define">
    <parent>ApprovedChange</parent>
    <properties/>
    <fields/>
    <methods/>
    <presentation/>
   </class>
  </classes>
</itop_design>

I tried changing the parent to Change. Doesn't make a difference. Tried to change it to any other class (e.g. FunctionalCI) and it works instantly. Checks the code. Says ok.

Does anyone have an Idea, why this never finishes?