• Liubomyr Holko
  • NEWBIE
  • 0 Points
  • Member since 2022

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
User-added image
<apex:page standardcontroller="Account">
<apex:pageBlock >
<apex:pageBlockTable value="{!Account.Handoffs__r}" var="h">
<apex:pageBlockSection title="Handoff" columns="1">
<apex:outputText value="Handoff Name {!h.Name}"/>
<apex:outputText value="Account {!h.Account__c}" />
<apex:outputText value="Opportunity {!h.Opportunity__c}"/> <apex:outputText value="Point of Contact {!h.Point_of_Contact__c}"/> </apex:pageBlockSection>
</apex:pageBlockTable>
</apex:pageBlock> </apex:page>