Flowdesigner realtime scenarios

Madhulatha
Tera Contributor

Hello everyone,

 

could someone please share a few real-time Flow Designer scenarios suitable for someone with 3 years of experience to practice?

 

Thanks!

6 REPLIES 6

Ankur Bawiskar
Tera Patron

@Madhulatha 

I will suggest start contributing in community and see the flow designer related questions

that will help you know real requirements involved with flow

💡 If my response helped, please mark it as correct and close the thread 🔒— this helps future readers find the solution faster! 🙏

Regards,
Ankur
Certified Technical Architect  ||  10x ServiceNow MVP  ||  ServiceNow Community Leader

rahulswami
Giga Contributor

Hi ,

A few people in my team recently asked me the same question, what should I actually build in Flow Designer to get comfortable with it? So I put together the list I usually give them. All of these can be built on a PDI and all of them are based on things I have either seen in real projects or been asked about in interviews.

Starting simple:

1. Auto assignment based on category and location. Incident is created, look up a routing table or the CI's support group, then set the assignment group. Good for getting used to data pills and understanding when to use Look Up Records versus Get Record.

2. Auto close resolved incidents. A scheduled flow that runs daily, finds incidents sitting in Resolved for more than 7 days, and closes them with a system comment. Covers scheduled triggers and looping over a record set.

3. Reopen on customer reply. Incident is Resolved, caller adds an additional comment within 5 days, flow moves it back to In Progress, reassigns to the previous assignee and sends a notification. Nice first use of Wait for Condition.

A bit more involved:

4. P1 major incident handling. Priority moves to 1, create a Major Incident record, notify the on call group, post a message to Teams or Slack, and start a 30 minute wait that escalates to the manager if nobody acknowledges. This one gives you parallel branches, timers and escalation logic in a single flow.

5. Multi level catalog approval. Manager approval first, then a second approval from the department head only if the cost crosses a threshold, then create catalog tasks in sequence. Build the approver logic as a subflow that takes the requested for user and the amount as inputs and returns the approver. Subflow inputs and outputs are the thing most people skip and then struggle with later.

6. Onboarding request with parallel tasks. One RITM creates IT asset, access provisioning and workspace tasks in parallel, and the RITM only closes when all three are done.

7. Change request routing based on risk. Evaluate risk and CI criticality, then send Standard changes to auto approve, Normal to CAB, and Emergency to a fast track group.

If you want something that will actually stand out on your CV:

8. Outbound integration with proper error handling. Incident is resolved, call an external system through an IntegrationHub REST step or a custom action, parse the response, and if the call fails, retry once and then log to a custom error table and notify the integration team. Handling the failure path is what separates a flow that works in a demo from one that survives production.

9. Inbound email to incident. Parse the subject and body, create or update the incident, then reply with the ticket number.

A few things worth paying attention to while you build these, because they come up again and again:

Run As and trigger security. Understand the difference between User who initiated session and System user. This is behind most of the "it worked in sub prod but not in prod" problems I have seen.

Get comfortable reading a failed run in Flow Executions instead of guessing.

Use flow variables properly rather than pushing everything into script steps. Try to build at least two of the above with no script step at all. It is harder than it sounds and it teaches you a lot.

Happy to answer questions if YOU wants to go deeper on any of these.  And if you have scenarios from your own projects that you think are good practice material, please add them below. Would be useful for everyone reading this thread.

Thanks

yashkamde
Giga Sage

Hello @Madhulatha ,

 

Refer this :
scenarios on flow designer 

Workflows and Flow Designer scenarios 

 

If my response helped mark as helpful and accept the solution.