How to add a hierarchical tag in an XML file though XSL?
- by Hetal
Hello,
I am facing a problem in XML transformation. Sorry if the question is asked before. The XML tag hierarchy is as follows:
//This tag contains the header data (Example:Pick Slip Number)
Then the Detail lines are printed.
The detail lines are printed. This detail line belongs to the previous Pick Slip Number.
The detail lines are printed. This detail line belongs to the previous Pick Slip Number.
My requirement is to:
//This tag contains the header data (Example:Pick Slip Number)
Then the Detail lines are printed.
The detail lines are printed. This detail line belongs to the previous Pick Slip Number.
The detail lines are printed. This detail line belongs to the previous Pick Slip Number.
My requirement is to print the Pick Slip Number at every page on the header. Since there is no parent tag for and , I face the problem while printing.
I am trying to serach something in XML transformation. But I dont know how to transform the XML tag hierarchy.
I have attached the XML file for the reference.
Thanks..