Application management : Tools : Enterprise Talk : Examples - export : Exporting an MSFF (M-to-N) link
Exporting an MSFF (M-to-N) link
Exporting an multiple select link is similar to exporting M-to-N links.
Example
Person Mease has drivers licences A and B through link UsrLicenseCodes to picklist UsrCode_LICENSE (LICENSE).
1. In your Enterprise Talk definition, add three business objects:
Person
UsrLicenseCodes
UsrCode_LICENSE
2. Add the fields to these business objects as shown in the following table:
Business Object
Field
Field as...
Part of search key?
Person
LastName
Yes
UsrLicenseCodes
Business object (BORef) to BO Person (link)
Super
Yes
User Code (UserCodeCodeRef) to BO UsrCode_LICENSE (link)
Sub
Yes
UsrCode_LICENSE
Code
Yes
Name
No
3. Once you have finished configuring, run your definition.
The XML result will look as follows:
<Person>
<LastName>Mease</LastName>
<UsrLicenseCodes>
<UsrCode_LICENSE>
<Code>A</Code>
<Name>Motor cycle license</Name>
</UsrCode_LICENSE>
</UsrLicenseCodes>
<UsrLicenseCodes>
<UsrCode_LICENSE>
<Code>B</Code>
<Name>Car license</Name>
</UsrCode_LICENSE>
</UsrLicenseCodes>
</Person