Ok I'll jump into it

I'm working with OTRS ITSM 3.2.2.
My first step is to actually add the option to link the CI to a CustomerUser.
I edited 2 files so far with no results on screen:
\Kernel\Config\Files\ITSMCore.xml
Added at line 149
Code: Select all
<ConfigItem Name="LinkObject::PossibleLink###3205" Required="0" Valid="1">
<Description Translatable="1">This setting defines that a 'ITSMConfigItem' object can be linked with 'CustomerUser' objects using the 'RelevantTo' link type.</Description>
<Group>Framework</Group>
<SubGroup>Core::LinkObject</SubGroup>
<Setting>
<Hash>
<Item Key="Object1">ITSMConfigItem</Item>
<Item Key="Object2">CustomerUser</Item>
<Item Key="Type">RelevantTo</Item>
</Hash>
</Setting>
</ConfigItem>
* Can anyone tell me what the "PossibleLink###3205" means? I suspected that is was an ID of some sort somewhere else but wasnt able to make sense of it...
** Also, Im not sure about the object type "CustomerUser". Tried to find where those object types are defined but there are way too much occurences of words like "ticket" or "ConfigItem" haha!
I also edited the file "\Kernel\Language\fr_ITSMCore.pm" (Im using the french localization but you could try it with "en" or whatever you like
Added this line at line 149.
Code: Select all
$Self->{Translation}->{'This setting defines that a \'ITSMConfigItem\' object can be linked with \'CustomerUser\' objects using the \'RelevantTo\' link type.'} = '';
So what I thought this would do is simply add the option in the link combobox to link CI to "Customer" but nope
Anyone can help me with part of my problems or pinpoint me what im doing wrong/good so far?

haha!
Thanks a lot again for your time!