I have got this error when I click on button in interface for starting Process model.
How can I resolved this error
Discussion posts and replies are publicly visible
Seems like that model expects a dictionary where you only pass an integer. You have to check the data types of the process variables versus the types of the passed values.
what is difference between cdt and dictionary
CDT is an explicitly defined data type with fieldnames and fieldtypes. A dictionary (or Map) is dynamic. It doesn't force names or types.
The great Appian documentation has you covered: docs.appian.com/.../Appian_Data_Types.html
Hi shifaalam, you need to make both variables of same data types for a!save under start process, According to my view, you can try to converting your integer field in dictionary format by casting or vice versa. Thanks.