HRSD
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
How to Design HR Policies and build below example task any idea please guide me
Balance categories:
basement
crime
Mission
• Design Balance in HRSD
• Define data fields:
Services
Category
Employee history
• Define escalation
• Define roles:
Employee
HR Agent
ALM (restricted access)
AI Preparation:
• Identify data sources:
HR cases
complaints
Define pattern detection logic (repeat complaints)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi,
This looks like a mix of HRSD design + basic AI/analytics setup, so I’ll break it down into a simple, practical approach you can follow.
1. Design HR Services & Categories
Start with structuring your HR model:
- Create HR Services (e.g., Employee Relations, Payroll, Benefits)
- Under each service, define Categories like:
- Harassment / Crime
- Policy Violation
- General Inquiry
This is done under:
- HR Administration → Services
- HR Administration → Categories
2. Define Data Fields
Extend your HR Case table (sn_hr_core_case) with required fields:
- Employee history (reference or related list)
- Complaint type / category
- Severity / priority
- Department / location
Use Dictionary to create these fields.
3. Employee History
You can manage this by:
- Using related lists (past HR cases for same employee)
- Or creating a custom table if you need structured tracking
4. Define Roles
Typical setup:
- Employee (sn_hr_core.employee) → can raise/view their cases
- HR Agent (sn_hr_core.case_writer) → works on cases
- Restricted roles (like ALM) → use ACLs to limit access to sensitive HR data
Make sure to configure:
- Table ACLs
- Field-level ACLs for sensitive info
5. Escalation Setup
Use:
- Flow Designer or SLA Definitions
Example:
- If no update in X hours → escalate to HR manager
- High severity complaint → immediate escalation
SLA + Flow is the recommended combo.
6. AI / Pattern Detection (Repeat Complaints)
For your AI requirement:
Data sources:
- HR Cases
- Complaint categories
- Employee reference
Basic approach:
- Use Performance Analytics or Flow Designer logic to detect:
- Same employee + same category + multiple cases
- Example condition:
- Count of cases > 2 in last 30 days
Then:
- Flag as repeat complaint
- Trigger notification or escalation
7. Advanced (if AI is required)
If you’re using AI features:
- Use Predictive Intelligence for classification
- Or build pattern detection using:
- Indicators (PA)
- Scheduled jobs
