Hi ,
Please check this article.
Feed
- Recent Activity
- Created Date
- Questions with an Accepted Answer
- Questions with No Accepted Answer
- Unanswered Questions
In the Give Service Reps Access to Einstein Classification Apps article, it reads:
Select Einstein Case Classification User or Einstein Case Wrap-Up User. These standard permission sets are already created for you.
My question is: what exactly do these licenses open up access for? I believe, if the model is set up to automatically populate values, users don't need any license to see these values. I assume that the license is needed to build a model, and then to see the Case Classification and Case Wrap-Up components on the Case page.
Today, 8:20 AM Try running this query to ensure predictions are made:
SELECT PredictionField, (select value,Confidence from AIInsightValues order by Confidence desc) from AIRecordInsight where TargetId = 'CASE_ID' limit 50Also, as described here, subscribe to the AIUpdateRecordEvent. The events might contain error details. For instance, I once faced an issue when ECC predicted dependent picklists. It was confident enough to populate the dependent field, but not the controlling one, which resulted in an error.
I'm not finding Google Info custom list button in Page Layouts in Contact Layout, though I've configured 'Google Info' button correctly.
Please can anybody help me to figure out the issue.
Today, 8:18 AM Hello Keerthi,
I've selected the Display type for 'Google Info' custom button as 'List Button', but still the button does not appear.
We have years of bad data in our marketing cloud. Although I am not part of the department and have little knowledge here, I have been tasked with cleaning up the subscriber list.
Currently it is obvious that contacts that were deleted during a merge are still in there. That seems to be the easiest place for me to start a clean up. Is there a good trail or article for this?
Today, 8:13 AM ,
Aside from ensuring that anyone on your subscriber list isn't a duplicate you'll also want to look at anyone where there's been recorded bounces. If they are not fixable, then no point keeping them. Equally you can go down the road of looking at subscibers who have not been active in X amount of time, and either try to put them through a re-activation program for a "last chance" effort to engage them, and/or decide to remove them.
Hello everyone,
I am trying to convert an image/public URL to Base64 in Salesforce, but it returns the content type as text/html, which is causing an issue — the generated code does not display the image because the extension is text/html.
Is there a way to handle this situation so that the correct content type (e.g., image/jpeg, image/png) is returned instead of text/html?
#Trailhead Challenges #Salesforce Developer #Agentforce
Today, 8:12 AM Please refer to the below article -
https://salesforce.stackexchange.com/questions/36877/how-to-convert-an-image-src-url-to-base64-using-apexRegards
Sravani
I am trying to make use of the "Send List Emails" functionality.
It is working fine in Leads and Contacts.
However I need it to be available under Program Cohorts and Program Engagements.
Specifically to be able to select a Cohort and email to participants. I have now discovered that this feature is only available in standard objects whereas i want to make this possible from Program Cohorts and Program Engagements which are custom objects.
So i am looking for the simplest solution that can be built within Salesforce to address this issue.
We are a small organisation with simple requirements to send emails to a number of people.
Any help would be greatly appreciated.
Today, 8:07 AM
Hello,
I have a question about Document Builder. I created a template (on Work Order object) and I would like to display the completed/uncompleted Work Steps on the document.
I added the Related Record Table component with the following information :
- Parent Record : Work Order
- Related entity : Work Steps (Work Order ID)
- I've selected two fields to display
When I generate the Service Report on Field Service Mobile App, this section doesn't appear. What am I missing ?
Thank you
@* Salesforce Field Service *
Heiko Lindner (Privat) Forum Ambassador
Jun 29, 12:29 PM You should you the related list work step and not work step (new). In addition, the field service mobile app uses the classic page layout and not lightning record page. Pls. check the assignments of the layouts with profile of the user on mobile device. In addition you should check the sharing settings on work plans and make sure, the user can see the work plan with work steps.
I can't seem to continue to this module https://trailhead.salesforce.com/content/learn/modules/data_security/data_security_objects?trail_id=force_com_admin_intermediate
I already recreated a playground but still can't find the Recruiting/Recruiter app.
I can't find the Recruiter/Recruiting app it keeps mentioning. Is there a pre-requisite before I can complete this module?
Thanks for your help.
#Trailhead Challenges
Today, 7:47 AM Hi ,
If you're using the right dev org, the review object should exist. Mine did.
You can also create one by referring to the following
Please refer to the following to create a Reviews object.
Eric Burté (DEVOTEAM) Forum Ambassador
Jun 21, 3:21 PM Hello @Prapti Saxena make also sure that your Property object has Property__c as API Name. Check that you verify the challenge in the playground in which you have made the configuration. Eric
Just a quick question for the "Save and Debug" section of the "Build Record-Triggered Flows Guide."
The debug did work just fine for me, in that it shows the dark blue line. But as a for future reference, I was wondering if I was supposed to delete all the information in all the other fields other than "Closed Won" and "250000" before debugging? The instructions weren't 100% clear on that, and I wasnt able to find this specific question that may have been answered elsewhere.
So in the future, when I run the Debug, do I clear out all the other fields that aren't part of the criteria for creating a new record? Or is all that other information also necessary?
#Trailhead Challenges #Trailhead
Today, 7:42 AM Generally speaking, when debugging a record-triggered flow, you should not remove all of the data in other fields unless those fields are directly affecting your test scenario
Here's why, along with some things to think about going forward:
1)Simulating a genuine Record: The objective of debugging a record-triggered flow is to mimic the behaviour of the flow with a genuine record in your Salesforce organisation. Not simply the fields pertinent to your flow's entry criteria are filled in; real records have a variety of fields filled in.
2)Impact of Other Fields: Other fields that aren't included in the direct input criterion may be necessary for the logic of your flow. For instance, farther down the flow, a decision element may verify the value of a different field.
The current value of a field that you did not specifically set in the debug input may be referenced by an update element.