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.

In Tableau, I was able to extract around 1 crore rows when using MySQL as the backend. But when I run the same query on Databricks, it is failing.   

3 answers
  1. Manoj Nambirajan (Dell Technologies) Forum Ambassador
    Today, 7:26 AM

    @Amol Deshmukh thanks for details. Looks like current sql query used or the operation is consuming more memory and CPU.. I wonder if we can apply more filter in the query to reduce data volume being pulled.. OR probbaly do data aggregation (if any) at the data bricks level first before you extract to Tableau?

0/9000
1 answer
0/9000

How to i create a filter that include keyword in order to drop the case in the correct list view? 

 

#List View

4 answers
  1. Today, 7:17 AM

    @Edwin Wong

     

    I have prepared a screenshot for your reference , let me if this helps ... Kind R 

    I have prepared a screenshot for your reference , let me if this helps ...

     

    egards

0/9000

Attempting to create Developer Edition org with special configuration for Prompt Builder Superbadge. No email confirmation is received to activate playground 

I have attempted two different email addresses 

 

 

#Trailhead Challenges

5 answers
  1. Today, 7:15 AM

    This problem was resolved, also received a confirmaiton email. It was a system problem 

     

0/9000

 I'm currently using the following configuration in my VS Code settings to trace AgentForce request payloads: 

"salesforce.einsteinForDevelopers.advanced": {

"trace": {

"request": true

}

}

This helps trace the request and create a trace.md file in project root folder, but I'd also like to capture the Agentforce for Developers response

, possibly including the prompt, completion, or token usage. 

Is there a way to enable trace for the

response or generated output? If so, what are the supported keys under the trace object? 

2 answers
0/9000
2 answers
  1. Today, 7:13 AM

    Hello @SARATHI R have you well unselected the following topics as requested in step #6 of the Create the Agent phase ? 

     

    6. Unselect these topics (click the Added button) so that General FAQ is the only remaining topic:

    • Case Management
    • Account Management
    • Reservation Management
    • Delivery Issues
    • Order Inquiries
    • Escalation
0/9000
Hi All,

Example Program for batch apex chaining and scheduling?
3 answers
  1. Today, 7:02 AM

    Hi,

    By this way you can acheive batch chaining and scheduling

     

    global class BatchClass implements Database.Batchable<sObject>{

        global Database.QueryLocator start(Database.BatchableContext bc){

            return Database.getQueryLocator([SELECT ID,Name FROM Account LIMIT 50]);

        }

        global void execute(Database.BatchableContext bc,List<Account> acc){

            List<Account> ac = new List<Account>();

            for(Account a: acc){

                a.Name+='*';

                ac.add(a);

            }

            update ac;

        }

    //Calling another batch job after finishing of first one

        global void finish(Database.BatchableContext bc){

            BatchExample1 be = new BatchExample1();

            Id batchId = Database.executeBatch(be , 200);

        }

    }

     

    //scheduling the first batch

    BatchClass btch = new BatchClass();

    Id batchJobId = System.scheduleBatch(btch, 'Batch Job' , 60);

     

    Here 60 represents the running of batch 60 minutes from now.

     

    Mark this answer helpful if it solves your query!

0/9000

 We have a requirement to import constituent data into a fresh Nonprofit Cloud (NPC) org. The data provided includes multiple phone numbers and email addresses for each constituent. I am planning to leverage the standard Contact Point objects mentioned above; however, I don’t see them available in the org. This is my first time working with nonprofit clients and a Nonprofit Cloud implementation. Any guidance or best practices you could share would be greatly appreciated! 

 

 

  

#Nonprofit Cloud #NonprofitHelp #Nonprofit #Import Data Challenge

1 answer
0/9000

 We have a requirement to import constituent data into a fresh Nonprofit Cloud (NPC) org. The data provided includes multiple phone numbers and email addresses for each constituent. I am planning to leverage the standard Contact Point objects mentioned above; however, I don’t see them available in the org. This is my first time working with nonprofit clients and a Nonprofit Cloud implementation. Any guidance or best practices you could share would be greatly appreciated!

0/9000

Kindly let me know through the below lines :-   

"Assign the permission set group to the user you created in the previous unit"

Where to attach which one (with name) 

I have attached the screenshot as well 

 

#Trailhead Challenges

7 answers
0/9000