-
ChatterFeed
-
0Best Answers
-
1Likes Received
-
0Likes Given
-
23Questions
-
32Replies
validation rule using picklist
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
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
- Steve Gilbert 13
- May 12, 2023
- Like
- 0
- Continue reading or reply
Custom Button or Action to open a new page
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.
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.
- Steve Gilbert 13
- May 05, 2023
- Like
- 0
- Continue reading or reply
best practices for connecting Salesforce to external web site
Looking for what others agree on is the best practice to connect external sites to Salesforce. Currently they are using a defined user to sync but a more robust method, api, token etc.. that would 1) remove the dependencies of a user login and 2) not require the use of a SFDC user license/profile etc..
Thanks for any feedback
Thanks for any feedback
- Steve Gilbert 13
- July 08, 2022
- Like
- 0
- Continue reading or reply
formatting issues using a text template in a screen flow
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
<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
- Steve Gilbert 13
- December 13, 2019
- Like
- 0
- Continue reading or reply
Using an "If.And" formula to calculate a commission value
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.
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.
- Steve Gilbert 13
- July 08, 2019
- Like
- 0
- Continue reading or reply
Triggering a screen pop flow using standard buttons
I am researching using screen pop flows as a way to check for record completion on the save or submit button. ex.. new case is created and on save a popup contains the values completed and highlights those that are needed.. from what I am finding it appears that this would need to be a apex trigger..
- Steve Gilbert 13
- March 25, 2019
- Like
- 0
- Continue reading or reply
defaulting a liiokup field using the values from a picklist
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.
- Steve Gilbert 13
- March 21, 2019
- Like
- 0
- Continue reading or reply
populating fields values via a flow process
In a flow that I am creating I need to be able to create a related record in a custom object based on either the user profile or role. I have a look up to the user that only has the following:
Is Active - true
UserProfile = varUserProfile
Id = varUserId
later in the process there is a decidion that should split the users up into 4 types based on the profile. Each of the 4 have varriables set with the profile id.
everything else in the flow is working except for this one decision node.. any ideas?
Is Active - true
UserProfile = varUserProfile
Id = varUserId
later in the process there is a decidion that should split the users up into 4 types based on the profile. Each of the 4 have varriables set with the profile id.
everything else in the flow is working except for this one decision node.. any ideas?
- Steve Gilbert 13
- November 30, 2018
- Like
- 0
- Continue reading or reply
creating a checkbox in a visualforce page
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.
Thanks for any ideas.
- Steve Gilbert 13
- June 26, 2018
- Like
- 0
- Continue reading or reply
Chronicall Recording Link API
Looking for anyone that may have implemented the Chronicall Recording Link API recording process.
- Steve Gilbert 13
- May 10, 2018
- Like
- 0
- Continue reading or reply
VF page to Receive Data From Chronicall
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:
I’ll be digging here as well but any help would be great.
Thanks
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:
I’ll be digging here as well but any help would be great.
Thanks
- Steve Gilbert 13
- March 27, 2018
- Like
- 0
- Continue reading or reply
Setting picklist default value in a flow
I am trying to set a picklist default in a flow screen input field. Im SFDC the field, actually 2, both have default values but in the flow the deafults are not there. I am trying to get them to preselct but cannot seem to find the correct setting. Any ideas?
- Steve Gilbert 13
- August 18, 2017
- Like
- 1
- Continue reading or reply
making a non-requiered Salesforce activity field requiered in a flow.
Need some ideas. I have 2 custom activity picklist fields being used as part of a flow. As only users who can access a specific function (Controlled via a button) within the activity need to complete these 2 fields I cannot make them required in the field security nor the page layouts. My question is, is that even with them both being set as required on the flow itself it is still allowing users to save the process without adding in a value. This results in a "-" in all manager reports.
Thanks for any ideas or suggests.
Thanks for any ideas or suggests.
- Steve Gilbert 13
- August 14, 2017
- Like
- 0
- Continue reading or reply
Trying to create a trigger to update an event series.
I crated a flow that pulles account field values into events. My issue is that it only works for the current event and will not update the series - which in most cases have been scheduled 2 years out. I was told that an trigger using the field "isRecurrence" is the way to do that but cannot find the field now how to create the trigger. Any help would be great. thanks
- Steve Gilbert 13
- February 15, 2017
- Like
- 0
- Continue reading or reply
process builder to edit a series of events
I need some direction.
I create a process builder flow that will update a custom account lookup fields and 4 related custom phone fields on an event. This issue that I am finding is that on older even series it will not run the update and it triggers flow errors when users do try to edit the series. I am not sure what I am missing here. Any suggestions?
I create a process builder flow that will update a custom account lookup fields and 4 related custom phone fields on an event. This issue that I am finding is that on older even series it will not run the update and it triggers flow errors when users do try to edit the series. I am not sure what I am missing here. Any suggestions?
- Steve Gilbert 13
- January 16, 2017
- Like
- 0
- Continue reading or reply
Create a record using a flow and setting the record type
I am working on a flow that would create a new opportunity when the status and stage are set to specific values. It does run to completion on the test but will not create the actual record. I think that it might be with the lookup and assignment of the record type using the following variable:
What makes it more enjoyable is that I need to have a decision node in this that splits the record create on the value in a custom field and then the record create will assign the record type based on the value in the custom field.
The field "Channel" would be set to "A" or "B".
If "A" then the opp would be created with record type "A" if not type "B" needs to be created
Ideas would be great,
Thanks
What makes it more enjoyable is that I need to have a decision node in this that splits the record create on the value in a custom field and then the record create will assign the record type based on the value in the custom field.
The field "Channel" would be set to "A" or "B".
If "A" then the opp would be created with record type "A" if not type "B" needs to be created
Ideas would be great,
Thanks
- Steve Gilbert 13
- December 27, 2016
- Like
- 0
- Continue reading or reply
using a custom button to open a browser
I am trying to create a button that will open a word doc from the local server. What I was told is that we would fist need it to open the browser and then to open the file... a bit lost on this or even if it is doable. Thanks
- Steve Gilbert 13
- December 05, 2016
- Like
- 0
- Continue reading or reply
Making a non SFDC required on a visualforce page
I am working on trying to have a field be requiered on a VF page while not being so in Salesforce. There are flows and process buidler applications that are preventing this so here is what I have:
<td><apex:inputfield value="{!ClientProfile__c.Primary_Parts_Supplier__c}" required="true" id="PrimaryPartsSupplier" /></td>
It does show as requiered but still allow me to save the page w/o a value.
Once I can get this to work, is there a way to set it so that one of 3 fields need to be completed prirot be being saves?
Thanks
<td><apex:inputfield value="{!ClientProfile__c.Primary_Parts_Supplier__c}" required="true" id="PrimaryPartsSupplier" /></td>
It does show as requiered but still allow me to save the page w/o a value.
Once I can get this to work, is there a way to set it so that one of 3 fields need to be completed prirot be being saves?
Thanks
- Steve Gilbert 13
- October 26, 2016
- Like
- 0
- Continue reading or reply
Moving a record from one object to another
So far I have tried this as a workflow and a process builder without luck. I am trying to work out a lfow but this is what I am trying to do:
I have a recruitng app that I built contining 3 objects, applicant, candidiate and empoyee. I am trying to find a way where I can use a selected picklist value in each to change the record type and the object that the record is located in. For example: an applicants gets moved from the applicant object and record type when the picklist value "scheduled interview" is selected. It would be a similar setup to move from candidate to employee.
I have a recruitng app that I built contining 3 objects, applicant, candidiate and empoyee. I am trying to find a way where I can use a selected picklist value in each to change the record type and the object that the record is located in. For example: an applicants gets moved from the applicant object and record type when the picklist value "scheduled interview" is selected. It would be a similar setup to move from candidate to employee.
- Steve Gilbert 13
- October 11, 2016
- Like
- 0
- Continue reading or reply
Password reset for trailhead
What is the process for resetting a password for trailhead when the email address that is there may be wrong and the reset link is not working?
- Steve Gilbert 13
- August 25, 2016
- Like
- 0
- Continue reading or reply
Setting picklist default value in a flow
I am trying to set a picklist default in a flow screen input field. Im SFDC the field, actually 2, both have default values but in the flow the deafults are not there. I am trying to get them to preselct but cannot seem to find the correct setting. Any ideas?
- Steve Gilbert 13
- August 18, 2017
- Like
- 1
- Continue reading or reply
validation rule using picklist
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
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
- Steve Gilbert 13
- May 12, 2023
- Like
- 0
- Continue reading or reply
Custom Button or Action to open a new page
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.
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.
- Steve Gilbert 13
- May 05, 2023
- Like
- 0
- Continue reading or reply
formatting issues using a text template in a screen flow
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
<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
- Steve Gilbert 13
- December 13, 2019
- Like
- 0
- Continue reading or reply
Using an "If.And" formula to calculate a commission value
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.
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.
- Steve Gilbert 13
- July 08, 2019
- Like
- 0
- Continue reading or reply
defaulting a liiokup field using the values from a picklist
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.
- Steve Gilbert 13
- March 21, 2019
- Like
- 0
- Continue reading or reply
creating a checkbox in a visualforce page
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.
Thanks for any ideas.
- Steve Gilbert 13
- June 26, 2018
- Like
- 0
- Continue reading or reply
VF page to Receive Data From Chronicall
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:
I’ll be digging here as well but any help would be great.
Thanks
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:
I’ll be digging here as well but any help would be great.
Thanks
- Steve Gilbert 13
- March 27, 2018
- Like
- 0
- Continue reading or reply