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
Kenneth Yde NikolajsenKenneth Yde Nikolajsen 

hyperlink/button to open internal server folders from Salesforce

Has anybody a solution to do this. 

I need to open a path on our servers through salesforce, when clicking on a button or hyperlink, it should open the folder based out of a path + a input field from salesforce, to link to the right folder

Prafull G.Prafull G.
Yes, you can generate dynamic url in salesforce using input field value from salesforce. Ex. if you have field Folder__c on your custom object then you can utilize it as 

javascript 
'your internal server path/' + {!object.folder__c}
Same can be done in apex as well.

let us know if this helps.