Hello,
The branch's Javascript here only evaluates the first part of this OR statement and not the rest. Any ideas why it's doing that?
DataIterator1240_outputData != "LBIUsers" || DataIterator1240_outputData != "Manager Self Service"
Thank you,
You're asking if DataIterator1240_outputData is not "LBIUsers" OR DataIterator1240_outputData is not "Manager Self Service" The statement above will always be true. Because a string value can never be both values.