In this article you can find the alternate solution for Enhancement 352513. The steps will allow the user to combine a URL and Field ID on a Free-Form Text Field via Workflow. The final URL set on the Text Field will show on the Hyperlink Custom Field and will be displayed as a clickable URL.
Note: To search and vote for the Enhancement, see 10054 Voting for Enhancements.
Solution
A. Create a Custom Entity Field of Type Free-Form Text to hold the URL value:
- Navigate to Customization > Lists, Records, & Fields > Entity Fields > New
- Label = URL Field
- Type = Free-Form Text
- Store Value = marked
- Go to Applies To subtab
- Contact = marked
- Click Save
B. Create Workflow to set the value of Custom Entity Field from Step A:
- Navigate to Customization > Workflow > Workflows > New
- Set a Name for the Workflow
- Record Type = Contact
- Release Status = Released
- In Event Definition:
- On Create = marked
- On View or Update = marked (unmark this if the Workflow should only execute upon create)
- Click Save
- On State 1: Click New Action > Set Field Value
- Trigger On = After Record Submit
- On Parameters: Field = URL Field (created from Step A)
- On Value: Select Formula radio button and add the formula to join the static URL and Field ID (i.e. Formula = CONCAT(‘https://www.test.com/’, {custentity_ID}) )
- Click Save
C. Create a Custom Hyperlink Field to copy value set by Workflow on Custom Field from Step A:
- Navigate to Customization > Lists, Records, & Fields > Entity Fields > New
- Label = URL Field Clickable
- Store Value = unmarked
- Go to Validation & Defaulting subtab
- Default Value = {ID of Custom Field from Step A}
- Formula = marked
- Click Save