Forum Replies Created

Page 9 of 21
  • Marziya

    Member
    July 24, 2020 at 1:57 pm in reply to: What is the use encrypting data in Salesforce?

    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.

  • Marziya

    Member
    July 23, 2020 at 2:21 pm in reply to: Can we use SOSL in Salesforce triggers?

    No

  • Marziya

    Member
    July 23, 2020 at 2:18 pm in reply to: How to encrypt data in Salesforce?
    1. Make sure that your org has an active encryption key. ...
    2. From Setup, in the Quick Find box, enter Platform Encryption , and then select Encryption Policy.
    3. Click Encrypt Fields.
    4. Click Edit.
    5. Select the fields you want to encrypt. ...
    6. Click Save.
  • 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.

  • Marziya

    Member
    July 22, 2020 at 2:19 pm in reply to: What is custom exception in apex?

    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

    Member
    July 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.

  • Marziya

    Member
    July 22, 2020 at 2:17 pm in reply to: What is SAQL? Where it is used in Salesforce?

    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

    Member
    July 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).

  • Marziya

    Member
    July 21, 2020 at 2:20 pm in reply to: What are Audit Fields in salesforce ?

    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, 2 months ago by  Marziya.
  • Marziya

    Member
    July 21, 2020 at 2:17 pm in reply to: What is standard set controller?

    StandardSetController allows us to create list controllers similar to, or as extensions of, the pre-built Visualforce list controllers provided by Salesforce.

  • Marziya

    Member
    July 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.

  • Marziya

    Member
    July 20, 2020 at 2:14 pm in reply to: What is streaming API?

    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

    Member
    July 20, 2020 at 2:12 pm in reply to: How can we delete Streaming API Push Topics in salesforce?
    1. Reducing the changes being made to the object in Salesforce, if possible, and then.
    2. 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' .
  • Marziya

    Member
    July 20, 2020 at 2:10 pm in reply to: What is push topics in Salesforce?

    A PushTopic is an sObject that contains the criteria of events you want to listen to, such as data changes for a particular object.

  • Marziya

    Member
    July 17, 2020 at 2:00 pm in reply to: What is CometD in Salesforce ?

    CometD is a scalable HTTP-based event routing bus that uses an AJAX push technology pattern known as Comet.

  • Marziya

    Member
    July 17, 2020 at 1:59 pm in reply to: What is Article Manager in Salesforce?

    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.

  • Marziya

    Member
    July 17, 2020 at 1:58 pm in reply to: What is Listing in AppExchange in Salesforce?

    <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

    Member
    July 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

    Member
    July 16, 2020 at 3:56 pm in reply to: What is the maximum length of character to create a apex class

    100,000 chars per class, and 1MB total for all classes.

  • For 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.

  • Marziya

    Member
    July 15, 2020 at 1:34 pm in reply to: What is blob in Salesforce?

    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.

  • Marziya

    Member
    July 15, 2020 at 1:33 pm in reply to: How to insert ContentDocument in Salesforce?

    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.

  • 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.

  • Marziya

    Member
    July 14, 2020 at 2:53 pm in reply to: App Template to create an app

    The app, dataflows and datasets, and dashboards

  • Marziya

    Member
    July 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.

Page 9 of 21