Display Binary as download link

Certified Associate Developer

Hello we have integration with an external system and once we add the document, we use Get file to retrieve the document.

In the Get File Integration if I use convert Binary to Appian document it works fine and stores the document in Appian.

But we do not want to store the document in Appian, we just want it to be a downloadable link. Converting the binary to a document using todocument() to display in a!documentDownloadLink.. results in an error saying ID Not found.

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    Note if you have a valid Appian Document ID, the document is already stored within the Appian filesystem, and using todocument() on it is irrelevant.  Also there is no need to wrap the document ID in todocument() for use in a!documentDownloadLink, all that's required is a valid ID.

    If you're getting an "ID not found" error, your issue is something deeper, which you will need to address.  And there is no way to provide a download link without making a valid copy into Appian - if you don't want the file to persist, I suggest incorporating a timer in your process that handles the copy, which auto-deletes the downloaded document after some amount of time has passed (after which you can assume the user has had plenty of time to download a copy on-form).

  • 0
    Certified Associate Developer
    in reply to Mike Schmitt

    Our use case is documents are stored in another content management system and when we view a record (like vendor/customer record) we only need to show links to the documents and clicking on the link should download the document from the external content management system. We cannot store document in Appian and delete since we do not know how long we need it for.

  • 0
    Certified Lead Developer
    in reply to sirishar0001

    Then your requirements seem to be in conflict with each other - you will need to decide which path you want to take, because you can not do both things at once.

    If you really can't store the document in Appian (even temporarily), then you won't be able to use Document Download Link at all, since it is only for documents stored in the Appian filesystem.  The best you'll be able to do is have Appian display a valid URL to download the document from its original (external) location.

  • 0
    Certified Associate Developer
    in reply to Mike Schmitt

    Ok if we cannot use Document Download Link is there another way to provide a document download from external system if we get back the binary of the document?

  • 0
    Certified Lead Developer
    in reply to sirishar0001
    if we get back the binary of the document?

    Can you specify what this means?  For instance what exactly do you mean by "get back"?  Where is the actual document going to be residing when you want it downloaded?  If it's only going to be located on the external system (since you say you're not allowed to temporarily send it to the Appian filesystem), you would need a way to acquire a URL to the document download from within that external system (assuming that's even possible), and transfer said URL into Appian, which you could then display in Appian via a SafeLink, for example.

  • 0
    Certified Associate Developer
    in reply to Mike Schmitt

    Actual document resides in the external system. We cannot acquire a URL unfortunately. We have a getFile integration call that gives us the byte Array corresponding to the document contents. We need a way to display that in Appian UI (preferably all this happens when you click a link on document name :()

  • 0
    Certified Lead Developer
    in reply to sirishar0001

    Like  already said, if you want to download a file through Appian, the file has to be stored in Appian first.

    If that is a problem, store the files in a temporary folder and clean that up in a certain interval.

Reply Children
No Data