View previous topic :: View next topic |
Author |
Message |
Jmoorthy Beginner
Joined: 23 Aug 2007 Posts: 5 Topics: 1
|
Posted: Fri Sep 07, 2007 1:48 am Post subject: HOW TO FIND A day of the particular date in REXX |
|
|
How to find a day of the Particular date?.Thr is a fns To find a day current date? Is any one help in this regard please |
|
Back to top |
|
 |
blitz2 Beginner

Joined: 23 Jan 2007 Posts: 84 Topics: 14
|
|
Back to top |
|
 |
vivek1983 Intermediate

Joined: 20 Apr 2006 Posts: 222 Topics: 24
|
Posted: Fri Sep 07, 2007 2:27 am Post subject: |
|
|
Jmoorthy,
There is an numeric intrinsic function in COBOL.
Try this :
move the numeric date field into a variable (WS-DATE)
Compute WS-DAY = Function day-of-integer(WS-DATE).
Note that WS-DATE should have pic 9(8 ) and should be of the format YYYYMMDD.
Regards,
Vivek g |
|
Back to top |
|
 |
vkphani Intermediate

Joined: 05 Sep 2003 Posts: 483 Topics: 48
|
|
Back to top |
|
 |
Nic Clouston Advanced
Joined: 01 Feb 2007 Posts: 1075 Topics: 7 Location: At Home
|
Posted: Fri Sep 07, 2007 1:48 pm Post subject: |
|
|
Just look at the date function in the Rexx manual _________________ Utility and Program control cards are NOT, repeat NOT, JCL. |
|
Back to top |
|
 |
|
|