Salesforce.com Icons
No school like the old school. A quick way to give quick visual feedback in the Classic Salesforce.com UI is to use the built-in icons in conjunction with a formula field. A source that I have used forever seems to work and then not work so I found another URL that seems to work:
http://blogforce9dev-developer-edition.ap1.force.com/salesforceicons
Basic Formula I used recently to let the user know that the future class had not updated the page with Approval Updates (Status/Step):
if(Update_Status_Text__c = "Future",
/* Page has not been updated by the future class */
IMAGE("/img/msg_icons/error16.png", "Refresh!") &
" Refresh Page",
/* All Good! */
IMAGE("/img/msg_icons/confirm16.png", "All Good!") &
" Page Good!"
)
This is the original page I've used for years: http://www.force2b.net/index.php/2010/08/salesforce-icons/
Update (Feb 2018): Here's another good site: http://salesforce-stuff.blogspot.com/2012/01/salesforce-images.html
Categories
- CSVFIX (4)
- Google (1)
- Knowledge (66)
- Playing Music (1)
- Plex (1)
- Salesforce.com (45)
- Stupid (20)
- Top 5 (1)
- Ubuntu (1)
- Uncategorized (3)
- VMware (2)
- Wordpress (1)
- Zimbra (3)
Recent Posts
- Silly Admin Trick: Enable Service Contracts
- Silly Admin Trick: How to Access Salesforce “Platform Integration User” Profile
- Silly Admin Trick: Random Character Generator
- Wave / EA: Counting the number of weeks, months, days, etc. in SAQL
- Silly Admin Trick: Removing Carriage Returns from Long Text Fields
Leave a comment