Parul
IndividualForum Replies Created
-
Parul
MemberSeptember 24, 2018 at 2:45 am in reply to: n case of Master-Detail relationship, on Update of master record can we update child record using Salesforce Workflow Rule?Not possible, as we discuss earlier
-
Parul
MemberSeptember 24, 2018 at 2:33 am in reply to: How does Salesforce Lightning framework support Inheritance?HI
Inheritance, The perfect way to create Code Reusability and Extensibility!!
With this blog, we will learn how you can leverage the inheritance in Lightning Component. You need to follow below steps:Create a Base Component (The component that you will inherit). Make you Base component extensible using extensible=”true”. Define the body of Base component.
Create a controller or helper or both for your base component.
You must put {!v.body} inside your base component’s code. This will allow your base component to handle the events generated by Sub Components.
In your Sub Component definition extend base component. Like extends=”namespace:baseComponentName”
Use attributes of Base component in the similar way as you do for the normal component like {!v.baseComponentAttributeName}
Call controller method of Base component directly from Sub component like {!c.baseControllerMethodName}
Call helper method of Base component from helper/controller of Sub component like helper.baseHelperMethodName(params);Thanks
-
Parul
MemberSeptember 24, 2018 at 2:32 am in reply to: How to generate a custom code to dynamically represent bundle internals in Salesforce CPQ?Hi
you can define the package product according to the configuration whenever CPQ assign the bundle quote lines. The sales rep can use each package product code as an SKU to send the data quickly to their orders team.
Hope this helps.
-
Parul
MemberSeptember 24, 2018 at 2:31 am in reply to: How To Create Collapsible Section And Accordion In Salesforce Lightning Component?Use this code snippet:
Lightning Component
<aura:component >
<div class="slds-p-around--large"><div class="slds-page-header" style="cursor: pointer;" onclick="{!c.sectionOne}">
<section class="slds-clearfix">
<div class="slds-float--left ">
<lightning:icon class="slds-show" aura:id="articleOne" iconName="utility:add" size="x-small" alternativeText="Indicates add"/>
<lightning:icon class="slds-hide" aura:id="articleOne" iconName="utility:dash" size="x-small" alternativeText="Indicates dash"/>
</div>
<div class="slds-m-left--large">Section 1</div>
</section>
</div><div class="slds-hide slds-p-around--medium" aura:id="articleOne">
section one is ready.section one is ready.section one is ready.
section one is ready.section one is ready.section one is ready.
section one is ready.section one is ready.section one is ready.
</div></div>
</aura:component>Controller:
({
sectionOne : function(component, event, helper) {
helper.helperFun(component,event,'articleOne');
},})
Helper:
({
helperFun : function(component,event,secId) {
var acc = component.find(secId);
for(var cmp in acc) {
$A.util.toggleClass(acc[cmp], 'slds-show');
$A.util.toggleClass(acc[cmp], 'slds-hide');
}
},
})App
<aura:application extends="force:slds">
<c:collapseSec/>
<!-- here c: is org. default namespace prefix-->
</aura:application>
Hope this helps!You can refer too my blog, please like if it helps!
Thanks
-
Parul
MemberSeptember 24, 2018 at 2:24 am in reply to: Where does the field and section from Page Layout appear in Salesforce Lightning Experience?The page layout editor has two basic parts: a palette on the upper portion of the screen and the record’s page layout on the lower portion of the screen. The palette contains the basic elements—such as fields, actions, buttons, links, and related lists—that you can add and arrange on your page. You can think of the upper part as the buffet table and the lower part as the plate of food you’re assembling.
Thanks.
-
In order to use Tabular report in Dashboard, you have to set row limit and dashboard settings for the report. Tabular reports are the simplest and fastest way to look at your data. they consist simply of an ordered set of fields in columns, with each matching record listed in a row. While easy to set up, they can't be used to create groups of data and there are limits to how you can use them in dashboards. Consequently, they're often best used for tasks like generating a mailing list.
Let's take an example so that it clears to you,
We’ll want to generate a list for our Account Executive of all open opportunities above a particular amount threshold, so that she can do some outreach this afternoon.
Sales use case: Review all open opportunities above a particular amount threshold.
1. On Reports, click New Report, choose the Opportunities report type, and click Create.
2. Apply the following filters:Select All Opportunities for Show.
Select Open for Opportunity Status.
Select Created Date for Date Field.
Select Current FY for Range.3. The following columns should already be included in your report: Opportunity Name, Type, Lead Source, Amount, Expected Revenue, Close Date, Next Step, Stage, Probability (%), Fiscal Period, Age, Created Date, Opportunity Owner, Owner Role, Account Name.
4. Click Save, name your report Open Opportunities This Year, and accept the auto-generated unique name.
5. Enter a description and choose the My Personal Custom Reports folder.
6. Click Run Report.Hope this helps you!
Thanks
-
Parul
MemberSeptember 24, 2018 at 2:10 am in reply to: Can We add two owners on an account in Salesforce?No the record owner field on any object can only one, a single User.Id . To "share" an Account among multiple users you can use Account Team Members.
-
Adding some point
Note:
There can only be one owner of an account. You can share an account with another user, or provide access through sharing rules, or role hierarchy.
-
Parul
MemberSeptember 24, 2018 at 1:49 am in reply to: What are the different types of Sharing Rules in Salesforce and explain them?the different types of Sharing Rules in Salesforce:
Account sharing Rule.
Contact Sharing Rule.
Case Sharing Rule.
Opportunity sharing Rule.
Lead Sharing Rule.
Custom Object sharing Rule.Sharing Rules in Salesforce make automatic exceptions to your organization wide sharing settings for defined set of users. Using Sharing Rules in Salesforce we can extend sharing access to user in public groups, roles or territories. Sharing rules can never be stricter than Organization wide default settings.
-
Parul
MemberSeptember 24, 2018 at 1:48 am in reply to: Tell me about Company Profile in Salesforce?salesforce.com company profile consists of information about various things like the details that are provided when your company first signs up with Salesforce.com, can be managed. You will also be shown how to find your way around the Salesforce Setup menu, and will be introduced to the settings available for the organization-wide customization of the application's user interface along with the search facilities offered by the Salesforce CRM application.
Use the Company Information page in Setup to track what’s important about your company’s organization in Salesforce. You can also manage your licenses and entitlements. This page contains the information that was provided when your company signed up with Salesforce.
-
Role is used to define hierarchy
-
Fiscal years in Salesforce are used to define starting and ending date of an organization financial year
-
Parul
MemberSeptember 24, 2018 at 1:29 am in reply to: How can we call child component controller method from parent component controller method in Salesforce?aura:method which is publically accessible, aura:method is used to communicate down the containment hierarchy i.e. parent to child.
-
Parul
MemberSeptember 24, 2018 at 1:29 am in reply to: Which interface is to be implemented so that a Salesforce Lightning Component can be used as a Tab?“force:appHostable” interface we are supposed to implement so that a lightning component can be used as a Tab
-
Parul
MemberSeptember 24, 2018 at 1:28 am in reply to: What are the basic differences between Application Event and Component Event in Salesforce?Component events are used to do communication between child and parent.
Application events are used to communicate any change in the component to a broader audience.
Adding some more points:
Application Events vs Component Events : Which/How to use for handling custom events in Lightning. Lightning framework is based on event-driven architecture which allows to communicate between different events. Lightning events can be fired or handled by javascript controller.
-
Matrix Reports in Salesforce are those where the data is arranged in grid format having rows and columns.
Matrix Reports are a special report similar to a pivot table. Matrix reports are not uncommon and are useful for measuring trends.
Matrix report has groups of data based on columns and rows. This report can be used to represent comparison between related total with total by row and total by column.
-
Parul
MemberSeptember 24, 2018 at 1:22 am in reply to: What are the Standard and Custom Fields in Salesforce?A support case's name can be CA-1024. Fields you create on standard or custom objects are called custom fields. ... Identity, system, and name fields are standard on every object in Salesforce. Each standard object also comes with a set of prebuilt, standard fields.
-
Parul
MemberSeptember 24, 2018 at 1:19 am in reply to: What are the different types of Cloud Service Providers in Salesforce?Example of Cloud Service providers:
Amazon and Rackspace. Other major cloud service providers include Cisco, Citrix, Google, IBM (SoftLayer), Oracle, Microsoft (Azure), and SAP, Rackspace, and Verizon (which acquired Terremark).
Rackspace, who started as a web hosting company and buy either PAAS or IAAS services. Many cloud providers are focusing on specific verticals, such as hosting healthcare applications in a secure IAAS environment.Cloud service providers (CSP) are companies that offers network services, infrastructure, or business applications in the cloud. The cloud services are hosted in a data center than can be accessed by companies or individuals using network connectivity.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.
The large benefit of using a cloud service provider comes in efficiency and economies of scale. Rather than individuals and companies building their own infrastructure to support internal services and applications, the services can be purchased from the CSP, which provide the services to many customers from a shared infrastructure.
There are several different forms of services that can be used “in the cloud” by CSPs, including software, often referred to as Software as a Service (SaaS), a computing platform for developing or hosting applications, known as Platform as a Service (PaaS); or an entire networking or computing infrastructure, known as Infrastructure as a Service (IaaS). The divisions, however, are not always clear-cut, as many providers may offer multiple flavors of cloud services, include traditional web or application hosting providers. -
Parul
MemberSeptember 24, 2018 at 1:16 am in reply to: What are common factors on SaaS, PaaS, and IaaS in Salesforce?The cloud is a very broad concept, and it covers just about every possible sort of online service, but when businesses refer to cloud procurement, there are usually three models of cloud service under consideration, Software as a Service (SaaS), Platform as a Service (PaaS), and Infrastructure as a Service (IaaS).
-
Salesforce is the innovative company behind the world’s #1 CRM platform. Salesforce began with the vision of reinventing Customer Relationship Management (CRM).This approach has helped to make Sales Cloud the world’s number 1 CRM system.
Salesforce is a company which provides a web based tool called Salesforce. Salesforce by following the Cloud Computing approach, providing SAAS and PAAS and IAAS -
Infrastructure as a service (IaaS) is a form of cloud computing that provides virtualized computing resources over the internet. IaaS is one of the three main categories of cloud computing services, alongside software as a service (SaaS) and platform as a service (PaaS).
-
Private cloud refers to a model of cloud computing where IT services are provisioned over private IT infrastructure for the dedicated use of a single organization. A private cloud is usually managed via internal resources.
The terms private cloud and virtual private cloud (VPC) are often used interchangeably. Technically speaking, a VPC is a private cloud using a third-party cloud provider's infrastructure, while a private cloud is implemented over internal infrastructure.
Private clouds may also be referred to as enterprise clouds.
-
Parul
MemberSeptember 24, 2018 at 1:05 am in reply to: How many active assignment rules can you have in a lead or case in Salesforce?We have multiple for the rule but at a time onle one assignment rule can be action in your org, so that your case assigned to correct queue.
-
Parul
MemberSeptember 24, 2018 at 1:04 am in reply to: What are the four custom tabs required for Salesforce marketing cloud installation?can you explain your requirment because i have search but didn't find.
-
Parul
MemberSeptember 24, 2018 at 1:03 am in reply to: Define error: "Initial term of field expression must be a concrete SObject: LIST" in Salesforce The reason for this kind of error may be comparison of list with single sobject because list is a collection of data you can’t compare with it single sobject .