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
pvelanpvelan 

Custom Object

Hi,

 

I am seeing a custom object used in an Apex class. But i am not able to locate the custom in the custom object list of in the installed packages. Is there a way to search for custom objects in the org?

 

Thanks.

logontokartiklogontokartik

Try in Set-up --> Installed Packages --> Select the package you installed.

 

It will display the list of all components installed as part of package including the custom Objects

 

 

Ispita_NavatarIspita_Navatar

Alternatively you may want to check for the objects:-

in the "Setup" Under --> App Setup--> Create --> Objects

 

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.

pvelanpvelan

I tried both the options and it is not listed in those locations.

 

Thanks.

logontokartiklogontokartik

Try Workbench or Apex Explorer

 

In Workbench, go to Query --> SOQL Query and you will see a dropdown list of all objects in your org. If you dont see it there, i am guessing its not present in your org. Maybe you are referrning to a temporary object in Apex code. Paste your code and will look and let you know

 

Workbench Link

 

https://workbench.developerforce.com/login.php

 

Thanks