Anuj
IndividualForum Replies Created
-
Anuj
MemberJune 5, 2020 at 11:40 am in reply to: How to deploy your test classes from sandbox to production in Salesforce?Using change set you can deploy your test class from sandbox to production
-
Anuj
MemberJune 4, 2020 at 1:15 pm in reply to: How would you put one lightning component to another in Salesforce?use <c:'componet_name'>
-
Anuj
MemberJune 4, 2020 at 12:56 pm in reply to: What is the use of interface flexipage:availableForRecordHome in Salesforce?It is used to display a component on Record pages or if you want your component to add in Record page on any object then implement this interface on your component.
-
Anuj
MemberJune 4, 2020 at 12:53 pm in reply to: What is lightning:navigation in the Salesforce Lightning component?lightning:navigation is used to navigate to another page in lightning or given pageReference or generate a URL from pageReference.
-
Use Chatter features, like feeds, profiles, groups, and more, to share information, collaborate, and keep up with the latest updates in your company.
-
Anuj
MemberJune 3, 2020 at 1:54 pm in reply to: A marketing user has received a file of leads to import into SalesforceIn order to import this in Salesforce, you need to find Import Wizard in the quick find box. Select it then launch it. Once you have launched it, you can choose the various leads and click on update existing records.
-
Anuj
MemberJune 3, 2020 at 1:52 pm in reply to: How can an administrator capture custom lead data on the converted contact .When a Sales Administrator wants to convert a lead and capture custom lead data on the converted contact they can map custom contact leads to custom contact fields. In order to map custom leads you must go to object management settings for leads and then to the fields section from there.
-
Log lines are made up of a set of fields, delimited by a pipe ( | ). The format is: timestamp : Consists of the time when the event occurred and a value between parentheses. ... event identifier : Specifies the event that triggered the debug log entry (such as SAVEPOINT_RESET or VALIDATION_RULE )
-
The Stack Tree panel displays two tree views that show information “top down”—from initiating calls to the next level down—so that you can see the hierarchy of items in a process. For example, if a class calls a second class, the second class displays as a child node of the first class
-
The Execution Stack panel displays a “bottom-up” view of the currently selected item in the debug log, starting with the lowest level call, followed by the operation that triggered that call, and so on.
-
Anuj
MemberJune 1, 2020 at 1:57 pm in reply to: What options are available to you for deploying from a Sandbox to Production?Change set are used to deploy from sandbox to production.
-
Anuj
MemberJune 1, 2020 at 1:55 pm in reply to: What is difference between SOAP and WSDL in Salesforce?There is no difference between SOAP and WSDL .
WSDL are used in SOAP and there are two types of WSDL available
1. Enterprise WSDL
2. partner WSDL -
Anuj
MemberJune 1, 2020 at 1:47 pm in reply to: Can you customise Apex & Visualforce directly a production org?No, we can not edit in production.
-
In Salesforce Classic, add or edit a chart from the Report Builder.
Click Add Chart in report builder. For existing charts, click Edit Chart.
Select a chart type.
Enter the appropriate settings on the Chart Data tab for the chart type you selected.
Enter the appropriate settings on the Formatting tab.
Click OK -
Select the "Component Type" for the component you want to deploy (for example, Apex class, Apex Trigger). Select the specific class or trigger name, then click Add to Change Set. From the "Change Set Detail" related list, click Upload, then select the target organization as Production. Click Upload.
-
Set Up Two-Factor Authentication. Two-factor authentication is the most effective way to protect your org's user accounts. When two-factor authentication is enabled, users are required to log in with two pieces of information, such as a username and a one-time password (OTP).
-
Anuj
MemberMay 29, 2020 at 1:56 pm in reply to: When to use sending email alert through code in Salesforce?when we want to notify user regarding any changes in code
-
Anuj
MemberMay 28, 2020 at 1:20 pm in reply to: What kind of report can be used in a Salesforce dashboard?Summary and Matrix report type are used in dashboard
-
Anuj
MemberMay 28, 2020 at 1:14 pm in reply to: How to create custom flied using the Metadata API in salesforce?Once you have imported the code, you can go back to your Salesforce account, and search for “apex classes.” Click the “new” button, then paste the metadata from this website. Once the metadata has been entered, you can run the apex code, and will be able to start creating custom objects and fields
-
Anuj
MemberMay 28, 2020 at 1:13 pm in reply to: How do I fix this error 'Required fields are missing: [CurrentNodeId]'check whether you added or not, required field if not then add them this error generally shows-up when required field are not added.
-
Anuj
MemberMay 27, 2020 at 1:56 pm in reply to: How do we create a pop-up component in Salesforce Lightning?Use lightning Modal for creating pop-up
-
Future methods are used to run the process in a separate thread, at later time when system resources are available. We can use future methods for any operation we would like to run asynchronously in its own thread.
-
Anuj
MemberMay 27, 2020 at 1:45 pm in reply to: What is the use of $A.get("e.force:refreshView").fire(); in Salesforce?It is used to get an event name and fire the event which is registered in the component.
-
Anuj
MemberMay 26, 2020 at 1:59 pm in reply to: How to stop the Event Propagation to other Lightning Components in Salesforce ?Any handling event can stop propagation by calling stopPropagation() on the event. Bubble phase—The framework executes the bubble phase from the source component to the application root until all components are traversed or stopPropagation() is called event propagation.
-
Anuj
MemberMay 26, 2020 at 1:58 pm in reply to: What is the use of includefacets attribute in Lightning Component ?To allow a container component to handle the event, add includeFacets="true" to the <aura:handler> tag of the container component. For example, adding includeFacets="true" to the handler in the container component, c:container, enables it to handle the component event bubbled from c:eventSource