gokul1904
(Glory 01)
1
Hi team ,
I want to enter the highlighted 3 lines again below in the xml file .
For eg like this -
Please find the original snapshot of the file for your reference.Also I have attached the xml.
MAIN_FILE - Copy.xml (3.7 KB)
Can you please help me in entering the 3 lines ?
Thanks,
gokul
gokul1904
(Glory 01)
3
I tried but I am not able to find the solution.
Regards,
Gokul
ppr
(Peter Preuss)
4
@gokul1904
Kindly note that XML Namespaces are to handle:
Let us show some building blocks at some sample data
Variables:
And an initial flow:
retrieve the element where later to add the new XElements:
xeLineReplacement = xDoc.Root.Descendants(xnsWD + "Invoice_Line_Replacement_Data").First()
Prepare the XElement which is to add:
newXElement = New XElement(xnsWD + "Quantity",1)
Add it:
Visuals:
the element knows its Namespace, but currently is not linked with the wd prefix
After Adding to the existing XML:
The wd prefix is in use
Afterwards save / process the XML as needed
Find starter Help here:
ppr_XMLWorkdayBox.xaml (8.1 KB)
Data.xml (240 Bytes)
1 Like
system
(system)
Closed
6
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.