• LaurensB
  • NEWBIE
  • 20 Points
  • Member since 2014


  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 5
    Replies
Hi,

I have a question. I can see this code is working fine in my org 
<apex:page standardController="Opportunity">
    <apex:outputLabel>{!Opportunity.Name}</apex:outputLabel>
    <apex:outputLabel>{!Opportunity.StageName}</apex:outputLabel>
    <apex:outputText value="{!IF(Opportunity.StageName=="Prospecting", 'Test 1', IF(Opportunity.StageName=="Proposal/Price Quote", 'Test 2', IF(Opportunity.StageName=="Needs Analysis", 'Test 3', IF(Opportunity.StageName=="Negotiation/Review", 'Test 4','Test 5'))))}"/>
</apex:page>


But the challange keeps saying:

Challenge not yet complete... here's what's wrong: 
The page isn't evaluating the 'Negotiation Review' stage.


Very frustrating. Anyone an idea?
Much appreciated in advance.


 
I am looking for trigger code on object "Child" that updates the field "Parent2.MyField".

Table       Fields
Child      Id, Parent1Id     <= Current 
Parent1  Id, Parent2Id
Parent2  Id, MyField

 

Hi,

I created a button that calls a VF page with 2 fields on it:
- Closure Code
- Resolution
But I want to set the field Status to 'Closed' without displaying it on the VF page or that a user needs to select it themselves.
How does one do that? Can I do that straight in the VF page? I certainly hope so :-)
Any help on this appreciated.

Hi,

I have a question. I can see this code is working fine in my org 
<apex:page standardController="Opportunity">
    <apex:outputLabel>{!Opportunity.Name}</apex:outputLabel>
    <apex:outputLabel>{!Opportunity.StageName}</apex:outputLabel>
    <apex:outputText value="{!IF(Opportunity.StageName=="Prospecting", 'Test 1', IF(Opportunity.StageName=="Proposal/Price Quote", 'Test 2', IF(Opportunity.StageName=="Needs Analysis", 'Test 3', IF(Opportunity.StageName=="Negotiation/Review", 'Test 4','Test 5'))))}"/>
</apex:page>


But the challange keeps saying:

Challenge not yet complete... here's what's wrong: 
The page isn't evaluating the 'Negotiation Review' stage.


Very frustrating. Anyone an idea?
Much appreciated in advance.


 
I am looking for trigger code on object "Child" that updates the field "Parent2.MyField".

Table       Fields
Child      Id, Parent1Id     <= Current 
Parent1  Id, Parent2Id
Parent2  Id, MyField

 

Hi,

I created a button that calls a VF page with 2 fields on it:
- Closure Code
- Resolution
But I want to set the field Status to 'Closed' without displaying it on the VF page or that a user needs to select it themselves.
How does one do that? Can I do that straight in the VF page? I certainly hope so :-)
Any help on this appreciated.