attribute for Export
Copy
The ‘where’ attribute condition can be used to limit the amount of exported data that is returned while using the Language Tool. So, in this scenario the ExportConfig.xml would contain XML that looks as follows:
<export>
…
<itemtype name="Field">
<properties list="label,legend" />
<where>
SOURCE_ID in (
select b.ID
from Body as b
where b.SOURCE_ID in
(
SELECT f.id
FROM FORM AS f
INNER JOIN [VIEW] AS v ON f.ID = v.RELATED_ID
WHERE (v.SOURCE_ID IN
(SELECT it.ID
FROM ITEMTYPE AS it
INNER JOIN TOC_ACCESS AS ta ON ta.SOURCE_ID = it.ID
INNER JOIN [IDENTITY] AS idn ON ta.RELATED_ID = idn.ID
WHERE (idn.NAME != 'Innovator Admin') AND (idn.NAME != 'Administrators') AND (idn.NAME != 'Super User')))))
</where>
</itemtype>
…
</export>
Note
The full sample XML can be found in Appendix A.