Marius - 2015-06-01

Hello,
we are currently implementing iTop at our firm and are spending a lot of work customizing it.

Our current task is creating a profile that is only allowed to modify one field of our class "Inventar".
We have an action "ev_confirm" that modifies exactly one field of the class. The field name is "confirmation".

I now want to create a profile that is only allowed to modify the field "confirmation" of the class "Inventar".
I tried the following, but that still allows me to modify all the other fields, too.

Can you help me out here? Thanks for your time!

<user_rights>
<groups>
<group id="user-content-FIM User" _delta="define">
<classes>
<class id="user-content-Inventar">
<fields><field id="user-content-confirmation"></field></fields>
</class>
</classes>
</group>
</groups>
<profiles>
<profile id="user-content-50" _delta="define">
<name>FIM User</name>
<description>casual FIM User, only welcome Menu</description>
<groups>
<group id="user-content-FIM User">
<actions>
<action xsi:type="write">allow</action>
<action xsi:type="bulk write">allow</action>
<action id="user-content-ev_confirm" xsi:type="stimulus">allow</action>
</actions>
</group>
</groups>
</profile>
</profiles>
</user_rights>


Marius