Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Date Format

Former Member
0 Kudos

Hi all ,

I have a requirement where i require my date in output in the format like September 26th (th in superscript) input date is like 20080926(like sy-datum format).

I have managed to change it to September 26 , 2008 ,But that "th" superscript is what i am unable to get plz help me out ..

* How to make that 'th' , 'nd' , 'st' appear small on size above the numeral like the way it looks in MS Word* ....

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi,

if ur requirement is in smartform output. than check out this option in Style>Character format>standard setting.

by

3 REPLIES 3

Former Member
0 Kudos

hi,

if ur requirement is in smartform output. than check out this option in Style>Character format>standard setting.

by

former_member212653
Active Contributor
0 Kudos

If its a ABAP List report...then i think it can't be done.

Former Member
0 Kudos

Hi,

Data : lv_date_word(25) type c.

data : ls_T247 type T247.

select single * from T247 into ls_T247 where SPRAS = sy-langu

and MNR = sy-datum+4(2).

Concatenate ls_T247-LTX sy-datum+6(2) into lv_date_word separated by space.

concatenate lv_date_word 'th' into lv_date_word.

Thanks,

Durai.V