hello team,
I have extracted value from a salesforce table using activity “execute SQQL”
querry : select A, B,C from
its working and giving value in Datatable variable type (i.e. dtTable)
now i want to get value of A,B,C is individual variable
where i am uusing assign activity
str_A = dtTable.rows(0).item(“A”).tostring
here in asisgn activity i am getting below error.
“Assign: Expression Activity type ‘VisualBasicValue`1’ requires compilation in order to run. Please ensure that the workflow has been compiled.”
Kindly help in resolving the issue.