Deepak
IndividualForum Replies Created
-
Deepak
MemberOctober 27, 2020 at 3:07 pm in reply to: How can sales and marketing work together to generate leads in Salesforce?When your marketing and sales teams work together, your business can close more deals in less time by focusing your efforts on your best opportunities. Sales teams receive better-qualified leads and will be able to better qualify these leads themselves.
-
WFM adapter for Salesforce enables managers to see contact center agents and Salesforce users together in a single workforce management system.
-
Deepak
MemberOctober 23, 2020 at 5:41 am in reply to: What is shield platform encryption in Salesforce?Shield Platform Encryption helps to control and rotate the key material used to encrypt your data. You can use Salesforce to generate a tenant secret for you, which is then combined with a per-release master secret to derive a data encryption key.
-
Deepak
MemberOctober 23, 2020 at 5:40 am in reply to: What do the AWS services in the Compute category do?Amazon web service that provides secure, resizable compute capacity in the cloud. It is designed to make web-scale computing easier for developers.
-
Deepak
MemberOctober 23, 2020 at 5:37 am in reply to: Which tool enables you to manage services through a graphical user interface?The AWS Management Console is a graphical interface used to interact with AWS services and features. You can manage all aspects of AWS services.
-
Deepak
MemberOctober 22, 2020 at 5:59 am in reply to: Can we update parent record with workflow field update?We can update a field on a parent record by creating a field update action for a workflow rule created on a child record. With a many-to-many relationship object, you can update fields on either parent.
-
You can restrict access to Salesforce to only those IPs in Login IP Ranges. To enable this option, in Setup, enter Session Settings in the Quick Find box, then select Session Settings and select Enforce login IP ranges on every request.
-
Deepak
MemberOctober 22, 2020 at 5:56 am in reply to: Is it possible to skip steps in approval process?Yes, it is possible in Approval Process that have steps that are optional depending on criteria, use the skip step feature.
-
Deepak
MemberOctober 21, 2020 at 2:54 pm in reply to: How Shield Platform Encryption Works in Salesforce ?Shield Platform Encryption lets you control and rotate the key material used to encrypt your data.
-
Deepak
MemberOctober 21, 2020 at 2:51 pm in reply to: What is Shield Platform Encryption in Salesforce ?Shield Platform Encryption lets you control and rotate the key material used to encrypt your data.
-
The platform encryption process uses symmetric key encryption and a 256-bit Advanced Encryption Standard algorithm using CBC mode, and a randomized, 128-bit initialization vector (IV) to encrypt field-level data and files stored on the Salesforce Platform.
-
Deepak
MemberOctober 20, 2020 at 5:09 pm in reply to: How a developer can invoke SOAP web services in Apex in Salesforce?Developer can invoke SOAP web services in Apex by following steps:
1. Making your Apex class available as a SOAP web service is as easy as with REST.
2.Define your class as global.
3. Add the webservice keyword and the static definition modifier to each method you want to expose.
4. The webservice keyword provides global access to the method it is added to. -
SaaS uses Multi-tenant deployment model.
-
Deepak
MemberOctober 20, 2020 at 5:01 pm in reply to: When to use encryptWithManagedIV() method in apex ?You will use the encryptWithManagedIV method if you want Salesforce to generate the initialization vector for you. It is stored as the first 128 bits (16 bytes) of the encrypted Blob.
-
Deepak
MemberOctober 20, 2020 at 4:59 pm in reply to: What is the use of decryptWithManagedIV() method in apex ?It is used to decrypt the blob IVAndCipherText using the specific algorithm and private key.
-
Deepak
MemberOctober 19, 2020 at 4:23 pm in reply to: Is There Any Limit On How Many Components To Have In One Application?I think there is no limit.
-
Deepak
MemberOctober 19, 2020 at 1:03 pm in reply to: How to enable lightning components to the lightning application in Salesforce?Hi Anjali,
To enable lightning component in lightning application you can use
<c:NameofLightningComponent/> in lightning application. -
Deepak
MemberOctober 16, 2020 at 1:22 pm in reply to: How to show encrypted fields in vf page in Salesforce?Encrypted fields that are embedded in the <apex:outputText> component display in clear text. The <apex:outputText> component doesn't respect the View Encrypted Data permission for users.
-
Deepak
MemberOctober 16, 2020 at 1:21 pm in reply to: Are encrypted fields in vf page are not masked in Salesforce?Encrypted field data is not always masked. Encrypted field data is masked if the Apex request originates from an Apex Web service, a trigger, a workflow, an inline Visualforce page or a Visualforce email template.
-
Deepak
MemberOctober 16, 2020 at 1:17 pm in reply to: How do I add the lightning:empApi Lightning component in Salesforce?Add the lightning:empApi inside your custom component and also you can assign aura:id.
<lightning:empApi aura:id="empApi"/> -
Deepak
MemberOctober 15, 2020 at 1:37 pm in reply to: What is the use of substringBefore('~') in Salesforce?Returns the substring that occurs before the first occurrence of the specified separator.
-
Deepak
MemberOctober 15, 2020 at 1:35 pm in reply to: How to get current record id in lightning component?Use force:hasRecordId in Lightning Component.
-
Deepak
MemberOctober 15, 2020 at 1:31 pm in reply to: Which profile can view encrypted data by default in Salesforce?Profile which has View Encrypted Data permission can see encrypted fields and by default this permission is not given to any profile.
-
Deepak
MemberOctober 14, 2020 at 3:35 pm in reply to: What is the use of SubStringAfter(' ') in Salesforce?SubStringAfter('') is used to find substring of a string, after particular character in Apex.
-
Deepak
MemberOctober 14, 2020 at 3:32 pm in reply to: What is the use of codePointAt(index) method in Salesforce?It returns the Unicode code point value at the specified index.