Avnish Yadav
IndividualForum Replies Created
-
Avnish Yadav
MemberApril 29, 2019 at 12:50 pm in reply to: Salesforce Batch Apex - send Leads and opportunity records in one email along with two different tables.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.
-
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 businesses (SMB) without the resources to support Salesforce's enterprise-level products.
Thanks.
-
Avnish Yadav
MemberOctober 17, 2018 at 12:40 pm in 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 Yadav
MemberOctober 17, 2018 at 12:35 pm in 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.
-
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 can purchase IaaS based on consumption, similar to electricity or other utility billing.
Thanks.
-
Avnish Yadav
MemberOctober 3, 2018 at 7:00 am in 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 Yadav
MemberSeptember 30, 2018 at 1:50 pm in 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 a page layout for opportunities.Because page layouts control who sees what on object records, only users who have this page layout assigned to them see the correct amount. -
Avnish Yadav
MemberSeptember 30, 2018 at 12:37 pm in 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 Events
Application-level events are published by a component, and any component or application that has subscribed to the event has its handler invoked when the event is fired.<!–c:aeEvent–>
<aura:event type=”APPLICATION”>
<aura:attribute name=”message” type=”String”/>
</aura:event>Thanks.
-
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 Yadav
MemberSeptember 30, 2018 at 12:32 pm in 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 Yadav
MemberSeptember 30, 2018 at 12:30 pm in 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 customers ask questions in the feed in communities and in your Salesforce organization. With Question-to-Case, you can now give moderators the ability to escalate questions in Chatter to cases, making it easier to track and resolve your customers’ issues.
Question-to-Case is available in the full Salesforce site and the Salesforce1 mobile browser app, as well as in communities where Chatter Questions is enabled. You can add it to your Salesforce organization, your communities, or both! -
Avnish Yadav
MemberSeptember 30, 2018 at 12:28 pm in 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 Yadav
MemberSeptember 30, 2018 at 5:43 am in 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 Yadav
MemberSeptember 30, 2018 at 5:38 am in 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 Yadav
MemberSeptember 30, 2018 at 5:38 am in 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 implemented after the original code was written. Without interfaces, you'd have to write a new copy of a given algorithm for every new data type.
Thanks.
-
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 Yadav
MemberSeptember 30, 2018 at 5:34 am in 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 Yadav
MemberSeptember 30, 2018 at 5:31 am in 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 Yadav
MemberSeptember 30, 2018 at 5:30 am in reply to: How to send email using javascript on Salesforce Visualforce Page?Hello,
You can create simple js method
`
Report
There was a problem reporting this post.
Block Member?
Please confirm you want to block this member.
You will no longer be able to:
- See blocked member's posts
- Mention this member in posts
- Invite this member to groups
- Message this member
- Add this member as a connection
Please note: This action will also remove this member from your connections and send a report to the site admin. Please allow a few minutes for this process to complete.