I am Having a apex application already available in Oracle APEX 4. Which is working fine.
Now i am trying to migrate to the same apex application to APEX 5.
After migrating some of the functionalities working fine in Apex 4 are not working in apex 5 like
- Displaying Blob images from a DB Table as Icon in interactive report in apex 5.
I am using the below query to display image in interactive report
select
apex_util.get_blob_file_src('P16_IMAGE', image_id) as icon_image from image_table
inside my application under the list view i am getting a URL generated by the apex_util.get_blob_file_src when i try to access the below link i am getting the error in the browser
Error from the Browser :
Not found
The requested URL /apex/apex_util.get_blob_file was not found on this server
please let me know whether any specific settings need to be done for the Apex 5 Interactive report to display icon image.