Multiple quick link urls

Guys

I love the quick link url function it means I can send docs to those to technologically challenged to log in and find docs but is there a way I can tick a set of docs and export the links and metadata into an excel spreadsheet as just a general user?

Cheers

Spadge

Parents Reply
  • If you noticed how the quicklinks are built from the quickURL, you can use this to create your own custom report or search column in eB like this sample eQL:

    http://your-portal-name/Search/QuickLink.aspx?n=XYZ-123123&t=3&d=&sc=YOURSCOPE&r=5&i=view

    START WITH Document

    SELECT
    Id,
    Code,
    Revision,
    'http://your-portal-name/Search/QuickLink.aspx?n=' + Code + '&t=3&d=&sc=YOURSCOPE&r=' + Revision + '&i=view' QuickURL,
    Name,
    Scope.Name
    WHERE
    Code = 'XYZ-123123'
    AND Revision = '5'

    From here you can customise the eQL to suit your needs then use Download All Results to download to Excel.

    Hope that helps.

    Answer Verified By: Carma De Villiers 

Children
No Data