E r g e b n i s / R e s u l t
Returns a human readable date in the form [day] [month name] [year].
B e s c h r e i b u n g / D e s c r i p t i o n
When passed a date, this function returns a human readable form of the date. If the function was passed a date of the format '11.10.2012' it would return '11th October 2012'
S y n t a x
Code:
value = call ('DATCONV5' , datefld) P a r a m e t e r
datefld - any Open Access date
R e t u r n s
A string containing the human readable form of the given date.
B e i s p i e l / E x a m p l e
Code:
attach 'DATE'
put call ('DATCONV5' , sysdate) ! prints today's date
detach 'DATE'