I have an apex application with which I upload images to the linux file system (where apex runs) in the / my_files folder. Now I would like to show those images in an interactive report. for which I make the following query
select "ROWID", "DOCUMENT_ID", "NUMBER_ID", "LOV_DOCUMENT_TYPE", "NUMBER_DOCUMENT", "EXPEDITION_DATE", "EXPIRATION_DATE", "CONTRACT_ID", '/mis_archivos/'||NUMBER_ID||.'jpg' as imagen, dbms_lob.getlength("DOCUMENT_DATA") "DOCUMENT_DATA", "NAME_DOCUMENT" from "#OWNER#"."TB_DOCUMENT_TYPE"
- When I load the page I receive an alert asking for a username and password, which when I cancel, does not show any image. Could you help me please?