MOHIT
IndividualForum Replies Created
-
MOHIT
MemberAugust 31, 2020 at 11:51 am in reply to: How to create the Many to Many relationships between object in salesforce?Create one custom object, which should have auto number as unique identification and create two Master- Detail relationships for this object. And this Object is called as Junction object.
-
Cross-Object Formula can reference merge fields from a master(“parent”) object if an object is on the detail side of a master-details relationship. We can reference fields from object that are up to ten relationships. We can able to insert related Object data into a formula.
-
MOHIT
MemberAugust 26, 2020 at 1:22 pm in reply to: What is meant by javascript remoting for Apex controller in Salesforce?Use javascript remoting in VisualForce to call methods in apex controllers from javascript.
-
MOHIT
MemberAugust 26, 2020 at 1:22 pm in reply to: What is the difference between dynamic and static SOQL in Salesforce?Dynamic SOQL:
It is used to refer to the creation of a SOQL string at run time with Apex code.- Dynamic SOQL enables you to create a more flexible application.
- To create a Dynamic SOQL query at run time use Database.Query() method, in one of the following ways.
- Return a single sObjects when the query returns a single record.
Static SOQL-
The Static SOQL Statement is written in [] (Array Brackets)
These statements are similar to IINQ (Ion Integrated Query) -
MOHIT
MemberAugust 26, 2020 at 1:17 pm in reply to: How can DML be performed partially in Apex in Salesforce?If we want DML to happen partially, use database.insert(list, false);
-
MOHIT
MemberAugust 21, 2020 at 8:56 am in reply to: How to enable custom fiscal year in Salesforce?To create a custom fiscal year, click Enable Custom Fiscal Years, click OK, and define your fiscal year. See Define a Custom Fiscal Year. Warning Custom fiscal years cannot be disabled once enabled. Enabling custom fiscal years has impacts on your reports, forecasts, quotas, and other date-sensitive material.
-
MOHIT
MemberAugust 21, 2020 at 8:44 am in reply to: What is the use of custom fiscal year in Salesforce?Custom Fiscal Year - Follows a custom structure you define. For example, you could have 4 quarters with 13 weeks per quarter in a 4-4-5 pattern or 13 periods per year.
-
MOHIT
MemberAugust 21, 2020 at 8:37 am in reply to: Which three permissions are set in a user profile in Salesforce?Run reportsObject permissions Mass mail
-
MOHIT
MemberAugust 21, 2020 at 8:34 am in reply to: Who is the default case owner if it is created from web form in Salesforce?System Administrator is the default case owner.
-
MOHIT
MemberAugust 21, 2020 at 8:33 am in reply to: What are two valid assignee options used in Case assignment rule in Salesforce?Queue and User are valid assignee.
-
An external data source specifies how to access an external system. Salesforce Connect uses external data sources to access data that's stored outside your Salesforce organization. Files Connect uses external data sources to access third-party content systems.
-
<div data-md="83"><div aria-level="3" role="heading"><b style="background-color: transparent; font-family: inherit; font-size: inherit;">Connect an External Data SourceFrom Setup, enter External Data Sources in the Quick Find box, then select External Data Sources.Click New External Data Source.Enter OrderDB as the label.Select <b style="background-color: transparent; font-family: inherit; font-size: inherit;">Salesforce Connect: OData 2.0 as the type.Leave the remaining <b style="background-color: transparent; font-family: inherit; font-size: inherit;">settings with their default values and click Save.
<div><div><div data-hveid="CAsQHA" data-ved="2ahUKEwiot7f24qvrAhXN7nMBHfLkADYQFSgBMAh6BAgLEBw">
</div></div></div></div></div> -
MOHIT
MemberAugust 19, 2020 at 7:48 am in reply to: What are the context variables in Triggers in salesforce?- Trigger.new, Trigger.old.
- Trigger.NewMap, Trigger.OldMap.
- isInsert, isUpdate, isDelete, isBefore, isAfter, isUndelete.
-
MOHIT
MemberAugust 19, 2020 at 7:47 am in reply to: Which method in custom settings returns list of records in salesforce?getAll().
-
MOHIT
MemberAugust 19, 2020 at 7:44 am in reply to: Can we have duplicates in the External ID in salesforce?NO.
-
MOHIT
MemberAugust 19, 2020 at 7:43 am in reply to: can we move it from one sandbox to another sandboxYes, we can move a class from one sandbox to another sandbox. But if we want to move a class from sandbox to production environment we need to have a Test Class with a minimum of code coverage should be 75%.
-
- Validation Rules verify that the data a user enters in a record meets the standards we specify before the user can save the record.
- Validation rule also included the error message to display to the user when the rule returns a value of true due to an invalid value.
-
MOHIT
MemberAugust 19, 2020 at 7:38 am in reply to: Can we delete a record using the Workflow in salesforce?No.
-
MOHIT
MemberAugust 19, 2020 at 7:36 am in reply to: Mention the names of Standard Controllers in salesforce?Accounts, Contacts, Opportunities, Leads…etc.(all Standard and custom objects).
-
A read-only field that derives its value from a formula expression which we define. The formula field is updated when any of the source fields change.
-
MOHIT
MemberAugust 19, 2020 at 7:32 am in reply to: What are the Data Components in the Dashboards in salesforce?The following are the Data Components in the dashboards.
- Horizontal Bar Chart.
- Line Chart.
- Pie Chart.
- Donut Chart.
- Funnel Chart.
- Gauge Chart.
- Metric.
- Table.
Note : The Components of the dashboard that use the Grand Totals is Metric and Guage.
-
MOHIT
MemberAugust 11, 2020 at 1:25 pm in reply to: Can we include on formula field with in another formula field?Yes, we can include on formula field with in another formula field. It will calculate the formula field characters which we included in the formula field.
-
MOHIT
MemberAugust 11, 2020 at 12:35 pm in reply to: How many characters can we enter in the formulae field?We can enter upto 3900 characters in the formula field. If we exceed the limit, then it will give the compilation error.
-
MOHIT
MemberAugust 11, 2020 at 12:33 pm in reply to: What is the difference between Trigger and Workflow?- Workflow: Inbuilt functionality, used on single object.
- Trigger: Used for complex business process in which multiple Objects can handle.
Examples:-
- Using Workflow, Based on the criteria we mentioned on the parent record, we can do filed update on the parent only but not on the chid object.
- Using Triggers, Based on the criteria we mentioned on the parent record, we can do field update on the child also.
-
MOHIT
MemberAugust 11, 2020 at 12:32 pm in reply to: What is the difference between render, rerender and renderas?- Render: Component in Visualforce page can show or hide by suing render.
- Rerender: If we want to refresh partial page in Visual force page we have to use Rerender.
- Render as: By using this we can convert entire visual force into PDF. the syntax is Render as = “pdf”.