You need to sign in to do that
Don't have an account?
Vandana Rattan
Customize Opportunity Stage Progression
I have a requirement wherein following needs to be implemented:-
For a particular Opportunity Record Type -
If there are Opportunity Stages A, B, C, D, E, F Team1 should be able to progress the opp till stage C and also to stage F. They should not be able to progress opp to Stages D, E.
Team2 should be able to progress the opp to all stages.
How can I achieve this functionality? I thought of creating multiple Sales Process but this would require me to create multiple Record Types.
For a particular Opportunity Record Type -
If there are Opportunity Stages A, B, C, D, E, F Team1 should be able to progress the opp till stage C and also to stage F. They should not be able to progress opp to Stages D, E.
Team2 should be able to progress the opp to all stages.
How can I achieve this functionality? I thought of creating multiple Sales Process but this would require me to create multiple Record Types.
If you have some information on the User level that distinguishes between team1 and team2, I think you could just use the validation rules to not allow Team1 to put it into stages D & E.
For the Error Condition Formula on the validation rule, you'd put in something like:
if( and($User.ManagerId = XXXXXXXXXXXXXXX, or(StageName = "D",StageName = "E"),TRUE,FALSE)
The assumption I made is that the ManagerID for team1 is different then team2 but that could just as easily be a ProfileID, RoleID, Title, etc.
Chris
I think you can acheive your requirement using recordtype and sales process. The validation rule is not needed in your scenario.
@Chris your soln works. But is it possible to not show stages D and E to team1 keeping in mind that I want to show different stage values for same type (record type) of opportunity to Team1 and Team2?
Creating diff record types does not seem to solve my problem.
Regards,
Vandana