Anjali
IndividualForum Replies Created
-
Anjali
MemberJuly 2, 2020 at 12:56 pm in reply to: What Are Expressions Used In visualforce Pages To Bind In Controllers?Using methods we can bind.
Getter:Will return value from controller to vf page
Setter:Will pass value from vf page to controller
Action:Will redirect to another page. -
Anjali
MemberJuly 2, 2020 at 12:46 pm in reply to: Which Objects Have Associated Standard Controllers in visualforce in Salesforce?All standard and custom objects that can be accessed via the API have associated controllers.
-
Anjali
MemberJuly 2, 2020 at 12:41 pm in reply to: What is The Purpose Of visualforce Controllers in Salesforce?Controllers provide the data and actions that are available to a Visualforce page.
-
Anjali
MemberJuly 2, 2020 at 12:34 pm in reply to: What is the use of Cache.Session class in Salesforce?It stores data that is tied to individual user sessions. For example, you might use session cache in an app to store the user's favorite currency or a user's custom navigation tab order. With session cache, you can manage cache values in Apex and read cached values with a Visualforce global variable.
- This reply was modified 4 years, 4 months ago by Anjali.
-
Streaming API enables streaming of events using push technology and provides a subscription mechanism for receiving events in near real time.
-
A PushTopic is an sObject that contains the criteria of events you want to listen to, such as data changes for a particular object. You define the criteria as a SOQL query in the PushTopic and specify the record operations to notify on (create, update, delete, and undelete).
-
Anjali
MemberJuly 1, 2020 at 1:11 pm in reply to: What is the use of platform event message in Salesforce?Platform events enable developers to deliver secure, scalable, and customizable event notifications within the Salesforce platform or from external sources. Platform events are based on a publish-subscribe architecture.
-
With Salesforce Customer 360 degree view, Salesforce combines Salesforce apps customer data to create a customer management ID in order to provide a single view of the customer.
-
Apex Salesforce email services create an Inbound Email object that contains the contents and attachments of that email. You can use Apex classes to implement the Messaging, Inbound Email Handler Salesforceinterface to handle an inbound Salesforce email message.
-
Inbound web service is when Salesforce exposes SOAP/REST web service, and any external/third party application consume it to get data from your Salesforce org. It is an Inbound call to Salesforce.
-
Marking a method as storable (cacheable) improves your component's performance by quickly showing cached data from client-side storage without waiting for a server trip.
-
There are 3 types of Salesforce.com Portals. The feature differences are that Partner Portal exposes the Leads and Opportunity objects whereas the Customer Portal does not. Customer Portal is to support for your customers. Partner Portal is to support your Partners.
-
Anjali
MemberJune 26, 2020 at 2:32 pm in reply to: How do I enable view setup and configuration in Salesforce?Please refer this link-
https://success.salesforce.com/answers?id=906300000004B38AAE -
There are two types of events in the framework: Component events and Application events. Component events are handled by the component itself or a component that instantiates or contains the component. Application events are handled by all components that are listening to the event.
-
Anjali
MemberJune 25, 2020 at 11:49 am in reply to: What is the use of Schema.getGlobalDescribe() in Salesforce?getGlobalDescribe() Returns a map of all sObject names (keys) to sObject tokens (values) for the standard and custom objects defined in your organization.
-
Anjali
MemberJune 25, 2020 at 11:38 am in reply to: What are the different types of email templates that can be created?<div>Please refer this link-</div>https://help.salesforce.com/articleView?id=email_templates_classic_types.htm
-
Request a permanent increase to your API limit
Permanently increasing your API limit (or for more than 2 weeks) can be requested by contacting your Account Executive. -
They connect customers with experts, peers with shared interests, information, answers, and even other products or services they might enjoy.
They give customers a voice, to help companies improve and evolve with their ideal customers in mind. -
Login into your Dev Edition -> Click on "Help" at the Top -> Click on "My Cases" -> Click On "Log A Case" -> Select the Case Reason as "Feature Activation Request" -> Select "Feature Activation" in "General Activation Area" and ask for the Person Account Enablement.
-
Please refer this link-
https://help.salesforce.com/articleView?id=flow_build_logic_fault.htm&type=5 -
First analyze Sales activities then configure your system and build the dashboard. At last stage the deployment is done. You can use migration tools to do so.
-
Anjali
MemberJune 23, 2020 at 2:09 pm in reply to: How do you create a record collection variable in flow?Please follow the below link-
https://help.salesforce.com/articleView?id=flow_ref_resources_variable_populate.htm -
If you want attach file via code then please try to make instance of ContentDocumentLink object and add the LinkedEntityId to the specified parentId for it.
-
By creating contentVersion object, the contentDocument is automatically generated.
-
If a document is uploaded in Salesforce Lightning experience today, it becomes part of Files/Content in Salesforce. Files can be shared across objects which means having an attachment with multiple parents.