
Jade Global
Company-
Jade updated their profile 5 years ago
-
Jade updated their profile 5 years ago
-
Jade replied to the discussion What are best CRM platforms to use apart from Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to What are best CRM platforms to use apart from Salesforce?
There are multiple CRM platforms available now a days, to name them a few :
- Salesforce
- Microsoft CRM
- Zoho
- Sugar CRM
- Netsuite
-
Jade replied to the discussion Explain Custom Settings With the Help of Vf Page and Apex Class in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to Explain Custom Settings With the Help of Vf Page and Apex Class in Salesforce?
Custom settings are like custom objects and in Salesforce there are two types of custom settings available :
- List Custom Settings
- Hierarchical Custom Settings
Please follow this article for more details.
Link : https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_customsettings.htm
-
Jade replied to the discussion How to Call Dataloader Automatically in Salesforce Admin? in the forum Salesforce® Discussions 6 years ago
Reply to How to Call Dataloader Automatically in Salesforce Admin?
You can do it from the command line.
Please check : https://developer.salesforce.com/docs/atlas.en-us.dataLoader.meta/dataLoader/command_line_intro.htm
-
Jade replied to the discussion How to Write Salesforce Triggers for this Scenario? in the forum Salesforce® Discussions 6 years ago
-
Jade replied to the discussion How to Write Salesforce Triggers for this Scenario? in the forum Salesforce® Discussions 6 years ago
Reply to How to Write Salesforce Triggers for this Scenario?
Hi Pavan,
Above was a rough code to achieve the requirement.. Although that will also work in every scenario.
Please find more optimized code for the same -
public class ContactTriggerHelper { /* *call this method on before Insert and before upate of Contact * before insert - * Parameters - Trigger.New, null * *…
-
Jade replied to the discussion How to Write Salesforce Triggers for this Scenario? in the forum Salesforce® Discussions 6 years ago
Reply to How to Write Salesforce Triggers for this Scenario?
Hi Pavan,
You can achieve it in before Insert and before update of the contact.
PFB the code for the same -
public class ContactTriggerHelper { /* *call this method on before Insert and before upate of Contact * before insert - * Parameters - Trigger.New, null * * before update - * Parameters -…
-
Jade replied to the discussion What is Community Theming in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to What is Community Theming in Salesforce?
There are some prebuilt themes already available in Salesforce for the community. You can always customize and change the branding as per your business needs.
Please check out available features here: Salesforce Community
-
Jade replied to the discussion what values will be displayed in Trigger.new for the below Salesforce Events? in the forum Salesforce® Discussions 6 years ago
Reply to what values will be displayed in Trigger.new for the below Salesforce Events?
Please check out this article for trigger context variables: https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_triggers_context_variables.htm
-
Jade replied to the discussion what values will be displayed in Trigger.new for the below Salesforce Events? in the forum Salesforce® Discussions 6 years ago
Reply to what values will be displayed in Trigger.new for the below Salesforce Events?
Please check out this article for trigger context variables :https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_triggers_context_variables.htm
-
Jade replied to the discussion How to Configure Microsoft office outlook and Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to How to Configure Microsoft office outlook and Salesforce?
Please refer this article : https://help.salesforce.com/articleView?id=app_for_outlook_overview.htm&type=5
-
Jade replied to the discussion How to Create Quotes in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to How to Create Quotes in Salesforce?
You can use the quote standard object in Salesforce and generate documents.
Please let us know how do you want to automate the process.
-
Jade replied to the discussion How to link Task to Case in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to How to link Task to Case in Salesforce?
Hi Promila,
What is the issue that you see with case?
By populating " related to" field you should be able to link a task with case.
-
Jade replied to the discussion How to link Task to Case in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to How to link Task to Case in Salesforce?
Hi Promila,
What is the issue that you see with case?
By populating " related to" field you should be able to link a task with case.
-
Jade replied to the discussion What to do if Salesforce Trigger is not working as expected? in the forum Salesforce® Discussions 6 years ago
Reply to What to do if Salesforce Trigger is not working as expected?
Triggers should be written in bulkified manner. Setup some debug logs and try to understand the flow of apex trigger along with the events.
-
Jade replied to the discussion Explain Web Server Authentication Flow Implementation in Salesforce. in the forum Salesforce® Discussions 6 years ago
Reply to Explain Web Server Authentication Flow Implementation in Salesforce.
It seems like there is some problem with your connected app settings.
Can you please try with a fresh token ?
-
Jade posted a new blog 6 years ago
Close Case Button in Lightning Experience - WorkaroundIf you have Used Cases in Salesforce, I am sure you’re aware of the Closed Case layout. This is great, it lets you require the fields that must be filled out before a User can close a Case. You might have…
-
Jade replied to the discussion How can we build account hierarchy model using Salesforce Lightning Component? in the forum Salesforce® Discussions 6 years ago
Reply to How can we build account hierarchy model using Salesforce Lightning Component?
That's tricky and you will have to play with lightning: tree attribute.
Resources: https://developer.salesforce.com/docs/component-library/bundle/lightning:tree/examples
-
Jade replied to the discussion For what purpose do we use Debug Logs in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to For what purpose do we use Debug Logs in Salesforce?
In order to debug and understand the flow of automated processes in user perspective with system context.
You can debug Apex classes, Apex triggers, workflows, approval process and also define configure trace flags and debug levels.
Please… Read more
- Load More