Forum Replies Created

Page 11 of 53
  • Parul

    Member
    September 23, 2018 at 8:11 am in reply to: What is validation rule in Salesforce?

    based on the certain conditions we can display error messages on top of the page or below to the field when creating or modifying the record

  • Parul

    Member
    September 23, 2018 at 8:09 am in reply to: What is a “Lookup Relationship” in Salesforce?

    This type of relationship links two objects together,

     

    Parent is not a required field.
    No impact on a security and access.

  • custom logo in documents and then they choose that logo for organization.

  • Parul

    Member
    September 23, 2018 at 8:03 am in reply to: How many controllers can be used in a Salesforce Visualforce Page?

    Salesforce comes under SAAS

  • Parul

    Member
    September 23, 2018 at 7:51 am in reply to: What are different Salesforce Editions?

    They are:-

    Group.
    Professional.
    Enterprise.
    Unlimited.

    A Salesforce edition is the “type” (for want of a better work) of your Salesforce instance. The edition determines:
    What functionality is available – e.g. contact manager edition doesn’t have opportunities
    The limits – of which there are many – the maximum number of custom objects, the maximum number of tabs, the maximum number of custom fields.

    Limits are a based on a combination of edition and user license. Data storage, for example, is 20Mb per licensed user on Enterprise Edition, but 120Mb per licensed user on Unlimited Edition.

    With regard to different licenses per edition, yes there would be a different cost, but it would still be based on the edition. Thus you couldn’t mix Enterprise and Unlimited licenses in Unlimited Edition. Every user must have a license appropriate for the edition, and these get more expensive as the capability of the edition increases.

    If you are considering multiple editions of Salesforce in a single organisation, you can create a salesforce app and deploy it to each edition. If you need the same data across all editions you’d need to look at Salesforce 2 Salesforce to replicate the data, which brings a few challenges of its own. For multi-edition you’d need to consider:

    Reporting – there won’t be a single view of all the data available
    Collaboration – as chatter is tied to a single edition, only users in that edition will be able to collaborate unless you set up multiple logins per user
    Governance – if there is any common functionality you will have to replicate that across all editions
    License costs – any users that need access to more than one edition will need a license for each
    Multi-edition does have some advantages though:

    Security and visibility – if you have complex requirements in this area it can be difficult to model and maintain in a single edition
    Capacity and performance – the edition limits are multiplied by the number of editions, so you can have more custom applications, objects, tabs etc. Plus your data will be split across multiple editions which will scale better for large data volumes
    Innovation – if you have complex customisations across a number of business units it can be difficult to make changes in a rapid fashion due to the need to test for all scenarios
    The way I normally approach this is to start with a single edition and whenever a new business area comes on board, evaluate whether its better for them to share the existing edition or use one of their own.

    Thanks

  • Parul

    Member
    September 23, 2018 at 7:49 am in reply to: What is SaaS in Salesforce?

    software’s are distributes over the cloud. By using SaaS no need to install any software all software’s are readily available over the internet .SaaS eliminates the need to install and run applications on individual computers.  Gmail is one famous example of an SaaS mail provider.

  • Parul

    Member
    September 23, 2018 at 7:49 am in reply to: What is Public Cloud in Salesforce?

    Public cloud refers to a model of cloud computing where IT services are provisioned over public IT infrastructure for the dedicated use of a single organization. A public cloud is usually managed via internal resources. Public Cloud the user has no control over the resources.

  • Time based workflow” if any pending actions in the queue.

  • Parul

    Member
    September 23, 2018 at 7:45 am in reply to: What is Dashboard in Salesforce?

    Dashboard is a pictorial representation of report.

  • Parul

    Member
    September 23, 2018 at 7:43 am in reply to: Does checkbox performs like controlling field in Salesforce?

    Yes possible.

  • ALL ROWS is used for retrieving the records from recycle bin.

  • Lock the records for update the changes

  • Parul

    Member
    September 23, 2018 at 7:39 am in reply to: How to call Salesforce Apex class using javascript?

    Using Remoting action and action function.

  • Excel does all sorts of “useful” things when it opens a CSV file. It will re-format dates, strip leading zeros, corrupt record IDs (if you have them in your report), and as explained it will also break line. Best way as per my experience till date is, Upload document to Google Drive. Export document back from Google drive as Excel.

  • Parul

    Member
    September 23, 2018 at 6:26 am in reply to: How do you import Converted Lead into Salesforce from Legacy System ?

    In that case you need to:-

    1. Export the data from the first org.

    2.Then remove the id , say of lead then upload them to the new org.

    3. Now you need to do proper data massaging of objects created as a result of Lead conversion say:-

    a. Opportunity

    b. Account

    c. Contact

    d. Task

    with the newly generated Lead ids

    In case you want to upload new lead data which is already converted into a new org then you need to upload the leads , then with the generated lead ids create the adequately data massaged files for related account, contact and opportunity via excel functions.

  • It can be done with help of External Id.

  • SELECT COUNT() FROM OPPORTUNITY WHERE AccountId = a.Id ALL ROWS

  • Parul

    Member
    September 23, 2018 at 6:19 am in reply to: In below code snippet in Salesforce, what is going wrong?

    Because “adderror” prevents all transactions from committing including emails so you will not send any email.

  • Check your code mainly triggers written on code or code entry may have FOR UPDATE clause included in them. Remove them and it will work fine.

  • Parul

    Member
    September 23, 2018 at 6:16 am in reply to: What is Defer Sharing Calculation in Salesforce?

    To enable Defer Sharing Calculation, please contact Salesforce. Administrators should plan to suspend/resume sharing calculations during maintenance windows to have minimal impact on users. For example, you make large number of changes to criteria based sharing rules to allow access to specific groups and territories.

  • Parul

    Member
    September 23, 2018 at 6:15 am in reply to: Explain Two-Column Custom Indexes in Salesforce.

    Two-Column Custom Indexes. Two-column custom indexes are a specialized feature of the Salesforce platform. ... When a combination of two fields is a common filter in the query string, two-column indexes typically help you sort and display records.

  • Parul

    Member
    September 23, 2018 at 6:14 am in reply to: When Salesforce will use Custom Indexed fields?

    To create custom indexes for other field types, including standard fields, contact salesforce.com Customer Support

  • Parul

    Member
    September 23, 2018 at 6:13 am in reply to: When Salesforce will use Standard Indexed fields?

    The standard Salesforce indexed fields are:

    Lead: Company, Email, Lead Owner, Name.
    Contact: Account Name, Contact Owner, Email, Name, Reports To.
    Account: Account Name, Account Owner, Account Record Type, Parent Account,
    On top of these, system time fields (last modified, created date etc) and any lookup fields are also indexed.

  • Parul

    Member
    September 23, 2018 at 6:06 am in reply to: Explain few considerations for @Future annotation in Salesforce Apex.

    NOTE :-

    1) Methods with the future annotation must be static methods
    2) can only return a void type
    3) The specified parameters must be primitive data types, arrays of primitive data types, or collections of primitive data types
    4) Methods with the future annotation cannot take sObjects or objects as arguments.
    5) You can invoke future methods the same way you invoke any other method. However, a future method can’t invoke another future method
    6) No more than 50 method calls per Apex invocation
    7) Asynchronous calls, such as @future or executeBatch, called in a startTest, stopTest block, do not count against your limits for the number of queued jobs
    8) The maximum number of future method invocations per a 24-hour period is 250,000 or the number of user licenses in your organization multiplied by 200, whichever is greater

  • USing remote action and action function

Page 11 of 53