2006 Feb 16 1:39 PM
Hi everybody,
In my layout i have displayed the expiry date as 08.2007 & i want that to be changed as 08/07.
Is there any possibility?
Thanks & Regards,
Varadharajan S
2006 Feb 16 1:44 PM
If u have
v_date = '082007'
then write like this.
write:/ v_date0(2) ,'/' , v_date4(2).
Hi,
Thanks to Srinivas,Hari & Renjith...
Ur answers were very helpful to me to solve the problem
Thanks & Regards,
Varadharajan S
2006 Feb 16 1:44 PM
If u have
v_date = '082007'
then write like this.
write:/ v_date0(2) ,'/' , v_date4(2).
2006 Feb 16 1:45 PM
HI
data: dat(7) type c.
dat = '08.2007'.
concatenate dat0(2) '/' dat3(4) into dat.
write dat.
regards
kishore
2006 Feb 16 4:06 PM
Hi,
Thanks to Srinivas,Hari & Renjith...
Ur answers were very helpful to me to solve the problem
Thanks & Regards,
Varadharajan S
2006 Feb 16 1:45 PM
If you are looking for formatting date in a sapscript/smartform..use the control command SET DATE MASK
/: SET DATE MASK = 'date_mask'
try..
/: SET DATE MASK = 'MM/YY'.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |