0

I have a Requirement :

After clicking on New Opportunity Button it will open Opportunity page with some fields auto populated Like 1. Close Date: default to creation date plus 30 ? 2. Opportunity Name:  default to ,

etc..

Could you please help

1 Answers1

0

You can use few approaches for implementing autopopulation field functionality:

  • set up default values for your fields (note that if the default values are dynamic, e.g. val = f(x,y), then x,y must come from the running user or environment, not from other opportunity fields);
  • create Visualforce page with custom Apex controller where to override of the Opportunity.New button;
  • use workflows of triggers on save new record event.
Hleb
  • 7,037
  • 12
  • 58
  • 117