Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 18 Oracle Analytics Lounge
- 218 Oracle Analytics News
- 44 Oracle Analytics Videos
- 15.8K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 82 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Render a BLOB column that contains PDF data

IN OBIEE /BIP it is possible to render an image stored as a BLOB file; however we have not found a way to render application/pdf content in a similar way.
How can this be done?
OAC,OBIEE , BIP any tool that can do this apart from APEX?
Answers
-
A BLOB will be returned in hex encoded stream (base64) to Presentation Server, you would need a piece of custom javascript that decodes it and converts it back to its original form.
0 -
@SteveF-Oracle We can only do this with images
<fo:instream-foreign-object content-type="image/jpg"><xsl:value-of select="IMAGE"/></fo:instream-foreign-object>
If we use application/pdf it does not render the pdf
0 -
I am not sure you will be able to actually render it. I do remember we used to have an example in one of the old OBIEE sample virtual machines (v511, I think), that demonstrated using JS to decode a PDF, then have a link to download it.
0