Forum Replies Created

Page 4 of 7
  • madhulika shah

    Member
    September 6, 2018 at 6:16 am in reply to: What is Payload?

    Hi Chanchal,

    The Request Payload - or to be more precise, payload body of a HTTP Request - is the data normally send by a POST or PUT Request. It's the part after the headers and the CRLF of a HTTP Request.

    Thanks.

  • Hi Anurag,

    While making Run all test call, the job is queued for test run calculations, but for deployment to production, as its synchronous and "run all test" is always "true" in background, so, test classes must have to run to validate if components going in production are valid or not. This is one of the major the control check salesforce have imposed to make sure all the production instances have valid code on cloud.

    Hope this helps.

  • madhulika shah

    Member
    September 5, 2018 at 1:28 pm in reply to: Ways Sales Cloud PRM helps you optimize the partner life cycle.

    Hi Anjali,

    Sales Cloud PRM, powered by the Salesforce Platform, allows you to extend the power of your CRM to your partners in a personalized way. Passing data to partners and receiving data from partners is now a seamless process with Sales Cloud PRM. And, whether you start with a handful of partners or a more mature set, Salesforce scales with your business.

    Salesforce handles the entire partner lifecycle from recruiting and onboarding new partners to your business, to providing self-service and analytics tools to your most advanced partners. You can manage the partners in real time and amplify your brand by marketing through partners. Most importantly, your channel partners can close more deals, faster with the same Salesforce sales and quoting features you already use.

  • madhulika shah

    Member
    September 5, 2018 at 1:15 pm in reply to: partner relationship management (PRM)

    Hi Anjali,

    Partner relationship management (PRM) is a system of methodologies, strategies, software, and web-based capabilities that help a vendor to manage partner relationships. The general purpose of PRM is to enable vendors to better manage their partners through the introduction of reliable systems, processes and procedures for interacting with them.Web-based PRM systems typically include a Content Management System, a partner and customer contact database, and the notion of a partner portal which allows partners to log in and interact with a vendor's sales opportunity database and obtain product, pricing, and training information. There are a number of solution providers who offer PRM software companies who rely heavily on a PRM solution to stay relevant in their respective industries.

  • Hi Chanchal,

    There is a governor limit of 10000 DML rows per apex invocation.

    But in Batch Class Every execute method run is treated as a separate invocation.

  • madhulika shah

    Member
    September 5, 2018 at 12:42 pm in reply to: What is a capability of cross-object formulas fields?

    Hi Shradha,

    The capabilities of cross-object formula fields are:

    • Formula fields can expose data the user does not have access to in a record.
    • Formula fields can reference fields from Master-Detail or lookup parent relationships.
    • Formula fields can reference fields from objects that are up to 10 relationships away.
  • madhulika shah

    Member
    September 5, 2018 at 10:23 am in reply to: How many blocks we can create for join reports?

    Hi Anjali,

    You can only have five blocks in total for creating join reports.

    Thank You.

  • Hi Anurag,

    Yes, you can hide particular portion of visualforce page on click of button using render and reRender. Please check the code below:

    <apex:page controller="aaa">
    <apex:form >
    <apex:pageBlock >

    <apex:actionFunction name="RenderSection" action="{!RenderSec}"/>

    <apex:pageBlockSection>
    <apex:selectList multiselect="false" size="1" onChange="RenderSection() ;" value="{!SelectedVal}">
    <apex:selectOption itemLabel="--None--" itemValue=""/>
    <apex:selectOptions value="{!myList}"/>
    </apex:selectList>
    </apex:pageBlockSection>

    <apex:pageBlockSection rendered="{!showAccount}">
    <apex:outputLabel value="This Section will show account fields"/>
    </apex:pageBlockSection>

    <apex:pageBlockSection rendered="{!showContact}">
    <apex:outputLabel value="This section will show contact fields"/>
    </apex:pageBlockSection>

    </apex:pageBlock>
    </apex:form>
    </apex:page>

    Hope this helps.

  • Hi Anjali,

    The points that deals with the difference between Sales Analytics and Sales Cloud Reporting are:

    • Operational versus Strategic reporting: Standard reporting functionalities in Salesforce are ideally suited to track and measure performance of your sales, service or marketing team. This makes it a very good tool to follow up on the operational side of your business. The Analytics Cloud on the other hand, serves a more strategic purpose. With this tool you will be able to gain insights in why your business is doing better in some areas compared to others, or why certain sales reps have generated more leads in the last quarter.
    •  Internal versus External data sources: The first difference is mainly a result of the data sources that are being used. In standard salesforce reporting, you can only use data from within your Salesforce organization. In the Analytics Cloud, you can add data from other sources.
    • Snapshot versus Historical reporting: Another big difference lies in the time frame of the data being analysed. Standard reports and dashboards deliver real time metrics on how a team is doing. They deliver a snapshot of key metrics to measure performance. The Analytics Cloud is better suited to follow up on year over year comparison of performance due to the fact that you can use historical data.
    • Salesforce platform versus Wave platform: To enable the use of massive amounts of data from multiple sources, the Analytics Cloud benefits from the strength of the Wave platform. Data on this platform is stored as key-value pairs with the principle of an inverted index. This ensures that you can explore the data in a fast, reliable and very flexible way.
  • Hi Avnish,

    It did not worked on geolocation.
    But I think you need to populate geolocation fields through address fields.

    You can also check the following link for more information:

    https://www.packtpub.com/books/content/adding-geolocation-trigger-salesforce-account-object

  • madhulika shah

    Member
    September 4, 2018 at 11:04 am in reply to: Action poller in visualforce

    Hi shradha,

    Action poller sends AJAX request with a specified time interval. Each request can result in a full or partial page update.

    An <apex:actionPoller> must be within the region it acts upon.

  • madhulika shah

    Member
    September 4, 2018 at 11:00 am in reply to: How to generate the random string or random password using Apex?

    Hi,

    Integer len = 10;
    Blob blobKey = crypto.generateAesKey(128);
    String key = EncodingUtil.convertToHex(blobKey);
    String pwd = key.substring(0,len);

  • madhulika shah

    Member
    September 3, 2018 at 1:59 pm in reply to: What do you think is the disadvantage of Salesforce, if any?

    Hi Avnish,

    Disadvantages of salesforce are:

    • Overly simple user interface that is quickly outgrown by experienced users.
    • Lots of screen refreshes and scrolling up and down; the transition between multiple screens to process transactions can deliver a tedious experience.
    • Marketing management functionality is extremely limited. SFDC points to partner applications for this purpose. This involves additional costs and vendor management.
    • Customization toolkits can be cumbersome to use, even to many seasoned administrators.
    • Dashboards may not reflect the application security for specific users without significant administration effort.
    • No Service Level Agreement provided in standard contract.
    • Data center reliability has been questioned and several major interruptions in service have been widely publicized.
  • madhulika shah

    Member
    September 3, 2018 at 1:29 pm in reply to: Custom dependent picklist in lightning.

    Hi Shradha,

    To know more about Custom dependant picklist in lightning, please refer to the link provided:

    http://sfdcmonkey.com/2018/08/31/dependent-picklist-lightningselect-lightning-salesforce/

  • madhulika shah

    Member
    September 3, 2018 at 1:27 pm in reply to: StandardSetController in salesforce

    Hello Shradha,

    ApexPages.StandardSetController (documentation) contains a list of records (one or more), and has additional functions to facilitate pagination (moving between pages) and updating a number of records at once.

    List<account> accountList = [SELECT Name FROM Account LIMIT 20];
    ApexPages.StandardSetController ssc = new ApexPages.StandardSetController(accountList);

  • madhulika shah

    Member
    August 31, 2018 at 1:28 pm in reply to: What happens upon lead conversion ?

    Hi Avnish,

    When you convert leads, all open and closed activities from the leads are attached to the accounts, contacts, and opportunities. You can assign the owners of these new records, and schedule follow-up tasks. When you assign new owners, only the open activities are assigned to the new owner. If you have custom lead fields, that information can be inserted into custom account, contact, or opportunity fields. Your admin can also set up your custom lead fields to populate custom account, contact, and opportunity fields automatically. You can’t view converted leads, unless your admin has assigned you the "View and Edit Converted Leads" permission. However, converted leads do appear in lead reports. Salesforce updates the Last Modified Date and Last Modified By system fields on converted leads when picklist values included on converted leads are changed.

    Once converted, a lead record is no longer searchable, unless your admin has assigned you the "View and Edit Converted Leads" permission. The new account, contact, or opportunity record created from the converted lead is searchable.

  • madhulika shah

    Member
    August 31, 2018 at 1:05 pm in reply to: Explain Organization wide default (OWD) in Salesforce.

    Hi Anjali,

    Organization-Wide Defaults, or OWDs, are the baseline security you for your Salesforce instance. Organizational Wide Defaultsare used to restrict access. You grant access through other means we will talk about later (sharing rules, Role Hierarchy, Sales Teams and Account teams, manual sharing, etc).

  • Hi Shradha,

    To use static resources in Lightning Application in salesforce, implement the application as follows:

    <aura:application>

    <link href='/resource/bootstrap/' rel="stylesheet"/>

    <div class="navbar navbar-default navbar-static-top" role="navigation">
    <div class="container">
    <div class="navbar-header">
    <a href="#" class="navbar-brand">Lightning Contacts</a>
    </div>
    </div>
    </div>

    <div class="container">
    <div class="row">
    <div class="col-sm-12">
    Contact list goes here
    </div>
    </div>
    </div>

    </aura:application>

     

     

  • madhulika shah

    Member
    August 30, 2018 at 1:21 pm in reply to: lightning:card in salesforce.

    Hi Shradha,

    lightning:card- They are used to apply a container around a related grouping of information. lightning:card is the component container.

  • madhulika shah

    Member
    August 30, 2018 at 1:20 pm in reply to: What are the Limitations of the workflow?

    Hi Avnish,

    The Limitations of the workflow are-

    1. For each workflow rule, you can have the following:
    • 10 time triggers
    • 40 immediate actions
    • 40 time-dependent actions per time trigger

    2.  For both immediate and time-dependent actions in one workflow rule, there can be no more than:

    • 10 email alerts
    • 10 tasks
    • 10 field updates
    • 10 outbound messages

    3. The workflow time trigger per hour limit for different editions are as follows:

    • Professional Edition: 250
    • Enterprise Edition: 500
    • Developer Edition: 50
    • Unlimited and Professional Edition: 1,000

    4.The workflow e-mail limit per day is as follows:

    • 1,000 per Salesforce standard license
    • 200,000 per organization
  • madhulika shah

    Member
    August 30, 2018 at 10:11 am in reply to: What is a block, an element and a modifier in SLDS?

    Hi Anurag,

    Block:

    A block represents the main component name. If you were building a house component, the class name would be .house. All of the properties you want included for all houses would be included in the base .house class.

    Element:

    An element represents a part of a component and is separated by two underscores. The door of the house would be represented by the class.house__door. A window would be .house__window.

    Modifier:

    A modifier is a component or element variation and is separated by a single underscore. The variation can apply to the overall component or it can be applied to an element within the component.

    Since the properties that should apply to every house are placed on the main .house class, all houses receive the.house class as the base. If there is a variation of a house — perhaps it is gray — the .house_gray class would be added to the component in addition to the .house class.

    If the house has a pink door, a variation can be placed on the door element itself — .house__door_pink.

  • Hi Avnish,

    There are two buttons available in dataloader ‘Export’ & ‘Export All’. Difference in both button functionality is very small. When we use ‘Export’ button for any object in salesforce, all records( excluding records present in Recycle Bin) present in the system for that particular object are exported to a .csv file. But when we use Export All, all records (including records present in Recycle Bin) for that particular object are exported to a .csv file. Deleted records present in recycle bin are also called ‘soft Deleted’ records.

  • madhulika shah

    Member
    August 29, 2018 at 12:19 pm in reply to: What is the use of this keyword in Salesforce Apex?

    Hi Anurag,

    This keyword represents the current instance of a class, in constructor chaining.

  • madhulika shah

    Member
    August 29, 2018 at 5:37 am in reply to: How to read text between tags in Salesforce?

    Hi Chanchal,

    You have to use Java regex to extract text between tags. Code snippet for the following is:

    final Pattern pattern = Pattern.compile("<tag>(.+?)</tag>");
    final Matcher matcher = pattern.matcher("<tag>String I want to extract</tag>");
    matcher.find();
    System.out.println(matcher.group(1)); // Prints String I want to extract

  • madhulika shah

    Member
    August 28, 2018 at 7:05 am in reply to: What is SAQL in Salesforce?

    Hi Shradha,

    SAQL (Salesforce Analytics Query Language) is used to access data in Analytics Cloud datasets.
    Analytics Cloud uses SAQL behind the scenes in lenses, dashboards, and explorer to gather data for visualizations. Users don’t write SAQL statements, they use the UI and the app makes the queries.

    Developers can write SAQL to directly access Analytics Cloud data via:

    • Wave REST API:  Build your own app to access and analyze Analytics Cloud data or integrate data with existing apps.
    • Dashboard JSON:  Create advanced dashboards. A dashboard is a curated set of charts, metrics, and tables.

     

     

Page 4 of 7