function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sam.arjSam.arj 

Overridden Opportunity Clone button and "Required fields are missing: Label"

I have overridden the Opportunity's clone button with a Visualforce page and an extention apex class.

There is no code in my extention class and nothing in the Visualforce page:

 

<apex:page standardController="Opportunity" extensions="OpportunityCloneController" action="{!init}">
  
</apex:page>

 The Controller class:

public with sharing class OpportunityCloneController {
    private Opportunity opp = null;
    
    public OpportunityCloneController(ApexPages.StandardController controller) {
        opp = (Opportunity)controller.getRecord();
    }
    
    public PageReference init()
    {
      return null;
    }
}

   Here the link produced when i click on the clone button:

  

/apex/OpportunityClone?clone=1&retURL={VALUE}&scontrolCaching=1&sfdc.override=1&id={VALUE}

 



   However when i click save the apex class gets saved but i get an error message and does not seem to save the VF page:

   Error: Required fields are missing: Label

   

   I am not sure what this error message means!

   Any help is appreciated

  

aballardaballard

Strange.. I see the same error.  Looks like a bug to me... you should probably open a support case.