Created
September 12, 2019 16:05
-
-
Save DataSolveProblems/2caa9271a21f6f7c9b24461aea300341 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<apex:page standardController="Opportunity"> | |
<apex:pageBlock title="Opportunity Page"> | |
<apex:pageBlockSection> | |
<apex:outputField value="{! Opportunity.Name}"/> | |
<apex:outputField value="{! Opportunity.Amount}"/> | |
<apex:outputField value="{! Opportunity.CloseDate}"/> | |
<apex:outputField value="{! Opportunity.Account.Name}"/> | |
</apex:pageBlockSection> | |
</apex:pageBlock> | |
</apex:page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#Salute