Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 16 Oracle Analytics Lounge
- 216 Oracle Analytics News
- 43 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 79 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
BLOB image in repeating groups

Summary
BLOB image in repeating groups
Content
I am trying to generate a table report for all the employee with their photo. I am using rtf template. The query is like below-
select
EMP_ID EMP_ID,
EMP_NAME EMP_NAME
xxgetbase64(EMP_PHOTO) PHOTO,
from hr_emp_mstr;
in PHOTO field i use code
<fo:instream-foreign-object content-type="image/jpg" height="1.5 in" width="1.2 in" >
<xsl:value-of select=".//PHOTO"/>
</fo:instream-foreign-object>
The above scenerio works fine If I generate the report for a single employee.
But If I want to generate for all employee then blank report is coming.
Answers
-
-
Hi,
Please review below
How to Insert Images and BLOBs Dynamically into Word Template or Document? (Doc ID 443957.1)
How To Insert Images and Logo in the XML Publisher Reports and Documents? (Doc ID 550627.1)
0