BookmarkSubscribeRSS Feed
filgueira
Calcite | Level 5

Hy! Is it possible, using SAS with XML Mapper generate a XML with arrays. For example:

 

I have a table like that:

John, Chicago, receiptA, value1

John, Chicago, receiptB, value2

John, Chicago, receiptC, value3

Mary, Boston, receiptX, value8

Mary, Boston, receiptY, value9.

 

and I want a XML like that.

<name>John</name>

<city>Chicago</city>

<receipts>

    <receipt>receiptA</receipt> <value>value1</value>

    <receipt>receiptB</receipt> <value>value2</value>

    <receipt>receiptC</receipt> <value>value3</value>

</receipts>

<name>Mary</name>

<city>Boston</city>

<receipts>

    <receipt>receiptX</receipt> <value>value8</value>

    <receipt>receiptY</receipt> <value>value9</value>

  </receipts>

.....

 

Any help about that. 

 

tks

Filgueira

 

 

1 REPLY 1
ChrisNZ
Tourmaline | Level 20

There might be a way, but you should just write a data step for such simple output if you get no replies, rather than dealing with XML Mapper.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 688 views
  • 0 likes
  • 2 in conversation