I'm trying to write a Python-Script how tested a Published Parameter. If its FALSE it should stop the Workbench.
________________________________
import fme
pw = fme.macroValues['passwort']
if pw == "test":
print("PASSWORT RICHTIG")
else:
print("PASSWORT FALSCH")
___________________________