cannot use function, keyword of the language
Hi there,
I am running into this issue where in the action, request parameters, I get this error message:
The expression is invalid : You cannot use the word 'toString' like this because it is a keyword of the language. Please, add quotes to fix your expression.
I am trying to send a concatenated string into the request parameter. Sometimes I will need to do data type conversion, and in this case, converting the datetime to string.
This works: toString(now())
This does not work: #{ExperiencePlatform.ProfileFieldGroup.profile._tenant.accountid} + toString(now())
This does not work: 'Test' + toString(now())
How do I get around this?
Thanks!