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.
4 answers
  1. Jul 14, 11:51 PM

    I have the same issue. I don't even see Einstein setup in the search. Here's all my Einstein options in the setup: 

     

    I have the same issue. I don't even see Einstein setup in the search.

     

     

0/9000

Hola!!! 

 

Estamos tratando de hacer una integración con la aplicación de RingCentral, sin embargo, cuando le damos clic al icono nos aparece el mensaje "

URL No Longer Exists,

You have attempted to reach a URL that no longer exists on salesforce.com." 

 

¿alguien sabrá como solucionarlo?  

 

Muchas gracias!! 

 

URL No Longer Exists

 

 

2 answers
  1. Ajaypreet Singh Saini (Grantbook) Forum Ambassador
    Jul 14, 11:04 PM

    Hey @Salesforce Admin, it may be due to enhanced domain URL redirect issue. 

    Please checkout this article and enable the legacy redirect setting: 

    https://salesforcetime.com/2025/06/15/redirection-errors-after-summer-25-release/

0/9000

I am doing exactly what it says, I have put it through AI, and it's right on there, and it still won't accept my answer  

 

#Trailhead Challenges

9 answers
0/9000

I have a flow that assigns project managers to orders owned by specific salespeople, however, my flow isn't working for a specific individual and I cannot figure out why. 

 

Here's the debug output where it is failing 

 

Skipped this outcome because its conditions weren't met: project_Manager1

Outcome conditions

Does Require Record Changed to meet criteria: true

1. {!$Record.Opportunity.OwnerId} (005Kc000000rTgmIAE) Equals {!salesrep1} (005Kc000000rTgkIAE)

2. {!$Record.Opportunity.OwnerId} (005Kc000000rTgmIAE) Equals {!salesrep2} (005Kc000000rTglIAE)

3. {!$Record.Opportunity.OwnerId} (005Kc000000rTgmIAE) Equals {!salesrep3} (005Kc000000rTgmIAE)

4. {!$Record.Opportunity.OwnerId} (005Kc000000rTgmIAE) Equals {!salesrep4} (005Kc000000r9YIIAY)

5. {!$Record.Opportunity.OwnerId} (005Kc000000rTgmIAE) Equals {!salesrep5

} (005Kc000000rV5cIAE) 

 

As you can see in line 3, it in fact does match. Salesforce does not recognize this and skips this section causing the decision tree to fail. It only happens with this 1 seller. I've been troubleshooting this for hours now and I can't fix it.  

 

Any ideas? 

 

#Flow  #Automation  #Immediate_Help

2 answers
0/9000

Hi, seeing mixed results online about this... 

 

I want to add an Opportunity Related List to the Contact Lightning Page and filter the results based on the 'Primary Contact' field (a lookup to Contact on the Oppty object) = This Record Id. So, we only see Opptys in the list where the Contact I am looking at is linked as the Primary Contact.  

Is this possible? I seem to only be able to filter using values - is there a formula I can use to feed in the Contact Id dynamically? {

Record.Id

} etc?  

 

Thanks 

 

#Lightning App Builder

2 answers
  1. Jul 14, 11:23 PM

    Not exactly what I was looking for, but thank you!

0/9000

In the section "Create a Lens Using a Polar Gauge Chart with Chart Icons", I followed the instruction correctly but got stuck at this error message below: 

There was an unhandled exception. Please reference ID: SBUIRFCU.

  

 

#Trailhead Challenges  #Trailhead

0/9000

 

Missing Profiles in Trailhead?I do not have these fields available to assign. I have not skipped steps in Trail: Admin Beginner. Can someone help me? 

 

 

 

#Trailhead Challenges

4 answers
  1. Jul 14, 10:08 PM

    Please make sure that the system administrator profile has the correct access rights for this record type. 

     

     

    Please make sure that the system administrator profile has the correct access rights for this record type.

     

     

0/9000

Hello everyone 

 

I need your help. I'm creating an LWC for my community. I need to read their user information when they log in to obtain their company name. Once obtained, search the Account object for the information that will be shown to them, which is the company name, RFC, among other data. Once you have that information, you can associate the case you created. 

 

The user who logs into the community has their user information, where they register in Salesforce to be part of a community. In the company field, enter the name of the account to which the user should be linked. 

 

I'm posting an image of what the community view looks like. It's in Spanish because the client uses Salesforce in Spanish.

Retrieve User information to search within the Account through a LWC for a community

The first two fields, which are grayed out, are where the user's name information should appear. account and the RFC to which the user is associated, but I don't know what I should do within the LWC to extract the account information that is in the user's company field. 

 

I'll share part of the code I've created. What I did was get the user who is logging into the community and the fields you see in the image. However, when I retrieve the user information and the company field, I don't know how to get the account information to put the values ​​in the grayed-out fields. 

 

HTML:

<template>

<div class="slds-grid slds-wrap">

