Catalog Item struck

KiranmaiP
Tera Contributor

I have submitted the catalog item and its been struck and not editable.

Please suggest alternatives

3 REPLIES 3

Eshwar Reddy
Kilo Sage

@KiranmaiP 
Please share the screen shots

 

Hi @KiranmaiP 
Just Run the Back ground script
Use below script and replace sysid with your catlog item sysid.

var sysid = 'e1ba3411db0011113d11b11ba19111e0'; //sys_id of your item

var grrp = new GlideRecord('sc_cat_item'); 

if(grrp.get(sysid));

{

gs.info("grrp.state" ); 

 

grrp.state = 'published'; 

}

grrp.update(); 

 

Please mark this response as Correct and Helpful if it helps you can mark more that one reply as accepted solution.