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
XML Publisher Heading Suffixed With Date
Answers
-
Hi,
I have included XML with the date.
<?xml version="1.0" encoding="UTF-8" ?>
<Test>
<LIST_G_TEST>
<G_TEST>
<P_START_DATE>18-SEP-2017</P_START_DATE>
<MONDAY>Yes</MONDAY>
<TUESDAY>Yes</TUESDAY>
<WEDNESDAY>No</WEDNESDAY>
<THURSDAY>Yes</THURSDAY>
<FRIDAY>No</FRIDAY>
</G_TEST>
</LIST_G_TEST>
</Test>
0 -
May I know what is the date format used for start date parameter....if you can paste how its appearing in XML it will be great
0 -
I will certainly try this approach.
I have a question, is it possible to have column values as headings instead
of typing or manually creating headings in the RTF template?
On 27 Sep 2017 13:42, "community-admin" <community-prod-admin_ww@oracle.com>
0 -
Hi,
Since date is in DD-MMM-YYYY format so you can directly go with substr. If its in standard date format i.e. 2000-04-08T20:00:00 then we can go for format-date function
<?xdofx:substr(P_START_DATE,1,Instr(P_START_DATE,'-',1)-1)?>
0 -
-
If I understand correctly...you want table heading populate dynamically instead of hard coded heading?
If this is the case...you can generate your heading in XML data and use in rtf
0