This microflow expression is of type String but should be of type of Countries.Country

1
Hi, I am trying to retrieve a table(ParticipatingJurisdiction), which have association with Jurisdiction_Country/Countries.Country.     Once I retrieve the data, I an trying to find the am getting “This microflow expression is of type String but should be of type of Countries.Country”.     Can I know how to fix this issue.
asked
2 answers
0

Your Xpath on your first retrieve should look like this:

[CRS.Jurisdiction_Country/Countries.Country

       [ISO2CHAR = $BusinessClassification/CountryCode]

]

 

That would give you the list you want without the extra List operation.

answered
0

 

Hi,

Your Xpath should be like this and u need to give first sothat u can get object instead of list

[CRS.Jurisdiction_Country/Countries.Country/ISO2CHAR = $BusinessClassification/CountryCode]

answered