Nikita
IndividualForum Replies Created
-
Hi,
Ideas enable a group of users to post, vote for, and comment on ideas. Enabling Ideas in a community provides an online, transparent way for you to attract, manage, and showcase innovation.
-
Nikita
MemberOctober 14, 2019 at 12:28 pm in reply to: When importing data, what happens if some records do NOT meet the data validation criteria?HI,
When importing data, if some records do NOT meet the data validation criteria , the Import process fails only for the records with invalid data.
-
Nikita
MemberOctober 14, 2019 at 12:24 pm in reply to: what are the differences between console app and standard app ?Hi,
Apps with standard navigation let you open a single record at a time. However, apps with console navigation let you open multiple records at a time, and related records open in subtabs under the original record. In console apps, you also get a handy split view that lets you work quickly through a list of records.
-
Hi,
The value assigned to this component will be rendered as-is, without altering its contents. It's intended for outputting pre-formatted HTML, for example, where the formatting is arbitrary, or expensive to calculate. The body of this component is ignored, and won't be rendered. Warning: this component outputs value as unescaped HTML, which introduces the possibility of security vulnerabilities in your code. You must sanitize user input before rendering it unescaped, or you will create a cross-site scripting (XSS) vulnerability. Only use <aura:unescapedHtml> with trusted or sanitized sources of data.
-
Hi,
aura:text is Renders plain text. When any free text (not a tag or attribute value) is found in markup, an instance of this component is created with the value attribute set to the text found in the markup.
-
Nikita
MemberOctober 11, 2019 at 8:18 am in reply to: Which methods can be used to store records using sharing rules in salesforce?Hi Piyush
Following methods can be used to store records using sharing rules in salesforce
- Public Groups
- Roles
- Roles and Internal Subordinates
- Roles Internal and Portal Subordinates
-
Nikita
MemberOctober 11, 2019 at 8:11 am in reply to: How to use a picklist field value in salesforce formula field when return type is text?Hi Laveena,
To get The Selected Value from Picklist you can try TEXT(Picklist Field Name). It will return the Selected Picklist Value.
-
Nikita
MemberOctober 11, 2019 at 8:08 am in reply to: How to concatenate two and more field values in formula of salesforce process builder?Hi Laveena,
You can use the +symbol to concatenate two or more fields values in the formula of the salesforce process builder.
For Example : To Make a AccountName Field will have its AccountName with Its AccountNumber ,you can use formula as [Account].Name + [Account].AccountNumber
When you create a account as following
You will get its name as following
-
Nikita
MemberOctober 11, 2019 at 6:36 am in reply to: Which objects can be transferred using the mass transfer tool?Hi Piyush,
Use the Mass Transfer tool to transfer multiple accounts, leads, service contracts, and custom objects from one user to another.
-
Nikita
MemberOctober 11, 2019 at 6:34 am in reply to: Which standard chart type can be placed on the salesforce dashboard?Hi Piyush,
standard chart type can be placed on the salesforce dashboard are following:
Bar Charts
A bar chart shows values as horizontal lengths, so this format can be good for comparing distance or time. Use a bar chart when you have a summary report with a single grouping, or you only want to display one grouping.
Column Charts
A column chart is very much like a bar chart, but it can be a better format for showing relative counts of things, such as leads or dollars. Use a column chart when you have a summary report with a single grouping, or you only want to display one grouping.
Line Charts
Line charts are good for showing changes in the value of an item over a series of points in time, such as week to week or quarter to quarter. Use a line chart when you have one important grouping representing an ordered set of data and one value to show.
Pie Charts
Use a pie chart when you have multiple groupings and want to show the proportion of a single value for each grouping against the total.
Donut Charts
Use a donut chart when you have multiple groupings and want to show not only the proportion of a single value for each grouping against the total, but also the total amount itself.
Funnel Charts
Use a funnel chart when you have multiple groupings in an ordered set and want to show the proportions among them.
Scatter Charts
Use scatter charts to show meaningful information using one or two groups of report data plus summaries. -
Nikita
MemberOctober 9, 2019 at 7:06 am in reply to: What are the ways so user can access salesforce from their mobile devices?Hi Piyush,
There are the following two ways so the user can access salesforce from their mobile devices :
- Use the downloadable Salesforce1 mobile application
- Use web browser on a mobile device.
-
Nikita
MemberOctober 9, 2019 at 6:57 am in reply to: How do I find my security token in salesforce?Hi Prachi,
Login to your organization and Navigate to At the top navigation bar go to <your name > My Settings > Personal > Reset My Security Token.
And click on "Reset Security Token".Clicking the button invalidates your existing token. After resetting your token, It will be mail to the user mail ID
-
Hi,
Callout is any https call that accesses an external URL -- some other webservice or website.
callin would be the opposite -- some external web service or application using the Salesforce API to access Salesforce data.
-
Nikita
MemberOctober 4, 2019 at 8:37 am in reply to: What is the use of aura:iteration in salesforce lightning component?Hi Laveena,
aura:iteration iterates over a collection of items and renders the body of the tag for each item. Data changes in the collection are rerendered automatically on the page. It also supports iterations containing components that are created exclusively on the client-side or components that have server-side dependencies.
-
Hi Laveena,
When you create a sandbox, Salesforce copies the metadata from your production org to a sandbox org.
you can create a sandbox as following
- From Setup, enter Sandboxes in the Quick Find box, then select Sandboxes.
- Click New Sandbox.
- Enter a name (10 characters or fewer) and description for the sandbox.
- Select the type of sandbox you want.
- Select the data to include in your Partial Copy or Full sandbox.
- For a Partial Copy sandbox, click Next, and then select the template you created to specify the data for your sandbox.
- For a Full sandbox click Next, and then decide how much data to include.
- To run scripts after each create and refresh for this sandbox, specify the Apex class you previously created from the SandboxPostCopy interface.
- Click Create.
-
Nikita
MemberOctober 4, 2019 at 8:32 am in reply to: What happens when we refresh a sandbox in salesforce?Hi Laveena,
Refreshing a sandbox updates the sandbox’s metadata from its source org. If the sandbox is a clone or if it uses a sandbox template, the refresh process updates the org’s data in addition to its metadata.
-
Nikita
MemberOctober 4, 2019 at 8:29 am in reply to: What does a custom object permit the user to do in salesforce?Hi Laveena,
Custom objects in Salesforce are the database tables that help users to collect the information that is unique to the organization.
-
Nikita
MemberOctober 4, 2019 at 8:27 am in reply to: How Many Controllers can be used in a salesforce Visual Force Page?Hi Laveena,
You can have a standard object controller and multiple controller extensions.
-
Hi Laveena,
To access the token for a field, use one of the following methods:
Access the static member variable name of an sObject static type, for example, Account.Name.
- Call the getSObjectField method on a field describe result.
- The field token uses the data type Schema.SObjectField.
In the following example, the field token is returned for the Account object's Description field:
Schema.SObjectField fieldToken = Account.Description;
-
Hi Laveena,
The classes in the wave namespace are part of the Wave Analytics SDK, designed to facilitate querying Wave data from Apex code.
The following are the classes in the wave namespace.
QueryBuilder Class
The QueryBuilder class provides methods for constructing well-formed SAQL queries to pass to Wave Analytics.
QueryNode Class
Define each node of the query - such as projection, groups, order, filters. Execute the query.
ProjectionNode Class
Add aggregate functions to the query, or define an alias. -
Nikita
MemberOctober 4, 2019 at 6:58 am in reply to: How many component can have in one Application in salesforce ?Hi Piyush,
There is no limit on number of components defined within an application by salesforce.
-
Nikita
MemberOctober 4, 2019 at 6:53 am in reply to: Does Lightning work with Visualforce in salesforce?Hi Piyush,
Yes, Lightning works with Visualforce Page.
There are three steps to add Aura components to a Visualforce page.
- Add the Lightning Components for Visualforce JavaScript library to your Visualforce page using the <apex:includeLightning/> component.
- Create and reference a Lightning app that declares your component dependencies.
- Write a JavaScript function that creates the component on the page using $Lightning.createComponent().
-
Hi,
The disconnectedCallback()lifecycle hook fires when a component is removed from the DOM.
-
Nikita
MemberOctober 1, 2019 at 6:49 am in reply to: What is the difference between disconnectedCallback and connectedCallback?Hi,
disconnectedCallback()
- Called when the element is removed from a document.
- This hook flows from parent to child.
connectedCallback()
- Called when the element is inserted into a document.
- This hook flows from parent to child.