Forum Replies Created

Page 9 of 24
  • Shweta

    Member
    September 4, 2020 at 2:32 pm in reply to: What is custom notification in Salesforce?

    Custom notifications: It allows you to send important information to your users via push to mobile or desktop alerts. we can fully customize the notifications to inform users of record information, changes, and updates. It will bring relevant information to your users at the right time

  • Shweta

    Member
    September 3, 2020 at 6:26 pm in reply to: What is Safe Navigation Operator in Salesforce ?

    Safe Navigation Operator: It is very useful for Salesforce Developers, and it will make their lives easy. By using this operator we can avoid null pointer exceptions.

  • Shweta

    Member
    September 3, 2020 at 6:22 pm in reply to: What is the use of database.deleteImmediate() method in Salesforce ?

    deleteImmediate(): This method initiates requests to delete the external data that corresponds to the specified external object records. The requests are executed synchronously and are sent to the external systems that are defined by the external objects' associated external data sources.

  • Shweta

    Member
    September 3, 2020 at 6:11 pm in reply to: What is the use of @namespaceAccessible Annotation in Salesforce ?

    @namespaceAccessible: This annotation makes public Apex in a package available to other packages that use the same namespace. Without this annotation, Apex classes, methods, interfaces, and properties defined in a 2GP package aren’t accessible to the other packages with which they share a namespace.

  • Shweta

    Member
    September 1, 2020 at 4:21 pm in reply to: What is external data source?

    An external data source is a connection to an external database. With the help of external data sources to access data that's stored outside your Salesforce org. External data sources have associated external objects, which your users and the Lightning platform use to interact with the external data and content.

  • Shweta

    Member
    September 1, 2020 at 4:16 pm in reply to: What is System Data Sources in Salesforce ?

    System data sources represent data structures created by default within Marketing Cloud. Listed data sources vary depending on the functionality that is enabled for your account.

  • Shweta

    Member
    September 1, 2020 at 4:14 pm in reply to: What is Files connect Salesforce?

    Files Connect can be used for integration with these repositories (Box, OneDrive, and Google Drive), which makes document management more flexible. It allows users to search and work with SharePoint files within the Salesforce UI while preserving all content permissions.

  • Shweta

    Member
    August 31, 2020 at 3:46 pm in reply to: what is purpose of using string.join() in apex?

    string.join(): It is used to join the elements of the specified iterable object, such as a List, into a single string separated by the specified separator.

  • Shweta

    Member
    August 31, 2020 at 3:41 pm in reply to: How to test scheduler class in Salesforce?

    Test method for the scheduler class
    Example: public static testMethod void testSchedulerclass(){
    Test.StartTest();
    ScheduleTerritoryInactiveMemberCheck sh1 = new ScheduleTerritoryInactiveMemberCheck();
    String sch = '0 0 23 * * ?';
    system.schedule('Test Territory Check', sch, sh1);
    Test.stopTest();
    }

  • Application Events: This event can be handled by any component which is listening to it. It is a kind of publish-subscribe modal. It is used to communicate any change in the component to a broader audience. Any component who has registered for this event will get notified.
    System Event: This event is automatically by the framework such as during component initialization, attribute value change, rendering, etc. All Components can register for system events in their HTML markup.

  • Shweta

    Member
    August 28, 2020 at 3:16 pm in reply to: What is the use of LockResult Class in Salesforce ?

    In the lockresult class, System.Approval.lock() methods return Approval.LockResult objects. Each element in a LockResult array corresponds to an element in the ID or sObject array passed as a parameter to a lock method. The first element in the LockResult array corresponds to the first element in the ID or sObject array, the second element corresponds to the second element, and so on. If only one ID or sObject is passed in, the LockResult array contains a single element.

  • showHelpMessageIfInvalid(): this function will check if the element is valid. If not, it will show the help message and the red border to highlight the field is invalid.

  • Shweta

    Member
    August 28, 2020 at 3:08 pm in reply to: What are external objects in Salesforce?

    External Object is a kind of virtual object which does not exist in your Org. It is a custom object like other custom objects we can use in visualforce, apex, soql, sosl, and custom tabs.

  • <apex:inputText/> : It always renders a normal text field. It can be bound to an SObject field or a regular variable of any data type that can be coerced into text, including numbers. It can be bound to an SObject field or a regular variable of any data type that can be coerced into text, including numbers.
    <apex:inputField/>: It can't be used on non-SObject variables and automatically renders the correct control based on the field's definition. If the user cannot edit that field because of FLS, then the inputfield instead renders as a read-only outputField.

  • Shweta

    Member
    August 27, 2020 at 3:23 pm in reply to: How do I remove special characters from a string in Salesforce?

    We can revome all the special charaters from the string in apex by using .replaceAll().
    example:
    string testString = 'Welcome - %% to !!@@* Sales ##force^&';
    testString = testString .replaceAll('[^a-zA-Z0-9\\s+]', '');

  • Shweta

    Member
    August 27, 2020 at 2:39 pm in reply to: What is the use of virtual keyword for a class in Salesforce?

    We can use a virtual keyword to indicates that this class can be extended and overrides are allowed. If the methods need to be overridden, then the classes should be declared with the virtual keyword.

  • Shweta

    Member
    August 26, 2020 at 4:14 pm in reply to: Explain me about Export and Export all in Data Loader in Salesforce?

    Export: When we use the Export button for any object in Salesforce, all records (excluding records present in the recycle bin) present in the system for the particular object are exported to a .csv file.
    Export All: When we can use this button, all records (including records present in the recycle bin) for that particular object are exported to a .csv file.

  • Shweta

    Member
    August 26, 2020 at 4:09 pm in reply to: How do you unlock records in Salesforce?

    We can unlock the records by enabling the apex code to set and remove the approval process lock.
    Follow these step to unlock record:
    1. Go to SetUp -> enter process automation settings in quick find box -> select the 'process automation settings ' -> Click on the checkbox to 'Enable record locking and unlocking in Apex'.

  • Shweta

    Member
    August 26, 2020 at 2:54 pm in reply to: What is recall actions in approval process in Salesforce?

    Recall Action: It occurs when a submitted approval request is recalled by default the record is unlocked. record locking prevents users from editing a record by default, salesforce locks records that are pending approval. Only the admin can edit the locked record.

  • Shweta

    Member
    August 25, 2020 at 4:08 pm in reply to: what is lightning flow in salesforce?

    Lightning Flow: It provides declarative process automation for every salesforce app, experience, and portal with point and clicks automation tools: process builder and flow builder.

  • Shweta

    Member
    August 25, 2020 at 4:03 pm in reply to: What is Sandbox template in Salesforce?

    Sandbox Template: It gives you the ability to keep sensitive data from a full sandbox. it controls the size of a full sandbox. Smaller sandboxes are created and refreshed more quickly than large ones. Sandbox template maintains multiple, reusable templates for different use cases and development teams.

  • Shweta

    Member
    August 25, 2020 at 3:54 pm in reply to: What is Canvas in Salesforce ?

    Canvas: It is a set of tools and javascript APIs that you can use to expose an application as a canvas app. It enables you to easily integrate a 3rd party application in Salesforce.

  • Shweta

    Member
    August 24, 2020 at 5:11 pm in reply to: What is database.stateful in salesforce?

    Database.stateful: We know that, batch apex is stateless by default. it means for each execution of execute method, you receive a fresh copy of your object. And all fields of the class are initialized, static and instance.

  • Shweta

    Member
    August 24, 2020 at 4:56 pm in reply to: Whsta is API in salesforce?

    API: It stands for Application Program Interface. It is a way for other applications to programmatically access data within Salesforce org in a secure manner. In Salesforce, API is used to retrieve data from other systems or services.

  • Shweta

    Member
    August 24, 2020 at 4:39 pm in reply to: What is a bucket field in reports in Salesforce ?

    Bucket Field: In Salesforce Reports, It is used to quickly categorize values for a field in a report without the need to have a custom formula field at the object level. Bucket field is available in tabular reports, summary reports, and matrix reports.

Page 9 of 24