Skip to main content
Scott Holmes ha fatto una domanda in #Trailhead Challenges

I'm getting stumped on this. Org wants to create a push notification for overdue tasks. I have done it using a record-triggered flow with 7 days and 2 days as being notifications email to say Task is about to be due. Could it just be a push notification which stays in Salesforce, notification sent to the notification bell once daily . 

 

#Trailhead Challenges  #Trailhead  #Salesforce Admin  #TrailblazerCommunity  #Sales Cloud  #Formulas

5 risposte
  1. Oggi, alle 16:35

    Hi @Scott Holmes

     

    Yes, you can check the formula syntax directly in Flow Builder. Formula resources are created within the Flow, so you won't find their syntax in Object Manager.

    To view the syntax:

    1. Open your Flow in Flow Builder.
    2. Go to the Manager tab.
    3. Under Resources, select your Formula resource (Due in 7 Days / Due in 2 Days).
    4. Open the formula to view or edit its syntax.

    For example:

    Due in 7 Days:

    {!$Record.ActivityDate} = TODAY() + 7

    Due in 2 Days:

    {!$Record.ActivityDate} = TODAY() + 2

    You can also review Salesforce's formula documentation for additional functions and syntax. 

     

    Hope this helps!  

     

     If you find this response helpful, please mark it as the Accepted Answer, as it may also help other Trailblazers facing a similar issue. 😊 

0/9000