Marziya Sarwar
IndividualForum Replies Created
-
We use your data encryption key to encrypt data that your users put into Salesforce, and to decrypt data when your authorized users need it. An encryption policy is your plan for encrypting data with Shield Platform Encryption.
-
- Make sure that your org has an active encryption key. ...
- From Setup, in the Quick Find box, enter Platform Encryption , and then select Encryption Policy.
- Click Encrypt Fields.
- Click Edit.
- Select the fields you want to encrypt. ...
- Click Save.
-
Marziya
MemberJuly 23, 2020 at 2:17 pm in reply to: What is the difference between lightning base and ui component in Salesforce?The lightning namespace components are optimized for common use cases. Beyond being equipped with the Lightning Design System styling, they handle accessibility, real-time interaction, and enhanced error messages. The ui namespace components are being retired and won't be supported beyond Summer 21.
-
Create Custom Exceptions. You can't throw built-in Apex exceptions. ... But with custom exceptions, you can throw and catch them in your methods. Custom exceptions enable you to specify detailed error messages and have more custom error handling in your catch blocks.
-
Marziya
MemberJuly 22, 2020 at 2:18 pm in reply to: What is the maximum file size for UI upload in Salesforce?The default limit is 25MB. Support can increase the limit up to 65MB. Attachments larger than 36MB can be attached only via User Interface.
-
Salesforce Analytics Query Language (SAQL) Use SAQL to access data in Analytics datasets. Analytics uses SAQL behind the scenes in lenses and dashboards to gather data for visualizations.
-
Marziya
MemberJuly 21, 2020 at 2:22 pm in reply to: What is database getQueryLocator in Salesforce?database. getQueryLocator in Salesforce returns a Query Locator that runs your selected SOQL query returning list that can be iterated over in batch apex or used for displaying large sets in VF (allowing things such as pagination).
-
Audit Fields in Salesforce are special fields that track information about your records that can be valuable for audit purposes.
- This reply was modified 4 years, 3 months ago by Marziya.
-
StandardSetController allows us to create list controllers similar to, or as extensions of, the pre-built Visualforce list controllers provided by Salesforce.
-
Marziya
MemberJuly 21, 2020 at 2:15 pm in reply to: How to customize lead conversion in Salesforce?From the object management settings for leads, go to the fields section, then click Map Lead Fields. For each custom lead field, choose a custom account, contact, or opportunity field into which you want the information inserted when you convert a lead.
-
they are typically used by social media platforms to deliver media content such as audio and data. Typically Social Networks tend to use WebSocket, which is a subset of Streaming APIS.
-
Marziya
MemberJuly 20, 2020 at 2:12 pm in reply to: How can we delete Streaming API Push Topics in salesforce?- Reducing the changes being made to the object in Salesforce, if possible, and then.
- Using a tool such as Workbench, the Developer Console, or your own direct API requests to delete the PushTopic . The SOQL query to locate the PushTopic is SELECT Id FROM PushTopic WHERE Name='hc_XXXX' .
-
A PushTopic is an sObject that contains the criteria of events you want to listen to, such as data changes for a particular object.
-
CometD is a scalable HTTP-based event routing bus that uses an AJAX push technology pattern known as Comet.
-
User permissions control access to different tasks in Salesforce Knowledge. By default, all internal users with Read permission can read published articles. ... For example, you can create a permission set named Article Manager that includes the permissions to create, edit, publish, and assign articles.
-
<div data-md="61" lang="en-IN"><div aria-level="3" role="heading" data-attrid="wa:/description" data-hveid="CAwQAw">you create an AppExchange listing, which is the primary way customers discover apps, components, and services to enhance their Salesforce experience. After your package uploads, click the link to publish on the AppExchange. You are directed to the Listings tab on the Publishing page.
<div><div data-hveid="CAwQBA" data-ved="2ahUKEwiQ4PbauNTqAhXkxjgGHX8_ByoQFSgCMAJ6BAgMEAQ">
</div></div></div></div> -
Marziya
MemberJuly 16, 2020 at 3:57 pm in reply to: What is the max length of Alias to create an User in Salesforce?8 character
-
Marziya
MemberJuly 16, 2020 at 3:56 pm in reply to: What is the maximum length of character to create a apex class100,000 chars per class, and 1MB total for all classes.
-
Marziya
MemberJuly 16, 2020 at 3:55 pm in reply to: What is the benefit of using @isTestSetup instead of @isTest in SalesforceFor Apex code saved using Salesforce API version 24.0 and later, use the @isTest(SeeAllData=true) annotation to grant test classes and individual test methods access to all data in the organization. ... The @isTest(SeeAllData=true) annotation is used to open up data access when applied at the class or method level.
-
The Blob is a collection of Binary data which is stored as object. This will be used when we want to store the attachment in salesforce into a variable. ... If the blob is to be converted into a string, then we can make use of the toString and the valueOf methods for the same.
-
Use the ContentDocument object to retrieve, query, update, and delete the latest version of a document, but not a content pack, in a library or a Salesforce file. You cannot insert ContentDocument directly, As soon as you insert ContentVersion, a ContentDocument get inserted behind the scene.
-
Marziya
MemberJuly 15, 2020 at 1:30 pm in reply to: Is it possible to insert Custom setting object in Salesforce testing?Custom settings are nothing but an object . All you need in Test Class is instantiate the custom settings object and create the records of the custom settings and insert it in Test class itself. Make sure you bulkify your insert call.
-
The app, dataflows and datasets, and dashboards
-
Marziya
MemberJuly 14, 2020 at 2:51 pm in reply to: Where is sObject collection used in flows in salesforce?After you create a collection variable, populate it with values to reference throughout your flow. You can’t use a Get Records element to populate a collection variable, but there are some workarounds.