How to make RITM variable read only on catalog task. When catalog task state is closed complete.

Obito
Tera Expert

How to made RITM variable read only on catalog task. When catalog task state is closed completed.

refer below image.

6121.png

2 REPLIES 2

raj chavan
Tera Guru

Hi @Obito 

Write onchange Client script on catalog task table

(note - add one if condition for your specific catalog item so it should not be affect globally)

You can access the variable on catalog task By

e.g -  g_form.getValue('Variables.<you variable name>')

 

 

Kindly mark it correct and helpful if it is applicable.

Thanks,

Raj

Shruti D
Tera Guru

Hello @Obito
You can write a onChange client script on Catalog Task table

 

var catalogitem = g_form.getValue('u_item');


if(catalogitem=='Your catalog Item')


if(newValue==closedvalue && catalogitem=='Your Catalog Item')


{


g_form.seReadOnly('variables.Yourvariablename',true);


}

 



Please Mark Correct ✔️  if this solves your query and also mark Helpful 👍 if you find my response worthy based on the impact.

Regards,
Shruti