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
ani11ani11 

visual force page


I have three objects Opportunity, Payment Schedule and Proposal

Relationship between the objects
Opportunity is lookup to Payment Schedule and Proposal,,


 relation between PaymentSchedule and Proposal is look up
I want to show Payment Schedule field values in Proposal Visaualforce PDF page

Payment Schedule Fields:
Name and Percentage
How to call these values in Proposal Visualforce PDF

svpsvp

Hi,

 

Try  using this {!Proposal.PaymentSchedule.Name}

 

 <apex:outputText value="Payment Schedule Name :"/>&nbsp;<apex:outputText value="{!Proposal.PaymentSchedule.Name}"/>

 

 

Thanks,

svp