Community Tip - You can change your system assigned username to something more personal in your community settings. X
I am getting this relation error on a few lines and i cant pinpoint why
left and right sides are incompatible
Solved! Go to Solution.
I think you should try removing the quotes around the right hand side of the equation, assuming PROPRIETARY is a yes/no parameter. If it's a string, you would need quotes.
I think you should try removing the quotes around the right hand side of the equation, assuming PROPRIETARY is a yes/no parameter. If it's a string, you would need quotes.
That was exactly it! thank you!
Also, if it is a yes/no parameter, you can just use the code:
IF PROPRIETARY
NOTICE_PROPRIETARY_SHORT="text if it is true"
ENDIF
since that would make the PROPRIETARY parameter the equivalent of a boolean in any other language.