Forum Replies Created

Page 4 of 57
  • shariq

    Member
    September 24, 2018 at 3:23 am in reply to: What is the Use of THIS Salesforce CSS class?

    This adds namespacing to CSS and helps prevent one component’s CSS from blowing away another component’s styling.

  • shariq

    Member
    September 24, 2018 at 3:23 am in reply to: why do we use $A.enqueueAction(action) in Salesforce?

    It adds the server-side controller action to the queue of actions to be executed. Rather than sending a separate request for each individual action, the framework processes the event chain and batches the actions in the queue into one request. The actions are asynchronous and have callbacks.

    • This reply was modified 5 years, 7 months ago by  shariq.
  • ui:button, ui:myCmp, and myApp.app.

  • We register an event by using the following code

    <aura:registerEvent name=”sampleComponentEvent” type=”c:compEvent”/>

    We fire event as shown below:

    var compEvent = cmp.getEvent(“sampleComponentEvent”);
    compEvent.fire();

    Handle component event as below:

    <aura:handler name=”sampleComponentEvent” event=”ns:eventName”
    action=”{!c.handleComponentEvent}” phase=”capture” />

    Handle Application event as below:

    <aura:handler event=”c:appEvent” action=”{!c.handleApplicationEvent}”/>
  • shariq

    Member
    September 24, 2018 at 3:21 am in reply to: How can we extend any Salesforce Component?

    To make a component extendable we need to set value of ‘extensible’ attribute as ‘true’ of the aura:component tag.
    When a component extends another component it inherits all of the helper methods and attributes

  • shariq

    Member
    September 24, 2018 at 3:21 am in reply to: What is aura:attribute in Salesforce?

    They are same as member variable in apex classes, they are typed fields and are instance of a component. Attribute helps in making component more dynamic.

    All attributes have a name and a type can be marked required by specifying ‘required=true’and can also have a default value. It has a naming rule as well:

    1. Must begin with a letter or an underscore
    2. Must contain only alphanumeric or underscore characters

  • shariq

    Member
    September 24, 2018 at 2:48 am in reply to: Who can run Reports in Salesforce?

    In Salesforce.com, most reports run automatically when we click on the report name. If we want to run a report click on “Run Report” to run automatically.

  • shariq

    Member
    September 24, 2018 at 2:48 am in reply to: What are Custom Report Types in Salesforce?

    Custom report types in salesforce allows us to build framework in the report wizard when creating custom reports. This custom reports can be created between standard and custom objects.

  • No

  • Account sharing Rule.
    Contact Sharing Rule.
    Case Sharing Rule.
    Opportunity sharing Rule.
    Lead Sharing Rule.
    Custom Object sharing Rule.

  • shariq

    Member
    September 24, 2018 at 1:35 am in reply to: What is a Record Owner in Salesforce?

    Record Ownership : The User or Queue who controls and have the right to access  a record.

    Generally there are two types of Owners. They are

    Users.
    Queues

  • shariq

    Member
    September 24, 2018 at 1:28 am in reply to: List some standard indexed fields in salesforce.com?

    Id, name, owner fields, lookup fields, master-detail relationship fields, audit dates like Last Modified dates etc are the standard indexed fields in Salesforce.com.

  • shariq

    Member
    September 24, 2018 at 1:27 am in reply to: What are Static Resources in Salesforce?

    Static resources helps to store upload images, files, zip files, documents, javascript files, Css Files which can be used in visualforce pages. Maximum data storage limit for static resource is 250mb.
    An example of a static resource is an image. It’s the same for each and every request. It’s a file on the filesystem that doesn’t require any processing – you simply tell nginx send this file as-is to the user.

  • shariq

    Member
    September 24, 2018 at 1:24 am in reply to: What is a Fiscal Year in Salesforce?

    Fiscal years in Salesforce are used to define starting and ending date of an organization financial year.Fiscal years in salesforce are two types they are.

    Standard fiscal year :- To change starting month of the fiscal year this type is used.
    Custom fiscal year :- We can set custom fiscal year dates like quarters, weeks.

  • shariq

    Member
    September 24, 2018 at 1:23 am in reply to: How to get security token in Salesforce.com?

    To get security token in salesforce.com go to your name=>Personal=>Reset my Security token.

  • shariq

    Member
    September 24, 2018 at 1:23 am in reply to: Tell me about Company Profile in Salesforce?

    In salesforce.com company profile consists of information about language, locale, time zone, number of licenses, storage and available space, about fiscal year, address and currencies.

  • shariq

    Member
    September 24, 2018 at 1:21 am in reply to: What is Role in Salesforce?

    Role Hierarchy settings make the managers and subordinates to edit, and view the records. The users in the Hierarchy can be able to view, edit and report all the data shared.

    It is possible to bypass Grant Login access using Hierarchies in case of standard objects

    To create roles in salesforce go to setup=>Administer=>Manage Users=> Roles.

  • shariq

    Member
    September 24, 2018 at 1:19 am in reply to: What are the Standard and Custom Fields in Salesforce?

    Standard fields for custom objects stores the information about  created by, modified by, currency, Name, owner and Division. These are the standard fields in Salesforce.com.
    Custom field fo

  • shariq

    Member
    September 24, 2018 at 1:17 am in reply to: What is TAB in Salesforce?

    Salesforce.com provides list of tabs and are placed in Tab menu. To access data of an objects Tabs are used. Tabs in Salesforce are three types they are.

    Custom Tabs.
    Visualforce Tabs.
    Web Tabs.

  • shariq

    Member
    September 24, 2018 at 1:11 am in reply to: What is Salesforce?

    Salesforce is one of the best customer relationship management (CRM) tool. Salesforce is among one of the best web based flexible and powerful database provider available in the market.

  • shariq

    Member
    September 24, 2018 at 1:10 am in reply to: What are common factors on SaaS, PaaS, and IaaS in Salesforce?

    SaaS, Paas and IaaS are the three types of services provided using “cloud”. Their common factor for providing services to organization and customer is the “CLOUD” depending upon the types of the service they need. SaaS provides Software service on cloud where PaaS provides Platform for application development and finally, IaaS provides Infrastructure.

  • shariq

    Member
    September 24, 2018 at 1:09 am in reply to: What are the different types of Cloud Service Providers in Salesforce?

    Cloud Service Providers are those who provide cloud services to the business and customers or consumers. Cloud Service providers will have huge data base, Data centers, infrastructure, software’s, platform and hardware systems.

  • shariq

    Member
    September 24, 2018 at 1:08 am in reply to: What is Private Cloud in Salesforce?

    Private Cloud Can be accessed only with in the limited premises. In Private cloud Cloud Services Providers Cloud infrastructure to particular Organization or Business specially. This Cloud infrastructure is not provided to others

  • shariq

    Member
    September 24, 2018 at 1:07 am in reply to: What is IaaS in Salesforce?

    Full form IaaS is “Infrastructure as a Service”. Here in IaaS  the cloud service providers will provides infrastructure like servers, hosting services and storage. Servers and storage’s are the basic services provide by Cloud Service Providers.

  • shariq

    Member
    September 24, 2018 at 1:04 am in reply to: List some CRM Software’s including Salesforce?

    We have number of CRM softwares which are provided by top CRM companies some of them are listed below depending upon their present market.

    Salesforce CRM.
    Microsoft Dynamics CRM.
    Oracle CRM.
    SAP CRM.
    Sage CRM.
    NetSuite CRM.
    Oracle CRM on Demand.
    Oracle Sales Cloud(Fusion CRM).
    SugarCRM.
    Nimble

Page 4 of 57