Hello! What is the current method for puling the text value of an option set in Power Automate for a PVA Action? I found several methods suggested that didn't always specify the connector type and I thought this CDS method would be promising but its not working for me. http://crmaddicted.blogspot.com/2020/01/working-with-optionset-lables-in-power.html
The error states it cannot find the value?
Unable to process template language expressions in action 'Compose_2' inputs at line '1' and column '13242': 'The template language expression 'items('ApplyEachClaim')['_xxx_claimstatus_label']' cannot be evaluated because property 'xxx_claimstatus_label' doesn't exist, available properties are...
Hello @bradlaw
CDS connector has been updated, the outputs are slightly different.
The best way to check, is to check the outputs of your List records action in the run. and copy the outputs to an editor like Visual Studio or Notepad++.
Check your outputs for the item value. For example:
I am looking for the text value of EventType. Looking in the outputs I found these
"cr589_eventtype@OData.Community.Display.V1.FormattedValue": "Potential Claim",
"cr589_eventtype": 659950000,
So my expression would look like this:
items('ApplyEachClaim')?['cr589_eventtype@OData.Community.Display.V1.FormattedValue']
@renatoromao here you go. I am trying to get to the picklist label. Thanks!
Hi @bradlaw ,
Can you take some screenshots around your workflow, please?
You can see my workflow template, they can help you to understand better about CDS with Power Automate to return to PVA.