Hi.
I’m struggling with the Connect configuration and I want to achieve the following: I need a mapping that returns an object’s name concatenated with a constant string. I’ve tried several mappings but I only get the name value.
eg.
<mapping name="tipoObj" type="string">
<attribute typeNum="1" value="${name} (UO)" locale="1034" function="target"/>
</mapping>
Is there any place where I can have further information for mappings?
Thanks
Mercedes
André Vitor Oliveira on
Hi
I suggest to use expression instead of value, and could you give a try? perhaps the 'value' will not concatenate the string...
Example
<mapping name="tipoObj" type="string">
<attribute
typeNum="1"
locale="1034"
expression="name + ' (UO)'"
function="target"/>
</mapping>
BR
AO