
Deepak Pandey
IndividualVideos
-
John and
Adarsh are now connected 6 years ago
-
Jellyfish and
Adarsh are now connected 6 years ago
-
Anjali and
Adarsh are now connected 6 years ago
-
Adarsh replied to the discussion How to pass Dynamic parameter in SOQL where clause, while mapping in Webmerge? in the forum Salesforce® Discussions 6 years ago
Reply to How to pass Dynamic parameter in SOQL where clause, while mapping in Webmerge?
Hi Archit,
Thanks, it was very much informative and helpful.
-
Adarsh replied to the discussion How to pass Dynamic parameter in SOQL where clause, while mapping in Webmerge? in the forum Salesforce® Discussions 7 years ago
Reply to How to pass Dynamic parameter in SOQL where clause, while mapping in Webmerge?
Hi Archit,
Here what is the meaning of 'uniqueness', when we work on SOQL?
-
Adarsh replied to the discussion How to pass Dynamic parameter in SOQL where clause, while mapping in Webmerge? in the forum Salesforce® Discussions 7 years ago
Reply to How to pass Dynamic parameter in SOQL where clause, while mapping in Webmerge?
Hi Ankit,
Is it necessary to have this kind of formatting?
-
Adarsh replied to the discussion How can we customize the standard Clone button on a Salesforce Opportunity ? in the forum Salesforce® Discussions 7 years ago
Reply to How can we customize the standard Clone button on a Salesforce Opportunity ?
Hi,
You can't customize the standard button in Salesforce, you may achieve this through custom logic.
-
Adarsh replied to the discussion What is the difference between Clone() and DeepClone() in Salesforce Apex? in the forum Salesforce® Discussions 7 years ago
Reply to What is the difference between Clone() and DeepClone() in Salesforce Apex?
Hi,
Clone(): When you clone an sObject in Apex, it copies all the fields populated in that Apex object, not necessarily all fields on the record. ... If you do the following, the clone will not have LeadSource and Status cloned from the original record. It will use the default values for Leads.
DEEPCLONE(): If a list is DeepCloned, it… Read more
-
Adarsh replied to the discussion Is there any way we can add new attachments to the records when Salesforce1 is offline? in the forum Salesforce® Discussions 7 years ago
Reply to Is there any way we can add new attachments to the records when Salesforce1 is offline?
Hi,
Salesforce1 supports documents that are uploaded through the Files action OR through Chatter. Documents and any attachments uploaded through the Notes and Attachments section on a record list view aren't guaranteed to be accessible in Salesforce1. The content can still appear under the section, but Salesforce can't guarantee they will… Read more
-
Adarsh replied to the discussion How can we update child records from parent using Salesforce Apex Class? in the forum Salesforce® Discussions 7 years ago
Reply to How can we update child records from parent using Salesforce Apex Class?
Hi,
you may use the following code,
trigger IPAapproved on Outbound_Sales_Order__c (after update) {
// Only do work when the field has changed
Map<Id, Outbound_Sales_Order__c> changed = new Map<Id, Outbound_Sales_Order__c>();
for (Outbound_Sales_Order__c oso : Trigger.new) {
Outbound_Sales_Order__c old =… -
Adarsh started the discussion How to pass Dynamic parameter in SOQL where clause, while mapping in Webmerge? in the forum Salesforce® Discussions 7 years ago
How to pass Dynamic parameter in SOQL where clause, while mapping in Webmerge?
How to pass Dynamic parameter in SOQL where clause, while mapping in Webmerge?
-
Adarsh replied to the discussion Svg icon is not supported in internet explorer. How can we resolve this problem? in the forum Salesforce® Discussions 7 years ago
Reply to Svg icon is not supported in internet explorer. How can we resolve this problem?
Hi Amresh,
This is not a Lightning issue, but a browser compatibility issue. IE 9-11 does not support external resources for svgs (e.g. the use tag with an xlink:href), so writing this inline is the best option. There are some really nasty hacks available online, such as This,
Note: SVG components are not visible to community users as… Read more
-
Adarsh replied to the discussion Can we use mixed sobjects dml in one transaction? in the forum Salesforce® Discussions 7 years ago
Reply to Can we use mixed sobjects dml in one transaction?
Hi Ankit,
You can use external ID fields as foreign keys to create parent and child records of different sObject types in a single step instead of creating the parent record first, querying its ID, and then creating the child record.
...
You can create related records that are up to 10 levels deep. Also, the related records created in a… Read more
-
Adarsh replied to the discussion How is schedule apex different from batch apex? in the forum Salesforce® Discussions 7 years ago
Reply to How is schedule apex different from batch apex?
Hi Ankit,
To use batch Apex, write an Apex class that implements the Salesforce-provided interface Database.Batchable and then invoke the class programmatically.To monitor or stop the execution of the batch Apex job, from Setup, enter Apex Jobs in the Quick Find box, then select Apex Jobs.
Salesforce schedules the class for execution at the… Read more
-
Adarsh replied to the discussion What is the role of Scope parameter in Salesforce Batch Apex in the forum Salesforce® Discussions 7 years ago
Reply to What is the role of Scope parameter in Salesforce Batch Apex
Hi Ankit,
Batch Apex
A Batch class allows you to define a single job that can be broken up into manageable chunks that will be processed separately.When to use Batch Apex
One example is if you need to make a field update to every Account in your organization. If you have 10,001 Account records in your org, this is impossible without some way… Read more -
Adarsh replied to the discussion Can we set 'Send Email From' functionality to processed a document in Nintex or conga? in the forum Salesforce® Discussions 7 years ago
Reply to Can we set 'Send Email From' functionality to processed a document in Nintex or conga?
Hi neha,
Only in webmerge you can use a merge field for 'Send Email From' to make it dynamic.
-
Adarsh replied to the discussion Is there any 'Document generated System' which processed 'Output type Options' as JPEG Image? in the forum Salesforce® Discussions 7 years ago
here all Output type Options available in following document generated system.
Nintex- PDF or Same as a template
Conga - Default-PDF, Can modify with Parameters
Webmerge - PDF, MS Word, MS Excel, HTML, Email, JPEG Image
-
Adarsh replied to the discussion what are system objects in salesforce? in the forum Salesforce® Discussions 7 years ago
Reply to what are system objects in salesforce?
Hi,
Standard objects are objects that are included with Salesforce. Common business objects like Account, Contact, Lead, and Opportunity are all standard objects.
-
Adarsh replied to the discussion what is Salesforce Architecture ? in the forum Salesforce® Discussions 7 years ago
Reply to what is Salesforce Architecture ?
The architecture of Salesforce can be put into layers for better understanding. The purpose and function of each layer is described below −
Trusted Multitenant Cloud
Here multiple instances of one or multiple applications operate independently in a shared environment. The instances are referred as tenants and they logically separate from each… Read more -
Adarsh replied to the discussion Is it possible to create community user through Salesforce Apex? in the forum Salesforce® Discussions 7 years ago
Reply to Is it possible to create community user through Salesforce Apex?
Hi Neha,
Yes, you may use this method to accomplish it.
public List<string> generateAliasAndNickName(string strToBeGenerated){
if(strToBeGenerated !='' && strToBeGenerated.contains('.')){
String[] arrSplitText = strToBeGenerated.split('.');
return arrSplitText;
}else if(strToBeGenerated !='' && !strToBeGenerated.contains('.')){
return… - Load More