Feed
- Recent Activity
- Created Date
- Questions with an Accepted Answer
- Questions with No Accepted Answer
- Unanswered Questions
Hola! ¿Cómo están?
No me esta funcionando el importador de datos de npsp, intento procesar un registro y se tilda, tmp me indica el error, adjunto imagen, alguien sabe que puede estar pasando?
Gracias!
Today, 4:21 PM Hola Ele! si solo se tildaba, pero ya lo pudimos destrabar, parece que tiene que ver con la integración con active campaign, capaz alguna actualización, porque no tocamos nada.
Tuvimos un error en la sincronización del día 21/06 en el código ápex llamado “ActiveCamp.contactDataBatch”.
Gracias!
I am trying to complete the Agentblazer Champion badge, but while doing data cloud part I am unable to connect to Playground, the password is not taking and I am unable to reset it
#Trailhead Challenges
Today, 4:21 PM Kindly wait for sometime as it will take time to reflect the changed password.
Thanks
i am encountering this error again and again , i have done all the necessary steps
#Trailhead Challenges
As a part of the Agentforce champion training, i was in the module "Enhance Agentforce to Act on Data with Conversational Language"
I was performing the below step:
- Click the Event Summary element.
- For Value, copy and paste the following: Check-in date of {!Reservation_1.Check_in_Date_c__c}, check-out date of {!Reservation_1.Check_out_Date_c__c}, for room type {!Reservation_1.Room_type_c__c}.
- Click outside the Value box so the Save button becomes available, then click Save.
- Click Activate.
Suddenly i started getting the below error:
Something went wrong
We can't open this flow right now. Please try again. Error ID: 736080051
#Trailhead Challenges
Today, 4:20 PM ,
Can you try checking the flow after sometime. Looks like some issue happened in between. Also log out and log in and recheck the same.
Thanks
,
I need some help with flow please!
When a user checkmarks a box on the Product2 record, a record triggered flow gathers all related Opportunities and updates a checkbox on the Opportunity. In order to do this I must temporarily assign a permission set to the running user, then take it away if they didn't have it previously.
I found Jen's excellent blog about this topic and have used quite a few of the ideas:
https://admin.salesforce.com/blog/2022/automate-this-automatically-assign-remove-a-permission-set
The problem I am running into is, I need to add the permission set to the user, update the Opportunities, then remove the permission set assignment. Here is what that part of my flow looks like:
When I debug, I run into this error:
I thought by adding the add/remove as a subflow I could avoid the error but as you can see it made no difference. Any thoughts on how to solution for this and not run into the error?
Thanks everyone!
#Flow#Flows
#Flownatics
#Permissionset
Today, 4:19 PM ,
Mixed DML error is thrown when you try to update the non setup object and setup object in a single transaction.
Salesforce restricts this DML operation considering the impact of security. It's not possible to have both system and non system object update simultaneously.
Here in the screenshot add permission set will adds permission set and by giving the permission, in the same transaction you are trying to update some record. This is prohibited considering security aspect.
Please remove the opportunity object from same loop.
Thanks,
Since 2 days I'm trying to fix this...I'm loosing my will to live.
Training:
https://trailhead.salesforce.com/content/learn/projects/build-your-first-sales-coach/enable-sales-coaching-in-agentforce?trail_id=become-an-agentblazer-innovator
Attached is the screenshot of where I'm stuck.
People even tried to help me with
this videobut I don't have those screens anymore
I can't get the verify the last step of the SDR Agent as I receive this error message:
"Step not yet complete in Agentforce. We couldn't find the Agentforce Sales Coach in your Lightning page"
Please refer the below screenshot I want to SUM the selected Number of Units and on click of Calculate Service Units I want the sum without going to the next screen
#Flow #Screen Flow
Unfortunately, yesterday I missed my scheduled Sales Cloud Consultant exam. Now, I can't register to take it again. Does anyone know the policy for retaking a certification exam that was missed rather than failed?
I've created a case with Trailhead
I have LWC component, inside this component there is imperative apex call is happening and there is also a console log. i could see that apex method gets executed method times cause some issues. i have observed in network log this method executes multiple times, however console logs printed only once. sound strange to me. I am expecting this method should executes only once, is it correct?
#LWC #LWC Development
Today, 4:15 PM In LWC, an imperative Apex call should ideally only run once per invocation unless it is specifically triggered more than once. When the Apex method runs repeatedly in the network log but just once in the console log in your LWC, there are a number of possible reasons why this can be happening.
LWC lifecycle hooks (like connectedCallback or renderedCallback) or reactive property changes might be triggering the imperative Apex call multiple times.
Thanks