Forum Replies Created

Page 11 of 19
  • Anuj

    Member
    June 17, 2020 at 3:11 pm in reply to: Why should you build a report on your prediction in Salesforce?

    Before tapping into Einstein's AI power, we recommend that you build and run a report on the new field to make sure everything is accurate. Reports also show data volume. Here's how to build a report to view the late payments on your invoice records at Lightning Energy.

  • This is because this type of model could not pick up the interaction effect between the Department and other independent variables. ... Segmentation helps account for this difference in behavior between the two segments and results in more accurate predictions.

  • Anuj

    Member
    June 16, 2020 at 1:27 pm in reply to: How to set css for different resolutions in lightning component ?
  • Anuj

    Member
    June 16, 2020 at 1:25 pm in reply to: What is @media CSS property in lighting Style ?

    The @media CSS at-rule can be used to apply part of a style sheet based on the result of one or more media queries. With it, you specify a media query and a block of CSS to apply to the document if and only if the media query matches the device on which the content is being used.

  • you can use this code....

    @isTest
    public class ExtensionTestClass
    {
    static testMethod void testMethod1()
    {
    Account testAccount = new Account();
    testAccount.Name='Test Account' ;
    insert testAccount;
    Test.StartTest();
    ApexPages.StandardController sc = new ApexPages.StandardController(testAccount);
    myControllerExtension testAccPlan = new myControllerExtension(sc);
    PageReference pageRef = Page.AccountPlan; // Add your VF page Name here
    pageRef.getParameters().put('id', String.valueOf(testAccount.Id));
    Test.setCurrentPage(pageRef);
    //testAccPlan.save(); call all your function here
    Test.StopTest();
    }
    }

  • Anuj

    Member
    June 15, 2020 at 2:30 pm in reply to: What is VersionNumber in Salesforce?

    A package version is a number that identifies the set of components uploaded in a package. The version number has the format majorNumber. minorNumber. patchNumber (for example, 2.1. ... Unmanaged packages are not upgradeable, so each package version is simply a set of components for distribution.

  • Anuj

    Member
    June 15, 2020 at 2:21 pm in reply to: What is VersionData in Salesforce?

    Represents a specific version of a document in Salesforce CRM Content or Salesforce Files. ... For example, if a user only has access to a file because they have access to a record that the file is shared with, the file won't be returned in a query such as "SELECT Id FROM ContentDocument."

  • Anuj

    Member
    June 15, 2020 at 2:03 pm in reply to: What is FileCard in Lightning Component in Salesforce?

    A lightning:fileCard component displays a preview of a file. On desktops, clicking the file preview opens the SVG file preview player, enabling you to preview images, documents, and other files in the browser. The file preview player provides quick access to file actions, such as upload, delete, download, and share.

  • Anuj

    Member
    June 12, 2020 at 1:54 pm in reply to: How do attach file in Salesforce?

    To attach files to records:
    In Lightning Experience, drag files directly onto the Files related list or click Upload Files. To add Salesforce Files, click Add Files in the related list's menu.
    In Salesforce Classic, click Upload File in the Files related list.

  • Anuj

    Member
    June 12, 2020 at 1:53 pm in reply to: Can two users have the same profile?

    Yes, multiple users can have same profile but one user have only one profile.

  • Anuj

    Member
    June 12, 2020 at 1:50 pm in reply to: What is the difference between files and attachments in Salesforce?

    Files were brought in as a powerful way to manage documents in salesforce. Other options such as attachments and documents were not as flexible and needed to evolve with the times, Files are the future, and the future is here. Files are more versatile and provide better functionality than attachments.

  • Anuj

    Member
    June 11, 2020 at 2:18 pm in reply to: How does Einstein Discovery use actionable variables in Salesforce?

    An actionable variable is a variable that people can control, such as deciding which marketing campaign to use for a particular customer. Einstein uses actionable variables to recommend ways in which to improve your outcome. All recommendations are based on the actionable variables selected during model deployment.

  • Anuj

    Member
    June 11, 2020 at 2:16 pm in reply to: How many types of API’s avaliable in salesforce?

    Salesforce offers two primary types of APIs based on industry standards. The first is a SOAP based API, and the second is a REST based API. The REST API is very lightweight, has no WSDL definition file that is needed to install, and performs very well.

  • Anuj

    Member
    June 11, 2020 at 2:15 pm in reply to: What is webservices in Salesforce?

    Webservice Methods. Apex class methods can be exposed as custom SOAP Web service calls. This allows an external application to invoke an Apex Web service to perform an action in Salesforce. Use the webservice keyword to define these methods.

  • Anuj

    Member
    June 10, 2020 at 2:40 pm in reply to: How do i stop batch class in Salesforce?

    Using Batch Apex
    To monitor or stop the execution of the batch Apex Batch job, go to Setup → Monitoring → Apex Jobs or Jobs → Apex Jobs. Let us now understand each method in detail.

  • Anuj

    Member
    June 10, 2020 at 2:38 pm in reply to: What is Custom Label in Salesforce?

    Custom Labels. Custom labels enable developers to create multilingual applications by automatically presenting information (for example, help text or error messages) in a user's native language. Custom labels are custom text values that can be accessed from Apex classes, Visualforce pages, or Lightning components.

  • Anuj

    Member
    June 10, 2020 at 2:36 pm in reply to: How do I open a workbench in Salesforce?
  • Anuj

    Member
    June 9, 2020 at 2:25 pm in reply to: How to make person account and business account in Salesforce?

    How to enable Person Account in Salesforce
    Setup → Customize → Accounts → Record Types.
    Create New Record Type.
    Set “Business Account” as a Record Type Name.
    Click Next.
    Accept all defaults and click Save.

    Required Editions and User Permissions
    In Salesforce Classic, click Create Account on the Related Accounts card. ...
    Select the Business account record type, and click Continue.
    For the Account Name, enter the name of the business.
    Enter the rest of the information that your organization uses. ...
    Save your work.

  • Anuj

    Member
    June 9, 2020 at 2:22 pm in reply to: How to make quick lightning action in Salesforce?

    To Create a Quick Action.
    Click. and select Setup.
    Enter Global Actions in the Quick Find and select Global Actions.
    Click New Action.
    Leave the Action Type as Create a Record. ...
    In the Label field, enter Waypoint . ...
    Click Save.
    In the next Action Layout screen, leave Waypoint Name as the only field in the layout.

  • Anuj

    Member
    June 8, 2020 at 1:48 pm in reply to: How many relationships included in SFDC & What are they?

    Each custom object can have up to two master-detail relationships and up to 25 total relationships. The Related To entry can't be changed after you save the relationship. A profile or a permission set can have an entity, such as Account, with a master-detail relationship.

  • There are mainly four levels of access : Public Read/Write/Transfer (only available of Leads and Cases) Public Read/Write : All users can view, edit, and report on all records(Given that they have object level permission).

  • Anuj

    Member
    June 8, 2020 at 1:44 pm in reply to: How to create a date picker in the Visualforce page?

    Visualforce page:
    <apex:page controller="datePicker" id="mypage">
    <apex:form>
    Date: <apex:inputText value="{!datename}" size="10" id="demo" onfocus="DatePicker.pickDate(false, this , false);" />
    </apex:form>
    </apex:page>
    Apex Controller:
    public class DatePicker
    {
    public String datename {get; set;}
    }

  • Anuj

    Member
    June 5, 2020 at 11:57 am in reply to: How to delete activated record type in Salesforce ?

    First you have to remove all active profiles from record type after then follow the below steps--
    In Salesforce Classic, go to Setup | Manage Users | Profiles (or Setup | Users | Profiles in Lightning Experience); click into the standard System Administrator profile, scroll down to "Record Type Settings," and click the [Edit] link next to the object which includes the record type to deactivate/delete.

  • Anuj

    Member
    June 5, 2020 at 11:42 am in reply to: How to delete a button in Salesforce?

    What kind of button are you asking?

Page 11 of 19