Skip to main content The last day to register for a Salesforce or Tableau exam is June 30th. Learn more about the new Salesforce certification experience coming July 21st.

Feed

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

I have a simple prompt with an input field called 'FinalPrompt'.   The prompt is simple as well:   summarize the visit reports using {!$Input:FinalPrompt}.   I have a simple LWC that allows the user to enter their own question that I will pass to the prompt. 

 

In my apex, i have pulled my data that I want to pass to the LLM, I have the user entered question.   I created my inputValueMap with the string 'FinalPrompt' and all the user question and data in a string. 

 

I keep getting the error "required input is missing for parameter Input:FinalPrompt".   I have verified by doing a preview the input field is called 'FinalPrompt' 

 

Has anyone had success collecting data in apex and building the prompt and passing it back to the LLM to process and get a response? 

 

Any insight or hints would be appreciated. 

 

thanks 

Mike 

 

#Salesforce Developer  #Developer Forums

1 answer
  1. Sushil Kumar (UKG) Forum Ambassador
    Today, 10:06 PM
    See if this helps - https://medium.com/@sfdcsushil/invoking-einstein-prompt-from-lwc-apex-941d56b7829e. I had done this few months ago, there maybe small syntax change, you can try this and see if it helps.
0/9000

I recently passed the Salesforce Associate exam and received my certificate, but unfortunately, the name on the certificate is incorrect and does not match my real name.

How can I request a name correction on my certificate? 

 My correct full name should be:

Rowida Ahmed Kamel.

Do I need to open a support case or is there a specific process for this? 

 Any help or guidance would be greatly appreciated!

Thanks in advance, 

 

Rowida Ahmed Kamel

 

#Certifications

0/9000

The object is Energy use. The categories of energy saving plans field is called Green Choice 100.  The accounts that use these plans are called Entities. The Entities sometimes get listed twice in a month, hence the need for a Unique count of the entities. But some of them have more than one of the Green Choice 100 categories. (Maybe EV and Solar) The numbers/category are right, but when Salesforce "adds them up" it further filters those that have two groups. The numbers are right but the sum at the bottom is the filtered number. How can I simply add those numbers in the report or get a second total.   

3 answers
  1. Jun 12, 2:15 PM

    @Abhishek R Thank you so much for this. I have tried numerous things with the Formula 1, but you gave me the idea--I made a field that was the Entity + Category so it was each time the entity had a category, then I chose mark as Unique (or however that is on the report) and it gave the correct number, totalled at the bottom. Thanks for participating!

0/9000

Hi All - For some reason, only one of my rollups is showing up as a selectable option in my change set. I'm not sure why the rest are not showing up?   

Rollups not showing up in Change Sets

 

 

8 answers
  1. Today, 10:02 PM

    What version of DLRS is installed in the target org? Is it also 2.23? 

     

    I'm wondering if some of the new fields we've added over time are limiting those records because they need the newer version to be installed in the target org.

0/9000

I am executing the project Connect Data Cloud to Agentforce and Prompt Builder > Bring External Data into the Contact Page Layout. In the step updates the Lightning record page for Contact, I am encountering the following error: "We had trouble processing the request. We've reported the problem to Customer Support with error ID: undefined."

 

#Trailhead Challenges  #Agentforce

1 answer
0/9000

For some reason I'm not getting a reset so I can create a new playground.  Any suggestions to who to ask for help?     Was easy in the past.   Already sent an email to help.   

 

Reset Your Data Cloud and Einstein AI Playground Password

Follow these steps:

  • From the email, copy the username and follow the password reset steps.
  • Come back here and click Connect Playground.
  • Log in with username epic.3b0e1750701481766@orgfarm.th and your new password.
  • Grant Trailhead permission to access the Playground.
  • Note: Password resets may take a few minutes. If an error occurs, wait a minute and retry with the same credentials.

Connect Playground

 

notification 

We sent a password reset email to

mdioro@salesforce.com from support@salesforce.com. Not finding the email? Get Help

 

 

#Trailhead Challenges

1 answer
0/9000

i am in the wise panda playground and had to add a contact and opportunity and it keeps telling me that the opp can not be found. any suggestions? 

 

#Trailhead Challenges

3 answers
0/9000

Hi Team  

After creation of Org , the records - data lake , etc are going for infinite processing  

Kindly please let me know ETA for fix   

Get Started with Data Cloud and AI - Module

 

 

 

 

#Trailhead Challenges

5 answers
  1. Today, 4:05 PM

    Hi Trailblazer,

     

    We sincerely apologise for the inconvenience caused.

     

    I'm from trailhead help team. There is an ongoing issue with the badge, this issue has been fixed. However, we recommend you to create a fresh playground org to proceed further with the module. Please ensure to complete all the steps from all units in the new org.

     

    Please navigate to the module, and you should be able to create a new playground org.

     

    If you still see an older playground org connected, please follow the below steps to create a new org.

     

    - Login to your trailhead account.

    - Now go to 'https://trailhead.salesforce.com/users/profiles/orgs' in a new tab.

    - Click on Create Playground & click 'Create'.

    - As soon as the playground gets created, refresh your page and you should be able to click Disconnect next to the Data Cloud org (Starting with epic..)

     

    Thanks for your understanding.

0/9000

I have a field named 'Flag' that represents what type of customer they are & have been using Static Resources & the following code:    IF(       INCLUDES(Category__c,"Beta Tester"),       IMAGE("https://syncpadllc--c.na59.visual.force.com/resource/1525876975000/blackCircle?isdtp=p1", "black"),       null  ) & " " &  IF(       INCLUDES(Category__c,"Billing Co"),       IMAGE("https://syncpadllc--c.na59.visual.force.com/resource/1525876995000/blueCircle?isdtp=p1", "blue"),       null  ) & " " &  IF(       INCLUDES(Category__c,"Live User"),       IMAGE("https://syncpadllc--c.na59.visual.force.com/resource/1525876995000/greenCircle?isdtp=p1", "green"),       null  ) & " " &    etc.  It has been working fine until a few days ago. Now the url to the image shows a broken link. Is there a new way to do this now?  Also, when I try to edit the static resource, there is no image loaded & when I load it & save, it doesn't stick.  

3 answers
  1. Jun 20, 6:13 PM

    Can you create a List View that shows the Category__c field and the Formula Field side-by-side and post a screenshot?  

     

    Also, if you uploaded the image files as a Static Resource the Image URL should just be  

    IMAGE('/resource/greenCircle', 'green'),  

     

    IMAGE(

    CASE( Do_you_owe_SteveMo_a_beer__c ,

    'Yes', '/resource/Glass_Ball_Green',

    'Of course','/resource/Glass_Ball_Blue',

    'Obviously', '/resource/Glass_Ball_Yellow',

    'Hell Yeah!', '/resource/Glass_Ball_Red',

    'Most certainly', '/resource/Glass_Ball_Gray',

    '**** right you do!','/resource/Glass_Ball_Green',

    '/resource/Glass_Ball_Gray'), 'You owe me a beer!', 32, 32 )

     

    Can you create a List View that shows the Category__c field and the Formula Field side-by-side and post a screenshot?

     

     

     

0/9000
1 answer
0/9000