Manish
IndividualForum Replies Created
-
Hi Udit
Assignment rules are used to automate your organization’s lead generation and support processes.
Types:
Lead Assignment Rule
Case Assignment Rule
-
Manish
MemberJanuary 24, 2020 at 2:06 pm in reply to: What is the use of <apex:Repeat> Tag in Salesforce Visualforce ?apex:repeat is an iteration component that allows you to output the contents of a collection according to a structure that you specify.
-
Manish
MemberJanuary 24, 2020 at 1:24 pm in reply to: What is a Lead conversion process in Salesforce and what happens when a Lead gets converted?Hi Udit,
In sales life cycle ,there are two types of customers and both are leads:
1.Prospect Customer
2.Potentiol Cutomer
Prospect customers are the customers who are just checked the product and they are less interested to buy product .while Potential customers there those who is going to buy product then they need converted into account and contact and opportunity.
-
Manish
MemberJanuary 24, 2020 at 1:13 pm in reply to: What is the inner query in SOQL in Salesforce ?Hi Arun
If you are trying to fetch data from one object to another object then and they should have parent child relationship between them, then you go for inner query.
-
Manish
MemberJanuary 23, 2020 at 12:21 pm in reply to: What is Wrapper class in visualforce page in Salesforce ?Hi Arun
Wrapper class is that class that is used to wrap or bind multiple object on one page.
-
Manish
MemberJanuary 23, 2020 at 12:06 pm in reply to: Differentiate between freeze user and deactivate user in Salesforce ?Hi Kiran
Deactivate User: Deactivated user means that user is no longer able to login as well he lost their ownership from all data and their license becomes free can assign to other users. In this case license becomes free , we can assign to other user.
Example : If Employee leaving company ,n that case ou will deactivate to user.
Freeze User:: It means that user will not be able to login for perticular period of time unless admin will not activate him again.In this case user lisence will not get free.
Example : when employees goes for long holidays or other reason.
-
Manish
MemberJanuary 23, 2020 at 7:57 am in reply to: What are Render and Rerender in Salesforce Visualforce page ?Hi Arun
Render:Render is used to hide or display a visualforce component.
<apex:page controller="RenderedControllr">
<apex:form >
<apex:pageBlock >
<apex:commandButton value="Show Bottom Page Block" action="{!ShowBlockMethod}"/>
</apex:pageBlock>
<apex:pageBlock rendered="{!flag}">
Account Name :<apex:outputField value="{!filedName}"/>
<br/>
Account Number :<apex:outputField value="{!fieldNAme}"/>
</apex:pageBlock>
</apex:form></apex:page>
reRendered:It is used to refresh perticular section of vf page.
<apex:page controller="ControllerName">
<apex:form >
<apex:pageBlock >
<apex:commandButton value="Refresh Section" action="{!method}" rerender="one"/>
</apex:pageBlock><apex:pageBlock id="one">
<b> Output Text : </b> <apex:outputText value="{!fieldname}"/>
</apex:pageBlock>
</apex:form></apex:page>
-
Wrapper Class:
Wrapper class or container class is a class that wraps or binds the different objects or collections of object fields on a single object.
-
Manish
MemberJanuary 22, 2020 at 7:28 am in reply to: What are the Access Modifiers in Salesforce Apex ?Hi Arun
Have a look on answer:
Access modifiers specifies accessibility or scope of a field, method, constructor, or class.
Access Modifiers are :
Private
Default
protected
public
-
Manish
MemberJanuary 21, 2020 at 5:24 pm in reply to: What are the limitations of validation rule in Salesforce?Hi Anjali
Validation rule is used validate the data or record that user is entring based on requirement.
-
Manish
MemberJanuary 21, 2020 at 5:15 pm in reply to: What are the limitations of Process Builder in Salesforce?Hi Kiran
Few differences between process builder and Triggers:
- we can not use process builder in before event on DML, while in trigger we can.
- We can not use process builder to delete or undelete records while in triggers we can.
-
Manish
MemberJanuary 21, 2020 at 5:03 pm in reply to: What is the difference between a standard and a custom controller in Salesforce Apex?Hi Arun
Standard controller : it is to used to use the standard functionality provided by salesforce on Visualforce page.
<apex:page standardController="Account">
</apex:page>
Custom Controller: when we want to add our own logic to design the page with apex then we use custom controller.
<apex:page Controller="MyCustomAccount">
</apex:page>
Note: We can both standard and custom controller to use the fuctionality bu sing extensions.
-
Manish
MemberJanuary 18, 2020 at 8:12 am in reply to: How many custom controllers can we have per Visualforce page in Salesforce?Hi Deepak,
We have three types of controllers that we use on Visualforce Page,
- Standard Controller : Standard controllers will have same logic and functionality used standard visualforce pages. No Apex code is required in Standard Controllers
Syntax: <apex:page standardController="Account">
2. Custom Controller : When a developer needs different logic and functionality he/she may write their own Apex controller class. Custom controller’s will not provide default functions like standard controllers.
Syntax : <apex:page controller="ClassName">
3. Extensions : If we want to use both custom controller functionality and standard controller functionality we use extension controllers. Extension Controllers begins with Standard controller and extended or overridden with custom controller with custom apex code.
Syntax: <apex:page standardController="Äccount" extensions="ClassName, ClassName2">
-
Manish
MemberJanuary 16, 2020 at 1:31 pm in reply to: How to copy results from Query Editor in Developer Console in Salesforce?"Yes, you can download" ,use Workbench for this.
https://workbench.developerforce.com/login.php,
You need to login workbench with your salesforce org, and then in queries section you have to put your query and execute.
Then you have to select ''Bulk CSV file' and you can download your data file in your desired format.