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
Faisal BahadurFaisal Bahadur 

How to create a Recent item Vp

how to create a custom Recent Item showing visual force page same ras left narrow component functionality

Sonam_SFDCSonam_SFDC

Hi,

 

You can use the RecentlyViewed Object to get the list of Objects accessed by a user:

RecentlyViewed object provides a heterogeneous list of different object types and consists of recently viewed records or records that were recently referenced (a related record was viewed).

 

Read More on how you can implement this on VF page: 

http://www.salesforce.com/us/developer/docs/object_referencepre/Content/sforce_api_objects_recentlyviewed.htm

http://salesforce.stackexchange.com/questions/4243/how-can-i-get-recent-items-object-ids-in-apex-soql-is-it-possible

 

http://salesforce.stackexchange.com/questions/5221/emulate-a-custom-objects-recent-items-in-a-visualforce-page

 

Hope this helps!