Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. 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.