I realized the RTP inferred organization was not accessible as a lead attribute or under marketing activity data. It's only available in RTP. It's very usable data and I wanted to bridge that gap and make it available as a field.
This led me to use experiment by
This is working and as mentioned in the above example this results in a value like this:
www.mydomain.com/LPO/NAME OF THE COMPANY HERE
This is where I need help from you. Is anyone aware of a method through smart campaigns/calculated fields/witchcraft to run a replace like function on a field without using the API or Export>Import process?
For my javascript people this is what I'm looking for at a field level:
var x = "www.mydomain.com/LPO/NAME OF THE COMPANY HERE";
var org = x.replace("www.mydomain.com/LPO/","");
// org now equals "NAME OF THE COMPANY HERE"
Appreciate any thoughts/feedback
With a webhook-compatible service, simply done.
Without a webhook, nope.
P. S. You don't want to use Click Link as it blocks the UI thread. Visit Web Page was the right choice.
Sanford Whiteman - Thank you the advice on webhooks was useful. Now that I am using them... I am noticing some of my newer custom fields are not listed as a selectable option for Response Mappings. Is this common? do I just need to wait a bit? FYI - These are not Formula fields.
I was not aware of the the blocking nature of ClickedLink vs VisitWebPage through munchkin. Is that documented anywhere?
Appreciate the feedback
Shouldn't be any delay -- though you need to refresh the Admin page.
I was not aware of the the blocking nature of ClickedLink vs VisitWebPage through munchkin. Is that documented anywhere?
Not in those precise terms, but you can see the console warning which tells you the same synchronous behavior would be blocking.
if you're integrated with Salesforce, the formula custom field can do what you want.