I have a process called "Save Data" for example with : Inputs : Key(string), Value(boolean).
In the activity inspector, write to repository, i have the following query:
UPDATE some_object OBJECT SET ? = ?
In the mapping tab, i map Key to first '?' and Value to second '?'.
However, during runtime the query appears as:
UPDATE some_object OBJECT SET 'somekeyvalye' = true <- which fails because of the quotes of course.
How can i eliminate xCP from adding single quotes at the object attribute ?