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
JJmemphisJJmemphis 

What is the page that shows the mergefields and corresponding data

Hi,

There is a certain page that I lost the URL to that would show me what the mergefield codes for a certain salesforce page was with the corresponding data on that salesforce page.

If it was an account, i would copy that salesforce ID and paste it at the end of the URL and it would show me all of the fields on that page with their Mergefield codes with the corresponding data in that field.
 

Can anyone please help me with this?

Regards,

Memphis

David Carter 22David Carter 22
well I am new in salesforce Technology But Suggest you Follow Salesforce official Website and I Refer you one site name "Cloud analogy " here you can get your answer
Nitesh_SinghNitesh_Singh

A "merge field" means an area  where output from a function is "merged" into the final Result
Merge fields are not specific attributes, variables. it just areas where Visualforce expression engine is Called .
{!NOW()}
And it would output the current date and time. You can also write in other way:

{!1+2}
and the page result is 3

<apex:inputField value="{!Account.Name}" />
it tell to visualforce the account.Name filed should render as input text
And i also share one blog also hope it will help salesforce data integration (https://cloudanalogy.com/blog/dr-chrono-api-integration-with-salesforce/) with Dr. chrono Api.