Forum Replies Created

Page 5 of 8
  • trigger

  • Search Results
    Featured snippet from the web
    No. Lightning Components used to require a namespace, but that is no longer a requirement.

  • Sumit

    Member
    May 27, 2020 at 11:54 am in reply to: How to fetch converted lead Ids in Salesforce?

    Search Results
    Featured snippet from the web
    Click the "Map Lead Fields" button on the Lead field setup page and map the 3 new fields on Lead to their respective fields on the Account, Contact and Opty. This way, whatever is in those lead fields will get copied to the new records created upon conversion.

  • Sumit

    Member
    May 26, 2020 at 12:50 pm in reply to: How to fetch last login history of users in Salesforce?

    From your personal settings, enter Login History in the Quick Find box, then select Login History. No results? ...
    To download a CSV file of your login history for the past six months, click Download.

  • Sumit

    Member
    May 26, 2020 at 12:48 pm in reply to: How to transfer leads in Salesforce?

    How to Transfer Leads in Salesforce
    From the Leads home page, select a view from which you can see some leads that you want to reassign. ...
    In the Action column of the lead list, select the check boxes to the left of the lead records that you want to assign to someone else.
    Click the Change Owner button at the top of the page.

  • Sumit

    Member
    May 26, 2020 at 12:47 pm in reply to: What are the system events in lightning in Salesforce?

    System events are fired automatically by the Lightning framework such as during component initialization, attribute value change, rendering etc. All Components can register for system events in their HTML markup.
    Examples of System EVent :-
    aura:doneRendering ,aura:doneWaiting etc

  • Sumit

    Member
    May 22, 2020 at 7:14 am in reply to: How do we use scratch orgs in Salesforce?

    To work with scratch orgs, you must first enable the Developer Hub (Dev Hub) in your production or business org. You then use the Salesforce DX command-line interface (CLI) to create scratch orgs. You have two ways of managing your scratch orgs: using CLI commands or the Salesforce graphical interface.

  • Lightning Tab" interface is required to display component in a tab.

  • Sumit

    Member
    May 22, 2020 at 7:02 am in reply to: What is Salesforce Dx in Salesforce?

    Salesforce DX include:
    Your tools, your way. With Salesforce DX, you use the developer tools you already know.
    The ability to apply best practices to software development. Source code and metadata exist outside of the org and provide more agility to develop Salesforce apps in a team environment. Instead of the org, your version control system is the source of truth.
    A powerful command-line interface (CLI) removes the complexity of working with your Salesforce org for development, continuous integration, and delivery.
    Flexible and configurable scratch orgs that you build for development and automated environments. This new type of org makes it easier to build your apps and packages.
    You can use any IDE or text editor you want with the CLI and externalized source.
    Salesforce Extensions for VS Code to accelerate app development. These tools provide features for working with scratch orgs, Apex, Lightning components, and Visualforce.

  • Sumit

    Member
    May 20, 2020 at 6:57 am in reply to: What is Relationship query limits in Salesforce?

    No more than 55 child-to-parent relationships can be specified in a query. A custom object allows up to 25 relationships, so you can reference all the child-to-parent relationships for a custom object in one query. No more than 20 parent-to-child relationships can be specified in a query.

  • Sumit

    Member
    May 20, 2020 at 6:55 am in reply to: What is Maximum RecentlyViewed records allowed in Salesforce?

    If this parameter is not specified, the default maximum number of records returned is the maximum number of entries in RecentlyViewed, which is 200 records per object. For an example of retrieving a list of recently viewed items, see View Recently Viewed Records.

  • 2,000 results.

  • Salesforce AppExchange is Salesforce.com's cloud computing marketplace through which end users can access, download and install software apps.
    The two main advantages of using AppExchange products are: You don't have to build any functionality from scratch. You can just download a pre-built solution, which is more secure and already tested by other users

  • Steps you need to follow:
    From Setup in Salesforce Classic, click Get Started in the Lightning Experience Transition Assistant tile at the top of the menu.
    Select the Roll Out phase.
    Click Launch Lightning Experience to expand the stage.
    Click Switch Users next to Make Lightning Experience the default interface.

  • Sumit

    Member
    May 18, 2020 at 5:50 am in reply to: What is the use of @InvocableVariable Annotation in Salesforce ?

    The InvocableVariable annotation identifies a class variable used as an input or output parameter for an InvocableMethod method's invocable action. The use of InvocableVariable annotation to identify variables used by invocable methods in custom classes.

  • Sumit

    Member
    May 18, 2020 at 5:49 am in reply to: What is the use of @InvocableMethod Annotation in Salesforce ?

    @Invocable Method annotation used to identify methods that can be run as invocable actions. Invocable methods are called with the REST API and used to invoke a single Apex method. Invocable methods have dynamic input and output values and support describe calls.

  • Sumit

    Member
    May 18, 2020 at 5:48 am in reply to: What are the Advantages Using Metadata API?

    Any customization created in the app includes metadata changes.This API lets you make metadata change directly from Apex.
    Suppose you support multiple orgs, & created a custom field.You can use this API to add new fields to the page layouts in all your orgs.

  • Sumit

    Member
    May 15, 2020 at 1:33 pm in reply to: How to fetch ProductLineItem Id for opportunity in Salesforce?

    List<Opportunity> oppWithItems = [Select Id, Name,
    (Select PricebookEntry.Product2Id FROM OpportunityLineItem) FROM Opportunity];

  • In Saleforce.com, the Opportunity, Product and Pricebook are standard objects. How are they related? In actual fact, an opportunity has one or more products and vice versa, a product can be prospected in one or more opportunities

    • This reply was modified 4 years, 8 months ago by  Sumit kumar.
  • Sumit

    Member
    May 15, 2020 at 1:30 pm in reply to: When to write trigger on approval process in Salesforce?

    In Saleforce.com, the Opportunity, Product and Pricebook are standard objects. How are they related? In actual fact, an opportunity has one or more products and vice versa, a product can be prospected in one or more opportunities.

  • Test Method Syntax
    The visibility of a test method doesn't matter, so declaring a test method as public or private doesn't make a difference as the testing framework is always able to access test methods. ... Test methods must be defined in test classes, which are classes annotated with isTest .

  • Sumit

    Member
    May 14, 2020 at 6:42 am in reply to: How to remove an error of invalid api version:0.0 in Salesforce?

    You may try doing this:
    Copy your Class code to notepad.
    Switch to a new workspace (if you only have the default, create another one)
    Switch Back to the workspace you were working on.
    Copy your notepad saved code to the class.
    Try to save your code again.

  • Sumit

    Member
    May 14, 2020 at 6:41 am in reply to: When to use PanelGrid on the Visualforce page?

    It renders an HTML table element in which each component found in the body of the <apex:panelGrid> is placed into a corresponding cell in the first row until the number of columns is reached. At that point, the next component wraps to the next row and is placed in the first cell.

  • Sumit

    Member
    May 13, 2020 at 1:03 pm in reply to: How do I delete a custom domain in Salesforce?

    From Setup, enter Domains in the Quick Find box, then select Domains.
    Next to the domain name, click Del.
    Click OK.

  • Sumit

    Member
    May 13, 2020 at 1:03 pm in reply to: What a is the limit of Trailhead playground in Salesforce?

    maximum of 10 Trailhead Playgrounds

Page 5 of 8