Hi
I would like to ask a question.
I want to cast multiple record type to custom data type.
If possible how can i cast it.
Here is my cast data.
Discussion posts and replies are publicly visible
I suposse the one in the screen is the dataType, but.could you give us details about the recordType¿?
You can use the function a!listType() to create a list type of a certain data type or record type and cast to that.
Here is my details of recordtype
Try using a!listType() as Stefan Helzle said... and if that approach doesn'tn work, use tojson and from json to do the trick
Stefan Helzle
I tried but got error.
also check this reference link
community.appian.com/.../129515
Remove parenthesis after the name of the data type
This! The parentheses after the type! is an instruction to create an instance of a type, whereas here you're wanting to refer to the actual type, not construct one.
Also you can directly reference the "list type" version of hte CDT by adding "?list" inside the final single quote.