Your inconsistent routing with multiple cost centers stems from three interconnected configuration issues that need to be addressed systematically:
1. MULTIPLE COST CENTERS ON JOURNAL ENTRY:
When a journal entry spans multiple cost centers, Workday’s default behavior is to evaluate ALL cost centers against your routing rules, which creates conflicts if the rules aren’t designed for this scenario. You need to explicitly define which cost center takes routing precedence.
In your business process configuration, add a primary routing rule that determines the controlling cost center. Common approaches:
- Route based on the cost center with the largest transaction amount
- Route based on the debit side cost center (or credit side, be consistent)
- Route based on a designated ‘primary’ cost center field if your journal entry template includes one
Implement this by adding a condition at the TOP of your approval step: ‘If journal entry has multiple cost centers, route to [Primary Cost Center Manager]’. Define ‘Primary Cost Center’ using a calculated field or business process variable that evaluates your chosen logic.
2. APPROVAL ROUTING INCONSISTENT:
The inconsistency happens because your routing conditions lack proper prioritization and conflict resolution. Based on your description of having rules for cost centers, amounts, and GL accounts, these are likely triggering simultaneously and competing.
Restructure your approval step conditions in this priority order:
- Exception handling rules (specific GL accounts requiring special approval)
- High-value thresholds (amount-based routing that overrides normal flow)
- Multi-cost-center logic (as described above)
- Standard single-cost-center routing
- Default/catch-all rule
Each condition should use ‘AND’ logic to be mutually exclusive. For example:
- Condition 1: ‘GL Account = 7000-7999 AND Amount > 10000’ → Route to Controller
- Condition 2: ‘Multiple Cost Centers = True AND Amount > 5000’ → Route to Primary Cost Center Manager THEN Accounting Director
- Condition 3: ‘Single Cost Center = True’ → Route to Cost Center Manager
The key is ensuring only ONE condition can be true for any given journal entry. Test your logic by creating a decision matrix that maps different journal entry scenarios to their expected routing path.
3. DELAYS IN WORKFLOW COMPLETION:
The delays during month-end close occur because your workflow lacks timeout and escalation handling for multi-cost-center approvals. When entries get stuck, there’s no automatic escalation path.
Add these configurations to your approval steps:
- Set approval deadlines: Configure ‘Due Date’ to be 24 hours from submission for standard entries, 48 hours for multi-cost-center entries
- Enable escalation: If approval isn’t completed within the deadline, escalate to the next level manager or to a designated accounting supervisor group
- Add notification reminders: Send reminder notifications at 12 hours and 23 hours if approval is still pending
- Configure ‘Approve on Behalf’ permissions: Allow accounting supervisors to approve on behalf of cost center managers during close periods to prevent bottlenecks
For your specific multi-cost-center scenario, I recommend implementing a two-tier approval structure:
- Tier 1: Primary cost center manager (determined by your precedence logic)
- Tier 2: Accounting operations manager (reviews all multi-cost-center entries as a control point)
This ensures consistent routing while maintaining proper segregation of duties. The accounting ops manager serves as the conflict resolver when multiple cost centers are involved.
To implement these fixes without disrupting current operations, create a copy of your existing business process, make these configuration changes in the copy, and test thoroughly with representative journal entries before activating. Focus your testing on entries that previously routed inconsistently to validate the new logic handles them correctly.
This draft is based on general Workday knowledge. It has not been verified against your specific version and environment. Practitioners: verify the steps and share your experience below.