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
shankeruma0@gmail.comshankeruma0@gmail.com 

Registration_c does not exist

i am trying to create a visual force page with standard controller

but at starting only it is displaying error called  "Registration_c does not exist" with this code

 

 

<apex:page standardController="Registration_c" >

 

</apex:page>

 

 

KaityKaity

Hi,

Can you please check the API name of the object- Registration_c?

sandy_salesfdc1sandy_salesfdc1

Please try 

<apex:page standardController="Registration__c" >

 

</apex:page>

 

custom objects will be suffixed by __c

Satish_SFDCSatish_SFDC
Yes, it a double underscore

Registration__c
not Registration_c


Regards,
Satish Kumar