there are many standard objects e.g. AccountcontactRole, LetterHead, Approval etc. which can be retrieved using Salesforce APIs. What is the way to see these objects in Salesforce environment in browser?
How to view standard objects in salesforce online?
1.5k Views Asked by user3128748 At
1
There are 1 best solutions below
Related Questions in OBJECT
- Getting Value from Object with Characters in Element Name
- Java: set and get methods for strings
- Angular populate select with object of objects
- Is it possible to have a command last only while the object is moving?
- Converting an unknown to an array in PHP
- Can anyone explain why this snippet of code is working in the constructor only?
- How to initialize an object with an array parameter in Java
- How can I assign initial data to some variables in literal object before use
- Check if a private function exists inside an object in JavaScript
- java.lang.ArrayIndexOutOfBoundsException object array
- Jquery object is undefined after sort but is in firebug
- Using NON static class Methods Without reference
- JSON-like object in Python
- Change value of each property in array of objects in javascript - map() method?
- Does Object.defineProperty has access the memory address of object?
Related Questions in BROWSER
- Why does Angular send Http Request Method: Options before POST?
- Trick browser into resizing the viewport dimensions by 1px
- Why is it so hard to style <select> and <option> elements?
- Change writing language at browser
- Selenium stops running after click() function runs
- Are there any debugging tools for the Opera Mini mobile browser?
- place 1 label top, 1 input bottom and 2 buttons left
- Why clear cache does not work with all browsers?
- Opening Browser Instances from different Vendors
- Browser's not displaying images correctly
- Open a html document with php
- How to run a .jar inside browser?
- Why/how does the browser decide ☃.net goes to xn--n3h.net
- How do you invoke another app from a child browser
- Firefox and SSL pages - takes very long on certain sites
Related Questions in SALESFORCE
- Flask-Restful, oauth, and Salesforce
- i am using Command line dataloader in Salesforce & create simple “process-conf.xml” file ,i want to give relative path insted of absolute path
- VBA automation to upload data into Salesforce
- "Operation in progress..." Never Ends When Previewing Rows in Kettle Spoon via Salesforce
- How to download attachments using c#
- Opportunity Field Dependency
- Create a dynamic SOQL Query using variable objects
- Salesforce - HubSpot API calls
- When does Time Dependent workflow rule executes?
- Customize 'Send with Docusign' Button in Salesforce
- How do I use a publicly hosted image as the background for a visualforce page?
- How to get access token and make salesforce rest api requests with paw?
- List button in Salesforce1
- Visualforce page is not refreshing after deleting a row from table
- Docusign Salesforce Logout/switch account
Related Questions in SALESFORCE-SERVICE-CLOUD
- Access a variable on a controller on two seperate visualforce pages
- How to update a file in google drive using Google drive API
- Cross origin issue in salesforce response(Access-Control-Allow-Origin)
- looping over a set of elements in Salesforce
- Connect salesforce to ftp using http request
- Salesforce error: Element {}item invalid at this location
- Can I set up a web form that will populate an opportunity in my salesforce
- row from datatable does not updated in salesforce
- Chatter Moderator User Security Token
- Can't find DSProSFUsername field for populated with DocuSign API Username in Salesforce org user
- How can i receive Salesforce Outbound Message from Mule?
- How to view standard objects in salesforce online?
- What is the Endpoint URL in Mule?
- Creating a Popup for new case assignment in salesforce
- Can we use TFS as Source Code Repository for Salesforce?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Very roughly speaking - easiest cheat is to simply put the Id in the URL. So if your Salesforce instance is
https://na1.salesforce.comthen adding/001....(any valid Account Id) will take you to this account. Similarly/016...will take you to "this" Letterhead record.Some data is easily accessible to users - for example AccountContactRole should be available as related list under Account. If it isn't - probably the administrator removed it from page layout because the company decided to use only the straightforward Account - Contact relationship.
Some data like Letterheads, EmailTemplates, Approval processes is visible in the setup area (not all users have the "View Setup and Configuration" permission in their Profiles!)
*Sharerecords (like AccountShare) would be visible after you click the Sharing button on the page layout (if it's not visible - again, check with Admin).If you're using API to fetch the data, you probably can also use "describe" calls to fetch info which objects are available, what fields are present in the tables... Sometimes the "Frontdoor URLs" property is set (although I confess I'm not sure how to get it, http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_Schema_DescribeSObjectResult_instance_methods.htm doesn't mention it).
Also - if you haven't noticed yet - all Accounts start with "001". Try to guess where "/001" and "/001/o" links would lead.