Please help me out to resolve this issue: The CC Service Agent still includes the topic Account Management. Make sure it was unselected.?
#Agentforce #Trailhead #Salesforce Admin
Please help me out to resolve this issue: The CC Service Agent still includes the topic Account Management. Make sure it was unselected.?
#Agentforce #Trailhead #Salesforce Admin
so basically i am trying to complete "Bring External Data into the Contact Page Layout" in the "become an agent blazer champion" course
in the data cloud related list while making new data cloud related list enrichment i am un able to add "ExternalReservation" field in "data cloud object"
pls help
#Data Management
Its not Active - there is a relationship already there which is why you are seeing the error.
You need to make it ACTIVE.
Click check box (show inactive relationships)
Then Toggle the relationship to Active
when I click on Einstein icon on top of the page, a conversation window opens.But it shows Something went wrong. Refresh and try again. I cleared cookies and even tried on different browser but still error is there.
I am using Sandbox environment
Also on a SDO on 07. July 2025 same Error. How we can solve this Problem?
I am having 1+ years of experience in salesforce development from India. And have been actively looking for salesforce certification vouchers. I request all to help me with a salesforce certification voucher.
Please send it to my mail - nandini.mw07@gmail.com
Hello @Nandini M please follow these suggestions to try to win/earn one voucher
Eric
Getting error while creating data stream using LoyaltyManagementStarter bundle how to resolve this.
#Data Cloud #Trailhead #Salesforce Developer #Sales Cloud #Loyalty Management #Loyalty Cloud
Hi all,
Good day!
Curious to know or speak to someone from the community who has build a full end to end Slack workplace including Enterprise AI search, Slack agentic actions etc.
Would love to learn more about the art of possible, challenges, use cases.
Basically we are trying to make Slack as a one-stop-shop smart workplace application, where users can interact via an agentic way or through basic workflows, and perform day to day tasks.
Thanks
Hi Trailblazers! I'm working on the Prompt Builder Templates Superbadge Unit, and the required Developer Edition signup link is returning a 404 error. Can anyone share the latest working link? I’ve also submitted a case, but looking for a quicker resolution.
#Trailhead Superbadges
How do I connect my new DE Org to Trailhead?
Where do I find the org name to click to connect Org?
Regards,
#Trailhead Challenges
Thanks Jordan,
I select my newly created DE and hit Launch and that returns "
We can't find the Business Rules Engine org with our sample data. Make sure you select the special Developer Edition org with Business Rules Engine from the Hands-on Challenge picklist.".Hi everyone,
We currently use Gravity Forms on our WordPress website to allow volunteers to sign up. One issue we’ve encountered is that support workers from charities sometimes allow their clients to use the support worker’s email address to register—likely because the clients don’t have their own email addresses.
This creates a data integrity problem. We have automation in place that checks if a contact already exists (based on email) and updates the record if it does. But in these cases, multiple individuals are signing up with the same email, which causes the system to either overwrite existing contact data or fail to create distinct records.
Since this happens at the point of form submission, Salesforce validation rules don’t help, as they don’t prevent the issue from occurring in the first place.
I’d really appreciate any suggestions on how to improve this process. Specifically:
You may want to update your logic to:
where both Email and UniqueId/Phone are mandatory and stop matching by email altogether if your automation can use these fields.
Hi Everyone,
I am trying to override an order EDIT button from Account's related list but it is also restricting the users to edit from Order's Details tab too.
I want to allow all user to edit Order from Details tab, but restrict them to edit the order from Account's related list.
NOTE: I checked the dynamic forms fro edit page, but EDIT button is not there, SF is not allowing to remove that button.
<apex:page standardController="Order" extensions="OverrideExtendedController" action="{!doDelete}">
<apex:includeScript value="/support/console/58.0/integration.js"/>
<!--apex:includeScript value="{!$Resource.Override_Standard_Buttons}"/-->
<apex:slds />
<script type="text/javascript">
var deleteAlert = function(objectName){
var callback = function () {
if (result.error) {
alert("Error message is " + result.error);
}
};
window.onload = function(){
//alert('You do not have permission to delete '+objectName);
sforce.console.getEnclosingTabId(closeSubtab);
window.history.back();
};
var closeSubtab = function closeSubtab(result) {
sforce.console.closeTab(result.id, callback);
};
return {
callback: callback,
closeSubTab: closeSubTab
}
}
</script>
<script type="text/javascript">
var utils = deleteAlert('Order');
var closeSubTab = utils.closeSubTab;
var callback = utils.callback;
var success = "{!success}";
var message = "{!strMessagResult}";
sforce.one.showToast({
"title": success == "true" ? "Success" : "Error",
"message": message,
"type": success == "true" ? "success" : "error"
});
</script>
</apex:page>
Apex
public class OverrideStandardEditButtonController {
public Order ord { get; set; }
public String allowEdit { get; set; }
public String message { get; set; }
public OverrideStandardEditButtonController(ApexPages.StandardController stdController) {
this.ord = (Order) stdController.getRecord();
}
public PageReference handleEditAccess() {
String profileName = [SELECT Profile.Name FROM User WHERE Id = :UserInfo.getUserId()].Profile.Name;
if (profileName != 'System Administrator') {
allowEdit = 'false';
message = 'You do not have permission to edit this Order.';
} else {
allowEdit = 'true';
message = 'Access granted.';
}
return null; // Stay on VF page
}
}
#Salesforce Developer