I can walk you through a comprehensive solution that addresses all the key areas. First, let’s tackle the competency criteria mapping - you need to verify the data source chain from talent profiles through to your report. Navigate to Configure Business Object > Succession Planning and confirm that your custom competency fields are included in the Succession Plan Item data source.
For the role criticality algorithm, the issue is likely that your calculation exists but isn’t properly integrated into the succession planning framework. Here’s the corrected setup:
// Create calculated field: Critical_Role_Flag
IF ((Leadership_Impact_Score * 0.35 +
Revenue_Resp_Score * 0.30 +
Specialized_Skills_Score * 0.25 +
Span_Control_Score * 0.10) >= 75)
THEN "Critical"
ELSE "Non-Critical"
This needs to be added to the Position business object, not the Succession Plan object. Then reference this field in your report.
For custom weighting logic, go to Configure Succession Planning > Critical Role Criteria and enter your percentages there. Don’t just rely on calculated fields - Workday’s succession module has dedicated configuration for these weights that must align with your formula.
Regarding talent framework integration, verify effective dating alignment. Run this validation: Create a custom report showing Position, Effective Date, Competency Assessment Date, and each of your four score components. Filter for positions you know should be critical. You’ll likely find date mismatches or null values in the component scores.
For report filter validation, the issue is your filter is applied too early in the data retrieval process. Instead, modify your report structure: Remove the score >= 75 filter from the report prompts, add your Critical_Role_Flag calculated field to the report output, then filter on that field equaling “Critical”. This ensures all data is retrieved before filtering occurs.
Additional critical steps:
-
Security context: Verify the report runs with a service account that has Succession Planning Administrator and Talent Framework Viewer roles. Without these, competency data may be hidden.
-
Business process configuration: Check that your succession planning business process includes a step to calculate critical role scores. If this step is missing, scores won’t update when competency data changes.
-
Data validation: Before assuming the algorithm is wrong, confirm data completeness. Create a validation report showing all four component scores for your missing positions. I suspect you’ll find nulls in the specialized skills or span of control fields.
-
Position vs incumbent: Ensure you’re using position-based succession planning if your competencies are mapped to positions, or incumbent-based if mapped to workers. Mixed approaches cause exactly this kind of partial data retrieval.
Test this approach: Pick one position you know should be critical, manually verify all four component scores are populated and current, confirm the calculated field returns “Critical”, then check if it appears in your report. If it does, you’ve confirmed the logic works and the issue is data completeness. If it doesn’t, the problem is in the report’s data source or security configuration.
This systematic approach addresses all five focus areas and should resolve your 40% miss rate.