Skip to main content Salesforce and Tableau exam registrations are now closed through July 21st. Learn more about the new Salesforce certification experience coming soon.

Feed

Connect with fellow Trailblazers. Ask and answer questions to build your skills and network.
0/9000

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  

i cannot use External reservation in data object model

 

 

datacloud2.png

 

 

 

#Data Management

5 answers
  1. Today, 11:25 AM

    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    

    Its not Active - there is a relationship already there which is why you are seeing the error. You need to make it ACTIVE.

     

     

0/9000

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

Something went wrong. Refresh and try again

 

 

#Sales Cloud Einstein

4 answers
0/9000

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   

1 answer
  1. Eric Burté (DEVOTEAM) Forum Ambassador
    Nov 18, 2024, 8:43 AM

    Hello @Nandini M please follow these suggestions to try to win/earn one voucher

    Eric

0/9000
0/9000

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 

 

0/9000

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

0/9000

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

3 answers
  1. Today, 11:02 AM

    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.". 

0/9000

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:

  • How can we prevent or better manage multiple signups using the same email address?
  • Are there any Gravity Forms add-ons or customisations that could help us flag or block duplicate email usage at the form level?
  • Could we implement a secondary identifier (e.g., phone number, unique ID) to distinguish individuals even if they share an email?
  • Are there any best practices for handling signups from individuals without email addresses, while still maintaining automation and accurate syncing with Salesforce?

#Nonprofit  #NonprofitHelp  #Volunteers For Salesforce (V4S)

1 answer
  1. Today, 10:58 AM

    @Louis Dawkins

     

    You may want to update your logic to:

    • Match on a combination of: Email + Unique ID/Phone

    where both Email and UniqueId/Phone are mandatory and stop matching by email altogether if your automation can use these fields.

0/9000

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

0/9000