I want to convert XML response into CDT format.

I am having process model which scheduled to run after every hour and get XML response from external system and storing into text type pv.

XML data in nested CDT format.

Now, We want to read that XML file into Appian CDT. For reference i am giving below XML response.

<variable type="InputBO">
<paymentInfo type="PaymentBO">
<operationType type="String">CAPTURE</operationType>
<channelId type="String">AAA</channelId>
<paymentTypeCode type="String">BBB</paymentTypeCode>
<referenceNumber type="String">ABCD145891</referenceNumber>
<paymentAmount type="Decimal">515.0</paymentAmount>
<paymentCurrency type="String">GBP</paymentCurrency>
<paymentCardDetails type="PaymentCardDetailsBO">
</paymentInfo>
</variable>

Could you please help me to achieve this task? Thanks for your support in advance.(Appian version 18.1)

  Discussion posts and replies are publicly visible

Parents
  • Thanks all for your help!!!

    @Sachin, I tried your solution and worked at some level but still looking for desired output.

    I am calling expression rule from process model and passing XML response. I am able to extract XML but in properly.

    Test Rule:
    load(
    local!data: ri!service

    a!forEach(
    items: xpathsnippet(
    local!data,
    "/variable/*/*"
    ),
    expression: /* your cdt */
    {
    operationType: index(xpathsnippet(fv!item,"/operationType/text()"),1,null()),
    channelId:index(xpathsnippet(fv!item,"/channelId/text()"),1,null()),
    paymentTypeCode:index(xpathsnippet(fv!item,"/paymentTypeCode/text()"),1,null()),
    referenceNumber:index(xpathsnippet(fv!item,"/referenceNumber/text()"),1,null()),
    paymentAmount:index(xpathsnippet(fv!item,"/paymentAmount/text()"),1,null()),
    paymentCurrency:index(xpathsnippet(fv!item,"/paymentCurrency/text()"),1,null())
    }
    )

    )

    ------------------------------------------------------
    Current Output:
    [operationType:CAPTURE,channelId:,paymentTypeCode:,referenceNumber:,paymentAmount:,paymentCurrency:]; [operationType:,channelId:AAA,paymentTypeCode:,referenceNumber:,paymentAmount:,paymentCurrency:]; [operationType:,channelId:,paymentTypeCode:AAA,referenceNumber:,paymentAmount:,paymentCurrency:]; [operationType:,channelId:,paymentTypeCode:,referenceNumber:AAAA120145891,paymentAmount:,paymentCurrency:]; [operationType:,channelId:,paymentTypeCode:,referenceNumber:,paymentAmount:515.0,paymentCurrency:]; [operationType:,channelId:,paymentTypeCode:,referenceNumber:,paymentAmount:,paymentCurrency:AAA]

    ----------------------------------------------------------------

    Passed XML response:
    <variable type="VmaadBO">
    <paymentInfo type="PaymentBO">
    <operationType type="String">CAPTURE</operationType>
    <channelId type="String">AAA</channelId>
    <paymentTypeCode type="String">AAA</paymentTypeCode>
    <referenceNumber type="String">AAA120145891</referenceNumber>
    <paymentAmount type="Decimal">515.0</paymentAmount>
    <paymentCurrency type="String">AAA</paymentCurrency>
    </paymentInfo>
    </variable>

    Should return single CDT with values. I tried without foreach. We are getting 5 rows as per looping 5 times.

    Could you please help on this. Thank you.
