| CPC Field Retreived | Source | Business Rule |
|---|
| Freight | SLV44_Freight_Guidance__c . Freight Cost Guidance (converted at the CPC Original Currency & UOM) | We retreive the Freight Guidance the same way as the Quote Record type : "Freight Cost" |
| Market Margin Policy Value | Volume Bracket.Market Margin Policy Value (converted at the CPC Original Currency & UOM) | Based on the RMP - Volume Bracket set in the CPC |
| Margin Policy % | Volume Bracket.Market Margin Policy % | Based on the RMP - Volume Bracket set in the CPC |
| EXW Asset Price Floor | Manufacturing plant. Price floor EXW(converted at the CPC Original Currency & UOM) | Based on the Manufacturing Plant SKU in the CPC |
| Variable Manufacturing Costs | Manufacturing plant. Variable Manufacturing Costs (converted at the CPC Original Currency & UOM) | Based on the Manufacturing Plant SKU in the CPC |
| Asset Margin Floor | Manufacturing plant.Asset Margin Floor (converted at the CPC Original Currency & UOM) | Based on the Manufacturing Plant SKU in the CPC |
| Transfer Cost | SLV44_Freight_Guidance__c . Freight Cost Guidance (converted at the CPC Original Currency & UOM) | We retreive the Freight Guidance the same way as the Quote Record type : "Transfer Cost" |
| CPC Field Calculated | Calucation done in the code |
|
| Price Guidance | “Market Margin Policy Value” is not empty
- if (“Market Margin Policy Value” = 0 ) {Price Guidance = empty } else
Price Guidance = CPC. Market Margin Policy Value +CPC.Variable Cost + CPC. Freight
If “Margin Policy %” is not empty - if (“Margin Policy %” = 0 ) {Price Guidance = empty } else
Price Guidance = CPC.Variable Cost + CPC. Freight + (CPC.Variable Cost+ CPC. Freight ) * CPC. Margin Policy %
|
|
| Price floor | CPC.Price Floor = If ( CPC.PricingCampaign.GBU = "Novecare" ) { CPC.Price floor = CPC .Asset Margin Floor + CPC.Variable Costs + CPC. Freight } Else (CPC.PricingCampaign.GBU = "Technology Solution"") { CPC.Price floor = EXW Price floor + CPC. Freight } |
|
| Variable Cost | CPC .Variable Manufacturing Costs + CPC.Transfer Cost Guidance |
|