Hello,
It's my first time with visualforce,
I am trying to create a visualforce page with the opportunity as standardController but I have trouble to find the name of the merge fields like :
{!Opportunity.Name}Is ther a way to find them or insert them correctly ?
thanks
Yann
1 réponse
Hi Yann,
You can find a list of all opportunity fields and their API names using the object manager. From Setup, open Object Manager, find Opportunity, and open the Fields and Relationships tab for the complete list.
You can also look up the names of standard fields here:
https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_objects_opportunity.htm
The format will always be the same:
{! name_of_object.name_of_field }