Task SLA RITM

nameisnani
Mega Sage

Hi Team , 

 

How do i bring Task SLA in RITM Table in Related list .

 

nameisnani_0-1710261080628.png

 

can anyone please help me with proper steps to configure this . If possible please provide screenshot of configuration of this for better understanding .

 

Thank u 

 

9 REPLIES 9

Oppss. wired.. do have admin rights?

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

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

swathisarang98
Giga Sage
Giga Sage

Hi @nameisnani ,

 

Configure -> Related List -> "Task SLA ->Task"

swathisarang98_0-1710263119520.png

 

Please mark this comment as Correct Answer/Helpful if it helped you.

Regards,

Swathi Sarang

nameisnani
Mega Sage

Hi @Dr Atul G- LNG 

@swathisarang98 

 

We are configuring SLAs for limited catalog item's only .

 

And this ' Task SLA ' has to be show for particular 2 catalog item's only.

 

How to configure this , please help me with steps and screenshot for better understanding.

@nameisnani , you can create a onload client script on sc_re_item table as below,

 

swathisarang98_0-1710264187014.png

 

function onLoad() {
    var item = g_form.getValue('cat_item');

    if (item == '90527e0393ecc6504487bd6cebba1078') // sys id of item  based on which you want to show related list
 {
        g_form.showRelatedList('task_sla.task'); // related list name
        }
        else {
            g_form.hideRelatedList('task_sla.task');
        }

    }

 

 

Please mark this comment as Correct Answer/Helpful if it helped you.

Regards,

Swathi Sarang

In SLA definition you need to add Catalog item name

 

AGLearnNGrow_0-1710264403322.png

 

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

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