Is there a way to send Survey via Flow Designer?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2020 11:34 AM
Trying to use Flow Designer to send a survey looking at related list of attendees, is this possible?
- Labels:
-
flow designer
-
Survey Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-26-2022 08:35 AM
Hi Rahul,
What would you recommend for 'survey reminders'? i.e. if a user has not completed the survey sent from initial trigger conditions, resending the survey using flow designer.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-27-2022 05:04 AM
This can be done via multiple ways :
- Run a scheduled job and iterate through "asmt_assessment_instance" table via GlideRecord and then if not taken yet, send an email to "Assigned To"
- Same can be done via a flow designer which runs at specific time. It follows same logic as #1
- You can also use gs.eventQueueScheduled for sending the email at precise timings.
Rahul

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-28-2022 02:34 AM
Stacy,
The way we did this was to have a subflow in global scope that created a record in sysevent. Then we had a notification for the survey running off the sysevent and the recipients were dynamically pulled from the ticket referenced in the event instance field.
Hope this helps,
Richard