Export Adobe form data into specific XML code
Copy link to clipboard
Copied
Hi, I am using Adobe forms and I can export the data into an XML format. However, I have to export the form data into specific XML format because I have to upload it into another non-Adobe cloud. This XML format looks like below. Can someone tell me how I influence the exported code so that it corresponds with the below format?
<inEus xmlns:eus="http://www.bafin.de/mvp/eus/"> <eus:language>
<!-- Sprachangabe -->
</eus:language>
<eus:heading>
<!-- Stimmrechtsmitteilung oder Korrektur? -->
</eus:heading>
<eus:notification>
<!-- Die zehn Haupt-Bloecke einer Stimmrechtsmitteilung -->
<eus:detailsOfIssuer></eus:detailsOfIssuer> <eus:reasonForNotification></eus:reasonForNotification> <eus:detailsOfPersonSubject></eus:detailsOfPersonSubject> <!-- Der folgende Block ist optional. --> <eus:namesOfShareholders></eus:namesOfShareholders> <eus:dateThreshold></eus:dateThreshold> <eus:totalPositions></eus:totalPositions> <eus:detailsOnTotalPositions></eus:detailsOnTotalPositions> <eus:informationPersonSubject></eus:informationPersonSubject> <!-- Die beiden folgenden Bloecke sind optional. --> <eus:proxyVoting></eus:proxyVoting> <eus:otherInformation></eus:otherInformation>
</eus:notification>
<eus:signing>
<!-- Datum und Unterschrift -->
</eus:signing>
<eus:annex>
<!-- Die drei Bloecke des Annex -->
<eus:annexIdentityPersonSubject> </eus:annexIdentityPersonSubject>
<!-- Die beiden folgenden Bloecke sind optional. --> <eus:annexIdentityNotifier></eus:annexIdentityNotifier> <eus:annexOtherInformation></eus:annexOtherInformation>
</eus:annex>
</inEus>
Many thanks
Jochen
Copy link to clipboard
Copied
You can't influence the exported XML schema. This is a very common situation, you cannot usually change apps to use different schemas. To convert between schemas, use XSLT or another XML transformation tool. You will need a detailed understanding of both schemas.
Copy link to clipboard
Copied
Many thanks - nearly what I thought.

