function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
venk1255venk1255 

Problem with Hyper link

Hi All,

 

I am facing the below error when i am using this hyperlink ,any one can please suggest me the solution ,it would be great appericated

 

 

Thanks in Advance

 

 

 

Error: Syntax error. Missing ')'

 

HYPERLINK("https://www.sunpowersupport.com/Stringsizer/flashDataReport?salesOrder="&ORDER_NUMBER__c &"&sessionid=" &$Api.Session_ID&"serverurl="https://c.cs3.visual.force.com/services/Soap/c/15.0/00D80000000ZF1L, "Get Flash Data Report","_blank")

 

 

 

gautam_singhgautam_singh

Try solving it through this ..


HYPERLINK("https://www.sunpowersupport.com/Stringsizer/flashDataReport?salesOrder=" & ORDER_NUMBER__c & "sessionid=" &Api.Session_ID, "Get Flash Data Report","_blank")

that error was coming due to the server url ..



Important :

Hit Kudos if this provides you with useful information and if this is what you where looking for then please mark it as a solution for other benefits.

Thank You .

Shannon HaleShannon Hale

You're missing a double-quote at the end of the serverurl string, so the remainder of the formula is not being parsed correctly.

 

You probably also need to use "&serverurl=...", if it's being passed in as a query string parameter.

Madhan Raja MMadhan Raja M

Try this:

 

HYPERLINK("https://www.sunpowersupport.com/Stringsizer/flashDataReport?salesOrder="&ORDER_NUMBER__c&"&sessionid="&$Api.Session_ID&"serverurl=https://c.cs3.visual.force.com/services/Soap/c/15.0/00D80000000ZF1L","Get Flash Data Report",
"_blank")

 

Regards,

Madhan Raja M