Feed
- Recent Activity
- Created Date
- Questions with an Accepted Answer
- Questions with No Accepted Answer
- Unanswered Questions
Today, 10:19 AM
Today, 10:17 AM Hi @Kalaganda Chenchu Manjunatha
Check below articles which has details on salesforce partner program.
https://www.salesforce.com/partners/become-a-partner/
https://1.salesforce-partners.com/consultingpartner
Thanks!
Today, 10:15 AM Hi @Kalaganda Chenchu Manjunatha
You would need to use your partner company details like using email:
https://help.salesforce.com/s/articleView?id=000390506&type=1
Wait for further process else you might need to submit new request with company mail id.
Thanks!
We are trying to customise our input and output with the new Custom Lightning Types on Agentforce (Default) chat Interface,. We were able to deploy 2 CLTs but, suddenly deployment of Lightning types started failing to that org.
We are getting the below error:
fileName: editor.json,
filePath: lightningDesktopGenAi/editor.json,
messages: [Something’s not right with the definition name c/flightRequestFilter. Check the name and try again.]
We have made sure the name of the referenced LWC is same to what mentioned in the editor.json.
Please let us know if this is the known issue or has any workaround to resolve this.
When we try to publish the Tableau dashboard to the tableau server we are getting the Error code : ACF37E18 We are using Tableau desktop version : 2021.4.2
Tableau server version : 2021.4.2 Can you please help at the earliest. Tableau dashboard size : 25- 29 GB.
Today, 10:09 AM Check below references that can help you.
https://help.salesforce.com/s/articleView?id=001497709&type=1Thanks!
namefield.sendKeys("June12");
WebElement namefield2 = wait.until(
ExpectedConditions.visibilityOfElementLocated(By.id("6103:0")));
namefield2.sendKeys("June12");
WebElement Accsubmit = driver.findElement(By.cssSelector(".slds-button, .slds-button--neutral, .uiButton--brand, .uiButton, .forceActionButton")); Accsubmit.click(); System.out.println("record submit"); WebElement option1 = driver.findElement(By.cssSelector(".slds-checkbox_faux")); //This will Toggle the Check box option1.click(); driver.close(); }}
Today, 10:07 AM Hey there!
I recently struggled with the exact same issue and finally found a solution that works reliably for Salesforce lookup fields. The key is to work *with* the dynamic nature of the lookup rather than trying to force it. Here's what worked for me:
public class LookupHelper {
public static void selectLookupItem(WebDriver driver, WebDriverWait wait,
By lookupLocator, String searchText, String itemText) {
// 1. Find and activate the lookup field
WebElement lookup = wait.until(ExpectedConditions.elementToBeClickable(lookupLocator));
lookup.click();
lookup.clear();
// 2. Type the search text to filter results
lookup.sendKeys(searchText);
// 3. Wait for and locate the results dropdown
By resultsLocator = By.cssSelector("div[role='listbox'] li");
wait.until(ExpectedConditions.visibilityOfElementLocated(resultsLocator));
// 4. Find and click the matching item
driver.findElements(resultsLocator).stream()
.filter(e -> e.getText().contains(itemText))
.findFirst()
.orElseThrow(() -> new NoSuchElementException("Item not found: " + itemText))
.click();
}
}
```
**Usage example:**
```java
LookupHelper.selectLookupItem(
driver,
wait,
By.xpath("//input[contains(@placeholder,'Search Accounts...')]"),
"Acme",
"Acme Corporation"
);
Today, 10:05 AM There is no specific articles for best practices, however found below reference.
Also you can check on
AppExchange if you are looking for any other tools.Thanks!

Hello Everyone,
Is there any way to change the list of related list i see in the work order page in FSL mobie
i have attached a screenshot of this.
#FSL Mobile #Salesforce Field Service #Field Service App
Today, 9:59 AM Check below article to Customize the Layout of the Work Order
https://help.salesforce.com/s/articleView?id=service.mfs_work_order_overview.htm&type=5Thanks!
Hello. Apologies for the simple questions but I'm getting myself confused around non profit cloud. We are looking at case management to record the 'onboarding' of people to a service and as part of this need to capture some information at the time they start and then some others after. I'm getting myself in a mix as to what object to use for what:
- Initial onboarding referral information, consents etc. (one off)
- General risk assessment (one off)
- Risk assessments (multiple)
- Specific questions for different types of interactions
Assessments, care plans and action plans are blurring in my head at the moment - Any pointers massively appreciated.