Recently Active Questions
136,131 questions
0
votes
1
answer
878
views
Validation Rule date can only be changed to date in the same month BUT not changed if the month has already passed
The validation rule I have right now stops reps from changing the date if the meeting has been completed, indicated by a checkbox.
AND(
Meeting_Conducted__c = TRUE,
ISCHANGED( Meeting_Date__c ))
But ...
0
votes
1
answer
2k
views
unable to call SOAP API from apex class
I have the below wsdl file (the original one is larger than 1MB, so I only copy the parameters I need): https://pastebin.com/3J23zm7K
However, as Salesforce doesnt support xsd:extension base, I ...
4
votes
2
answers
956
views
SFMC: Query Based Data Extension Help
We have a synchronized data extension from Sales Cloud coming into our SFMC instance. In the Opportunities table, it is possible for a single customer to have multiple Opportunities in various stages, ...
1
vote
1
answer
6k
views
What license do I need to enable Einstein in Chat Bot?
I have created a chatbot in my org. I want to enable Einstein for that Einstein chatbot in my org.
Is there any specific license that I need? It looks like before enabling that, the bot will just ...
0
votes
1
answer
1k
views
Combine record owner based and criteria based rule types in sharing settings
I have a role hierarchy in my org. The hierarchy is :
a. Sales Director
a1. Direct Sales
a1.1 SME Sales Coordinator
a2. Indirect Sales
Also, i have a partner user who creates Account records in the ...
0
votes
1
answer
16
views
Correct Approach to Wrap an LWC component in Aura for QuickAction
Question
If I've got an LWC component, memoEditor, that's driven by a recordId attribute. It works great on lightning record pages. Now I'd like to be able to use my memoEditor in an Aura component so ...
0
votes
0
answers
17
views
How to know what application a user is in
In apex, how can I know what application a user is in? I found this idea online (below) but I was in one app, ran that code and it said I was in a different app. I don't think that code works. I ...
0
votes
1
answer
1k
views
Can I programmatically get a list of a user's list views for a given object?
I am looking to provide a mechanism that uses the filter part of list views to filter a graphical representation of various (custom or standard) objects. I want the user to be able to select any ...
0
votes
1
answer
868
views
@wire(CurrentPageReference) pageRef returning null (LWC Component Embedded in Visual Force page)
I am using the recipes "pubsub" folder in my components. They are working fine in LEX but when embedded into a VF page they run into the issue of pageRef not wiring. I am wondering if there is a work ...
2
votes
2
answers
934
views
Marketing Cloud cordova plugin error can not enablePush - iOS
so i wanted to create a cordova hybrid app using SalesforceMobileSDK alongside MarketingCloud plugin for push notification. I've added SalesforceMobileSDK cordova plugin and so far it runs perfectly. ...
0
votes
0
answers
7
views
Embedded Deployment doesn't fire onEmbeddedMEssagingReady in LWC
I am working on an Experience Cloud Site (Aura Template) and I would like to add handlers to my Embedded Service Deployment events. I have laid out my LWC like so:
embedded_svc = '';
...
7
votes
4
answers
15k
views
Lightning Email Templates Deployment
I have been reviewing the documentation for Lightning Email Templates and it does not look like they can be deployed from one org to another. I have been unsuccessful retrieving them from the Metadata ...
0
votes
1
answer
18
views
Is there a good way to get the call stack in Apex?
I'm currently working on a logger object that will include a field for the Call Stack on every log entry. This is done automatically by the logging class for any log entry, not just exceptions.
...
2
votes
2
answers
877
views
Rich Text field Inline Editing on Datatable - Unable to Save changes
I'm fairly new to LWC, I have managed to build a datatable and using custom types to display rich text content however I'm unable to edit and save rich text content when I use:
lightning-input-rich-...
0
votes
0
answers
13
views
Creating flow to Allow users to create a Quote from an Opportunity and be redirected to the newly created Quote record upon completion
I'm creating a flow to Allow users to create a Quote from an Opportunity and be redirected to the newly created Quote record upon completion. I keep getting an error. Looking for input into what I ...