I want to export xml file from Navision 2009.
I want to have this structure,
If I have table A with field X (data x1,x2,x3) and field Y (data y1,y2,y3).
xml file will be:
<x1> y1 < /x1>
<x2> y2 < /x2>
<x3> y3 < /x3>
is it possible with xml ports?
or I must use another solution?
thank you
0
Answers
Zaid Tariq
Dynamics NAV/365 BC Developer at Dynamics 360
please like / agree / verify my answer, if was helpful.
how can I do the customization?
Then, what do you want to do? Do you want to number the elements in its name?
Can you come up with a DTD or schema for this?
If this is, what you want to do, then no: XMLPorts (used with property Format=XML) are meant for generating proper XML files, which stand a chance of being valid.
You my be able to do it using an XMLPort with Format=Variable Text.
I want this form:
<root>
<x1> y1 < /x1>
<x2> y2 < /x2>
<x3> y3 < /x3>
</root>
I will change the Format to Variable Text and retry, Thank You
Zaid Tariq
Dynamics NAV/365 BC Developer at Dynamics 360
please like / agree / verify my answer, if was helpful.