Xav Sc
Xav Sc

Reputation: 641

Logic Apps, transcoding in XSLT 3.0, replacing values stored in an Azure Storage Table

I have some values to transform on a logic app running some XSLT 3.0 code from ISO3 to ISO2.

Those data are stored in an Azure Table.

I know how to run the transformation within logic app, and I know how to get the data from the table in another step.

I can only imagine the way it's done with Devops using tokens {# ... #}

What would be the correct mechanism to change those values?

Upvotes: 0

Views: 67

Answers (1)

RithwikBojja
RithwikBojja

Reputation: 11383

Logic Apps, transcoding in XSLT 3.0, replacing values stored in an Azure Storage Table

As you said that you have transformed and now wanting to replace then for that use below design:

enter image description here

In json used, the key is column name and value is the value that you wanted to replace and other column values.

Here used:

enter image description here

Values before replacing:

enter image description here

If you give full json in entity section of action , then it will replace like this:

{
"Name":"Bojja",
"Place":"Lingam"
}

enter image description here

enter image description here

If you do not give full json then it will replace like this:

{
"Place":"Jangam"
}

enter image description here

enter image description here

So, even when you use other action (replace entity v2) then also you need to give all entities to replace not just the column and row you want to replace , you need to give all row values as json to get replaced.

Upvotes: 0

Related Questions