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
mDizz_7mDizz_7 

Visualforce list snapshot

So, I have a visualforce page on a Case page layout. I want the visualforce element to only display the information for the creation time of that case rather then everything in real time. Any ideas from the community on how to do this?

 

Thanks in advance

Best Answer chosen by Admin (Salesforce Developers) 
kerwintangkerwintang

Do you mean display the original information when the Case record was created? If so, then my suggestion would be to create a new Custom Object to keep the original data of a Case record whenever it's created. Otherwise, you may need to use Field history tracking -- this i am not really sure if you can get the original information easily.

All Answers

kerwintangkerwintang

Do you mean display the original information when the Case record was created? If so, then my suggestion would be to create a new Custom Object to keep the original data of a Case record whenever it's created. Otherwise, you may need to use Field history tracking -- this i am not really sure if you can get the original information easily.

This was selected as the best answer
mDizz_7mDizz_7

That is a great idea thanks for the tip