6 个回答
Hi Pooja,Please create a VF page with the StandardController='Opportunity' with extensions='OpportunityExtensionController'. something like below:public class OpportunityExtensionController { public Case ca {get; set;} public OpportunityExtensionController(ApexPages.StandardController controller) { Opportunity opp = (Opportunity) controller.getRecord(); opp = [Select Id, Name, ........ from Opportunity where Id =: opp.Id]; ca = new Case(); ca.OpportunityId = opp.Id; ca.AccountId = opp.AccountId; }}Above code will give an idea how to write the VF page and Controller.