This is a simple action used for substring checking. It returns a boolean true if Text contains ContainsText anywhere within it; otherwise false.
Example: routing based on document type:
You're processing an inbound EDI filename or document description and need to detect whether it's a purchase order before routing it to the right ruleset branch.
Text= the filename field →"INBOUND_PO_ACME_20260701.edi"ContainsText="PO"
Running Contains gives you:
- Result:
true
You'd typically feed that boolean straight into an If action to branch the flow - for example, routing anything containing "PO" to your purchase order processing ruleset, and anything containing "INV" to your invoice processing ruleset.
Another common use: checking if an email address contains "@yourcompany.com" to flag internal vs. external senders, or checking if a product description contains a keyword like "HAZMAT" to trigger special handling logic.
Comments
0 comments
Please sign in to leave a comment.