Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am editing the "Quote" visualforce page template and needed to add a column for Discount. This field gives the percent per-item on the OpportunityLineItem, much like Quantity. I keep getting the error (in subject field) and can't figure why.

   <apex:repeat value="{!relatedTo.OpportunityLineItems}" var="line">
  <tr>
    <td>{!line.PricebookEntry.Name}</td>
    <td>{!line.Description}</td>
    <td ALIGN="center"><img src='{!line.PricebookEntry.Product2.URL_Picture__c}'/></td>             
     <td>{!line.Quantity}</td>

     <td><apex:OutputField value="{!line.Discount}"/></td>

     <td><apex:OutputField value="{!line.TotalPrice}"/></td>
      </tr>
   </apex:repeat>  
share|improve this question

2 Answers

Is it a custom field? Try with Discount__c

share|improve this answer

Check the Field level security for the Opportunity Product (OpportunityLineItem) Discount field. I checked a couple of Orgs and Discount isn't visible to any profiles by default.

The URL will be something like this: (You will need to change the server instance from cs7)

https://cs7.salesforce.com/p/setup/field/StandardFieldAttributes/e?id=Discount&type=OpportunityLineItem

Alternatively, get there with - Your name > Setup > App Setup > Customize > Opportunities > Opportunity Products > Fields > Discount > Set Field-Level Security.

Also, if your relatedTo list is being created in the backing controller via a SOQL query ensure that it is selecting the Discount field.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.