E r g e b n i s / R e s u l t
Returns the month's first day of the next month 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 coming month in the format 01.[mm].[yyyy]
If the function was passed a date of the format '11.10.2012' it would return '01.11.2012', as the first of the next month is the first of November 2012.
S y n t a x
Code:
value = call ('DATCONVC' , 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 first of the month that comes after 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 ('DATCONVC' , sysdate) ! prints the first of the current month
detach 'DATE'