List of HRSD Pro Plugins for Client Instance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
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.
- Labels:
-
Human Resources Service Delivery
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
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
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
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.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago - last edited 4 weeks ago
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
If my response helped please mark it correct and close the thread so that it benefits future readers.