• Patrick LEBRETTE
  • NEWBIE
  • 65 Points
  • Member since 2015

  • Chatter
    Feed
  • 2
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 5
    Replies
What are two uses of External IDS? Choose 2 answers
  1. To prevent an import from creating duplicate records using Upsert
  2. To identify the sObject type in Salesforce
  3. To create a record in a development environment with the same salesforce ID as in another environment
  4. To create relationships between records imported from an external system.
Hello!
I'm getting the below error when I run a simple Process Builder that calls a Flow.  I'm not sure what to do and SFDC's customer service team said to ask you all...(since I don't have Premier Support). I thought this was super simple...and hoping I'm just missing something simpel and obvious.  Help!

My PB/Flow is trying to automatically add or remove users to/from a public group when users are created or inactivated. Flow has two variables, GroupID and UserID and uses "Create Records" (GroupMember). The Process Builder passes the UserID variable to the flow and GroupID variable is a fixed value (a generic "All SFDC Users" public group).  When I activate or inactivate the user, I get the below error:

"Unable to Access Page
The value of a parameter contains a character that is not allowed or the value exceeds the maximum allowed length. Remove the character from the parameter value or reduce the value length and resubmit. If the error still persists, report it to our Customer Support team. Provide the URL of the page you were requesting as well as any other related information."

See screenshots below of my Flow and PB.

User-added image
User-added image
User-added image
User-added image
I have an issue . That is we need to remove "industry" field if the account type is "Prospect".
What are two uses of External IDS? Choose 2 answers
  1. To prevent an import from creating duplicate records using Upsert
  2. To identify the sObject type in Salesforce
  3. To create a record in a development environment with the same salesforce ID as in another environment
  4. To create relationships between records imported from an external system.

Salute.

I'm trying to add to the contact list page an indication of the role of each indirect contact. Like this:

   public List<Contact> Contacts { get{  
     return [SELECT Id, Name, Account.Name, Title, Email, Phone, Relations__c FROM Contact LIMIT 1000];  
   } set;}  
   
   public List<Role> Roles { get{  
     return [SELECT Role FROM AccountContactRoles];  
   } set;}  I tried adding Role or AccountContactRole fields, but they are not recognized. What I need to do?
I tried to indicate the Role field in the first request, but received a recognition error (which is logical, there is no such field in the standard contact card).

Then I made the second request only for roles, but it also produces Compile Error: Invalid type: Roles.

What i need to do?
Hello!
I'm getting the below error when I run a simple Process Builder that calls a Flow.  I'm not sure what to do and SFDC's customer service team said to ask you all...(since I don't have Premier Support). I thought this was super simple...and hoping I'm just missing something simpel and obvious.  Help!

My PB/Flow is trying to automatically add or remove users to/from a public group when users are created or inactivated. Flow has two variables, GroupID and UserID and uses "Create Records" (GroupMember). The Process Builder passes the UserID variable to the flow and GroupID variable is a fixed value (a generic "All SFDC Users" public group).  When I activate or inactivate the user, I get the below error:

"Unable to Access Page
The value of a parameter contains a character that is not allowed or the value exceeds the maximum allowed length. Remove the character from the parameter value or reduce the value length and resubmit. If the error still persists, report it to our Customer Support team. Provide the URL of the page you were requesting as well as any other related information."

See screenshots below of my Flow and PB.

User-added image
User-added image
User-added image
User-added image