Forum Replies Created

Page 1 of 3
  • krati

    Member
    April 17, 2020 at 4:19 pm in reply to: What is the difference In Count() And Count(fieldname) In Soql.?

    COUNT() is an optional clause that can be used in a SELECT statement in a SOQL query to discover the number of rows that a query returns.
    In simple words, COUNT() returns the number of items in a group, including NULL values and duplicates.
    For example:
    SELECT COUNT() FROM Account WHERE Name LIKE 'a%'
    SELECT COUNT() FROM Contact, Contact.Account WHERE Account.Name = 'Tester tube'
    Note the following when using COUNT():
    COUNT() must be the only element in the SELECT list. that is you can not add any other field with count().
    Count(fieldname):
    This function returns the number of rows that match the filtering conditions and have a non-null value records. An Aggregate Result object in the records field contains the number of rows. Do not use the size field for the resulting records. Again in simple words, COUNT(expression) evaluates an expression for each row in a group and returns the number of non-null values.
    So count() includes nulls, the other method doesn't.
    For Example:
    SELECT COUNT(Id) FROM Account WHERE Name LIKE 'xyz%'
    Note: COUNT(Id) in SOQL is equivalent to COUNT(*) in SQL.

  • krati

    Member
    April 17, 2020 at 4:16 pm in reply to: What is the difference between attachment and file in Salesforce?

    Files are content management, for example: creating libraries and having their access.
    Attachments are related to a record.

  • krati

    Member
    April 17, 2020 at 4:13 pm in reply to: What is Lead Nurturing in marketing Cloud?

    Lead Nurturing is the process of developing and maintaining relationships with customers at every stage of their journey, usually through marketing and communications messaging. Automated lead nurturing uses software to send messages that are triggered by customer behaviour or predetermined schedules.

  • krati

    Member
    April 16, 2020 at 5:22 pm in reply to: What is the criteria based sharing in Salesforce?

    You can share records owned by certain users or meeting certain criteria. Criteria-based sharing rules determine what records to share based on field values other than ownership. You can define groups of users by role, by territory, or by defining a public group.

  • krati

    Member
    April 16, 2020 at 5:16 pm in reply to: What is faceSet tag in Salesfoce?

    <apex:facet>: A placeholder for content that is rendered in a specific part of the parent component, such as the header or footer of an < apex:dataTable >.

  • krati

    Member
    April 16, 2020 at 5:15 pm in reply to: What is pagenation in Salesforce?

    Pagination is the process of taking a complete document or a large number of records in this example and breaking that document/large number of records into separate pages for viewing.

  • Tabular Reports:- These kind of reports are used when the requirement is just to view the data.
    Summary Reports:- Summary reports are similar to tabular reports, but also allow users to group rows of data, view subtotals, and create charts. They can be used as the source report for dashboard components.
    Matrix Reports:- allow you to group and summarize data by both rows and columns. They can be used as the source report for dashboard components.
    Joined Reports:- Joined reports let you create multiple report blocks that provide different views of your data.

  • krati

    Member
    April 14, 2020 at 2:22 pm in reply to: Named credential in Salesforce

    A named credential specifies the URL of a callout endpoint and its required authentication parameters in one definition.

  • krati

    Member
    April 14, 2020 at 2:21 pm in reply to: Can we schedule a dynamic dashboard in Salesforce?

    A Dynamic Dashboard enables multiple users to access a dashboard that was previously accessed only by a single static user. This means that the dynamic dashboard can be used by a specific user alongside a logged-in user, and display data specific to both users accordingly.

  • krati

    Member
    April 13, 2020 at 5:54 pm in reply to: Why are Visualforce Page serve from different Domain?

    It is so because for security purpose. If it runs in the same domain, the scripts in the VF page will be able to access the scripts on the standard page-layout and will be able to manipulate it.

  • krati

    Member
    April 13, 2020 at 5:52 pm in reply to: What is main difference of event and task?

    An event is a calendar event scheduled for a specific day and time.
    Examples of events are: Meetings, Scheduled Conference Calls.

    A task is an activity not scheduled for an exact day and time. You can specify a due date for a task or there may not be a particular time or date that the tasks or activities need to be completed by. Example, an email to be sent

  • krati

    Member
    April 13, 2020 at 5:50 pm in reply to: What is WhoId and Whatid in Salesforce?

    WhatId: ID of a related Account, Opportunity, Campaign, Case, or custom object. Label is Opportunity/Account ID.
    WhoId: ID of a related Contact or Lead. If the WhoId refers to a lead, then the WhatId field must be empty. Label is Contact/Lead ID. If Shared Activities is enabled, this is the ID of a related Lead or primary Contact.

  • krati

    Member
    April 9, 2020 at 5:09 pm in reply to: How to add javascript remoting to a Visualforce page in Salesforce?

    To use JavaScript remoting in a Visualforce page, add the request as a JavaScript function call.
    [namespace.]controller.method(
    [parameters...,]
    callbackFunction,
    [configuration]
    );

    The remote method call executes synchronously, but it doesn’t wait for the response to return. When the response returns, the callback function handles it asynchronously.

  • krati

    Member
    April 9, 2020 at 5:07 pm in reply to: What is Apex Managed Sharing in Salesforce ?

    Sharing enables record-level access control for all custom objects, as well as many standard objects. Apex managed sharing is used to grant additional access programmatically with Apex.

  • krati

    Member
    April 9, 2020 at 5:05 pm in reply to: What is feed tracking in Salesforce?

    Feed tracking is available for record fields. Feed tracking detects changes to tracked record fields and posts them as updates in the What I Follow feed. You can configure feed tracking for users, Chatter groups, topics, custom objects, external objects and some standard objects.

  • krati

    Member
    April 8, 2020 at 6:03 pm in reply to: What is SOQL used for?

    Hi Sumit,
    You can use SOQL, when you have to search any record in single or multiple objects which are related.

  • krati

    Member
    April 8, 2020 at 5:59 pm in reply to: How can we query email templates in Workbench in Salesforce ?

    In the Workbench and you use the SOQL Query option from the Queries menu and then run a SOQL on the EmailTemplate object to find the subject of the email template. Example,
    SELECT Id, Subject FROM EmailTemplate

  • krati

    Member
    April 8, 2020 at 5:38 pm in reply to: What is Delegator Roles in adobe Sign with Salesforce?

    Delegator (enterprise)
    The delegator role is designed for workflows that require a person to make the final judgment on who the correct next person is that should sign or approve the document. This role does not replace the ad hoc option for a signer/approver to delegate their participation

  • krati

    Member
    April 7, 2020 at 5:11 pm in reply to: How many users can be created in FTP in Salesforce Marketing Cloud?

    Marketing Cloud allows up to three FTP users per MID.

  • krati

    Member
    April 7, 2020 at 5:11 pm in reply to: What is FTP account in Salesforce Marketing Cloud?

    A file transfer protocol account (FTP account) is a type of user account that enables the transfer of files with a host computer by using FTP services. Marketing Cloud allows up to three FTP users per MID.
    1) Enabled - The FTP account is ready for use.
    2) Disabled - The FTP account requires enablement before use.
    3) Locked - The FTP account can't be used. Contact your Marketing Cloud account representative for assistance.

  • krati

    Member
    April 7, 2020 at 5:01 pm in reply to: What is Certificate and Key Management in Salesforce?

    These are the key pairs that are used for signatures that verify a request is coming from your organization. They are used for authenticated SSL communications with an external web site, or when using your organization as an Identity Provider. You only need to generate a Salesforce certificate and key pair if you're working with an external website that wants verification that a request is coming from a Salesforce organization.

  • krati

    Member
    April 6, 2020 at 4:41 pm in reply to: How to remove duplicate records in Salesforce?

    Please elaborate if you want to remove duplicate records from a standard object's field or something else. In Case of prior one you can remove those from anonymous window.
    For Example:
    List<Account> listOfAccounts = [Select Id, name From Account limit 200];
    Set<String> accountSet = new Set<String>();
    List<Account> listOfDuplicateNames = new List<Account>();
    for(Account acc : listOfAccounts){
    if(accountSet.contains(acc.name)){
    listOfDuplicateNames.add(acc);
    }
    else {
    accountSet.add(acc.name);
    }
    }
    delete listOfDuplicateNames;

  • krati

    Member
    April 6, 2020 at 4:24 pm in reply to: What does Salesforce Marketing cloud do?

    Email marketing automation connects interactions from any channel or device, and combines customer data and behaviors to create real-time relevant communications.

    Some of the features offered by Salesforce Marketing Cloud are:

    • Journey Builder
    • Email Studio
    • Salesforce DMP
  • Salesforce Marketing Cloud is an email marketing automation which connects interactions from any channel or device, and combines customer data and behaviors to create real-time relevant communications.

    Salesforce Sales Cloud puts everything you need at your fingertips—available anywhere. From Social accounts and contacts to Mobile, Chatter, and Analytics, collaboration across your global organization and getting deals done faster is not only possible, it's easy.

  • krati

    Member
    February 6, 2020 at 2:54 pm in reply to: What are the three main categories in the setup menu in salesforce ?

    There are three main categories in the Setup menu: Administration, Platform Tools, and Settings.

    Administration: The Administration category is where you manage your users and data. You can do things like add users, change permissions, import and export data, and create email templates.

    Platform Tools: You do most of your customization in Platform Tools. You can view and manage your data model, create apps, modify the user interface, and deploy new features to your users.

    Settings: Settings is where you manage your company information and org security. You can do things like add business hours, change your locale, and view your org’s history.

     

    Please refer to:

    https://trailhead.salesforce.com/en/content/learn/modules/starting_force_com/starting_tour

Page 1 of 3