How to configure assigned to should not visible when the assignment group is empty?

NaveenKumarSN
Tera Expert

How to configure assigned to should not visible when the assignment group is empty?

and

How to print latest 10 incidents in servicenow?

1 ACCEPTED SOLUTION

New window, open on any click or how and where?

*************************************************************************************************************
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]

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

View solution in original post

8 REPLIES 8

Dr Atul G- LNG
Tera Patron
Tera Patron

Hi @NaveenKumarSN 

 

How to configure assigned to should not visible when the assignment group is empty?

Atul: Create a UI policy for this which is No code at all.

and

How to print latest 10 incidents in servicenow?

Atul: Where you want to print the latest 10 incident.

*************************************************************************************************************
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]

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

Latest 10 incidents should display in new window. is there script or direct we can dispaly incident list view

 

New window, open on any click or how and where?

*************************************************************************************************************
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]

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

I want to print Latest 10 incidents in scripts background?

if i run below scripts it is priting but i would i know these latest or not

var inc = new GlideRecord('incident');
inc.addActiveQuery();
inc.orderByDesc('sys_created_at');
inc.setLimit(10);
inc.query();
while(inc.next()){
gs.print(inc.number);
}