I'm looking to update a WF Attribute with a variable value from a WerbReport step, for example:
I have a WF attribute called "permission", and I want to update it with a variable called "hasPermissions" in a WebReport. I have tried the below but none is working.
let hasPermission = "false";
[LL_REPTAG_&hasPermission SETWFATTR:permission /];
[LL_REPTAG='hasPermission' SETWFATTR:permission/]
I have also tried to set up a condition for it, but the condition evaluation is not working, it always evaluates to the ELSE
[LL_WEBREPORT_IF 'hasPermissions' == "false" /]
[LL_REPTAG_"false" SETWFATTR:permission /];
[LL_WEBREPORT_ELSE /]
[LL_REPTAG_"true" SETWFATTR:permission /];
[LL_WEBREPORT_ENDIF /]
Any clue on this would be very appreciated!