Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fractastical/989793 to your computer and use it in GitHub Desktop.
Save fractastical/989793 to your computer and use it in GitHub Desktop.
boyd_r URL Navigation for Custom Objects
http://bit.ly/cj450K
//Get a reference to the Custom Object and gets its Key
Schema.DescribeSObjectResult result = customObject__c.sObjectType.getDescribe();
//navigate to the View Page
PageReference pageRef = New PageReference('/' + result.getKeyPrefix() + '/o');
pageRef.setRedirect(true);
return pageRef;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment