Skip to main content

#Sales Cloud233 diskutieren mit

Our team has been spending more time on manual Salesforce tasks than we'd like, such as updating records, assigning leads, generating reports, and handling follow-ups. We're exploring automation to improve productivity and reduce repetitive work. 

Which repetitive Salesforce tasks consume the most time for your team?     @* Sales Cloud - Best Practices * 

1 Antwort
  1. Heute 02:57

    In my experience, the biggest time consumers are: 

     

    - Manually updating Leads, Opportunities, and Cases after customer interactions. 

    - Lead assignment and routing based on territory or business rules. 

    - Creating follow-up Tasks, reminders, and email notifications. 

    - Data cleanup, duplicate management, and maintaining data quality. 

    - Generating recurring reports and dashboards for stakeholders. 

    - Approval processes that require multiple manual handoffs. 

    - Syncing data between Salesforce and external systems. 

    - Logging emails, meetings, and call notes manually. 

     

    We've significantly reduced these efforts by using Record-Triggered Flows, Approval Processes, Assignment Rules, Scheduled Flows, and integrations with external systems. For more complex business logic, Apex fills the gaps where declarative automation isn't sufficient. 

     

    One recommendation is to first identify the tasks that are both high-volume and rule-based, as they typically deliver the highest ROI when automated.

0/9000

I want to give user Platform Starter license but user license in dropdown shows only Salesforce Platform. If I assign Salesforce Platform license, how would I know if the user have Salesforce Platform Starter or Salesforce Platform Plus license?

 

#Salesforce Admin #Sales Cloud #User Licenses #Salesforce #Salesforce Developer

3 Antworten
  1. 10. Juli, 16:43

    For anyone asking this question in the future:

     

    Use Salesforce Inspector or Workbench to query:

    SELECT Id, Name, LicenseDefinitionKey FROM UserLicense WHERE Name = 'Salesforce Platform'

       

    It will return the License Definition Key, which you can compare against the list found here: 

    https://developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_userlicense.htm

     

    AUL: corresponds to the Salesforce Platform user license

    AUL1: corresponds to the Salesforce Platform One user license 

     

    I'm assuming here that Salesforce Platform One is the same as Salesforce Platform Plus. Information about the LicenseDefinitionKey for Salesforce Platform Plus is seemingly nonexistent, so take this with a grain of salt. 

     

    Don't trust google search AI, it will return information relevant to the Lightning Platform - One App license (1 app, 10 custom objects), which is incorrect. That license has a definition key of FDC_ONE.

0/9000

Hi all,    Recently while editing lighting app builder (e.g. any record -> Setup -> Edit Page) I keep encountering "Check your Internet connection and try again". This has never occured before June 2026.    On checking Chrome logs, I notice that something is constantly calling for `ui-instrumentation-components-beacon.InstrumentationBeacon.sendData=1`.    Can anyone tell me how can I disable this telemetry from being fired?     I am running ad blockers.   

 

@* Sales Cloud - Getting Started * @* Sales Cloud - Getting Started * 

1 Antwort
0/9000

Our sales users want a single list of all incoming interests that are matched to either an existing Lead, an Existing Contact, a brand new lead. Is there anyone out there that is doing or tried this? How did you accomplish this and how's it working out? A custom coded LWC seems possible, but could become a maintenance hog for smaller Dev team. Thanks for all your ideas and cautionary tales. 

 

#Sales Cloud

1 Antwort
  1. Eric Burté (DEVOTEAM) Forum Ambassador
    9. Juli, 21:32

    Hello @April Barrow you can have a look at this Salesforce help article about the leads/contacts duplicate management : https://help.salesforce.com/s/articleView?id=005386514&type=1

    The end of the article explains how to create a simple screen flow to identify such duplicates among leads and contacts. That can be naturally improved to activate other actions on data. Hope it may give you some ideas. 

    Eric 

0/9000

Waiting for these "staggered" security updates to happen in my Orgs sandboxes?  How do I know when a sandbox has now got the update?  I'd like to begin testing.  I don't see it on the trust site as maintenance in the sandbox instance orgs. 

