Jade Global
CompanyForum Replies Created
-
Jade
MemberJanuary 29, 2019 at 5:44 am in reply to: Can auto response rule be created for email services in Salesforce?Auto -response rules are not supported for email service. You can try with writing a workflow rule on EmailMessage object. On incoming email, the workflow should fire and shoot out an email in response.
-
Jade
MemberJanuary 29, 2019 at 5:40 am in reply to: How to handle row locks in Salesforce Apex Batch Jobs?When a record is being updated or created, Salesforce puts a lock on that record to prevent another operation from updating the record at the same time and causing inconsistencies on the data.
These locks normally last for a few seconds and when the lock is released. If you are facing the same problem then please pay attention to the following concepts :
-
Jade
MemberJanuary 29, 2019 at 5:28 am in reply to: Explain Lightning App Customization Superbadge in Salesforce.Hi Asmit,
Please try creating a Summary report grouped by Volunteer Organization showing each organization's cumulative hours and no other columns and then try to run it.
-
Jade
MemberJanuary 21, 2019 at 5:49 am in reply to: What are Related list Quick Links in Salesforce?Hi,
This feature is available only for record pages in Lightning.
Users can customize the order of the quick links and exclude the ones they don't want from their personal settings by entering Customize My Pages in the Quick Find box, selecting Customize My Pages, then clicking the object.
More details: https://releasenotes.docs.salesforce.com/en-us/winter18/release-notes/rn_forcecom_lab_related_list_quick_links_comp.htm
- This reply was modified 5 years, 10 months ago by Jade.
-
You can reset it by clicking on = your name=>Personal=>Reset my Security token.
Please make sure that your email address is correct on your user record.
-
Jade
MemberJanuary 17, 2019 at 1:51 pm in reply to: List some standard indexed fields in salesforce.com?System generated fields are indexed by default in Salesforce like las modified, email or system date fields.
-
For more information: https://help.salesforce.com/articleView?id=admin_about_cfy.htm&type=5
-
Jade
MemberJanuary 16, 2019 at 8:03 am in reply to: What is Access at the Role Level in Salesforce?You can set up the access level for Opportunity, Case and Contact objects on role.
-
Jade
MemberJanuary 15, 2019 at 9:37 am in reply to: How to maintain uniqueness combining two populated field values in Salesforce without coding?You can also try to create a formula field and return a text field with concatenated value.
-
Jade
MemberJanuary 15, 2019 at 9:19 am in reply to: Which fields can't be added as a custom Index in Salesforce?A Custom Index can't be created on these types of fields:
Multi-select Picklists.
Currency fields in a Multicurrency Organization.
Long text fields.
Binary fields (fields of type blob, file, or encrypted text).For more details, check out : https://help.salesforce.com/articleView?id=000006007&type=1
-
Jade
MemberJanuary 11, 2019 at 9:54 am in reply to: how to implement pagination and columns sorting in Salesforce Visualforce Component?If you are doing it in visualforce Page, you can simply use open source javascript bundle like JQuery DataTable or BootStrap Table, these will provide you everything that you are looking for out of the box.
Hope this will be helpful.
Thanks
-
Jade
MemberJanuary 11, 2019 at 8:35 am in reply to: State ways to get the field value of components to Salesforce VF page through JavaScript?Hi Bharat,
Give the field an Id, ultimately the whole Visualforce which will have a visualforce component will be rendered as an HTML. Use JavaScript or JQuery to get the value of the field using the ID.
Javascript:
document.getElementById('yourTagID').value;
JQuery:
$('#youTagId').val();
Hope this will be helpful.
Thanks
-
Jade
MemberJanuary 11, 2019 at 7:48 am in reply to: How Can I Insert, Update the Account Records from Salesforce Vf page using Remote actions?Hi Mallesh,
Definitely you can Update and Insert Account or any object Record using JavaScript Remoting.
check the below code:
//This is a javaScript Remoting function, you can use it to update/Insert Account <script type="text/javascript"> function getRemoteAccount() { var account = {!accRec}; //Initialize an account in your controller like, Account accRec{get;set;} //Then set the values of this from your page Visualforce.remoting.Manager.invokeAction( '{!$RemoteAction.MyController.updateAccount}', accRec, function(result, event){ if (event.status) { //Even account get updated, you will get the values in "result" } else if (event.type === 'exception') { document.getElementById("responseErrors").innerHTML = event.message; } else { document.getElementById("responseErrors").innerHTML = event.message; } }, {escape: true} ); } </script> Apex: In apex you can have this method. @RemoteAction Public Static void updateAccount(Account acc){ if(acc != null){ try{ update acc; }catch(DMLException de){ System.debug('DML Exception'); } } } Hope this will be helpful!!! Thanks
-
Jade
MemberJanuary 9, 2019 at 6:33 am in reply to: How to Create a Scheduler to mail Opportunity Owner, if not modified for last 30 days in Salesforce?Time based workflow/process builder should also serve the purpose here.
Create a workflow and in the entry criteria check last modified date was updated or not. If not then trigger a mail.
Note : This will not work with everytime record is created or edited criteria.
-
Jade
MemberJanuary 9, 2019 at 6:13 am in reply to: What is Difference between “Printable View” and “Export Details” button on Salesforce Report?Apart from formatting and grouping, there are few other important differences between "Printable View" and "Export Details" in Reporting.
Please find the link to Salesforce article below:
-
Hi Bharat,
We have various tags like <apex:pageBlockTable>, <apex:DataTable> to create table in VF page.
Please find more details at: https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_quick_start_iteration_components.htm
-
Jade
MemberJanuary 8, 2019 at 7:33 am in reply to: How we can control Chatter email settings while creating or updating users using Data Loader in Salesforce?If you want to block emails on user creation as well, then set up Email Deliverability to "No Access".
Once done with data operation then you can revert it.
-
Jade
MemberJanuary 8, 2019 at 7:32 am in reply to: How we can perform crud operation in Salesforce Lightning?Lightning components don’t automatically enforce CRUD and FLS when you reference objects or retrieve the objects from an Apex controller. You will have to take care of it in your logic.
you must explicitly check for isAccessible(), isCreateable(), isDeletable(), and isUpdateable() prior to performing operations on records or objects.
Check out this :https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/apex_crud_fls.htm
-
Jade
MemberJanuary 8, 2019 at 7:29 am in reply to: how we can implement stack class in Salesforce Apex.Did you check out this article: http://tech-nugget.blogspot.com/2013/10/implementing-stack-in-apex.html
Credits: Tech Nugget
-
Please check out this link : https://automate.io/integration/instagram/salesforce
-
Jade
MemberDecember 28, 2018 at 6:48 am in reply to: What if no Role is assigned to a User in salesforce?If you don't assign a role to a user then Sharing Setting will be driven based on OWD and Sharing rules. One more point to notice is that the profile is mandatory while creating a user, not the role.
-
Jade
MemberDecember 28, 2018 at 6:41 am in reply to: Why does the site created in Salesforce does not show globally?Did you check public access settings?
Please refer this : https://help.salesforce.com/articleView?id=sites_public_access_settings.htm&type=5
-
Jade
MemberDecember 28, 2018 at 6:39 am in reply to: What is the difference between deactivate a user and freeze a user in Salesforce?If you don't want the user to login into Salesforce then just go ahead and freeze that user or if that user is not using Salesforce instance anymore then you can deactivate that user.
One point to consider here: Deactivating the user frees up the license which can be used by another user but in case if you freeze the user then the license is still being used.
-
Jade
MemberDecember 24, 2018 at 8:58 am in reply to: What Precautions should be taken for Changing data type in Salesforce?In this scenario, there could be data loss which depends on the field type.
Please check: https://help.salesforce.com/articleView?id=notes_on_changing_custom_field_types.htm&type=5
-
Jade
MemberDecember 20, 2018 at 6:55 am in reply to: Is there any certification for Salesforce Lightning?Salesforce lightning features are covered under the platform.
You can plan for platform developer level 1 and level 2 to master lightning development,