How to add an external URL attached to the CAD document properties (column)?

I would like to add an additional column for my CAD documents that I can link to external URL. 

Examples URL link to the CAD PDM. 

I hope to keep 2d drawing in PDF only in the database but all the native CAD drawing stored in the PDM. 

Could anyone teach me how to do this?

I am very new, using Aras.

Appreciate if you could indicate the step in more details.

Thank you!

Magga

Parents Reply Children
  • Hi Angelap,

    Thanks for the information provided. 

    I have managed to create a hyperlink by HTML method on the form.

    Assume I have a custom variable property under item type, call “file name”

    The location of the file always the same which is at 'xxxx.sharepoint.com/.../’

    HTML script as below

     

    <script>

    var thisItem = document.thisItem;

    var id= thisItem.getProperty("file_name","");

     

    window.onload = function()

    {

        document.getElementById('url').href += id;

    }

    </script>

     

    <a href='xxxx.sharepoint.com/.../' id='url' target="_blank">Click to access file </a>

    Cheer!