Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 211 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 77 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Selecting and formatting CLOB column in data model SQL

I need to pull in a CLOB column into a BIP Data Model and in the end format it as a Rich Text.
Is there a reference document or any suggestions on how to accomplish this?
Answers
-
You can include a CLOB column in the Data Model, wrap it in
<![CDATA[ ]]>
and set its type to XML. In the RTF template use:<?html2fo:YourColumnName?>This will render supported HTML/XHTML tags as formatted text. Important to note that Complex tags like tables/images aren’t supported. More details along with example here:
0