The Test Activity in Adobe Campaign Classic is used to verify conditions within a workflow. When the objective is to check whether a result has been generated, the condition should confirm that the record count (recCount) is greater than zero:
Condition Explanation:vars.recCount holds the count of records returned by the workflow segment. If vars.recCount > 0, it indicates that records have been found, meaning the result is generated. This is the standard check to verify the presence of data in the context of the workflow.
Thus, vars.recCount > 0 is the appropriate condition to verify if there is a non-zero result.
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit