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
SAHG-SFDCSAHG-SFDC 

Can we display VF page data on the standard page?

Can we display VF page data on the standard page? 

I have a VF page where there is a field (ServiceDate) and I need to display that in the standard page

Any ideas?
Balayesu ChilakalapudiBalayesu Chilakalapudi
Yes, we display VF page data on standard page, 
follow the instruction given in
http://blog.jeffdouglas.com/2009/05/08/inline-visualforce-pages-with-standard-page-layouts/
SAHG-SFDCSAHG-SFDC
I am trying to update the date on Opportunity products standard(This shows all main and sub products) based on the date on the opportunity main products (This is in Visualforce page where I am getting only main product) So If the date is updated in main product on VF page should update for all the subproducts and main product itself in the standard page
Balayesu ChilakalapudiBalayesu Chilakalapudi
we cannot have any Visualforce page inside a standard edit page, but after updating the value in vf page, you can change standard page values with a trigger.
SAHG-SFDCSAHG-SFDC
Yes, I want to change the VF values to standard page values , Is trigger the only solution?
Balayesu ChilakalapudiBalayesu Chilakalapudi
Writing a controller method for your VF page is the best option. inside of it you can change standard page values.