Hello!
I am following instructions given to add a new named right and need to update a field length for the xtk:group name field from 64 to 128 bytes. I am working from the Adobe documentation for campaign classic v7.
I am not able to get this work. The group table isn’t listed for update when I perform the step ‘Update the data structure’.
Here is the process I followed:
<attribute defOnDuplicate="true" default="GetOption('XtkInstancePrefix')+Iif(@type=0, 'LOGIN', Iif(@type=1, 'GRP', 'RIGHT'))+CounterValue('xtkOperator')"
label="Name" length="128" name="name" required="true" type="string"/>/>
On the edit table step it does not show the change or update for xtk:group. This screen shot is taken from Adobe documentation as an example.
This is as far as I have gone in the process since it will not recognize that the group schema needs updating.
Also, here are a couple of helpful discussions on EL that I reviewed as well: https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/can-activity-name-...
Can someone advise on what I’m missing?
Thanks!
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
I resolved this issue. I repositioned the change between the element tags as below and it worked.
<element desc="Application operator groups" img="xtk:group.png" label="Operator groups"
labelSingular="Operator group" name="group">
<attribute defOnDuplicate="true" default="GetOption('XtkInstancePrefix')+Iif(@type=0, 'LOGIN', Iif(@type=1, 'GRP', 'RIGHT'))+CounterValue('xtkOperator')"
label="Name" length="128" name="name" required="true" type="string"/>/>
</element>
I resolved this issue. I repositioned the change between the element tags as below and it worked.
<element desc="Application operator groups" img="xtk:group.png" label="Operator groups"
labelSingular="Operator group" name="group">
<attribute defOnDuplicate="true" default="GetOption('XtkInstancePrefix')+Iif(@type=0, 'LOGIN', Iif(@type=1, 'GRP', 'RIGHT'))+CounterValue('xtkOperator')"
label="Name" length="128" name="name" required="true" type="string"/>/>
</element>