Forum Replies Created

Page 4 of 12
  • Hi Piyush,

    When converting a lead, following Standard Fields are transferred to the opportunity in salesforce

    • Campaign
    • Company
    • Lead Owner
    • Lead Source
    • Partner Account

    If you have custom lead fields, that information can be inserted into custom opportunity fields. Your admin can also set up your custom lead fields to populate custom opportunity fields automatically.

  • Hi Piyush,

    The maximum number of values allowed in a controlling field is 300

  • Nikita

    Member
    November 5, 2019 at 6:57 am in reply to: What are sources from which cases can be created in salesforce?

    Hi Piyush,

    Source of a case ie Origin of cases are phone, email, or web.

  • Hi Piyush,

    AVAILABLE PERMISSIONS for System Administrators are following

    • Can configure and customize the application.
    • Has access to all functionality that does not require an additional license.

    For example, administrators cannot manage campaigns unless they also have a Marketing User license. Can manage price books and products.

  • Hi Piyush,

    Maximum no. of records are 1000 to be printed in the Printable View of list view in salesforce.

  • Nikita

    Member
    November 5, 2019 at 6:05 am in reply to: What is the use of aura:id in Salesforce lightning component?

    Hi Laveena,

    You can retrieve a component using its local ID in your JavaScript code. A local ID is an ID that is only scoped to the component. A local ID is often unique but it’s not required to be unique. Local ID is created by the aura:id attribute.

    For Example:

    <lightning:button aura:id="button1" label="button1"/>

    Find the button component by calling cmp.find("button1") in your client-side controller, where cmp is a reference to the component containing the button.

    find() returns different types depending on the result.

    • If the local ID is unique, find() returns the component.
    • If there are multiple components with the same local ID, find() returns an array of the components.
    • If there is no matching local ID, find() returns undefined.
  • Nikita

    Member
    November 4, 2019 at 7:23 am in reply to: What is the use of apex email services in salesforce ?

    Hi Prachi,

    You can use email services to process the contents, headers, and attachments of inbound email. Email service is a special process that uses Apex classes to process incoming email messages. When you set up an email service, we need to generate a special email address in which salesforce will receive your emails. For the same, we need to create one apex class to implement Messaging.InboundEmailHandler interface. The email services will then invoke a handleInboundEmail method on the Apex class whenever an email is received on the email address.

    For example, you can create an email service that automatically creates contact records based on the contact information in messages.

  • Nikita

    Member
    November 4, 2019 at 5:51 am in reply to: How can we use Custom Setting in Salesforce to store information?

    Hi Prachi,

    To store information in Custom Seting you have to create or edit a custom setting.Ue steps as following

    1. From Setup, enter Custom Settings in the Quick Find box, then select Custom Settings.
    2. Click New to create a new custom setting, click Edit next to the name of a custom setting, or click Edit while viewing the details of a custom setting.
    3. Define the following:
      • Label—Enter the label displayed in the application.
      • Object Name—Enter the name to be used when the custom setting is referenced by formula fields, validation rules, Apex, or the SOAP API.
      • Setting Type—Select a type of List or Hierarchy. The List type defines application-level data, such as country codes or state abbreviations. The Hierarchy type defines personalization settings, such as default field values, that can be overridden at lower levels in the hierarchy.
      • Visibility—Select a visibility of Protected or Public.
        • Protected—If the custom setting is contained in a managed package, subscribing organizations can't see the custom setting: it doesn't display as part of the package list. In addition, subscribing organizations can't access the custom setting using either Apex or the API. Custom settings can only be accessed by the Apex code that is part of the managed package. If the custom setting is contained in an unmanaged package, the custom setting is available through the Enterprise WSDL like any custom object (as if the Visibility was Public.)
        • Public—The custom setting is available through the Enterprise WSDL like any custom object. You can package custom settings defined as public. The subscribing organizations can edit the values, as well as access them using Apex and the API, regardless of the type of package (either managed or unmanaged).
    4. Enter an optional description of the custom setting. A meaningful description will help you remember the differences between your custom settings when you’re viewing them in a list.
    5. Click Save.

    After that you can see that the settings is like an object, having a new button for custom fields. You can create as many custom fields as you want and store data in them.

    After creating custom fields you can access this from APEX code too. Simply fire a SOQL Query in APEX and use the name of the setting you created in the place of an object name.Also You can add this field in other custom formula fields, directly by selecting the field name in insert field. You can also create records in this object with the help of APEX code.
     

  • Nikita

    Member
    November 4, 2019 at 5:39 am in reply to: How to disable input field in visualforce page in salesforce?

    Hi Prachi,

    I guess you can use this

    html-disabled="true"

    <apex:inputField id="acctparent"  styleClass="acctparent" value="{!account.ParentId}"  html-disabled="true"  />

     

  • Hi Prachi,

    When the trigger is fired there is a before and after, the before is used to update the current record without stating any DML. since the record is open for update/Insert. if you specify any DML during the before action, you will receive an Exception "You cannot Update and Active Entity".

  • Nikita

    Member
    October 22, 2019 at 10:44 am in reply to: What is the use of profile control in salesforce?

    Hi Piyush

    Profiles in Salesforce controls the following.

    • Page layouts :- Which page layout the user has to see.
    • Field Level Security :- Using field level security we can restrict user to Create, Read, Edit and delete fields.
    • Custom apps :- Which standard and custom apps the user can view.
    • Tabs :- Which tabs the user can view.
    • Record types :- Which record types are available to user.
    • Login :- Login IP and Salesforce login Hours restrictions can be made t users.
  • Nikita

    Member
    October 22, 2019 at 10:42 am in reply to: Salesforce content

    Hi Ruchika,

    Content includes all file types, from traditional business documents such as Microsoft® PowerPoint presentations to audio files, video files, Web pages, and google docs. Organize, share, search, and manage content within your organization and across key areas of Salesforce with Salesforce CRM Content.

    Thanks,

  • Nikita

    Member
    October 22, 2019 at 10:31 am in reply to: When are Formula Fields recalculated in salesforce?

    Hi Piyush,

    Formula Fields recalculated in salesforce Each time a user views the record

  • Nikita

    Member
    October 21, 2019 at 1:32 pm in reply to: How to change field type if the field is referenced? 

    Hi Saddam,

    There are two ways to get this done that I know of. Assuming you're working primarily in a sandbox:

    • Comment out all the lines with that field in it in all classes and triggers.
    • Modify the field.
    • Deploy all the changed code and metadata to production
    • Uncomment all those lines of code
    • Deploy all the changed code to production

    or

    • Make a new field with a new name.
    • Change every reference in your code to that new field.
    • Deploy changed code and new metadata to production
    • Move over any data from the old field to the new field
  • Hi Piyush,

    Scatter  type of Dashboard Chart to make entry in Spring’11 Release in salesforce.

  • Nikita

    Member
    October 17, 2019 at 12:08 pm in reply to: Can I remove an expired Self-Signed certificate?

    Hi Saddam,

    You need to do:

    1) Create a new Self-Signed Certificate by going to Setup -> Certificate and Key Management
    2) You need to go to Setup -> Identity Provider and change the expired certificate for the one created in step 1
    3) you need to go to Setup -> Create -> Apps and check if any connected app is using the Certificate, if it does, replace it for the one created in Step 1
    4) Go again to Setup -> Certificate and Key Management and delete the expired certificate
    5) repeat this for anu other sandbox you have notifications from

  • Nikita

    Member
    October 17, 2019 at 12:04 pm in reply to: What is the use of apex:liveController?

    Hi Saddam,

    The <apex:liveController/> visualforce tag is used to allow embedded vf in lightning to auto-refresh with record changes.

  • Hi Yogesh,

    A lightning:spinner displays an animated spinner image to indicate that a feature is loading. This component can be used when retrieving data or anytime an operation doesn't immediately complete.

    The variant attribute changes the appearance of the spinner. If you set variant="brand", the spinner matches the Lightning Design System brand color. Setting variant="inverse" displays a white spinner. The default spinner color is dark blue.

    This component inherits styling from spinners in the Lightning Design System.

    Here is an example.

    <aura:component>
        <lightning:spinner variant="brand" size="large"/>
    </aura:component>

     

     

  • Nikita

    Member
    October 17, 2019 at 11:59 am in reply to: What is the use of SSO?

    Hi Saddam,

    Single sign-on (SSO) lets users access authorized network resources with one login. You validate usernames and passwords against your corporate user database or other client apps rather than Salesforce managing separate passwords for each resource.

  • Nikita

    Member
    October 16, 2019 at 2:04 pm in reply to: What is the use of lightning:omniChannelWorkloadChanged? 

    Hi Saddam,

    It indicates that an agent’s workload has changed. This includes receiving new work items, declining work items, and closing items in the console. It also indicates that there has been a change to an agent’s capacity or presence configuration, or that the agent has gone offline in the Omni-Channel utility.

  • Nikita

    Member
    October 16, 2019 at 2:02 pm in reply to: What is the use of ltng:afterScriptsLoaded?

    Hi Saddam,

    ltng:afterScriptsLoaded is an event which is fired when ltng:require has loaded all scripts listed in ltng:require.scripts

  • Nikita

    Member
    October 16, 2019 at 2:00 pm in reply to: what is Certificate and Key Management?

    Hi Saddam,

    Salesforce certificates and key pairs 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.

     

  • Nikita

    Member
    October 15, 2019 at 12:41 pm in reply to: What is the use of system.resetPasswordWithEmailTemplate ?

    Hi,

    Used to Resets the user's password and sends an email to the user with their new password. You specify the email template that is sent to the specified user. Use this method for external users of communities.

  • Nikita

    Member
    October 15, 2019 at 12:40 pm in reply to: What is system.submit? 

    Hi,

    It is used to submits the processed approvals. The current user is the submitter and the entry criteria is evaluated for all processes applicable to the current user.

  • Nikita

    Member
    October 15, 2019 at 7:10 am in reply to: To whom we can assign A Lightning for Outlook layout in salesforce?

    Hi Piyush,

    Enterprise, Performance, Unlimited, and Developer Editions let you customize the action menus for Outlook or Gmail using email application publisher layouts. After you’ve created the email application publisher layout, give your users access by assigning it to their user profiles.

Page 4 of 12