• hector martin 9
  • NEWBIE
  • 0 Points
  • Member since 2023

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies

Hi Salesforce community!
I'm working on integrating our website with Salesforce and would appreciate your insights on best practices. I have a few specific questions:
Recommended methods for integrating website (https://ehsaasprograms8171.pk/) data with Salesforce? Tools/plugins to recommend?
How to ensure a seamless data flow between website and Salesforce? Any pitfalls/challenges to be aware of?
Considerations/best practices for capturing leads, contact info, and customer interactions on the website and syncing with Salesforce?
Effective ways to leverage Salesforce features (web-to-lead forms, lead assignment rules) for streamlined lead generation and management on the website?
Security concerns when integrating the website with Salesforce? How to protect customer data and comply with data privacy regulations?

Any tips, recommendations, or success stories you can share would be appreciated!
Thank you in advance!

 

On the Account object I have created a formula field called Domain_Name__c . The formula I have used is this,

 

SUBSTITUTE(Website, LEFT(Website, FIND("www.", Website)), NULL)

 

Where website is a standard field on Account.

 

If Website is www.xyzdomain.com or https://www.xyzdomain.com

 

In Domain_Name__c I expected result as xyzdomain.com

 

Instead i am getting the result either as

.xyzdomain.com or ww.xyzdomain.com depending on whether the Email entered was 'www.xyzdomain.com' or 'https://www.xyzdomain.com'


Any thoughts how I can only get the text after the .   

 

e.g If, in the field Website  I enter www.salesforce.com  or  https://www.salesforce.com the result in the Domain_Name__c should be salesforce.com