Tagged Questions
2
votes
1answer
28 views
How to organize(group) nodes under a closed element - XSLT
I have tried simple grouping XML with XSLT 1.0 and it worked, but here I have something more complicated and actually different situation.
So the XML structure is basically this:
<Main>
...
1
vote
2answers
31 views
How to improve my Muenchian grouping XSLT?
Thanks to the help of Niraj and
hr_117 I was able to arrive at an XSL template that turns this XML...
<bookings>
<entry>
<event>Christmas</event>
...
0
votes
1answer
90 views
Get distinct values from xml
My sample xml looks below: I need to get the distinct states from xml. I am using xslt 1.0 in vs 2010 editor.
<?xml version="1.0" encoding="utf-8" ?>
<states>
<node>
...
0
votes
2answers
55 views
XSLT 1.0: Muenchian grouping does not work
I have the following simplified XML structure:
<?xml version="1.0" encoding="utf-8"?>
<list>
<INVOIC>
<M_INVOIC>
<G_SG25>
<S_LIN>
...
1
vote
1answer
60 views
XSLT1, Muenchian grouping, listing the grouped nodes in a foreach loop
Given the xml code
<z>
<f hit="1">
<g>hola1</g>
</f>
<f hit="2">
<g>hola2</g>
</f>
<f hit="3">
<g>hola1</g>
</f>
...
0
votes
1answer
87 views
Merging tags based on two different complex tags
In the below two ASNInPO's po_nbr is same container_id under ASNInCtn is same and item_id under ASNInItem is different. In this case two ASNInPO's has to be merged and two ASNInCtn's has to be merged ...
1
vote
1answer
112 views
In muenchian grouping, why shoud I go for generate-id when I can use the key directly?
My input xml file is as follws:
<root>
<Property>
<Name>Jack</Name>
<Color>red.green</Color>
</Property>
<Property>
...
0
votes
1answer
885 views
XSLT grouping on multiple keys using Muenchian method
This is the input file.
All these blocks are wrapped in a <allocfile> tag which is not appearing, dunno why? And all these blocks are wrapped in a top level element <xml>.
<XML>
...
0
votes
1answer
151 views
How keys work in muenchian grouping
I haven't found an answer yet on how keys are generated while doing muenchian-grouping in xslt. The examples I found all have very simple xml files. Given the following xml-file:
<?xml ...
0
votes
1answer
50 views
Don’t get rid off ”header” in an “Group By” with sum function in XSLT 1.0
I get the following result from the XSLT output. I don't want the InvoiceNo, InvoiceDate and DueDate from the header in the result. Want just the lines with PC Quantity TotalAmount, and not the first ...
0
votes
1answer
81 views
xslt1.0 (firefox): counting nodes with different value, muenchian-grouping?
Each new problem that I think I will be able to solve, it turns out that I can't.
So, with the following XML I would like to know how many different nodes are there that have a different @num ...
1
vote
1answer
456 views
xslt 1.0, select group of nodes with key
I want to select nodes based on some variables.
The XML code:
<data>
<prot seq="AAA">
<node num="1">1345</node>
<node num="1">11245</node>
...
2
votes
2answers
334 views
XSLT - group response as per month and year combination
I want into write xslt to get response for the input xml. thanks in advance. I want to group output such that month year combination is not repeated for each of the employee details.
Input XML:
...
3
votes
1answer
2k views
XSLT split output files - muenchian grouping
I have an XSLT file so as to transform large amount of data. I would like to add a "split" functionality, either as a chained XSLT or within the current XSLT that can create multiple output files so ...