
Prachi Gupta
Individual-
Avnish replied to the discussion Salesforce Batch Apex - send Leads and opportunity records in one email along with two different tables. in the forum Salesforce® Discussions 5 years ago
Hello Muhammad,
I go through your code and find errors on implementation of the batch class:-
You are querying two objects in Database.query() which not possible in salesforce.
Solution -You can create an internal query if your Lead object and Opportunity object are related. (use carefully)
Thanks.
-
Avnish replied to the discussion What is Salesforce IQ? in the forum Salesforce® Discussions 6 years ago
Reply to What is Salesforce IQ?
Hello,
SalesforceIQ is based on Relate IQ, software described as a relationship intelligence platform, which Salesforce acquired in 2014. SalesforceIQ for Small Business lacks the complexity and customization options of the company's higher-end offering but provides an affordable and easily-deployed solution for small and medium-sized… Read more
-
Avnish replied to the discussion List types Natively supported by Salesforce JSON? in the forum Salesforce® Discussions 6 years ago
Reply to List types Natively supported by Salesforce JSON?
Hello,
JSON supports Objects, Arrays, Primitives (strings, numbers, boolean values (true/false), null) data types.
Thanks. -
Avnish replied to the discussion What is the Maximum file size for external data Salesforce API upload? in the forum Salesforce® Discussions 6 years ago
Reply to What is the Maximum file size for external data Salesforce API upload?
Hello,
If you use the External Data API: 40 GB. Maximum file size per external data upload If you use the user interface: 512 MB
Thanks.
-
Avnish replied to the discussion What is IaaS in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to What is IaaS in Salesforce?
Hello,
Cloud infrastructure services, known as Infrastructure as a Service (IaaS), are self-service models for accessing, monitoring, and managing remote datacenter infrastructures, such as compute (virtualized or bare metal), storage, networking, and networking services (e.g. firewalls). Instead of having to purchase hardware outright, users… Read more
-
Avnish replied to the discussion What is a block, an element and a modifier in SLDS? in the forum Salesforce® Discussions 6 years ago
Reply to What is a block, an element and a modifier in SLDS?
Hello,
A block represents a high-level component (e.g. .car)
An element represents a descendant of a component (e.g. .car__door)
A modifier represents a particular state or variant of a block or element (e.g. .car__door_red)Thanks.
-
Avnish and
shariq are now connected 6 years ago
-
Avnish replied to the discussion What are the limitations of Lightning Experience in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to What are the limitations of Lightning Experience in Salesforce?
hi,
Limitations
Information about an org’s Salesforce edition isn’t visible in Lightning Experience.
Langauages that are read from right to left,including Arabic are not supported in it.
Advanced currency management, or dated exchange rates, isn’t supported in general. But opportunities display the correct amount if the Close Date field is on… Read more -
Avnish replied to the discussion What are the types of custom events in Salesforce Lightning condition? in the forum Salesforce® Discussions 6 years ago
Reply to What are the types of custom events in Salesforce Lightning condition?
Hello shradha,
Types of custom events:-
Component-Level Events
Component-level events are generated by a component and can be handled by the component itself, or its containing component or application.<!–c:ceEvent–>
<aura:event type=”COMPONENT”>
<aura:attribute name=”message” type=”String”/>
</aura:event>Application-Level… Read more
-
Avnish replied to the discussion When to use SOAP API in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to When to use SOAP API in Salesforce?
hi,
You can use SOAP API when you need to create, retrieve, update, or delete records. You can also use SOAP API to perform searches and much more.
-
Avnish replied to the discussion What are the field datatypes that can be used as external IDs in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to What are the field datatypes that can be used as external IDs in Salesforce?
hi,
External ID in salesforce is unique identifier for data used from outside world.Using an auto-number field avoids case-sensitive ID values that might otherwise confuse systems not designed to handle such ID values, like Excel (which is, by default, case sensitive).
-
Avnish replied to the discussion How Question-to-Case makes it easier to resolve customers issues in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to How Question-to-Case makes it easier to resolve customers issues in Salesforce?
hi,
Question-to-Case Overview: Question-to-Case lets moderators create cases from questions in Chatter, which makes it easier to track and resolve your customers’ issues. Question-to-Case is available in the full Salesforce site and Salesforce mobile web, as well as in communities where Chatter Questions is enabled.Chatter Questions lets… Read more
-
Avnish replied to the discussion Explain Render and Rerender in Salesforce Lightning. in the forum Salesforce® Discussions 6 years ago
Reply to Explain Render and Rerender in Salesforce Lightning.
hi,
render
render : function(component, helper) {
var ret = this.superRender();
// custom rendering logic here
return ret;}rerender
rerender : function(component, helper){
this.superRerender();
// custom rerendering logic here
} -
Avnish replied to the discussion What is Time-Dependent Workflow in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to What is Time-Dependent Workflow in Salesforce?
The basic rule configuration is the same, but for time-based rules, you configure time-triggers in the time-dependent actions section. Each time trigger can execute one or more Workflow actions.
-
Avnish replied to the discussion What does “View all” and “Modify all” permission do at object level in Salesforce? in the forum Salesforce® Discussions 6 years ago
Reply to What does “View all” and “Modify all” permission do at object level in Salesforce?
Hello,
The “View All” and “Modify All” permissions ignore sharing rules and settings, allowing administrators to grant access to records associated with a given object across the organization. “View All” and “Modify All” can be better alternatives to the “View All Data” and “Modify All Data” permissions.
Thanks. -
Avnish replied to the discussion Why do we use interface in Salesforce Apex Class? in the forum Salesforce® Discussions 6 years ago
Reply to Why do we use interface in Salesforce Apex Class?
Hello,
Let see an scenario,
For example, implementing the Schedulable interface guarantees that System.schedule knows how to run the code inside of the class, while implementing Comparable allows List.sort to know how to sort a collection of that object. This allows a given method to know how to interact with objects that may well be… Read more
-
Avnish replied to the discussion What is Salesforce Shield? in the forum Salesforce® Discussions 6 years ago
Reply to What is Salesforce Shield?
Hello,
Salesforce Shield is a set of point and click tools that provides extra level of security to meet internal and regulatory compliance. This includes Platform Encryption, Event Monitoring and Field Audit Trail, outlined below.
Thanks.
-
Avnish replied to the discussion Can any one tell me when do we use custom controller in Salesforce with extension class? in the forum Salesforce® Discussions 6 years ago
Reply to Can any one tell me when do we use custom controller in Salesforce with extension class?
Hello,
When using custom controller you may or may not create constructor as a default constructor is always present when you ceate any class.
Thanks. -
Avnish replied to the discussion What problems you have encountered when calling Salesforce batch apex from a trigger? in the forum Salesforce® Discussions 6 years ago
Reply to What problems you have encountered when calling Salesforce batch apex from a trigger?
Hello,
You can call a batch from a trigger, but you need to be aware of potential limits you could hit. You can only have 5 batch jobs queued or executing at once. If your trigger calls batch jobs each time, then you could quickly exceed that limit.
Thanks.
-
Avnish replied to the discussion How to send email using javascript on Salesforce Visualforce Page? in the forum Salesforce® Discussions 6 years ago
Reply to How to send email using javascript on Salesforce Visualforce Page?
Hello,
You can create simple js method
<script type="text/javascript">
function sendEmail() {
// put code here
}
</script>
and add to command button onclick event
onclick="sendEmail()"
And why you want implement requirement without controller? - Load More