Warehouse Inventory Transfer with Supply Chain Constraints
Supply chain teams need to move inventory between locations while respecting safety stock levels and demand forecasts.
Das Problem
AI-recommended inventory transfers are validated before execution. Corules checks that the source location retains sufficient safety stock, the destination has demand forecasts supporting the transfer, and shipping costs are economically justified. Transfers that would cause stockouts are blocked. Borderline transfers escalate to supply chain planners.
So löst Corules es
BLOCK: source_qty_after_transfer 120 below safety_stock['warehouse-east']['SKU-7742'] = 200. Transfer blocked.
Richtlinienbeispiel
// Inventory transfer policy (CEL)
context.source_qty_after_transfer >= params.safety_stock[context.source_location][context.sku]
&& context.destination_demand_forecast_30d >= context.transfer_qty * 0.8
&& context.transfer_unit_cost <= params.max_transfer_cost_per_unit[context.sku]Integrationsoptionen
REST API
Frequently Asked Questions
Can safety stock levels change seasonally?
Yes. Safety stock parameters are tenant-specific and can be updated without redeploying policy logic. Seasonal adjustments update params; policy CEL remains unchanged.