How to create a flow that will not generate an approval request if their is an additional comment
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-07-2025 12:46 PM
Looking for methods on how to do this.
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-07-2025 04:31 PM
I doubt this will be useful to you. Does this apply to catalog items that have approvals?
Some generic flow designer methods:
- Add a "Look Up Records" action to flow
- Set the table to sys_journal_field
- Add filter conditions:
- element_id equals the sys_id of the target record (catalog item, incident, change, etc.)
- element equals the field name (like "comments" or "work_notes")
- Return only the first record
- Set flow variable with results
- Add a "Decision" element after the lookup
- Create a condition that checks: lookupResults.length > 0 (or !empty(lookupResults))
- This checks if any records were returned