17 Antworten
  1. 9. Juli, 09:48

    We had a case open with Support to get sandbox deployment confirmed and they've just confirmed its in at least 2 of our sandboxes. Confimed by initial testing.

0/9000

WE just started using but I have used at a previous company. I am unable to get the activity/email log to show up under contacts or optys, and yes I have linked email to Salesforce.   Unrelated, I am also not finding a way to add Products and price to an opty, and I need some items to not be required UNTIL a certain stage is met and I can't figure that out either.  Honestly, everything looks a little different than how we used with a previous company and it;s throwing me off. I also never had to make these changes before because we had a person that did all of this and I am most definitely not a developer!    @* Sales Cloud - Best Practices * 

1 Antwort
  1. 8. Juli, 22:25

    The Activities component shows up only if the Activities View is set to Activity Timeline for the org or user.  Set the Default Activities View

     

    Product related list needs to be added to the Opp Page Layout, then the Related List component needs to be added to the Opp Lightning Record page. 

     

    Uncheck "required" on the special fields, then make a flow that starts with Opp Stage is VALUE and have the special fields updated to be required.

0/9000

Hello, we use the dynamic highlight panel on custom objects and since a week ago more and more users cannot see the record name (Primary field). Anyone had similar issues?  

Dynamic highlight panel primary field not visibleimage.png

 

 

#Sales Cloud

8 Antworten
0/9000

We have recently added some Lightning Page Assignments based on Record Type and Profile. However, when we created these, it seems as Salesforce exploded and we ended up with several thousand assignments (see first image below).Removing Lightning Page Assigments when limit exceededBecause of this we have reached a system limit and need to go through Medata API (see image below) Salesforce Assignment Error.pngWe have tried removing some lines of metadata, but the overall number is not changing. We have even tried copying / pasting the information we had from a clean sandbox, but the issue persists.

 

Does anyone have any idea on how we can delete these page assignments so that we can start from scratch again and unlock the limit?

7 Antworten
  1. 7. Juli, 22:38

    Thank you @Ramu Jallu

    ! Your solution worked. I did have to use a slightly different script, as the one you shared was repeatedly checking, then unchecking all the boxes before I could save.  

     

    Here's the script I used in case anyone else runs into the same issue (it's just saying, if box is already checked, don't change): 

     

    var chks = document.getElementsByName('assignmentTableCheckbox'); 

    for (var i = 0; i < chks.length; i++) { 

      if (!chks[i].checked) { 

        chks[i].click(); 

      } 

    }

0/9000

Hello everyone, I'm getting this error in my sandbox. Even when I create a completely new page, I still get this error. It works normally in production and in other sandboxes, but not in this one. 

Can´t load a page of Lightning app builder

 

@* Sales Cloud - Best Practices * @* Sales Cloud - Getting Started *

 

 

#Sales Cloud

6 Antworten
  1. 7. Juli, 05:59

    Thank you all for your ideas and help.  

     

    No idea what it was. Most of the things you´ve mentioned I tried. But somehow it fixed itself, the next day it worked perfectly. 

0/9000

5. Conditional Offer Given

To proceed to this stage:

  • All pre-onboarding documents must be fully completed
  • All documents will need to be approved not in pending review status.

Conditional offer given is a picklist value under Homecare_Status on Contacts.  My contacts have a master-detail relationship with Documents Assignments.(These are dox sent to contacts,  in it there is Contracts, Personal Detals ) .    When the documents are signed they get sent to "Document Submission object).     I want when the status field (pklsit) on Documents Assigned is changed to "Approved"  the flow should trigger. lf the status is not that then the field should not be changed.          l don't want to use validation rules nor code(cant)   

 

@* Sales Cloud - Best Practices *  @* Sales Cloud - Getting Started * 

4 Antworten
  1. Steven Trumble (Strum Consulting) Forum Ambassador
    6. Juli, 20:43
    You're still just listing requirements instead of what you've tried and what errors you might be getting. What is the specific issue you want to ask about for some help?
0/9000