Home > Forum > Tips&Tricks > List Attachments in a report?!

List Attachments in a report?!
0

Hi Guys,

short question, hopefully a short answer with a hint how to do ;-)

Is it possible to list all attachments stored in a process in a report?

Thanks in advance
Gerd

In reply to: Jacek Wojnar

Hi,
You can use a calculated column and create a subquery to the WFDataAttachmets table where you have the attachment details.

Hei, thanks!!

This works fine so far! My SQL looks like this for a column type "Text"

(
SELECT STRING_AGG(A.ATT_Name, ', ')
FROM WFDataAttachmets A
WHERE A.ATT_WFDID = WFD_ID
)

It would be great to add a link to each attachment. I tried this, but i can not find the URL to the attachment in the Databse.

any idea if this is possible