In date column date and month are printing (11-may) but year is not printing in the report [message #686148] |
Thu, 23 June 2022 08:33 |
|
pa23van876
Messages: 2 Registered: June 2022
|
Junior Member |
|
|
Hi All,
In one of the requested date column date and month are printing (11-may) but year is not printing in the report, but
other date columns are also there in that column dates,month,year is printing fine like (11-may-2022), only in one of the requested date column it is not printing the year. Any settings needs to be done in oracle discoverer 11g??.
please anyone provide the solution
Thanks in advance.
|
|
|
Re: In date column date and month are printing (11-may) but year is not printing in the report [message #686152 is a reply to message #686148] |
Thu, 23 June 2022 14:19 |
|
Littlefoot
Messages: 21823 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
I don't use Discoverer, but - in Reports Builder, you'd set format model for that column in order to display its value the way you want it. In your case, that would be dd-mon-yyyy.
On the other hand, if the "source" of Discoverer's output is a query, then check whether someone already set that column's date format using the TO_CHAR function, e.g.
select ename, job, sal,
to_char(hiredate, 'dd-mon') as hiredate --> this
from emp
|
|
|
|
|