Ayush
IndividualForum Replies Created
-
Ayush
MemberSeptember 29, 2020 at 1:06 pm in reply to: What are the different types of webservices in Salesforce? -
-
Ayush
MemberSeptember 24, 2020 at 1:31 pm in reply to: How do I add a quote to a PDF in Salesforce? -
- Quotes in Salesforce represent the proposed prices of your company's products and services and lookup with opportunity.
-
Ayush
MemberSeptember 23, 2020 at 1:09 pm in reply to: How to redirect to another vf page from current vf page in Salesforce? -
Ayush
MemberSeptember 18, 2020 at 4:01 am in reply to: How to permanently delete a record in Salesforce?- We can hard delete record or list of records using emptyRecycleBin() function in apex.
-
Ayush
MemberSeptember 18, 2020 at 3:57 am in reply to: How can we disable trigger using custom settings in Salesforce?It may be help you https://trailblazers.salesforce.com/answers?id=9063A000000l0wnQAA
-
Ayush
MemberSeptember 15, 2020 at 3:59 am in reply to: Which interface implement lightning component as a tab in Salesforce?force:appHostable.
-
Streaming API enables streaming of events using push technology and provides a subscription mechanism for receiving events in near real time. The Streaming API subscription mechanism supports multiple types of events, including PushTopic events, generic events, platform events, and Change Data Capture events.
-
Ayush
MemberSeptember 15, 2020 at 3:54 am in reply to: What is Lightning Design system in Salesforce?This provides all CSS (Cascading Style Sheets) and Images to create the Standard lightning Component instead of write CSS again for lightning Components.
-
Ayush
MemberSeptember 15, 2020 at 3:51 am in reply to: What are the types of events in Salesforce lightning component?There are 3 types of Event.
1. Application
2. Component
3. System -
Ayush
MemberSeptember 15, 2020 at 3:48 am in reply to: How to create static resource in Salesforce?It may be help you
https://www.tutorialspoint.com/salesforce/salesforce_static_resources.htm -
-
Ayush
MemberSeptember 14, 2020 at 1:54 pm in reply to: What is the use of $A.util.isEmpty() in Salesforce Lightning Component?Returns <samp>true</samp> if the argument is empty.
-
Ayush
MemberSeptember 14, 2020 at 1:43 pm in reply to: How can we permanently delete the record from salesforce?We can hard delete record or list of records using emptyRecycleBin() function in apex.
-
Ayush
MemberSeptember 11, 2020 at 9:46 am in reply to: What are the Limitations of Time-dependent workflow in Salesforce?It may be help you :
http://sfdcfaq.blogspot.com/2013/04/time-dependent-workflow-limitations.html -
Ayush
MemberSeptember 7, 2020 at 1:11 pm in reply to: How many ways we can create visualforce page in salesforce?With the help of 1. Url , 2. Developer console;
-
Ayush
MemberSeptember 7, 2020 at 1:08 pm in reply to: How many controller extensions we can use in Salesforce?There is no limit.
-
Ayush
MemberSeptember 7, 2020 at 12:26 pm in reply to: How to query Custom setting in Apex in Salesforce?SELECT id, Name FROM Custom_Setting__c,,
-
Ayush
MemberSeptember 7, 2020 at 11:44 am in reply to: How do you call private methods in Test class?With The Help of @TestVisible.
-
Ayush
MemberSeptember 4, 2020 at 6:59 am in reply to: What are the key benefits of asynchronous processing?>Higher governor and execution limits
>Unlimited number of external callouts
>Override organization-wide sharing defaults -
Ayush
MemberSeptember 4, 2020 at 6:46 am in reply to: Is it possible to send Custom Notifications Using Apex without making API Call? -
Ayush
MemberAugust 28, 2020 at 7:38 am in reply to: How to find the last index within a String from a start position in Apex?lastIndexOf(substring, endPosition)
Returns the index of the last occurrence of the specified substring, starting from the character at index 0 and ending at the specified index. -
Ayush
MemberAugust 28, 2020 at 7:03 am in reply to: What is the use of virtual keyword for a class in Salesforce?Virtual classes allow you to define "full" classes. They implement all of the necessary functionality to operate on their own, but can be extended by child classes in order to allow customization of its behavior.
-
Ayush
MemberAugust 28, 2020 at 6:31 am in reply to: How do I remove special characters from a string in Salesforce?you can use removeAll() .