You need to sign in to do that
Don't have an account?
TehNrd
How to tell if Forecast Category has been overridden
Usually the Forecast Category field is driven by the Stage picklist but a user can override this value with the Forecast tab. With Apex is there any way to identify if the Forecast Category field has been overridden?
Thanks.
You can check if the probability is the default probability for this stage. You find all the information you need in the object "OpportunityStage":
Select o.ForecastCategory, o.DefaultProbability From OpportunityStage o where o.IsActive = true
All Answers
You can check if the probability is the default probability for this stage. You find all the information you need in the object "OpportunityStage":
Select o.ForecastCategory, o.DefaultProbability From OpportunityStage o where o.IsActive = true