• Serena Schultz
  • NEWBIE
  • 10 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 19
    Questions
  • 12
    Replies
I think the answer is no... but does anyone know if there is a way to initate a Process Builder or flow (or even apex) when a record is viewed vs. created/edited?

Hello! 

I'm trying to create the Einstein Vision Lightning App per this trailhead (https://trailhead.salesforce.com/projects/build-a-cat-rescue-app-that-recognizes-cat-breeds/steps/cat-recognition-app-ui-einstein-vision). I added the Apex Class and Lightning Component as shown, but when I add the component or try to use it I get this error:
User-added image

Any idea what this is or how to fix?
Thanks!

We have two custom email fields on our Contact object.  I've created a simple flow triggered by process builder to used a web-to-case email address to find all occurances of that email address in one of those fields.  The flow works as follows

1)  Fast Lookup on Contact using the Web Email address to match against an email field. 
2)  Loop and Assignment elements to count the number of occurances
3) Update element to  write out the number of occurances to the Case record. 

Here's the problem.  This works perfectly if the Fast Lookup is checking the standard Email field on the Contact.  However, if I search on a custom email field, the flow fails:  
 
FAST LOOKUP: Find_Person_Account_Matches
Find all Contact records where:
Email_2__c Equals {!WebEmail} (test@email.com)
Sort records by: LastName (Ascending)
Assign those records to {!EmailMatchesFound}.
Save these field values in the variable: Id, IsPersonAccount
Result
Failed to find records.

I have two versions of this flow that are identical except for the field that's being searched.  

(Yes, we're using Person Accounts, but the behaviour is the same if the contact is not a person account.)

Is there any good reason why flow would treat a standard email field differently from a custom email field?

Thank You. 
 
I'm the system admin for a Community and recently I've started getting this error message by email: 

"A new user's attempt to register at NAME_Portal failed because the value for the profileID attribute is either null or invalid. Set the profileID for new users on the ChatterAnswersRegistration Visualforce page for the site associated with community NAME_Portal or on the apex class associated with the Facebook authprovider."

We don't have Chatter Answers enabled and we don't have Facebook set as an Auth Provider so I'm not sure what's going on there. Additionally, we haven't made any changes to our code recently around the self registration. Any thoughts?
Hi All,
I'm stuck. I need a field update formula to extract data from between two characters (in this case commas). 

For Example: 00442178,01,1625196411116,JOSE,OMAR,MEJIA,SANCHEZ,214,

I want to extract the value between the 3rd and 4th comma. The number of commas will be consistent but not the number of characters between them. 

I’ve been able to find the first comma using FIND(“,”, Field__c, 1), but I can’t figure out how to start at the third comma and return all values between it and the fourth comma. Help?

Serena
Hello All!

I’m hoping you can help me with an automation. Here’s the scenario:

I have a org with Advanced Currency Management enabled. I’ve used this Salesforce resolution article (https://help.salesforce.com/articleView?id=000211817&type=1) to recreate my currently rollups and formulas from Payments to Opportunity and those all work fine.

I now have a new requirement to automate the creation of payment records using values from some custom fields that we’ve added to Opportunity. I’ve been able to do this via a process builder which fires on creation of a new Opportunity with the relevant fields populated (see below).

User-added image

When the Payment record(s) are created the “Total Payments” custom rollup is also populating correctly (see below). 
User-added image

The problem is with my Balance Due field. This field is populated using a workflow which fires on creation and edit to calculate the value (Amount - Total Payments) and then populate it into a custom currency field. (This path is due to Advanced Currency Management being enabled.)

Currently, my custom Balance Due field is not updating upon the creation of the Opportunity and Payment records. It stays set to the initial Amount - Total Payments value. If I edit and save the Opportunity record then my workflow fires and the field updates.

I think this might be an order of operations issue, since both the opportunity and payment records are being created at once, but I’m not sure. 

For the moment, I've added a scheduled action to my process builder to repopulate a field on the opportunity with its previous contents to force an edit/save which would run the workflow for my Balance Due field, but I can’t schedule that to happen any sooner than 1 hour after the records are created which is not ideal.

Any thoughts on other ways to get the Balance Due workflow to fire immediately after the records are created so that it updates correctly right away?

Thanks!
Serena
Hello! 

I'm trying to create a workflow rule/field update formula to to replace first digit in phone number field with "+256". (Example: 0702475002 should be +256702475002).

I've tried the following two forumulas so far without luck - any help would be appreciated!! 

if(begins (Phone_Number__c, "0"), 
substitute(Phone_Number__c,"0", “+256"),"")


IF(BEGINS(Phone_Number__c,"0"), RIGHT(Phone_Number__c,1), “+256”)

Serena
Hi All,

I have integrated mailchimp with salesforce account . It successfully fetched subscriber list from mailchimp but it not working mailchimp  subscribers add  as Lead  into salesforce. I have implemented lead Assignment Rule on Create new Lead . It work fine without lead Assignment Rule but with lead Assignment Rule its show Validation rule error and subscriber not add as lead into salesforce,

So kindly guide me what i have to do for this problem.

Thanks
Hi,

We are having issues with transferring user from our app to Salesforce1 app. We are trying to open record created in our app with SF1. In iOS platform we got it working by calling this: 
com.salesforce.salesforce1://sObject/#recordid#/view
Replace: #recordid# with object id.
Same doesn't work on Android. Neither does the the version you have documented here:
http://help.salesforce.com/HTViewSolution?id=000213748
or here:
https://resources.docs.salesforce.com/sfdc/pdf/salesforce1_url_schemes.pdf

Anyone got these to work on Android?