-
ChatterFeed
-
0Best Answers
-
3Likes Received
-
0Likes Given
-
69Questions
-
23Replies
External objects vs Salesforce Connect Adapters OData 2.0 or 4.0
Project: Installing an app exchange application, and creating the schema (external objects and relationships with custom or standard objects).
If I created external objects (non-salesforce org), does that mean I have used OData 2.0 or OData 4.0?
If I created external objects (non-salesforce org), does that mean I have used OData 2.0 or OData 4.0?
-
- inbox outbox 7
- June 16, 2022
- Like
- 0
- Continue reading or reply
Could anyone tell me the scenarios when you used LWC inside Aura?
HI,
Please don't explain interoperability, that you can how LWC as a child, we can also have LMS etc.
All I want to know is the scenario with example when you had to put LWC inside Aura whether it is parent- child or child-parent.
Thank you.
Please don't explain interoperability, that you can how LWC as a child, we can also have LMS etc.
All I want to know is the scenario with example when you had to put LWC inside Aura whether it is parent- child or child-parent.
Thank you.
-
- inbox outbox 7
- June 15, 2022
- Like
- 0
- Continue reading or reply
As a developer (code-wise) what are some of the things that you are proud of?
As a salesforce developer, what are the things that you are proud of in your code/an app/solution/design etc.
-
- inbox outbox 7
- June 11, 2022
- Like
- 0
- Continue reading or reply
What are the deployment challenges that we face?
Most common issues faced during deployment
-
- inbox outbox 7
- June 02, 2022
- Like
- 0
- Continue reading or reply
I kind of asked this question, role which is role of a developer in deployment
I am actually looking for an answer, kind of like a skeleton, so that I can modify the answer based on what I do.
I am preparing to attend interviews.
How do I answer the following questions as a developer:
What is the deployment strategy in your company?
What is your role in deployment (both in lower and as well as higher environments)?
I am preparing to attend interviews.
How do I answer the following questions as a developer:
What is the deployment strategy in your company?
What is your role in deployment (both in lower and as well as higher environments)?
-
- inbox outbox 7
- May 27, 2022
- Like
- 0
- Continue reading or reply
Expect: 100-Continue vs Continuation
Is continuation the same the Expect: 100 - Continue in the header of the request
@AuraEnable(Continuation = true Cacheable = true)
@AuraEnable(Continuation = true Cacheable = true)
-
- inbox outbox 7
- May 26, 2022
- Like
- 0
- Continue reading or reply
Can anyone explain the role of a salesforce developer in deployment?
In a deployment strategy (no strategy or any strategy), what is the role of a developer in the lower environments?
I would appreciate specific and detailed answers please.
I would appreciate specific and detailed answers please.
-
- inbox outbox 7
- May 26, 2022
- Like
- 0
- Continue reading or reply
Can someone explain deployment strategy in terms of a develper?
As a developer, what part do we play in the deployment strategy?
When it is higher level, what part do we play?
When it is lower level what part do we play?
When it is higher level, what part do we play?
When it is lower level what part do we play?
-
- inbox outbox 7
- May 21, 2022
- Like
- 0
- Continue reading or reply
Callout to an external system, response data fails the validation rule, How do I go about saving the record?
Please tell me different approaches of dealing with this issue.
If the callout is from UI (button) or a flow (external service), the response data is invalid and there is a valdation rule on that field (response data), same transaction and user is expecting to see the result on UI.
I can have custom object which stores the failed data, but how about saving the record in this instance since validation rule doesn't let us?
I am looking for approaches to save the record when we have a validation rule instead of using code.
I can think of two ways to save the record:
1. In the validation rule: which lets the record to be saved if the field is blank. For example having CONTAINS OR BEGINS functions in the formula.
2. Instead of a validation rule, no code, we can do the callout from apex and have the validation there, if there is invalid or failed validation, to manipulate the data to allow the record to be saved.
If the callout is from UI (button) or a flow (external service), the response data is invalid and there is a valdation rule on that field (response data), same transaction and user is expecting to see the result on UI.
I can have custom object which stores the failed data, but how about saving the record in this instance since validation rule doesn't let us?
I am looking for approaches to save the record when we have a validation rule instead of using code.
I can think of two ways to save the record:
1. In the validation rule: which lets the record to be saved if the field is blank. For example having CONTAINS OR BEGINS functions in the formula.
2. Instead of a validation rule, no code, we can do the callout from apex and have the validation there, if there is invalid or failed validation, to manipulate the data to allow the record to be saved.
-
- inbox outbox 7
- May 17, 2022
- Like
- 0
- Continue reading or reply
I have a validation rule on a field which comes from an external system. How do I handle invalid data?
I can save the failed data/invalid data in a custom object, and later on find a way to use it as per the requirement.
Kindly tell me different approaches as to how we can handle this failed validation data in the object?
Kindly tell me different approaches as to how we can handle this failed validation data in the object?
-
- inbox outbox 7
- May 17, 2022
- Like
- 0
- Continue reading or reply
What is invalid data in terms of a response data from a callout?
What could be invalid data from a callout?
-
- inbox outbox 7
- May 17, 2022
- Like
- 0
- Continue reading or reply
Could anyone tell me all the issues or exceptions that we might have to handle in case of an integration?
Server down, network issue etc.
Could you please specifiy the issues we would have during a callout?
All the issues please.
Let's say: batch class and a callout, what issues would we have?
@future method and a callout: what issues would we face?
Callout from a flow: salesforce connect, external objects, record triggered flow (asynchronous path), outbound message?
Could you please specifiy the issues we would have during a callout?
All the issues please.
Let's say: batch class and a callout, what issues would we have?
@future method and a callout: what issues would we face?
Callout from a flow: salesforce connect, external objects, record triggered flow (asynchronous path), outbound message?
-
- inbox outbox 7
- May 17, 2022
- Like
- 0
- Continue reading or reply
HOw do we validate data coming from an external system ?
What if we get invalid data, how do we deal with that?
-
- inbox outbox 7
- May 16, 2022
- Like
- 0
- Continue reading or reply
could someone explain the end to end guaranteed delivery to the remote system vs guaranteed delivery from salesforce to remote-end point?
Under reliable message service => apex callouts
The above line is from this paragraph:
Salesforce doesn’t provide explicit support for reliable messaging protocols (for example, WS-ReliableMessaging). We recommend that the remote endpoint receiving the Salesforce message implement a reliable messaging system, like JMS or MQ. This system ensures full end-to-end guaranteed delivery to the remote system that ultimately processes the message. However, this system doesn’t ensure guaranteed delivery from Salesforce to the remote endpoint that it calls.
https://developer.salesforce.com/docs/atlas.en-us.integration_patterns_and_practices.meta/integration_patterns_and_practices/integ_pat_remote_process_invocation_fire_forget.htm
-
- inbox outbox 7
- May 15, 2022
- Like
- 0
- Continue reading or reply
Can we do validation in flow with the retrieved data from external services before updating the record?
Let's say we have process integration, the order is created in a backend system, we send the order details and the user gets the order status and order number and some other field called field_c, this field_c has to be validated before being updated in saleforce.
Can we do that?
Can we do that?
-
- inbox outbox 7
- May 14, 2022
- Like
- 0
- Continue reading or reply
"out-of-sequence" messaging and callbacks mitigate retrieving more data in outbound messaging, kindly explain to me?
Callbacks in outbound messages provide a way to mitigate the impacts of out-of-sequence messaging.
1. What is out-of-sequence messaging? could someone give me an example to better understand?
==
Retrieving more data—A single outbound message can send data only for a single object. A callback can be used to retrieve data from other related records, such as related lists associated with the parent object.
2. Could someone give me an example of pulling related lists in the callback with an example?
Thank you
1. What is out-of-sequence messaging? could someone give me an example to better understand?
==
Retrieving more data—A single outbound message can send data only for a single object. A callback can be used to retrieve data from other related records, such as related lists associated with the parent object.
2. Could someone give me an example of pulling related lists in the callback with an example?
Thank you
-
- inbox outbox 7
- May 13, 2022
- Like
- 0
- Continue reading or reply
What does "first-mile" mean in outbound messaging?
When using middleware, outbound messaging becomes a “first-mile” guarantee of delivery.
What does that mean? Can someone explain with a scenario?
What does that mean? Can someone explain with a scenario?
-
- inbox outbox 7
- May 13, 2022
- Like
- 0
- Continue reading or reply
Can we create instances of a platform event from a trigger?
If so, could you please provide me a scenario or an example?
-
- inbox outbox 7
- May 11, 2022
- Like
- 0
- Continue reading or reply
Difference between fetch API and its method fetch() and directly making a callout from the apex controller in LWC?
We can make a callout by adding CSP site, and use fetch() in the js file.
We can also make a HTTP request from the apex controller.
I can only think of one thing:
If we are just making a GET request to show some data on LWC, we use fetch api.
If we are doing a process integration, where the response has to updated in to the salesforce and the component has to be re-rendered we use apex controller class. Is that right?
Can someone explain the difference?
We can also make a HTTP request from the apex controller.
I can only think of one thing:
If we are just making a GET request to show some data on LWC, we use fetch api.
If we are doing a process integration, where the response has to updated in to the salesforce and the component has to be re-rendered we use apex controller class. Is that right?
Can someone explain the difference?
-
- inbox outbox 7
- May 10, 2022
- Like
- 1
- Continue reading or reply
Could anyone tell me what limit is being referred to here?
Number of synchronous concurrent transactions for long-running transactions that last longer than 5 seconds for each org.2 is 10.
If more transactions are started while the 10 long-running transactions are still running, they’re denied. HTTP callout processing time isn’t included when calculating this limit.
What is HTTP callout processing time?
-
- inbox outbox 7
- May 10, 2022
- Like
- 0
- Continue reading or reply
Difference between fetch API and its method fetch() and directly making a callout from the apex controller in LWC?
We can make a callout by adding CSP site, and use fetch() in the js file.
We can also make a HTTP request from the apex controller.
I can only think of one thing:
If we are just making a GET request to show some data on LWC, we use fetch api.
If we are doing a process integration, where the response has to updated in to the salesforce and the component has to be re-rendered we use apex controller class. Is that right?
Can someone explain the difference?
We can also make a HTTP request from the apex controller.
I can only think of one thing:
If we are just making a GET request to show some data on LWC, we use fetch api.
If we are doing a process integration, where the response has to updated in to the salesforce and the component has to be re-rendered we use apex controller class. Is that right?
Can someone explain the difference?
-
- inbox outbox 7
- May 10, 2022
- Like
- 1
- Continue reading or reply
I would like to know how the sharing context work based on the below scenario.
I never came across this scenario and I need your input.
You have a class with sharing, you have another class without sharing, without sharing class is callig a method in with sharing class, how does the sharing context work?
You have a class with sharing, you have another class without sharing, without sharing class is callig a method in with sharing class, how does the sharing context work?
-
- inbox outbox 7
- January 31, 2022
- Like
- 1
- Continue reading or reply
Could anyone tell me the reason why we use apex sharing?
I am looking for a scenario as to, when we use apex sharing over declarative ways.
Thank you!
Thank you!
-
- inbox outbox 7
- January 13, 2022
- Like
- 1
- Continue reading or reply
External objects vs Salesforce Connect Adapters OData 2.0 or 4.0
Project: Installing an app exchange application, and creating the schema (external objects and relationships with custom or standard objects).
If I created external objects (non-salesforce org), does that mean I have used OData 2.0 or OData 4.0?
If I created external objects (non-salesforce org), does that mean I have used OData 2.0 or OData 4.0?
- inbox outbox 7
- June 16, 2022
- Like
- 0
- Continue reading or reply
What are the deployment challenges that we face?
Most common issues faced during deployment
- inbox outbox 7
- June 02, 2022
- Like
- 0
- Continue reading or reply
I kind of asked this question, role which is role of a developer in deployment
I am actually looking for an answer, kind of like a skeleton, so that I can modify the answer based on what I do.
I am preparing to attend interviews.
How do I answer the following questions as a developer:
What is the deployment strategy in your company?
What is your role in deployment (both in lower and as well as higher environments)?
I am preparing to attend interviews.
How do I answer the following questions as a developer:
What is the deployment strategy in your company?
What is your role in deployment (both in lower and as well as higher environments)?
- inbox outbox 7
- May 27, 2022
- Like
- 0
- Continue reading or reply
Expect: 100-Continue vs Continuation
Is continuation the same the Expect: 100 - Continue in the header of the request
@AuraEnable(Continuation = true Cacheable = true)
@AuraEnable(Continuation = true Cacheable = true)
- inbox outbox 7
- May 26, 2022
- Like
- 0
- Continue reading or reply
HOw do we validate data coming from an external system ?
What if we get invalid data, how do we deal with that?
- inbox outbox 7
- May 16, 2022
- Like
- 0
- Continue reading or reply
Can we do validation in flow with the retrieved data from external services before updating the record?
Let's say we have process integration, the order is created in a backend system, we send the order details and the user gets the order status and order number and some other field called field_c, this field_c has to be validated before being updated in saleforce.
Can we do that?
Can we do that?
- inbox outbox 7
- May 14, 2022
- Like
- 0
- Continue reading or reply
What does "first-mile" mean in outbound messaging?
When using middleware, outbound messaging becomes a “first-mile” guarantee of delivery.
What does that mean? Can someone explain with a scenario?
What does that mean? Can someone explain with a scenario?
- inbox outbox 7
- May 13, 2022
- Like
- 0
- Continue reading or reply
Could any one tell me what is an user initiated action when it comes to callouts?
I can only think of a button or a quick action.
Any other options please?
Any other options please?
- inbox outbox 7
- May 06, 2022
- Like
- 0
- Continue reading or reply
We can do the below code with LIST as well but that would give us an error whenever we are INSERTing more than 1 Contact and so we used MAP.
Whenever a contact is inserted, if that contact is associated with an account, then update that account name from this newly inserting contact name. It has to be bulkified. If the contact name is "John", then the associated account's name should also be "John:
public Contact trigger updateAccount (AFTER INSERT){
Map<Id, Account> accountList = New Map<Id, Account> ();
for(Contact con: Trigger.New){
if(con.AccountId){
Account acc = New Account();
acc.Name = con.LastName;
acc.Id = con.AccountId;
accountList.put(acc.Id, acc);
}
}
UPDATE accountList.values();
}
I would like to know why we would get an error if we use LIST in production and that we have to use either MAP or SET.
public Contact trigger updateAccount (AFTER INSERT){
Map<Id, Account> accountList = New Map<Id, Account> ();
for(Contact con: Trigger.New){
if(con.AccountId){
Account acc = New Account();
acc.Name = con.LastName;
acc.Id = con.AccountId;
accountList.put(acc.Id, acc);
}
}
UPDATE accountList.values();
}
I would like to know why we would get an error if we use LIST in production and that we have to use either MAP or SET.
- inbox outbox 7
- April 18, 2022
- Like
- 0
- Continue reading or reply
What is designing?
What is designing exactly? Like job responsiblities involved in designing?
When I say design (analysis, design, implementation etc?
I only can think of designing how the template looks (lwc template)?
Is there anything else that I am missing.
Please advice.
Thank you.
When I say design (analysis, design, implementation etc?
I only can think of designing how the template looks (lwc template)?
Is there anything else that I am missing.
Please advice.
Thank you.
- inbox outbox 7
- March 28, 2022
- Like
- 0
- Continue reading or reply
Case object has a custom field and the object is private, how can we achieve view and read access to others instead of owners.?
Hi, how can we achieve this, like all the users must have read and write access?
- inbox outbox 7
- March 09, 2022
- Like
- 0
- Continue reading or reply
Batch apex limits. Please provide your input.
1. Batch class can work on upto 50k records using Iterator. Is that right?
2. If you use an iterable, the governor limit for the total number of records retrieved by SOQL queries is still enforced. For more information on using iterables for batch jobs
3. If the start method of the batch class returns an iterable, the scope parameter value has no upper limit. However, if you use a high number, you can run into other limits. The optimal scope size is a factor of 2000, for example, 100, 200, 400 and so on.
I am bit confused with these limits. Please explain.
2. If you use an iterable, the governor limit for the total number of records retrieved by SOQL queries is still enforced. For more information on using iterables for batch jobs
3. If the start method of the batch class returns an iterable, the scope parameter value has no upper limit. However, if you use a high number, you can run into other limits. The optimal scope size is a factor of 2000, for example, 100, 200, 400 and so on.
I am bit confused with these limits. Please explain.
- inbox outbox 7
- February 13, 2022
- Like
- 0
- Continue reading or reply
I want to show account with related opportunities, without using inner query and by using map with either <Id, Sobject>
Map<Id,List<Opportunity>> addOppurnitieswithaccount = new Map<Id,List<Opportunity>>();
Roll up summary kind of thing.
I am just lost.
Map<Id,List<Account>> acctsWithOpps = new Map<Id,List<Account>>();
System.debug(acctsWithOpps.values());
List<Opportunity> oppl = [SELECT Account.Name, Name FROM Opportunity WHERE Id =: acctsWithOpps.values()];
for(Opportunity opp: acctsWithOpps.values()){
system.debug(opp.Name);
}.
Please advice.
- inbox outbox 7
- February 09, 2022
- Like
- 0
- Continue reading or reply
We need to have an input field that searches account and then a datatable that show a list of contacts
I am looking for only lightning-input not a combobox, or select/option tags or bullets, an input field (account search).
anyone?
anyone?
- inbox outbox 7
- February 03, 2022
- Like
- 0
- Continue reading or reply
Could anyone tell me the reason why we use apex sharing?
I am looking for a scenario as to, when we use apex sharing over declarative ways.
Thank you!
Thank you!
- inbox outbox 7
- January 13, 2022
- Like
- 1
- Continue reading or reply
I would appreciate commununity's advice in regards to callouts in batch apex
Hi all,
Happy New Year!
Could you guys tell me the scenarios as to when we use callouts in batch apex?
I would like to point out that I am looking for input on the scenarios that you guys faced or know/read about.
I am inclined more towards when than the how part of this.
Happy New Year!
Could you guys tell me the scenarios as to when we use callouts in batch apex?
I would like to point out that I am looking for input on the scenarios that you guys faced or know/read about.
I am inclined more towards when than the how part of this.
- inbox outbox 7
- January 07, 2022
- Like
- 0
- Continue reading or reply