Тёмный

Dot Walking in ServiceNow - Episode 6 | ServiceNow Training in Hyderabad | ServiceNow Tutorials 

Gautham Digital Learning
Подписаться 70 тыс.
Просмотров 3,9 тыс.
50% 1

For ServiceNow Live Classes, Books, Sample Resumes, 375 Interview Questions, CSA Quizzes
Please visit: learn.gauthamit.com
Our Website: www.gauthamit.com
Call us: +91- 9392105004, +91- 9391452336​
**ServiceNow Admin E-Book Link: learn.gauthamit.com/courses/S...
**ServiceNow Development E-Book link: learn.gauthamit.com/courses/S...
**Top 375 ServiceNow Interview Questions E-Book : learn.gauthamit.com/courses/S...
‪@gauthamdigitallearning‬
Unleash the Power of Dot Walking in ServiceNow!
Tired of jumping between tables to access related data? Dot walking is your secret weapon to navigate ServiceNow like a pro!
This video demystifies the power of dot walking, guiding you through:
• What is dot walking? Unravel the magic behind navigating relationships between tables using simple dots.
• Why use dot walking? Discover the efficiency and flexibility it brings to your workflows.
• How to dot walk like a pro! Dive into practical demonstrations across various features:
o Forms & Lists
o Scripts & Workflows
o Reports & Notifications
In ServiceNow, dot walking refers to the process of traversing through related records using dot notation in GlideRecord queries. This technique allows developers to access fields and related records in ServiceNow tables.
For example, suppose you have two tables in ServiceNow: Incident and User. Each Incident record is associated with a User record through a reference field, such as Caller ID. With dot walking, you can access fields on the User record from an Incident record using dot notation in GlideRecord queries.
Here's an example of dot walking in a GlideRecord query:
javascript
Copy code
var incidentGR = new GlideRecord('incident');
incidentGR.addQuery('priority', '1'); // Querying incidents with priority 1
incidentGR.query();
while (incidentGR.next()) {
var callerName = incidentGR.caller_id.name; // Accessing the name field of the User record associated with the Caller ID
gs.info('Incident Caller: ' + callerName);
}
In the above example, incidentGR.caller_id.name is an example of dot walking. It accesses the name field of the User record associated with the Caller ID field on the Incident record.
Dot walking is a powerful feature in ServiceNow that allows developers to efficiently work with related records and access their fields within scripts and business rules.
This video dives deep into the magic of dot walking, showing you how to:
• Connect the dots: Traverse relationships between tables with ease using simple dot notation.
• Unlock hidden data: Access information from related records without manual jumping.
• Boost efficiency: Automate tasks and streamline workflows with powerful queries.
• Master scripts & reports: Take your scripting and reporting skills to the next level.
#servicenow #dotwalking #servicenowtips #servicenowtricks #servicenowtraining #servicenowvideos #servicenowtraining
ServiceNow | Service Now | ServiceNow Training | ServiceNow Course | Gautham Digital Learning | Srinivas Sunkara | ServiceNow Tutorials | ServiceNow Course | ServiceNow Dot Walking | Dot Walking in ServiceNow | ServiceNow Training in Hyderabad | ServiceNow Training in India | ServiceNow Training in Ameerpet | Best ServiceNow Training Institute | Best ServiceNow Training | Dot Walking in ServiceNow | ServiceNow Tutorials | Dot Walking in ServiceNow - Episode 6 | ServiceNow Training in Hyderabad | ServiceNow Tutorials
📞 For Enquiries & Registration:
📱 Call: +91-9392105004 , +91-9014529858
🌐 Visit: www.gauthamit.com
📚 LMS Platform: learn.gauthamit.com
📌Facebook: / gauthamdigitallearningnew
📌 Instagram: / gauthamdigitallearning
📌WhatsApp community: www.whatsapp.com/channel/0029...

Опубликовано:

 

7 фев 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 3   
@gauthamdigitallearning
@gauthamdigitallearning 4 месяца назад
Hello All, For ServiceNow Live Classes, Books, Sample Resumes, Interview Questions, CSA Quizzes Please visit : learn.gauthamit.com Our Website : www.gauthamit.com Call us: +91- 9392105004, +91- 9391452336​ **ServiceNow Admin E-Book Link: learn.gauthamit.com/courses/Servicenow-Administration-E-Book-64b660b5e4b02c08d2aa4823-64b660b5e4b02c08d2aa4823 **ServiceNow Development E-Book link: learn.gauthamit.com/courses/Servicenow-Development-E-Book-64a027dee4b0c642d81a4f6d-64a027dee4b0c642d81a4f6d **Top 375 ServiceNow Interview Questions E-Book : learn.gauthamit.com/courses/ServiceNow-Interview-Questions-Your-Comprehensive-Guide-to-Top-375-Questions-for-Success-64d3644ae4b0bdefdb8013e4-64d3644ae4b0bdefdb8013e4 Thanks, Gautham Digital Learning
@akshaygadewar4909
@akshaygadewar4909 2 месяца назад
Thank you sir, explained very well
@gauthamdigitallearning
@gauthamdigitallearning 2 месяца назад
Thank you so much !! Keep Watching
Далее
Dot Walking in ServiceNow (Practical Demonstration)
10:49
ServiceNow Developer - Database Query Demonstration
9:35