Demo data on PDI for task practice.

Jmyekn1123
Tera Contributor

Hi, I am new to the Sys Admin career journey. Asides from the Knowledge Check Tasks that accompanies the modules in Now Learning, is there some way I can load Demo Data into my PDI for practice, and maybe even find more practice tasks to try my hands on?

 

Any useful pointers will be appreciated.

2 ACCEPTED SOLUTIONS

Harish Bainsla
Kilo Patron
Kilo Patron

Hi please see below point help you

ServiceNow provides free developer instances (PDI - Personal Developer Instance) for learning and testing purposes

For practice

Now Learning:

  • Explore the "Now Learning" platform for additional learning tasks and challenges. It's a great resource provided by ServiceNow with guided learning paths.

ServiceNow Community:

  • IT is a valuable resource where you can interact with other ServiceNow professionals. Look for discussion threads related to practice tasks, challenges, or sample scenarios.

YouTube Tutorials:

  • Many individuals and organizations create ServiceNow tutorials on YouTube. Search for tutorials that cover specific topics you're interested in and follow along with the examples.

View solution in original post

AndersBGS
Tera Patron
Tera Patron

Hi @Jmyekn1123 ,

 

Yep, go to plugins:

 

AndersBGS_0-1701472120844.png

 

Find the plugin you're looking for to have demo data in (in my example - incidents).

AndersBGS_1-1701472237025.png

Find the right plugin ID:

AndersBGS_2-1701472299099.png

In quick actions to the right - chose load demo data:

 

AndersBGS_3-1701472343708.png

 

If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.

 

best regards

Anders

 

 

 

If my answer has helped with your question, please mark my answer as the accepted solution and give a thumbs up.

Best regards
Anders

Rising star 2024
MVP 2025
linkedIn: https://www.linkedin.com/in/andersskovbjerg/

View solution in original post

10 REPLIES 10

Hi @Jmyekn1123 

 

If my answer has helped with your question, please mark my answer as accepted solution.

 

Best regards

Anders 

If my answer has helped with your question, please mark my answer as the accepted solution and give a thumbs up.

Best regards
Anders

Rising star 2024
MVP 2025
linkedIn: https://www.linkedin.com/in/andersskovbjerg/

sandeepkumarmun
Tera Contributor

Hi @Jmyekn1123 

 

If you have create PDI account , You will receive the Demo data for all tables like (Incident, Problem, change etc..) .While installing the plugin for new configuration , Please select Load Demo data check box .

 

Mark Correct if this solves your issue and also hit Like and Helpful if you find my response helpful.

 

Thanks ,

Sandeep

Dr Atul G- LNG
Tera Patron
Tera Patron

Hi @Jmyekn1123 

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.

Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]

****************************************************************************************************************

Kienan
Giga Contributor

I am commenting for the training 

SLK Gupta
Tera Guru

Hi @Jmyekn1123 ,

 

ServiceNow OOTB provide demo data in all the important tables for practice, But if you need extra data in any table for your extra practice to get more experience.

 

you can create demo data from background scripts in your PDI,

 

you can use below script to create records in the table were you require demo data.

//Insert() method // I am using Incident table for demo, you can select any table as per your requirement.

 

 var gr =new GlideRecord("incident");

for(i=1;i<=n;i++) // n = 100 here, n is the number of records you want to create in that particular table @Jmyekn1123 

{

gr.newRecord();

gr.short_description='demo data';

gr.insert();

}

 

if my answer helps in resolving your query, please mark it as helpful/ accepted solution @Jmyekn1123.

 

Thanks & Regards,

S. Lakshmikanth Gupta.