Ask your Query : Click here
Hope it helps!
One recent query I got is that a company was trying to migrate some stuff from SharePoint directories back to shared network folders. They also needed to show link to shared network folder on CRM forms.Here is what I thought might work out (works only in IE, other browsers do not support file protocol anymore):
Make a HTML web resource:
<html>
<head>
<meta charset=”utf-8″ />
<title></title>
</head>
<body>
<button onclick=”window.open(‘file://Network path)”>Click me!</button>
</body>
</html>
Upload it and put it on the form:
Now when you click it, it will let you open a shared network location.
Some things to note:
CRM URL should be under trusted sites
Different network policies need to be allowed to be doing so.
Hope it helps!
Ask your Query : Click here