Hi All,
I have a CDT named as Process_data in which there is a field called buttonAction of type text. I am trying to map that cdt rule input to a text value as ri!process_data.buttonAction = "Submit", but receiving below error. Please suggest how do I cast and fix this issue. Thanks in advance.
Error: Expression evaluation error at function 'tostring' parameter 1 [line 66]: Could not cast from Text to Process_data. Details: CastInvalid
Discussion posts and replies are publicly visible
Where in the interface are you trying to "map" this value? If you are trying to save the value "Submit" into ri!process_data.buttonAction, try using an a!save(ri!proccess_data.buttonAction, "Submit")...if not, please provide more information.