Hi everyone,
I need to output multiple keys for the table. Can anyone let me know how to write xsl for this. I need something like this
<Table Name="Extensions" ReferencePath="GTINs~Extensions">
<Record>
<Field Name="Name" Type="Field">
<b><ComplexValue Key="FMCG" "EuropeFields" /></b>
<!-- This is wrong syntax-->
</Field>
</Record>
</Table>
where FMCG and EuropeFields both are the keys. I don't know the correct syntax.
I have written as below but that doesn't work.
<Table Name="Extensions" ReferencePath="GTINs~Extensions">
<Record>
<Field Name="Name" Type="Field">
<ComplexValue Key="FMCG" />
<ComplexValue Key="EuropeFields" />
</Field>
</Record>
</Table>
So, if I have the xsl program as below
<Table Name="Extensions" ReferencePath="GTINs~Extensions">
<Record>
<Field Name="Name" Type="Field">
<ComplexValue Key="FMCG" />
</Field>
</Record>
</Table>
it will give the output for Extension table in MDM data manager as
FMCG
<b>But, I need the output for Extension table in MDM data manager as below
FMCG; EuropeFields</b>
Thanks & Regards,
Hemal