Skip to main content Build the future with Agentforce at TDX in San Francisco or on Salesforce+ on March 5–6. Register now.

Feed

Connect with fellow Trailblazers. Ask and answer questions to build your skills and network.
Ann Vance asked in #Flow

Hi - 

 

I'm trying to move a flow with an action: Send Email.  My deployment fails stating:  Send_Individual_Gift_Alert (Action) - We can't find an action with the name and action type that you specified. 

 

The help notes says " To deploy the flow successfully, manually add those referenced components to the change set.

  • Post to Chatter
  • Send Email
  • Submit for Approval

How do I do this?

Thanks, Ann

 

#Flow  #Salesforce Flow  #Salesforce Developer

0/9000
1 answer
0/9000

We are looking at a Summer Camp Registration platform to host approximately 60 summer camps on our campus.  I've looked at the AppExchange and see there is an app called Camp Force but there are no reviews and there isn't a demo.  Has anyone tried this app or have any other suggestions for summer camp registrations?  We were looking at building a DX for camps however with 60 camps all requiring different information, payment plans, release forms, etc., this seems like a very daunting build that would require constant maintenance and revision.  

 

#Camp Success Registration  #Higher Education

0/9000

Hi there! I'm trying to complete the Regional Settings Hands-On Challenge and I'm receiving a couple of warning messages about changing my organization's settings, even in different playgrounds. Is it still safe to proceed? How can I ensure that there won't be any global changes to my organization? Thank you in advance!

 

#Trailhead Challenges

1 answer
0/9000

I can see where to add images to the main folder, but is it possible to change the sub-folder images?

@* Experience Cloud * 

4 answers
0/9000

Create a method for inserting accounts.

To pass this challenge, create an Apex class that inserts a new account named after an incoming parameter. If the account is successfully inserted, the method should return the account record. If a DML exception occurs, the method should return null.

  • The Apex class must be called AccountHandler and be in the public scope
  • The Apex class must have a public static method called insertNewAccount
    • The method must accept an incoming string as a parameter, which will be used to create the Account name
    • The method must insert the account into the system and then return the record
    • The method must also accept an empty string, catch the failed DML and then return null

Code:

public class AccountHandler {

 

    public static Account insertNewAccount(String name){

        Account accObj = new Account(Name= name);

        try{

            insert accObj;

        }

        catch(Exception e){

            return null;

        }

        return accObj;

        

    }

}

 

Problem: 

There was an unexpected error in your org which is preventing this assessment check from completing: System.NullPointerException: Attempt to de-reference a null object

Check Challenge to Earn 500 Points

 

#Trailhead Challenges

1 answer
  1. Today, 10:41 PM

    Hi @Daniela Pineda ,

     

    I don't think there's a problem with the code. Try changing the position of the return.

     

    public class AccountHandler {

    public static Account insertNewAccount(String name){

    Account accObj = new Account(Name= name);

    try{

    insert accObj;

    return accObj;

    }

    catch(Exception e){

    return null;

    }

    }

    }

    https://trailhead.salesforce.com/trailblazer-community/feed/0D54S00000CfMEtSAN

     

    https://trailhead.salesforce.com/trailblazer-community/feed/0D54V00007T4OGQSA3

0/9000

 I'd like to know more details about: 1) practical training courses, and 2) related certifications. 

 

#Certifications

1 answer
0/9000

Hello! I'm stuck on the hands on challenge for Validation Rules. Can anyone help?

 

Screen Shot 2025-01-07 at 2.24.20 PM.png

 

#Trailhead Challenges

2 answers
0/9000

We use a Check hours of operation block in the amazon contact flow. If it's outside of our business hours, we have a 'get customer input block' that tells the caller we're closed and asks if they want to leave a voicemail.

 

We have a new requirement that we close our call center once a month for an hour for an all staff  meeting. During this one hour only, we'd like the closed message to say "we're not available right now due to a staff meeting". How can I provide a different message during this one hour? We don't want to use our standard closed greeting during this time. Thanks for any suggestions! 

0/9000

I have a unique case where I use a button generated by data, each button has a Unique ID linked to it. I am using this method to launch a flow using a URL like Mydomain.com/Flow/FlowName?Params=" and pass the ID through params to launch the flow. 

 

The problem I am having is that when the user clicks on the button it opens the next tab and asks the user to log in to the Salesforce login page not even the community login page but the actual Salesforce login page. 

 

Message "To access this page, you have to log in to Salesforce."

 

#Experience Cloud  #Flow

7 answers
  1. Today, 7:25 PM

    Hi @Haseeb Ahmad,

    Steps to add the flow to Experience Site -

    1. Create a screen flow 
    2. Enable the flow to the Experience Site Profiles -Screenshot 2025-01-07 at 2.24.15 PM.png
    3. Add the flow to one of the page in the Experience Site and publish
    4. Experience Site URL which has flow: https://mindful-goat-fjbr1p-dev-ed.trailblaze.my.site.com/test/
    5. Article followed: https://help.salesforce.com/s/articleView?id=experience.rss_flow_guestuser.htm&type=5
    6. Result:Screenshot 2025-01-07 at 2.27.30 PM.pngNote: The above page might takes few mins to load
0/9000