Month: August 2022
OAuth 2.0 Web Server Flow for Web App Integration in Salesforce
To integrate an external web app with the Salesforce API, use the OAuth 2.0 web server flow, which implements the OAuth 2.0 authorization code grant type. With this flow, the server […]
ORG A record will pass to ORG B webservice in Salesforce REST API
Just taking about live scenario, For now we have two ORG, ORG A and another ORG B. ORG A record will pass to ORG B webservice, The webservice will than […]
REST API Integration from one org to another in salesforce
Just taking about live scenario, For now we have two ORG, ORG A and another ORG B.What we will doing today is we will try to fetch an account from […]
OAuth 2.0 Username-Password Flow In Salesforce
You can use the username-password flow to authorize a client via a connected app that already has the user’s credentials. However, we recommend avoiding this flow because it passes credentials […]
Send PDF as Attachment in Visualforce Page
This blog will help you about How we can send an email with an attached file in it through Visualforce and Apex. Here I am using two Visualforce pages, first one […]
Can we perform DML using wire service ?
NO, we can only receive the data and we cannot mutate/change the data using wire service. The wire service delegates control flow to the Lightning Web Components engine. Delegating control […]
Attachment to File Conversion in Salesforce Using Apex
Salesforce introduced Files related list in Winter’16, and now Salesforce is going to replace Notes and Attachment section with Files. Basically, Files that you upload to the Notes & Attachments […]
Salesforce Lightning Aura Method
aura:method Use aura:method to define a method as part of a component’s API. This enables you to directly call a method in a component’s client-side controller instead of firing and handling a […]
Application event in Lightning AURA component
Lightning framework is based on event-driven architecture which allows to communicate between different events. Lightning events are fired from JavaScript controller actions that are triggered by a user interacting with […]
Component event in lightning component(AURA)
Component Events are fired by the child components and handled by the parent component.A lightning framework is an event driven architecture i.e communication between the components takes place by using […]