A workflow has a search which says
However it looks like template ID's start at 1 based on what I see in the Administration Console. What is Template ID 0?
A workflow has a search which says
However it looks like template ID's start at 1 based on what I see in the Administration Console. What is Template ID 0?
Hey Chad, from what I've seen "TemplateID=0" would mean "No template assigned."
Interesting, so the search returns entries with no template assigned. How would this be done in a Cloud workflow?
Like this?
The condition you have would not work, it would give you an error saying the line cannot be empty.
As far as I am aware, the condition you would want to use is:
'Entry: Template Name does not equal *'
The wildcard will automatically disregard ANY template, only returning results that do not have a template. Kind of a roundabout way to do it, not even sure it was intended to be used in that way, but it does seem to work.
Awesome thank you! I was getting ready to put the template name into a string so I could check against it in a loop, but that would be a bit confusing to read in the future