Learnify_Rectify

Display Records, Fields, and Tables

Jun 27th, 2024
6,648
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | Source Code | 0 0
  1. Display Records, Fields, and Tables from (module - Visualforce Basics)
  2.  
  3. -------------------------------------------------
  4. SOURCE CODE: OppView (Visualforce page)
  5.  
  6. <apex:page standardController="Opportunity">
  7. <apex:outputField value="{! Opportunity.Name }"/>
  8. <apex:outputField value="{! Opportunity.Amount }"/>
  9. <apex:outputField value="{! Opportunity.CloseDate }"/>
  10. <apex:outputField value="{! Opportunity.Account.Name }"/>
  11. </apex:page>
Advertisement
Add Comment
Please, Sign In to add comment