E r g e b n i s / R e s u l t
Returns the month's first day of the specified date in the format 01.[mm].[yyyy]
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 string that represents the first day of the month in the format 01.[mm].[yyyy]
If the function was passed a date of the format '11.10.2012' it would return '01.10.2012', as this is the first of October 2012.
S y n t a x
Code:
value = call ('DATCONVB' , 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 specified date in the format 01.[mm].[yyyy]
B e i s p i e l / E x a m p l e
Code:
attach 'DATE'
put call ('DATCONVB' , sysdate) ! prints the first of the current month
detach 'DATE'