• prasaduppuluri
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies
Why i am not able to find the flow trigger in m instance
Hi,

I want to create WSDL for a particular object(certain fields) with the associated contact fields also

If anybody know the answer please reply me asap
Thanks

I have an Apex class that does a  simple query

private List<Opportunity> opportunities; public List<Opportunity> getOpportunities() { opportunities= [Select o.Id, (Select Applicant_Type__c, First_Name__c, Last_Name__c From Members_Info__r) from Opportunity o where o.id='<opp_id>']; return opportunities; }

 

 

I'm using the results from this query in a VF page

 

 

<apex:pageBlockSection title="Info"> <apex:dataTable value="{!opportunities}" var="mbrinfo"> <apex:column headerValue="Opp Id"> <apex:outputText value="{!mbrinfo.Id}" /> </apex:column> <apex:column headerValue="First Name"> <apex:outputText value="{!mbrinfo.Members_Info__r.First_Name__c}" /> </apex:column> </apex:dataTable> </apex:pageBlockSection>

 

 

The display works fine for column Opp Id but always gives an error for mbrinfo.Members_Info__r.First_Name__c

First_Name__c is a custom field within the Members_Info__c object

 

The error I get is  - Error: Unknown property 'VisualforceArrayList.First_Name__c'

 

Does anyone know if I'm missing anything?

 

Any help is appreciated