Why does "HRM Catalog Item" disables save as draft OOTB

Chris Yang
Tera Sage

Hi, anyone know why “Save as draft” was disabled for HR Record Producers after upgrading to latest version of Employee Center? (v 37.0.7)

 

“HRM Catalog Item” widget (sp_widget_9e0a0e9373a75300c629e1e54cf6a7cd) hard codes the “hide save as draft” instead of leaving it as an option.
if (isPluginActive && isHRCatalogItem(sys_id)) { 
// redirect to HR ticket page if catalog item is of HR
p.page = options.hr_page;
p.hide_save_as_draft_button = 'true';
}

 

1 ACCEPTED SOLUTION

michaelj_sherid
ServiceNow Employee
ServiceNow Employee

@Chris Yang This issue was identified and targeted for a future release of the EC plugins. The temporary workaround is to remove the line of code; 

p.hide_save_as_draft_button = 'true';

from the widget hrm-catalog-item (sys_id: 9e0a0e9373a75300c629e1e54cf6a7cd).

 

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

Regards,

Mike

View solution in original post

1 REPLY 1

michaelj_sherid
ServiceNow Employee
ServiceNow Employee

@Chris Yang This issue was identified and targeted for a future release of the EC plugins. The temporary workaround is to remove the line of code; 

p.hide_save_as_draft_button = 'true';

from the widget hrm-catalog-item (sys_id: 9e0a0e9373a75300c629e1e54cf6a7cd).

 

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

Regards,

Mike