• Steve Gilbert 13
  • NEWBIE
  • 100 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 23
    Questions
  • 32
    Replies
Can't belive this one is bugging me so much but I am trying to comeup with a validation rule that is using a picklist field, field A, of 0-10 and a currency field, field B.  Last try was:

If(
   NOT(ISBLANK(TEXT(  FIELD A  )),
         (FIELD B <> 0),null)

All I am trying to do is say if the picklist field has a value than the currency field cannot be blank.. Above it my 5th attempt and all of them allow me to save the opp without a value in B.

Any ideas would be great.
Thanks
 
In classic I have a URL button that when clicked opens the page of a flow in a new page. In Lighitng I am not given that option and the only thing I have is to replace the page or put a static popup on the page. Neither will work as users need to see their notes as they complete tha page.

Not being a dev I am trying to see what options there may be that will allso users to click on the buttom in Lightning and have the flow open it's page in a new screen that can be moved around as needed.

Any ideas are great and thanks in advance for any help.
I am building a screen flow and when I format my text temples they are showing in the format of

<p>**Last Call Notes**</p><p><br></p><p>Test of the screen flow</p><p><br></p><p><br></p>

The format in the flow set up as:

**Last Call Notes**

{!Review_Leadership_Sales_Challenges}

I've removed the extra rows, checked to that there were now random spaces and the only thing that changes is this section </p><p><br></p><p>

Any help would be great thanks

 
Trying to come up with a way to use the If And combination in a calculation. I have the following

IF( 
   And (Buyer_Present__c = false,
       ( CONTAINS(Commission__r.Name,"Ticket Commission")),
            (125 - Commission__r.Amount_to_Pay__c),
0)
)

All I am trying to get it to do is calculate the difference the dollor value of  (125 - Commission__r.Amount_to_Pay__c) when those conditions are true.
I am trying to see if it is possible to default a lookup field on the account object, Account Payable Control, with a value from the Financial Force custom object General Ledger "Trail Balance 4" field. Have been tryin conbinations of ispickval formuls without luck.  
I am researching how I can add a check box field to a current VF page and controller. This is just a simple "do you use...." yes/no box. Any ideas would be great.
Thanks for any ideas. 
Working on getting this up and running but I ran into an error with the VF page. I have checked for hidden characters and formatting but just can’t seem to find why I am getting the errors below:
 
VF Page to be created:
 
<apex:page controller="ChronicallRecordingAPI" action="{!init}" showHeader="false" standardStylesheets="false">
 
    <flow:interview name="Chronicall_Recording_Link_API">
         <apex:param name="externallistenlink" value="{!externallistenlink}"/>
         <apex:param name="callid" value="{!callid}"/>
         <apex:param name="agent" value="{!agent}"/>
         <apex:param name="callDirection" value="{!callDirection}"/>
         <apex:param name="externalNumber" value="{!externalNumber}"/>
         <apex:param name="callgroup" value="{!callgroup}"/>
         <apex:param name="calltime" value="{!calltime}"/>
         <apex:param name="calltag" value="{!calltag}"/>
     </flow:interview>
</apex:page>
 
 
public class ChronicallRecordingAPI {
 
    public string externallistenlink {get; set;}
    public string callid{get; set;}
    public string agent{get; set;}
    public string callDirection{get; set;}
    public string externalNumber{get; set;}
    public string callgroup{get; set;}
    public string calltime{get; set;}
    public string calltag{get; set;}
 
    public PageReference init() {
    if ( ApexPages.currentPage().getParameters().get('externallistenlink') != null )
         externallistenlink = ApexPages.currentPage().getParameters().get('externallistenlink');
         
    if ( ApexPages.currentPage().getParameters().get('callid') != null )
         callid = ApexPages.currentPage().getParameters().get('callid');
 
    if ( ApexPages.currentPage().getParameters().get('agent') != null )
         agent = ApexPages.currentPage().getParameters().get('agent');
    
    if ( ApexPages.currentPage().getParameters().get('callDirection') != null )
         callDirection = ApexPages.currentPage().getParameters().get('callDirection');
        
    if ( ApexPages.currentPage().getParameters().get('externalNumber') != null )
         externalNumber = ApexPages.currentPage().getParameters().get('externalNumber');        
 
    if ( ApexPages.currentPage().getParameters().get('group') != null )
         callgroup = ApexPages.currentPage().getParameters().get('group');                                    
 
    if ( ApexPages.currentPage().getParameters().get('time') != null )
         calltime = ApexPages.currentPage().getParameters().get('time');
 
    if ( ApexPages.currentPage().getParameters().get('tag') != null )
         calltag = ApexPages.currentPage().getParameters().get('tag');
        
        return null;
    }
}
 
 
Errors that I am getting:
 

User-added image
 
I’ll be digging here as well but any help would be great.

Thanks