Posts

#BuildWithCreatorStudio Challenge

Image
  🚀 Excited to share that I've completed the #BuildWithCreatorStudio challenge! 🚀 Using ServiceNow Creator Studio, I built a streamlined Employee Relocation process for India. Here’s a quick look at the automated steps I created: Request Submission: Employees can easily submit their relocation requests, listing the details needed. Manager Approval: The request goes to the employee’s manager for review. They can approve or reject based on the information provided. TCBP Team Validation: Once approved by the manager, the TCBP team reviews and validates the request details. Notification: After final validation, the TCBP team approves the request and notifies the employee of next steps. This simple workflow ensures all requests are reviewed thoroughly by both the manager and TCBP team. Thanks to Creator Studio’s easy, no-code interface, I built this application in under an hour—way faster than I expected! Want to create something yourself? Check out the #BuildWithCreatorStudio chall...

ServiceNow Rising Stars nominations here!

Hey ServiceNow experts, It's time for the ServiceNow Rising Stars nominations! 🏆✨ Do you know someone who excels in their work, makes great contributions, or drives the ServiceNow community forward? Let's recognize their achievements! ✨   Nominate and celebrate the amazing people shaping the future of ServiceNow. Check the guidelines for more details. Get ahead! Get recognized! Become a 2024 Rising Star! 📆 The nomination window is open from 1st July 2024 to 31st July 2024. Don't miss out!   #ServiceNowMVP #RisingStar #servicenow #servicenowdeveloper #ServiceNowCommunity #ServiceNow

2024 MVP and Rising Star nominations are here!

 🌟 Exciting Announcement for the ServiceNow Community! 🚀     Dear ServiceNow Enthusiasts, It's that time of the year again – the Nominations for the prestigious ServiceNow MVP and Rising Star Awards 2024 are officially OPEN! 🏆✨ Do you know someone who has consistently demonstrated exceptional skills, made significant contributions, or been a driving force in the ServiceNow ecosystem? It's time to shine a spotlight on their achievements! ✨ Let's recognize and celebrate the outstanding individuals who are shaping the future of ServiceNow. For mere details please look at - 2024 MVP and Rising Star nominations are here! ServiceNow MVP Community Program: ServiceNow MVP Community Program Introducing the ServiceNow MVP Program: Unveiling the ServiceNow MVP Community Program! 📆 Don't miss the chance to be part of this incredible journey! The nominations window open between 1st Dec 2023 to 31st Dec 2023, so act swiftly.   # ServiceNowMVP # RisingSta...

Script Action and Example

Script Actions The Script actions feature allows to create server side scripts that can run on server side and perform multiple tasks asynchronously. It will run or execute after the event has triggered in the system scheduler. For example: modifying records,    A script action can only be triggered by an event using gs.eventQueue() method.  Script actions are maintained in the System Policy —> Script Actions [sysevent_script_action] table in ServiceNow.   Available Fields For Script actions we have these fields. Name: Add a unique name for a script action. Generally to maintain script actions we should maintain the naming conventions.  Example: Let's take example, we have to create a script action for Close incidents/Problems when Change request gets closed, so name will be Incident-Probelm Closure Application: The application that contains this script. Example: Global or scoped applica...

Scheduling a report for dynamic Recipients

Image
  Scheduling a report for dynamic Recipients based on the table column of the report  Introduction: I have read some questions or queries on scheduling report for dynamic recipients based on the table column of the report. Also, I had few issues while working on the same requirements. Hence, I have start to write this article. I think it will help community users to work on this type of requirement in future. Create scheduled report which will trigger based on conditions and send it to the dynamic receipts. Dynamic recipients may be assigned to users, assignee’s manager, etc. Use case’s: Create a scheduled report which will trigger based on some conditions and sent it to dynamic assigned to users. Create a scheduled report which will trigger with conditions and send the incidents report to Managers of assignment group. Create a scheduled report for send the assigned to users and his/her mangers for pending approval of requests. Create a report and add the “assigned_to” or “ass...