Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
72 views

I am not sure if this is possible with XSLT but I am trying to get the below XML into a format where it is name, title, date (if same date then only get date once), last value of In time (might not be ...
BryanG's user avatar
  • 29
0 votes
1 answer
76 views

Am trying to split the xml file in to multiple xml files based on the xml tag / in the input xml file. the individual output xml files should go in sequence as per the input xml /from top to bottom of ...
raviteja's user avatar
0 votes
1 answer
145 views

In my XSLT, I'm outputting a time stamp: <time_stamp> <xsl:value-of select="format-dateTime(wd:Last_Functionally_Updated, '[M01]/[D01]/[Y0001] [H01]:[m01]:[s01]')"/> </...
Velsus's user avatar
  • 25
1 vote
1 answer
49 views

I'm new to xslt, I'm working with below XML <?xml version='1.0' encoding='UTF-8'?> <wd:Report_Data xmlns:wd="urn:com.workday.report/INT0194_Recruitics"> <wd:Report_Entry&...
Velsus's user avatar
  • 25
1 vote
1 answer
71 views

I'm new to XSLT, for the below XML, I'm trying to implement this transformation logic: If <wd:candidate>,<wd:CF_LRV_Requisition_ID> and <wd:Stage> have the same combination of values,...
Velsus's user avatar
  • 25
0 votes
1 answer
64 views

Here’s a snippet of my XSLT code: <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" ...
vikas mishra's user avatar
0 votes
2 answers
55 views

I'd like to ask for your guidance to better achieve the desired output. I have an XSLT file that I don't have control on it and I'd like to apply a transformation that modify the initial structure. My ...
David Edgar's user avatar
1 vote
1 answer
87 views

I'm trying to do nested grouping in XSLT 1.0 and am facing some issues, below is my XML sample code. <?xml version="1.0" encoding="iso-8859-1"?> <INVOICE> <GROUP ...
Javier Bosque's user avatar
1 vote
2 answers
80 views

Even though there are several threads that explain the use of multiple templates in the same xslt file, I can't find a solution to address my issue. I would like to apply two transformations to my xml ...
David Edgar's user avatar
0 votes
1 answer
105 views

I'm currently working on a tricky transformation in which I need to sum the amount of the game articles price value when the article appears twice and to exclude the second article from the output. ...
David Edgar's user avatar
0 votes
1 answer
68 views

My source xml file has elements in this form: <Employees> <Employee> <Name>ABC</Name> <City>Delhi</Delhi> </Employee> <Employee> <Name>ABC</...
arpitg's user avatar
  • 13
0 votes
1 answer
76 views

For the Input XML: <EmpJob> <EmpJob> <ConcatDepartment>+Local_Functions+Group_Functions+Group_Owners+Group_Managers+Group_Leads+Interim_Services</ConcatDepartment> ...
Pavan Kumar's user avatar
0 votes
1 answer
48 views

In my XSLT I need to assign the values to the variable named FODepartment_LX where X represents the position of the delimiter(+) starting from the leftmost delimiter and Maximum position is 10. If the ...
Pavan Kumar's user avatar
0 votes
0 answers
66 views

Requirement is to create a CSV file out of an XML for each Employee Records. Each record in CSV contains multiple lines which depends on the department level which I have achieved it through the ...
Pavan Kumar's user avatar
0 votes
1 answer
56 views

Trying to transform xml and group nodes by value and elements in xslt 2.0 I have got an input xml as below: <?xml version='1.0' encoding='UTF-8'?> <Applications> <Application> ...
Madhu N G's user avatar
0 votes
1 answer
122 views

Trying to transform xml and group nodes by value and elements in xslt 3.0 Hey Guys, I have got an input xml as below <?xml version='1.0' encoding='UTF-8'?> <Applications> <...
Madhu N G's user avatar
2 votes
1 answer
36 views

Okay, so what's been handed to me is this block of nodes that's the result of a transformation from Word to XML that I have no control over. The next step for this will be a transformation to HTML. ...
Randy H in CT's user avatar
0 votes
1 answer
92 views

I need to group Itemno for different Level Example: Level1:8000000377 - 1 8000000376 - 1 8000000378 - 2 8000000373 - 1 8000000371 - 1 Level2:8000000373 - 2 <Root> ...
Akash's user avatar
  • 45
0 votes
1 answer
2k views

I have a table where I am pivoting the data in the last column by accounting date as (ACCOUNTING_DATE) and a debit from one of the subledger tables as (UNROUNDED_ACCOUNTED_DR). I found an old tutorial ...
Lindsay A.'s user avatar
0 votes
1 answer
87 views

would like to know how to go about creating multiple groupings in XSLT. The following XML should be grouped by memberID, deposit date, and deposit type. The total amount for each member should be ...
Wasupbi's user avatar
0 votes
1 answer
88 views

would like to know how to go about creating multiple groupings in XSLT. The following XML should be grouped by memberID, deposit date, and deposit type. The total amount for each member should be ...
Wasupbi's user avatar
0 votes
1 answer
79 views

I am facing issue with the xslt transformation from xml. Xml: The node "<wd:GPAR_LRV_Dependents_group>" is repeated 12 times in xml and the business object to extract dependent ...
Fariya's user avatar
  • 1
0 votes
1 answer
68 views

Need help to list the values in Array using xslt. Currently, they are showing as one row by another and need the values to show them in array. Attached is the source xml and xslt tried but not sure ...
Buddi's user avatar
  • 67
0 votes
0 answers
62 views

I'm working on an XSLT transformation and need assistance in achieving a specific transformation logic. Below are the details: Objective: If the <namepf> tag is the same for different <record&...
TulioVargas's user avatar
0 votes
2 answers
80 views

I have an XML document that has a series of paragraphs: <section> <title>Section title</title> <p style="Body">...</p> <p style="Body"&...
Hobbes's user avatar
  • 2,187
1 vote
2 answers
103 views

I have XHTML content in which adjacent anchor tags with the same href value are present and need to be merged. I've been trying to figure out a way to do this with an XSL template and have run into a ...
Greg's user avatar
  • 15
0 votes
2 answers
201 views

Need help to read the XML payload which is coming inside one of the field. Request Payload: <?xml version="1.0" encoding="UTF-8"?> <Code xmlns:ns0="http://example....
Nikita's user avatar
  • 3
0 votes
1 answer
20 views

I need to create an xml output that groups all the wd:External_Value_Data/wd:Text fields with each distinct Internal Value. <wd:root> ...
TurboLag06's user avatar
0 votes
2 answers
68 views

Input: <ROOT> <TEMPLATE style="test"> <ATTRIBUTE name="Color"><VALUE><UNIT>B</UNIT><UNIT>lack</UNIT></VALUE></...
LHark's user avatar
  • 3
0 votes
2 answers
119 views

I have the below xml which I need to first group-by Requester and then for each group I need to have another group-by based on Item exists or not. <root> <row> <Requester>Tim</...
Adee's user avatar
  • 67
0 votes
1 answer
78 views

Below is my input XML. I want to group below XML based on username and also remove any duplicate in HierarchyLocation Below is my input XML <data> <UploadUser> <User> <...
Doottu Biju's user avatar
0 votes
1 answer
74 views

xsl 1.0 version : <xsl:element name="CategoryCodes"> <xsl:copy-of select="attribute::*" /> <xsl:for-each select="GuestRoomInfo"...
Srikar Gunna's user avatar
0 votes
2 answers
74 views

There are similar questions on stackoverflow but the answers sort or group the matching items putting them out of sequence compared to the order of the input. I have the following data <doc> <...
markh's user avatar
  • 59
0 votes
1 answer
101 views

I am trying to create a sum based on equal IDs in an XSLT file and output it in an extra attribute. Maybe one of you can help me? The followed XML is an output: <?xml version="1.0" ...
Fabs's user avatar
  • 3
0 votes
1 answer
59 views

Following the solution provided to this post (credits to: Martin Honnen) where I needed to group the elements in the XML by the id and counting the duplicates based on some rules. Now I'm having an ...
Somebody's user avatar
  • 2,819
0 votes
1 answer
30 views

Below is my requirement , Input XML : <ns0:TestDTM xmlns:ns0="http://SchemaIN"> <ID>1234</ID> <Ref>A1</Ref> <Detail> <Qualifier>Q1</...
sukra's user avatar
  • 133
0 votes
1 answer
188 views

I am trying to use XSLT to group data from an XML document into two categories. Specifically, given a list of three items, I want the XSLT to export the three items as two different groups (food & ...
n718an's user avatar
  • 15
-1 votes
1 answer
38 views

I'm new for xslt i need to transform the xml to xml with grouping My input is here below in that i need to group introduction related information that all are have to group with box element, and i ...
Hari Haran's user avatar
1 vote
1 answer
82 views

I am trying to create a XSLT in 1.0.PLease find below a sample xml. The requirement is to get the biggest value1 field from all 3 and display the tags inside them. Request XML: <?xml version="...
Krishna's user avatar
  • 13
0 votes
1 answer
73 views

I want to compare the XML nodes (Key/ID node), and they see if the their sibling node has any different value, then fetch in output. Input XML where two XML files are merged <?xml version="1.0&...
Awanish's user avatar
0 votes
0 answers
76 views

I need to sum the amount (wd:Amount) if the ContributionType (wd:ContributionType/@wd:Descriptor) is the same by SSN. Below example, I am expecting the record to be shown: D|123-45-6789|20230315|2023|...
Buddi's user avatar
  • 67
0 votes
0 answers
65 views

I am new to XSLT and Need help in transforming the data to show: Need to order the skill ascending by Employee ID and show the data like attached screenshot. If we have 20 skills, all 20 skills ...
Buddi's user avatar
  • 67
0 votes
1 answer
72 views

Using XSLT 1.0 I need to transform below XML by merging same ID elements and get the non blank values from same ID group and any non present element in one of those same ID group. I did a ...
Somebody's user avatar
  • 2,819
1 vote
1 answer
63 views

I had a problem with grouping while transforming xml to xml using xslt version 1.0 @michael.hor257k has kindly provided the solution to fix it. Link below: Problem transforming XML groups with XSLT ...
Nicky's user avatar
  • 15
0 votes
1 answer
79 views

I am having problem with grouping while transforming xml to xml using xslt. I found out where the problem comes from but still don't know how to fix it. I am unable to fetch the group name/multiple ...
Nicky's user avatar
  • 15
0 votes
1 answer
79 views

I'm seeking to match the first item in a list but also include the first item in a full list without calling the first item template given an xml file: <page> <set> &...
A Boston's user avatar
  • 356
0 votes
1 answer
77 views

How to handle the below type of scenario using XSLT? Example 1: Input: <cross-refs>[5, 6, 7, 8, 9]</cross-refs> Excepted output: <cross-refs>[5-9]</cross-refs> Example 2: Input:...
Mahesh M's user avatar
0 votes
1 answer
50 views

I was wording how I could reorder the tag Rice: Move the tag <Rice>long-grain</Rice> to down and ***<Rice>123</Rice>*** to up; Remove the third tag <Rice> or remove it ...
TulioVargas's user avatar
1 vote
1 answer
67 views

Please note that source xml fieldscome in sequence means one student's info then another student info. Can you help on the XSLT to break xml as one group node for each student My Input is Below <?...
user20463275's user avatar
0 votes
1 answer
74 views

Assume following record is in xml EmpNo name enrollingDates 123 abc 10/01/2022-10/02/2022-10/05/2022 Currently reocrd is coming in one line even when dates are different in enrollingdates column We ...
Rabit2's user avatar
  • 1

1
2 3 4 5
12