You need to sign in to do that
Don't have an account?
mallikharjunarao gunda
custom button error Enter a URL that is valid and well-formed
Error: Enter a URL that is valid and well-formed
please helpme
see this code
{IF(Opportunity.parent__c==null,
URLFOR($Action.Opportunity.New,null,[clone=1,id=Opportunity.Id,retURL="/"&Opportunity.Id,00N2800000FJLEz= Opportunity.Name ],true),
Opportunity.parent__c
)
}
please helpme
see this code
{IF(Opportunity.parent__c==null,
URLFOR($Action.Opportunity.New,null,[clone=1,id=Opportunity.Id,retURL="/"&Opportunity.Id,00N2800000FJLEz= Opportunity.Name ],true),
Opportunity.parent__c
)
}
Here are few threads from the developer's community with similar issue which might help you.
- https://success.salesforce.com/answers?id=90630000000i9RwAAI
- https://success.salesforce.com/answers?id=90630000000gzRtAAI
- https://developer.salesforce.com/forums/?id=906F0000000AbcHIAS
Mark,this as solved if this helps.Best Regards,
Nagendra.P
I have looked at all of the above threads, plus many others, and the responses are all out-dated for URLs/IF statements using Lightning (java workarounds don't work in lightning, there's one that links to an article/post that is 404'd, etc).
I am trying to make the following work for a Custom Button to open custom pre-filled links in FormAssembly:
IF({!User.Id}= {!Contact.OwnerId}, https://seiu503.tfaforms.net/forms/view/154?tfa_1={!Contact.Id}&tfa_126={!Account.Id}&tfa_128={!User.Id}&tfa_148=tfa_152, https://seiu503.tfaforms.net/forms/view/154?tfa_1={!Contact.Id}&tfa_126={!Account.Id}&tfa_128={!User.Id}&tfa_148=tfa_153)
each URL works fine on its own (we've been using "https://seiu503.tfaforms.net/forms/view/154?tfa_1={!Contact.Id}&tfa_126={!Account.Id}&tfa_128={!User.Id}" on its own for a while with no problem), but will not save when attempting the IF statement. I get the same "Error: Enter a URL that is valid and well-formed" error.
any useful suggestions are appreciated!