Project Budget Reallocation with Approval Chains
Project managers need to reallocate budgets to handle scope changes while respecting total project caps and approval authority levels.
Le problème
Budget reallocation requests are evaluated before committing to financial systems. Small reallocations within total project budget and PM authority auto-approve. Large reallocations or at-risk projects escalate to the PMO with risk context. Every reallocation is logged with justification and policy version for project financial audit.
Comment Corules le résout
ESCALATE: project_risk_level = HIGH. All budget changes on at-risk projects require PMO approval.
Exemple de politique
// Budget reallocation policy (CEL)
context.new_total <= context.original_budget * params.budget_variance_tolerance
&& context.reallocation_amount <= params.pm_authority_limit
&& context.project_risk_level != "HIGH"Options d'intégration
REST APIMicrosoft Power Platform
Frequently Asked Questions
What is the budget variance tolerance?
The params.budget_variance_tolerance multiplier (e.g., 1.10 = 10% over original) determines the outer limit before escalation regardless of PM authority.