Content Management and Capture

 View Only
  • 1.  Send multiple documents to bookmark.jsp

    Posted Fri December 29, 2023 06:10 PM

    We are trying to create a link (URL) to Content Navigator which will contains three distinct DocumentID's, and when activated will load and display the three documents in the default FileNet Content Manager Viewer.  I've looked at the Navigator documentation for how to construct a link using bookmark.jsp:

    https://www.ibm.com/docs/en/content-navigator/3.0.15?topic=client-constructing-url-content-navigator

    It appears that for viewing document it only supports a single docid parameter

    Does anyone know how to send multiple documents in a single URL or if this is even possible without having to create custom code?



    ------------------------------
    Gary Busansky
    VP
    RGB Projects Inc
    CA
    ------------------------------


  • 2.  RE: Send multiple documents to bookmark.jsp

    Posted Mon January 01, 2024 08:25 PM

    Hi Gary,

    There is no way to achieve that. Navigator link only supports one id to view in viewer. Multiple documents need multiple URLs.



    ------------------------------
    JIE ZHANG
    ------------------------------



  • 3.  RE: Send multiple documents to bookmark.jsp

    Posted Tue January 02, 2024 01:49 PM

    Thanks for the feedback Jie Zhang.



    ------------------------------
    Gary Busansky
    VP
    RGB Projects Inc
    CA
    ------------------------------



  • 4.  RE: Send multiple documents to bookmark.jsp

    Posted Tue January 02, 2024 01:44 PM

    It cannot be done with a URL.  However, it can be done using a plugin.  We started with these articles:

    https://www.ibm.com/support/pages/how-integrate-content-navigator-your-applications-view-content

    https://www.ibm.com/support/pages/node/1280698?lang=en

    They contain links to get the code for the plugin discussed in the articles.



    ------------------------------
    Chris Whitcomb
    ------------------------------



  • 5.  RE: Send multiple documents to bookmark.jsp

    Posted Wed January 03, 2024 09:52 AM
      |   view attached

    Long time ago I was able to construct a url to accomplish getting more than one document , it worked

    First create new search template in the navigator

    Get the  long id for the search it will something like:

    "58910AA9-18AE-4F47-BE88-9B05EC75DA9B},{73D135D3-7E6E-C122-86FE-7EA121D00000}" you will see how it is used in the url

    Then buld your url as:

    https://Your filenet site/navigator/bookmark.jsp?desktop=your disktop&repositoryId=your repository

    &repositoryType=p8&docid=StoredSearch%2C%7B58910AA9-18AE-4F47-BE88-9B05EC75DA9B%7D%2C%7B73D135D3-7E6E-C122-86FE-7EA121D00000%7D

    &mimeType=application%2Fx-filenet-searchtemplate&template_name=StoredSearch&

    version=released&vsId=%7BD5FD478F-1E03-C49F-87A6-7CEFAB600000%7D&searchCriteria=

    [{"property":"Agreement%20%23","value":"GSD-SC-18-121"},{"property":"Funding%20Value","value":"1270836.95"},{"property":

    "Agreement%20TO%20%23","value":"SUB366945"},{"property":"Funding%20PO%20%23%20if%20Different","value":"500"}]

    &autoRunSearch=true&hideSearchCriteria

    The results will get you any number of documents according to your input in your url.

    I hope this helped and please contact me if you have any question.



    ------------------------------
    Afaf Ezzeldin
    ------------------------------