
Subhendu Verma
Individual-
Shubham started the discussion What are the benefits of Salesforce CRM? in the forum Salesforce® Discussions 6 years ago
What are the benefits of Salesforce CRM?
What is the benefit of Salesforce CRM?
-
Shubham started a discussion
What is the difference between SOQL and SOSL?
-
Shubham started the discussion How we Convert Lead through Salesforce Apex? in the forum Salesforce® Discussions 6 years ago
How we Convert Lead through Salesforce Apex?
How we Convert Lead through Apex?
-
Neha and
Shubham are now connected 6 years ago
-
Shubham started the discussion Value not shown in a Picklist Field? in the forum Salesforce® Discussions 7 years ago
Value not shown in a Picklist Field?
I add a value in Pick-list type Field.But it is not show in field as a option,Why ?
-
Suryadeep and
Shubham are now connected 7 years ago
-
Archit and
Shubham are now connected 7 years ago
-
Ratnakar and
Shubham are now connected 7 years ago
-
ABHISHEK and
Shubham are now connected 7 years ago
-
kapil and
Shubham are now connected 7 years ago
-
Ankit and
Shubham are now connected 7 years ago
-
Shubham replied to the discussion How to show error message on the detail page of Salesforce sobject through before delete trigger? in the forum Salesforce® Discussions 7 years ago
Hi RadaKrishna
How it is Work now,can you explain please
Actually now It is also navigate to the other page on delete of a selected account in case of 'before delete' trigger is active
-
Shubham replied to the discussion how to set Button enable and disable mode in the forum Salesforce® Discussions 7 years ago
Reply to how to set Button enable and disable mode
Hello Uday
****In Controller****
This is our getter and setter method(getImage and setImage) ,Here we First get value of our Image. Then in setter method we set this value to our declared variable(String selectedImage).
****InVF Page****
There is an attribute disabled in "button" through this we enable or disable our button according o… Read more
-
Shubham replied to the discussion how to set Button enable and disable mode in the forum Salesforce® Discussions 7 years ago
Reply to how to set Button enable and disable mode
Hello Uday
****Controller****
public class sampleCon {
public String selectedImage{get;set;}public sampleCon(){
selectedImage = '';
}
public PageReference test() {
return null;
}public List<SelectOption> getItems() {
List<SelectOption> Images = new List<SelectOption>();
Images.add(new… Read more -
Shubham replied to the discussion Salesforce trailhead challenges in the forum Salesforce® Discussions 7 years ago
Reply to Salesforce trailhead challenges
Please Go to the setup You find Object Manager (with low arrow Option) Click that arrow.Then you find New (+ New Object) through this you create your Object.Here Expense and Camping Item are Custom Object.
After creating any Object you find Field and Relationship options on left side.Click it then create field whatever you want.
-
Shubham replied to the discussion Salesforce trailhead challenges in the forum Salesforce® Discussions 7 years ago
Reply to Salesforce trailhead challenges
Hello Anish
Please Follow the below link
This is the trailhead module for your questions. As you start the Lightning Concepts So firstly you must set up your org setting.In given module it is step by step process to solve your problem.
-
Shubham replied to the discussion why salesforce introduced without sharing keyword,but apex class run on the system mode? in the forum Salesforce® Discussions 7 years ago
Reply to why salesforce introduced without sharing keyword,but apex class run on the system mode?
Hello Uday
If a class is call by(or call) another class which enforce sharing rule(with sharing) then its automatically enforced sharing rule.In this situation if we want that our class don't acquire sharing then we use 'without sharing' Keyword.
E.g.
****Sharing Class****
public with sharing class sharing{
}
****Class Call(or Call… Read more
-
Shubham replied to the discussion what is difference between static methods and non static methods in Salesforce? in the forum Salesforce® Discussions 7 years ago
Reply to what is difference between static methods and non static methods in Salesforce?
hello Uday
****Static Method****
Static methods can be used without instantiating a new instance of the class.
public class Utils {
public static String getHelloWorld() {
return 'Hello World';
}
}These methods can be called directly
String salutation = Utils.getHelloWorld();
****Non-Static Method****
Non-static method must have a… Read more -
Shubham started the discussion How to find (trigger.meta.xml) file of any Trigger in Salesforce? in the forum 7 years ago
How to find (trigger.meta.xml) file of any Trigger in Salesforce?
I want to deactivate my Trigger through apex code. I find out that it is done through trigger.meta.xml of trigger.But I don't know how i accces this file
-
Shubham replied to the discussion How i can delete selected list value on button click in Salesforce? in the forum Salesforce® Discussions 7 years ago
Reply to How i can delete selected list value on button click in Salesforce?
hello Shaharyar
Please Try below Code,Its for Contact you may use for other Object
*****Controller****
public class deleteContactController
{
public List<wrapContact> listWrapContact {get; set;}
public class wrapContact
{
public Contact con {get; set;}
public Boolean selected {get; set;}
public wrapContact(Contact c)
{
con = c;
selected… Read more - Load More