Flows
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Hi ,
I want to start learning Flows in ServiceNow, but I do not have any knowledge about them yet.
I would like to understand:
What is a Flow?
What is a Trigger?
What are Actions and the different types of Actions?
What is Flow Logic?
What is a Subflow?
How do we create and use Flows in real-time scenarios?
I want to learn from the basics step by step.
Can anyone guide me on how to start learning Flows properly, with simple explanations and examples?
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
7 hours ago
I will suggest you to complete the onDemand course : Flow Administration (Yokohama)
You will find all definition/ all your answer there.
- Flow->A Flow is an automated process in ServiceNow that executes a sequence of steps when something happens in the system.
- A Trigger → Initiate the flow
- Actions → Reusable task/step within a flow- the flow performs
- Different types of Actions->
Core Actions: Built-in actions provided by ServiceNow (e.g., Approvals, Notifications, Record operations).
Spoke Actions: Actions tied to specific applications or integrations (e.g., Slack, Microsoft Teams, Jira integrations).
Custom Actions: Actions built by developers to perform specific, repetitive tasks not covered by Core/Spoke actions.
- Flow Logic → conditions, branching, looping, approvals, waits, etc. Controls the order and conditions under which actions execute.
- Subflow->A Subflow is a modular, reusable set of actions that can be called by multiple flows.
- How do we create and use Flows in real-time scenarios->
- Navigate to Process Automation > Flow Designer.
- Click New > Flow. Name it: "High Priority Incident."
- Add Trigger -> Record > Created.
- Table: Incident.
- Condition: Priority is 1
- Action 1 ->Update Record: Select the Incident from the trigger. Set Assignment Group to Network.
- Action 2 ->Send Email: Configure the recipient and message body.
- Action 3 ->Create Record: Select Problem Task.
- Click Test to ensure it works on a dummy incident.
- Click Activate to make it active for all future incidents
