The Zurich release has arrived! Interested in new features and functionalities? Click here for more

List of HRSD Pro Plugins for Client Instance

NirmalKumaN
Tera Contributor

I need the list of HRSD Pro Plugins that installed in Client Instance. Not Enterprise. Can any one please share your thoughts or any documentation that I can refer.

6 REPLIES 6

Ankur Bawiskar
Tera Patron
Tera Patron

@NirmalKumaN 

If you want Basic HRSD then HRSD Core is sufficient but for using other features see below

these articles will help you

Unlocking the Power of ServiceNow HRSD: A Beginner’s Guide to Modern HR Service Delivery 

HRSD Implementation Guide 

If my response helped please mark it correct and close the thread so that it benefits future readers.

Regards,
Ankur
✨ Certified Technical Architect  ||  ✨ 9x ServiceNow MVP  ||  ✨ ServiceNow Community Leader

@NirmalKumaN 

Thank you for marking my response as helpful.

If my response helped please mark it correct and close the thread so that it benefits future readers.

Regards,
Ankur
✨ Certified Technical Architect  ||  ✨ 9x ServiceNow MVP  ||  ✨ ServiceNow Community Leader

Ajay_Chavan
Kilo Sage

Core HRSD Pro Plugins
Base Installation:
• Human Resources Core (com.sn_hr_core) - Main plugin
• HR Service Portal (com.sn_hr_sp) - Employee portal access
• HR Case Management (sn_hr_case) - Case handling
• HR Knowledge Management (sn_hr_km) - Knowledge base

Additional Pro Components:
• HR Employee Relations (sn_hr_er)
• HR Employee Document Management (sn_hr_document)*
• HR Advanced Work Assignment (sn_hr_awa)
• HR Agent Workspace (sn_hr_agent_workspace)
• HR Integrations Hub (sn_hr_integrations)
• HR Email Management (sn_hr_email)

 

Check Installed Plugins - Script
// Run in Scripts - Background
var gr = new GlideRecord('sys_plugins');
gr.addEncodedQuery('source_nameLIKEhr^ORnameLIKEsn_hr^active=true');
gr.orderBy('name');
gr.query();

gs.info('=== HRSD Pro Plugins Installed ===');
while(gr.next()) {
gs.info(gr.name + ' [' + gr.source + ']');
}

 

Key Differences: Pro vs Enterprise

Feature

HRSD Pro

HRSD Enterprise

Lifecycle Events

HR-only fulfillment

Multi-departmental (IT, Finance, etc.)

Onboarding/Transitions

Basic HR tasks

Full enterprise onboarding

Employee Center Pro

Not included*

Included

Performance Analytics

Limited

Full HR analytics

Cross-dept workflows

No

Yes

 

Verify Your License Type
// Check if Pro or Enterprise
var isPro = GlidePluginManager.isActive('com.sn_hr_core') &&
!GlidePluginManager.isActive('com.snc.enterprise.hr');

gs.info('HRSD Pro License: ' + isPro);

 

Navigation to View Plugins
System Definition > Plugins
Filter: Name CONTAINS hr OR Source CONTAINS hr
Check "Active" = true

Official docs: docs.servicenow.com/bundle/[your-version]-hrsd
Check your instance's Plugin Families for complete dependency tree

 

Glad I could help! If this solved your issue, please mark it as ✅ Helpful and ✅ Accept as Solution so others can benefit too.*****Chavan A.P. | Technical Architect | Certified Professional*****

@NirmalKumaN - 

If my response helped please mark it correct and close the thread so that it benefits future readers.

Glad I could help! If this solved your issue, please mark it as ✅ Helpful and ✅ Accept as Solution so others can benefit too.*****Chavan A.P. | Technical Architect | Certified Professional*****