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
Trevor ViallTrevor Viall 

Edit records in Standard object thats not tabbed

So i have a question that i likely very simple but google isnt helping. How do I edit or create new records for a standard object that isnt tabbed. I'm aware I can tab custom objects but this won't work. Really I don't need to tab it I just need to access the records but outside of an apex soql search I can't find a way to access them.
VinayVinay (Salesforce Developers) 
Hi Trevor,

Try to create a report on the standard object to view available records or you can use SOQL query to pull records.

Eg:- Select Id, Name from Account.

Thanks,
Vinay Kumar
SFDC_SaurabhSFDC_Saurabh
Hello Trevor,

Just grab id of any one record from that object which you wish to access.
For e.g. 
https://yourdomain.my.salesforce.com/a2u22000000yABC

Now simple keep only the first three characters of the id in URL
i.e. 
https://yourdomain.my.salesforce.com/a2u
Now access this URL and you should be able to view the records if you have permissions.