Hello All,
I have a requirement to get the document, Currently document is not there in Appian as it is stored in S3 bucket and coming as url to Appian.
When user clicks on that url, document is getting downloaded. But I need that document without user action. Is there any way to do that?
Thanks in Advance!!
Discussion posts and replies are publicly visible
If you don't want to store documents in Appian and just want to access them from S3 and display them in Appian, then use the Apryse WebViewer Plugin to display S3 documents directly in Appian without storing them. Install the plugin, configure CORS settings on your S3 bucket to allow Appian domain access, then display in your interface. This is the only reliable solution since native Appian components require documents to be stored locally first.If you want to store the document in Appian and use native Appian functionality to display it, use the below approach,Use the Amazon S3 Utilities Plugin - configure AWS credentials, create a Process Model with S3 Download smart service, and set up automatic triggers (timer/web API) to download documents directly to Appian folders. Once the document is in Appian, automatically display it to users using the Document Viewer Component with a!documentViewerField() in your interface, passing the document ID from the download process - this will show the document immediately when the interface loads without requiring any user clicks or interaction. For enhanced viewing with editing capabilities, alternatively use the Apryse WebViewer Component Plugin which provides richer document viewing.