You need to sign in to do that
Don't have an account?
SalesRed
How to overcome URL's being too long for URL Field?
Hi , I have URL's which are referencing files in Amazon S2. THe URL's are too long to store in a URL field therefore I have been storing them in Long Text Area fields. I would like to display the URL as a clickable URL in a related list on a detail page. Is it possible to workaround the URL size restrction without having to create a visualforce page for this? I had thought of using a Formula field either but could not do so with a Long Text Area if requiring to store the URL detail there.
Any thoughts or suggestions on this would be welcomed.
Thanks in advance.
Any thoughts or suggestions on this would be welcomed.
Thanks in advance.
Thanks for the suggestion on LinkFOrce also.
All Answers
https://appexchange.salesforce.com/listingDetail?listingId=a0N30000003I9j1EAC
Thanks for the suggestion on LinkFOrce also.
2 field names URL_Part_1__c and then URL_Part_2__c
Formula:
URL_Part_1__c & URL_Part_2__c
Thanks for the idea.