‎2005 Oct 04 5:09 PM
‎2005 Oct 04 5:21 PM
‎2005 Oct 04 5:21 PM
‎2005 Oct 04 5:56 PM
‎2005 Oct 04 5:34 PM
Check this out -
http://help.sap.com//saphelp_470/helpdata/EN/d1/8031dd454211d189710000e8322d00/content.htm
Cheers.
( Dont forget to reward if answers were helpful)
‎2005 Oct 05 5:09 AM
Hi,
here is the code.
DT <H>Date:</>,,&HERE GIVE YOUR FIELD OF DATE FROM WHERE YOU ARE GETTING&
/: SET DATE MASK = 'MM/DD/YY'
See this will work.
If your issue is solved plzzz award points.
CHEERS
‎2005 Oct 05 5:26 AM
use this fm AND CONCEPT......-----
DATA: BEGIN OF it_month OCCURS 0.
INCLUDE STRUCTURE t247.
DATA: END OF it_month.
CALL FUNCTION 'MONTH_NAMES_GET'
EXPORTING
language = sy-langu
mnr = num
IMPORTING
RETURN_CODE =
TABLES
month_names = it_month
EXCEPTIONS
MONTH_NAMES_NOT_FOUND = 1
OTHERS = 2
.
IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
READ TABLE it_month WITH KEY mnr = date+4(2).