nileshsamsonite
15th July 2008, 07:33
Hi,
I would like to print the date in "DD-MMM-YY" format in the report.
( e.g. 15-JUL-08 )
How this can be done ?

Thanks
Nilesh

bdittmar
15th July 2008, 10:09
Hi,
I would like to print the date in "DD-MMM-YY" format in the report.
( e.g. 15-JUL-08 )
How this can be done ?

Thanks
Nilesh


Hello,

use the date format according to your requirement in the reportlayout.

Regards

dhanushya
15th July 2008, 11:05
If i undestand you properly, you need dd-mmm-yy format on report. In this case you can't use special date field. Insted of that you take one report field e.g. r.display.date with datatype as string.
then in script use following
r.display.date = sprintf$("%D(%02d-%-3h-%02y)",utc.num())

But if you are printing report in any other language other than english....
then there may be problem...not sure. :)

nileshsamsonite
17th July 2008, 08:19
Hi,
Thanks for your inputs. I have resolved the issue by adding one more date format string in ttadv4180m000 and applied in the report field.

Thanks