Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2016
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1.  
  2. VF page :
  3. "<apex:page standardController="Opportunity" tabStyle="Opportunity" recordSetVar="AllOpportunities">
  4. <!-- Add below each field you reference in your Flow -->
  5. <apex:repeat value="{!AllOpportunities}" var="row" rendered="true">
  6. {!row.Name}
  7. {!row.Amount}
  8. {!row.Sales_Engineer__c}
  9. {!row.Sales_Engineer__r.name}
  10. <br/>
  11.  
  12. </apex:repeat>
  13. <!-- Runs your Flow -->
  14. <flow:interview name="SelectList"
  15. finishLocation="{!$CurrentPage.parameters.retURL}">
  16. <apex:param name="Input" value="{!Selected}"/>
  17. </flow:interview>
  18. </apex:page>"
  19.  
  20. Flow :
  21. loop through the collection and next is a screen which display the values like this
  22.  
  23. Name is {!name.Name}
  24. Amount is {!name.Amount}
  25. SE Id is {!name.Sales_Engineer__c}
  26. SE NAme is {!name.Sales_Engineer__r.name}
  27.  
  28. When I run it, SE Name changes to {!{17020e12841bd27f55bf260957891533ecbe which is super weird
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement