184 ViewsIdentifying your record access requirements is an essential step that you should do before procuring user licenses or setting up your community for the following reasons: 1) Sharing options in Communities are affected by the type of Community user licenses you
Read More
164 ViewsFiles uploaded via this related list will only be visible to internal users, and this field is not editable. One thing you can do is post the file to the record via the Chatter publisher, and specify the visibility in your
Read More
50 ViewsHistorically, fully vetting object- and field-level security compliance in Apex code has required using verbose and potentially complex checks on all fields that are included in a query. This can lead to code duplication and additional maintenance work to ensure code
Read More
100 ViewsOn conversion of Lead following is the order of execution of triggers of Account, Opportunity, Contact and Lead: 1) Account Before Trigger 2) Account After Trigger 3) Opportunity Before Trigger 4) Opportunity After Trigger 5) Contact Before Trigger 6) Contact After
Read More
49 ViewsFaced a strange issue with copying/cloning Journey Builder in Marketing Cloud. When trying to copy an existing Journey into a new one, it shows “Success” message but the Journey doesn’t actually gets created. I tried to refresh & re-login several times
Read More
37 ViewsThe Id Field Type is a base-62 encoded string. Each character can be one of 62 possible values: a lowercase letter (a-z) – 26 values an uppercase letter (A-Z) – 26 values a numeric digit (0-9) – 10 values As there
Read More
37 ViewsFollowing is the code for making REST API Calls for GET/POST: OUTPUT:GET – call following URL in workbench rest explorer”https://instance.salesforce.com/services/apexrest/Account/accountId”POST -“https://instance.salesforce.com/services/apexrest/Account/”
49 ViewsUsing @future method in salesforce and its limitations Salesforce provides different ways to run your code asynchronously like Batch apex, @future method. In this post we will see how to use @future method, its advantages, limitations and the precautions that we
Read More
36 ViewsFollowing code can be used for sending a vf page as an attachment with an email: Here: 1) mail_pdf is the visualforce page that we want to use as attachment and 2) email is a pre-acquired Email-ID from user to which
Read More
44 ViewsHere is the method using which you can create custom Unsubscribe page for your Emails. You need to follow below steps:1. Create Classic Cloud page (HTML).2. Then you need to include below ampscript code in it: 3. Add Unsubscribe page link
Read More