• Daniel Neufeld 6
  • NEWBIE
  • 10 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 2
    Replies
Hello, 

I have a custom picklist field on cases. When a specific picklist value is selected, I want to display a VF page on the case page with a specific message "Please do X". 

Any suggestions on how to do this? 



 
I'm new to Apex and trying to achieve code coverage for an Apex Class that references a VF page. Below is my apex class: 
 
public class Wave_Sales_Performance{
 public PageReference saveMethod()
    {
  PageReference pgref = new PageReference('https://c.na26.visual.force.com/apex/Wave_Sales_Performance');
        pgref.setRedirect(true);
        return pgref;
        
    }
    public PageReference saveMethod2()
    {
  PageReference pgref = new PageReference('https://c.na26.visual.force.com//apex/Wave_New_Rev_by_Individual');
        pgref.setRedirect(true);
        return pgref;
    }    
        public PageReference saveMethod3()
    {
  PageReference pgref = new PageReference('https://c.na26.visual.force.com/apex/Wave_YTD_Appointment_Metrics');
        pgref.setRedirect(true);
        return pgref;
       } 
        public PageReference saveMethod4()
    {
  PageReference pgref = new PageReference('https://c.na26.visual.force.com/apex/Wave_Online_Offline');
        pgref.setRedirect(true);
        return pgref;
       } 
         public PageReference saveMethod5()
    {
  PageReference pgref = new PageReference('https://c.na26.visual.force.com/apex/Wave_Actual_Budget');
        pgref.setRedirect(true);
        return pgref;
       } 
        
    
}


Any solutions or advice would be much appreciated. 

Thanks
Daniel

Hello all, 
 
I'm trying to run the Dataflow and getting this error: 
 
Error executing node 133: Invalid schema: Error, Invalid key name: %!(EXTRA string=WhatId(Account).Name) (02K32000000CdmREAS_03C32000000TNDQEA4)
 
I can't find a knowledge article on this particular error. 
 
Can anybody speak to this? 
 
Thanks in advance. 
I'm new to Apex and trying to achieve code coverage for an Apex Class that references a VF page. Below is my apex class: 
 
public class Wave_Sales_Performance{
 public PageReference saveMethod()
    {
  PageReference pgref = new PageReference('https://c.na26.visual.force.com/apex/Wave_Sales_Performance');
        pgref.setRedirect(true);
        return pgref;
        
    }
    public PageReference saveMethod2()
    {
  PageReference pgref = new PageReference('https://c.na26.visual.force.com//apex/Wave_New_Rev_by_Individual');
        pgref.setRedirect(true);
        return pgref;
    }    
        public PageReference saveMethod3()
    {
  PageReference pgref = new PageReference('https://c.na26.visual.force.com/apex/Wave_YTD_Appointment_Metrics');
        pgref.setRedirect(true);
        return pgref;
       } 
        public PageReference saveMethod4()
    {
  PageReference pgref = new PageReference('https://c.na26.visual.force.com/apex/Wave_Online_Offline');
        pgref.setRedirect(true);
        return pgref;
       } 
         public PageReference saveMethod5()
    {
  PageReference pgref = new PageReference('https://c.na26.visual.force.com/apex/Wave_Actual_Budget');
        pgref.setRedirect(true);
        return pgref;
       } 
        
    
}


Any solutions or advice would be much appreciated. 

Thanks
Daniel

Hello all, 
 
I'm trying to run the Dataflow and getting this error: 
 
Error executing node 133: Invalid schema: Error, Invalid key name: %!(EXTRA string=WhatId(Account).Name) (02K32000000CdmREAS_03C32000000TNDQEA4)
 
I can't find a knowledge article on this particular error. 
 
Can anybody speak to this? 
 
Thanks in advance.