praveen xslt requirement 1st logic sort and reading header, traier elements row , for each item 2nd logic: grouping quantity
second xslt or graphcal logic to be used. ----------------------------------------- after first xslt logic, you can use graphical mapping, change logic delivery quanty by taking similar delivery number, or use another xslt logic. <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <!-- 1. Define a key (Muenchian Grouping) to group all OrderStatusFromLSP elements that share the same DELIVERY_NUMBER. --> <xsl:key name="delivery-group" match="OrderStatusFromLSP" use="DELIVERY_NUMBER"/> <!-- Identity Template: A default rule to copy all nodes and attributes. This ensures the entire document structure remains intact unless overridden by a more specif...