• poonam wadhwani 9
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 1
    Replies
Can I reference my List type of Custom Setting in my validation rule ?If yes can anyone please let me know how?

Thanks.
HI,

I want to display all apportunitites of an acount which are in stage "Qualify" .

I have created a table with below code.This code displayes all opportunitties.I want to show only "Qualify" opportunities.

<apex:page standardController="Account">
   
    <apex:pageBlock title="Edit Account for {!$User.FirstName}">
        Youa are viewing the {!account.name} Account
        </apex:pageBlock>
         <apex:pageBlock title="Opportunities">
        <apex:pageBlockTable value="{!ACCOUNT.Opportunities}" var="opportunity">
            <apex:column value="{!opportunity.name}"/>
            <apex:column value="{!opportunity.type}"/>
            </apex:pageBlockTable>
        </apex:pageBlock>
           
     
</apex:page>

 
HI,

I want to display all apportunitites of an acount which are in stage "Qualify" .

I have created a table with below code.This code displayes all opportunitties.I want to show only "Qualify" opportunities.

<apex:page standardController="Account">
   
    <apex:pageBlock title="Edit Account for {!$User.FirstName}">
        Youa are viewing the {!account.name} Account
        </apex:pageBlock>
         <apex:pageBlock title="Opportunities">
        <apex:pageBlockTable value="{!ACCOUNT.Opportunities}" var="opportunity">
            <apex:column value="{!opportunity.name}"/>
            <apex:column value="{!opportunity.type}"/>
            </apex:pageBlockTable>
        </apex:pageBlock>
           
     
</apex:page>