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
Ramanarayanan PadmanabhanRamanarayanan Padmanabhan 

Invalid component [flexipage:visualforcePage]: component either doesn't exist or doesn't have design time information

<?xml version="1.0" encoding="UTF-8"?> 
<FlexiPage xmlns="http://soap.sforce.com/2006/04/metadata"> 
  <flexiPageRegions> 
    <componentInstances> 
      <componentInstanceProperties> 
        <name>entityNames</name> 
        <value>Account,Contact</value> 
      </componentInstanceProperties> 
      <componentName>flexipage:recentItems</componentName> 
    </componentInstances> 
      <componentInstances>
    <componentInstanceProperties> 
        <name>entityName</name> 
        <value>RamSampleHomePage</value>
    </componentInstanceProperties>  
<componentName label = 'RamSampleHomePage' pageName = 'RamSampleHomePage'>flexipage:visualforcePage</componentName>
    </componentInstances>    
    <name>main</name> 
  </flexiPageRegions> 
  <quickActionList> 
    <quickActionListItems> 
      <quickActionName>NewAccount</quickActionName> 
    </quickActionListItems> 
  </quickActionList> 
  <masterLabel>Ram Flexipage</masterLabel> 
</FlexiPage> 
ShashankShashank (Salesforce Developers) 
Please change the API version to 32.0 and include the following within the flexipage definition. 

<type>AppPage</type> 
</FlexiPage> 

https://www.salesforce.com/us/developer/docs/api_meta/Content/meta_flexipage.htm
Ramanarayanan PadmanabhanRamanarayanan Padmanabhan
Hi Shashank,

Thanks a lot for your response. I got the issue resolved months back. I added the tag you mentioned in the flexipage.


Thanks,
Ram