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
cailincailin 

Where is the Payment object?

When I try to create a custom object called "Payment" I get the following error :

Error: The custom object name you specified matches a Salesforce name. You must specify a unique name

However, I cannot find this "Payment" object

1) In the help pages  on the site
2) In any of the Data Model diagrams in the API documentation
3) In the list of API Objects in the API documentation

Where is this object?
Jay_blueJay_blue

All custom fields and object in SFDC  gets '__c' appended, Payment__c should work.

DevAngelDevAngel
The payment object is likely a reserverd object in salesforce.com.  You can just use a different name and you should also get into the habit of pre-pending a four character code on to your objects anyway.  Try something like CAIL_Payment.  Using the prepended code will avoid other potential naming conflicts with other applications in the AppExchange.  Soon, you will be forced to use a salesforce.com issued 4 character code before you can publish an application.