<div class="slds-col slds-p-horizontal_small slds-size_12-of-12">

<lightning-card>

<h3 slot="title">

<lightning-icon icon-name="standard:case" size="small"></lightning-icon>&nbsp; Apertura del caso

</h3>

<div slot="footer">

<lightning-button

label="Cancelar"

variant="neutral"

onclick={handleCancel}></lightning-button>

&nbsp;

<lightning-button

label="Guardar"

variant="brand"

onclick={handleCreateCase}></lightning-button>

</div>

<div class="slds-p-horizontal_small">

<div class="slds-grid slds-wrap">

<div class="slds-col slds-p-horizontal_xx-small slds-size_6-of-12">

<lightning-input type="text" label="Nombre de la empresa" value={companyName} disabled></lightning-input>

</div>

<div class="slds-col slds-p-horizontal_xx-small slds-size_6-of-12">

<lightning-input type="text" label="RFC" value={rfc} disabled></lightning-input>

</div>

<div class="slds-col slds-p-horizontal_xx-small slds-size_12-of-12">

<lightning-textarea name="description" data-id="description" label="Descripción" class="validate" required></lightning-textarea>

</div>

</div>

</div>

</lightning-card>

</div>

</div>

<div class="spinner">

<template if:true={isLoading}>

<lightning-spinner alternative-text="Loading" variant="brand" size="large">

</lightning-spinner>

</template>

</div>

</template>

 

JS: 

 

import { LightningElement, track, wire } from 'lwc';

import Id from '@salesforce/user/Id';

import { getPicklistValuesByRecordType } from 'lightning/uiObjectInfoApi';

import { getRecord, getFieldValue } from "lightning/uiRecordApi";

import { createRecord } from "lightning/uiRecordApi";

import { ShowToastEvent } from "lightning/platformShowToastEvent";

import { NavigationMixin } from "lightning/navigation";

import { loadStyle } from 'lightning/platformResourceLoader';

import NAME_FIELD from "@salesforce/schema/User.Name";

import COMPANY_FIELD from "@salesforce/schema/User.CompanyName";

export default class CamNewCaseCustomer_lwc extends NavigationMixin(LightningElement) {

userId = Id;

@wire(getRecord, {

recordId: '$userId',

fields: [NAME_FIELD],

fields: [COMPANY_FIELD],

}) user;

 

I hope you can help me. 

Thanks and Regards 

Tania García

12 answers
  1. Jul 14, 11:16 PM

    Hi @Sri Teja Pilla

     

     

    I was able to make the information appear in the fields. My JS code that worked was this one. In case it helps someone else, I'll leave it.

    import { LightningElement, track, wire } from 'lwc';

    import Id from '@salesforce/user/Id';

    import { getRecord, getFieldValue } from "lightning/uiRecordApi";

    import { NavigationMixin } from "lightning/navigation";

    import NAME_FIELD from "@salesforce/schema/User.Name";

    import COMPANY_NAME_FIELD from '@salesforce/schema/User.Account.Name';

    import RFC_FIELD from '@salesforce/schema/User.Account.RFC__c';

    export default class ISVNewCaseCustomer_lwc extends NavigationMixin(LightningElement) {

    userId = Id;

    @wire(getRecord, {

    recordId: '$userId',

    fields: [NAME_FIELD],

    optionalFields: [COMPANY_NAME_FIELD, RFC_FIELD],

    })user;

    get companyNameValue() {

    return getFieldValue(this.user.data, COMPANY_NAME_FIELD);

    }

    get RFCValue() {

    return getFieldValue(this.user.data, RFC_FIELD);

    }

    }

     

    Thanks and Regards 

    Tania García

0/9000

I'm following thru the badges about "knowledge". I created a new playground, followed the exact steps, don't think I missed anything. But the "Email" option is nowhere to be seen under Feed in the case record. I've looked everywhere, rechecked the steps, searched online and followed all the steps again, nothing's missing but the email is still not available.  

 

How strange! I'm glad it allows me to pass by skipping the testing part, though. Anyone ever had the same experience? Any clue how to have it fixed? 

 

#Trailhead Challenges

6 answers
0/9000

I am doing "Quick Start: Lightning Web Components"  module and created my first web component under "Create a Hello World Lightning Web Component" chapter. 

 

I have original Org(lets call it Production), DevHub(which is copy of Prod), ScratchOrg.   

OrgIds(also in the screenshots below) are: 

DevHub  *****IMEAZ  

Scratch ******nMAB 

Prod *****AoiIM

In VScode it shows the changes were deployed to the DevHub org as per the org ID. But when I open the org using CLI or even the url mention in the console it takes me to Production org.  

Screenshots attached.  

How do I open the DevHub org? 

How to open the correct organisation when using DevHub?

 

Snipaste_2025-07-12_19-14-22.png

 

Snipaste_2025-07-12_19-18-38.png

 

 

 

#Trailhead Challenges

2 answers
0/9000