dymodevelopers.wordpress.com
New blog | DYMO Label Inside Out
https://dymodevelopers.wordpress.com/2013/05/21/new-blog
DYMO Label Inside Out. May 21, 2013. 8212; drobdymo @ 9:24 am. As mentioned before, any new blog posts will be posted to our new blog site, http:/ developers.dymo.com. You will also find all of our old posts cataloged at the new location as well. This WordPress hosted blog ( https:/ dymodevelopers.wordpress.com/. Will not be updated with any new posts in the future so update your bookmarks and RSS feeds to point to the new location. Leave a Comment ». Feed for comments on this post.
verticalcoder.com
Vertical Coder | Salesforce.com Tips and Tricks | Page 6
http://www.verticalcoder.com/page/6
Deleting Salesforce Contacts You Don’t Own (Part 2). April 3, 2012. Back in October, I posted a way to allow users to delete contacts that they don’t own. Object. You can now query this object with SOQL to find out a user’s access to a specific record. Let’s take a look. In its simplest form, you can query to see what the maximum access a user has to a particular object:. SELECT RecordId, MaxAccessLevel FROM UserRecordAccess WHERE UserId = [single ID] AND RecordId = [single ID]. Very elegant, right?