Reply
  • Thanks all for your help!!!

    @Sachin, I tried your solution and worked at some level but still looking for desired output.

    I am calling expression rule from process model and passing XML response. I am able to extract XML but in properly.

    Test Rule:
    load(
    local!data: ri!service

    a!forEach(
    items: xpathsnippet(
    local!data,
    "/variable/*/*"
    ),
    expression: /* your cdt */
    {
    operationType: index(xpathsnippet(fv!item,"/operationType/text()"),1,null()),
    channelId:index(xpathsnippet(fv!item,"/channelId/text()"),1,null()),
    paymentTypeCode:index(xpathsnippet(fv!item,"/paymentTypeCode/text()"),1,null()),
    referenceNumber:index(xpathsnippet(fv!item,"/referenceNumber/text()"),1,null()),
    paymentAmount:index(xpathsnippet(fv!item,"/paymentAmount/text()"),1,null()),
    paymentCurrency:index(xpathsnippet(fv!item,"/paymentCurrency/text()"),1,null())
    }
    )

    )

    ------------------------------------------------------
    Current Output:
    [operationType:CAPTURE,channelId:,paymentTypeCode:,referenceNumber:,paymentAmount:,paymentCurrency:]; [operationType:,channelId:AAA,paymentTypeCode:,referenceNumber:,paymentAmount:,paymentCurrency:]; [operationType:,channelId:,paymentTypeCode:AAA,referenceNumber:,paymentAmount:,paymentCurrency:]; [operationType:,channelId:,paymentTypeCode:,referenceNumber:AAAA120145891,paymentAmount:,paymentCurrency:]; [operationType:,channelId:,paymentTypeCode:,referenceNumber:,paymentAmount:515.0,paymentCurrency:]; [operationType:,channelId:,paymentTypeCode:,referenceNumber:,paymentAmount:,paymentCurrency:AAA]

    ----------------------------------------------------------------

    Passed XML response:
    <variable type="VmaadBO">
    <paymentInfo type="PaymentBO">
    <operationType type="String">CAPTURE</operationType>
    <channelId type="String">AAA</channelId>
    <paymentTypeCode type="String">AAA</paymentTypeCode>
    <referenceNumber type="String">AAA120145891</referenceNumber>
    <paymentAmount type="Decimal">515.0</paymentAmount>
    <paymentCurrency type="String">AAA</paymentCurrency>
    </paymentInfo>
    </variable>

    Should return single CDT with values. I tried without foreach. We are getting 5 rows as per looping 5 times.

    Could you please help on this. Thank you.
Children
  • 0
    Certified Lead Developer
    in reply to Vinod Tate

    Hi Vinod,

    Please try below expression:

    type!Your_CDTName(

    operationType: extract(ri!XMLText,"String"&Char(34)&">","</operationType")[1],

    channelId:extract(ri!XMLText,"channelId type="&Char(34)&"String"&Char(34)&">","</channelId")[1],

    paymentTypeCode:extract(ri!XMLText,"paymentTypeCode type="&Char(34)&"String"&Char(34)&">","</paymentTypeCode")[1],

    referenceNumber:extract(ri!XMLText,"referenceNumber type="&Char(34)&"String"&Char(34)&">","</referenceNumber")[1],

    paymentAmount:extract(ri!XMLText,"paymentAmount type="&Char(34)&"Decimal"&Char(34)&">","</paymentAmount")[1],

    paymentCurrency:extract(ri!XMLText,"paymentCurrency type="&Char(34)&"String"&Char(34)&">","</paymentCurrency")[1]

    )

    ri!XMLText: Text type input

    Replace Your_CDTName with your CDT name. Pass complete xml text as an input ri!XMLText. Hopefully this will resolve your problem.

  • 0
    A Score Level 2
    in reply to Vinod Tate
    Hi Vinod,

    May be I didn't completely understand your requirement. Why do we need foreach here?
    Are u expecting an array of XML response in a single PV?
    <variable type="VmaadBO">
    <paymentInfo type="PaymentBO">
    <operationType type="String">CAPTURE</operationType>
    <channelId type="String">AAA</channelId>
    <paymentTypeCode type="String">AAA</paymentTypeCode>
    <referenceNumber type="String">AAA120145891</referenceNumber>
    <paymentAmount type="Decimal">515.0</paymentAmount>
    <paymentCurrency type="String">AAA</paymentCurrency>
    </paymentInfo>
    </variable>
    <variable type="VmdbBO">
    <paymentInfo type="PaymentBO">
    <operationType type="String">CAPTURE</operationType>
    <channelId type="String">BBB</channelId>
    <paymentTypeCode type="String">BBB</paymentTypeCode>
    <referenceNumber type="String">BBB120145891</referenceNumber>
    <paymentAmount type="Decimal">4152.0</paymentAmount>
    <paymentCurrency type="String">BBB</paymentCurrency>
    </paymentInfo>
    </variable>
    if not we can simply use,
    type!Your_CDTName(
    operationType:xpathsnippet(local!data,"//operationType/text()"),
    channelId :xpathsnippet(local!data,"//channelId /text()"),
    paymentTypeCode :xpathsnippet(local!data,"//paymentTypeCode/text()"),
    referenceNumber :xpathsnippet(local!data,"//referenceNumber/text()"),
    paymentAmount :xpathsnippet(local!data,"//paymentAmount/text()"),
    paymentCurrency :xpathsnippet(local!data,"//paymentCurrency/text()"
    )
  • 0
    A Score Level 1
    in reply to Vinod Tate

    vinodt376 you are almost correct just replace foreach items with below code

    xpathsnippet(local!data,"/variable/*")