‎2009 Jun 16 12:44 PM
Hi!
How can I set the format date in a sapscrit as?
M M D D Y Y Y Y
(With spaces and bold).
Thanks very much!
PD:
I put this, but appear the letter MMDDYYYY, not the date:
/: SET DATE MASK = 'MMDDYYYY'
C1 < B >®UH-ZALDT&< / >
‎2009 Jun 16 1:16 PM
/: SET DATE MASK = 'M M D D Y Y Y Y'
will not work
try this instead
/: SET DATE MASK = 'MMDDYYYY'
/: DEFINE &DT& = ®UH-ZALDT&
C1 &DT+0(1)& &DT+1(1)& &DT+2(1)& &DT+3(1)& &DT+4(1)& &DT+5(1)& &DT+6(1)& &DT+7(1)&
‎2009 Jun 16 1:06 PM
You can try by taking a variable of size 15 and moving the date as per your format and writing in bold.
‎2009 Jun 16 1:16 PM
/: SET DATE MASK = 'M M D D Y Y Y Y'
will not work
try this instead
/: SET DATE MASK = 'MMDDYYYY'
/: DEFINE &DT& = ®UH-ZALDT&
C1 &DT+0(1)& &DT+1(1)& &DT+2(1)& &DT+3(1)& &DT+4(1)& &DT+5(1)& &DT+6(1)& &DT+7(1)&
‎2009 Jun 16 1:18 PM
hi,
/: SET DATE MASK = 'MMDDYYYY'
C1 < B >®UH-ZALDT01(01)& ®UH-ZALDT02(01)& ....
</>
Hope this solves your issue.