on 2008 Sep 19 12:43 PM
Dear Friends
in sap check printing the prest date format was 19.09.2008(dd.mm.yyyy) i used ®UH_ZALDT&
but i want in 19 .09.08(dd.mm.yyyy) bcz in standard check given by bank it was alredy *20 * was thar
PLZ GUIDE ME
<MOVED BY MODERATOR TO THE CORRECT FORUM>
Edited by: Alvaro Tejada Galindo on Sep 19, 2008 5:18 PM
Shanthi,
Just try it once:
/: SET DATE MASK = 'DD.MM. YY'
P1 &FEBSCA-BUDTM&
And let me know, whether it works or not.
Regards,
Nitin.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Shanthi,
Just try with the following:
/: SET DATE MASK = 'DD.MM. YY' .
Hope this will work.
Regards,
Nitin.
Edited by: Nitin Karamchandani on Sep 19, 2008 2:34 PM
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Shanthi,
Use the following:
/: SET DATE MASK = 'date_mask'
In the date mask, you can use the following codes:
u2022 DD: day (two digits)
u2022 DDD: day name - abbreviated
u2022 DDDD: day name - written out in full
u2022 MM: month (two digits)
u2022 MMM: month name - abbreviated
u2022 MMMM: month name - written out in full
u2022 YY: year (two digits)
u2022 YYYY: year (four digits)
u2022 LD: day (formatted as for the L option)
u2022 LM: month (formatted as for the L option)
u2022 LY: year (formatted as for the L option)
All other characters found in a date mask are interpreted as simple text and are copied straight into the output.
Assuming the current system date is March 1st, 1997.
/: SET DATE MASK = 'Foster City, MM/DD/YY'
&DATE& -> Foster City, 03/01/97
/: SET DATE MASK = 'MMMM DD, YYYY'
&DATE& -> March 01, 1997
The date mask may be reset to the default setting by using an empty string:
/: SET DATE MASK = ' '
Hope this will help.
Regards,
Nitin.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Shanti,
Use SET DATE to set the date formats.
/: SET DATE MASK = 'DD.MM.YY'
Thanks,
Vinay
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
70 | |
10 | |
8 | |
8 | |
7 | |
7 | |
6 | |
6 | |
6 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.