Skip to main content

Posts

Showing posts from August, 2018

Sales flow : From Lead to Quote Process in Salesforce

 A lead is someone who is interested in the products or services from your organization. These leads in salesforce are generated via Campaigns, Content Marketing, Seminars and Advertising etc. Technically in Salesforce, Leads are created via 1. Manual creation 2. Bulk File import 3. Social Media 4. Out-of-Box functionality such as Web-to-Lead or Email to Lead 5. Email Services 6. Live Agent (Chat sessions) 7. CTI integration (Tele Sales) 8. Integration from other Systems Once the lead is qualified, It can be converted into Salesforce Account, Contact and Opportunity . Account, Contact and Opportunity :  Account is a company or a person with whom your company has relationship. Contact represents a person from the account we have relationship. An opportunity represents a prospective sale and it contains relevant sales data. Once opportunity is created and it has to go through various stages before it is closed. These stages can be customized as per our company needs. The below lis

Salesforce OAUTH Error "We can't authorize you because of an OAuth error. For more information, contact your Salesforce administrator"

 Salesforce oauth_error_code=1800 is generic error which say OAuth flow has been broken. The below list contains a few reasons when we see this error message 1. Sometimes corrupted cookies can cause this issue. Test the OAUTH flow by clearing cookies or using Private window of the browser. 2. Time out issue : Oauth login has 15-30 minutes of grace period during which Oauth approval process has to be completed. Otherwise this error can happen.  3. Lack of necessary permissions such as API, Apex, Visualforce permissions for the user 4. If OAuth and SAML is involved with the flow, The error usually indicates that there is relayState issue. 5. Any other internal server error at Salesforce platform which can be solved by raising the case with Support.

Custom Lightning component not showing in Community Builder

 Sometimes We can see that the lightning component we create, will not be displayed under ' Custom Components ' of community builder. There are a few reasons for that.    1. Make sure that the component implements the interface ' flexipage:availableForAllPageTypes ' and access level to ' global '.    2. Sometimes Lightning component can have design file which renames the component name. The component will be displayed with the label name provided in design file.  HelloWorld.cmp <design:component label=" Welcome "> The above component will be displayed with the name ' Welcome ' in Community builder. 3. Also Object specific Lightning Components are not available in the Component list in Community Builder. For this kind of errors, the most likely cause is that the page variation needed for that specific component has been deleted. Ref : https://help.salesforce.com/articleView?id=000257309&type=1&language=en_US 4.When access