VDAToDate(toParse a, isRange b[, part c])
Group |
Creates a date that is set in parameter a as specified by the VDA standard (e.g. for VDA 4905).
Description of Parameters
Parameter |
Description |
a |
The value representing a VDA-coded date. |
b |
(optional) true if the range marker 555555 has already occurred. Default: false |
c |
(optional) 1 if the 'from' part of the date is needed, 2 for the 'until' part. Default: 1 |
Examples
Parameter a |
Parameter b |
Parameter c |
Result |
131021 |
1 |
2013-10-21 |
|
131021 |
false |
2 |
2013-10-21 |
131021 |
true |
1 |
2013-03-04 |
131021 |
true |
2 |
2013-05-26 |
131000 |
false |
1 |
Abort with error since the value is not a correct date. |
131000 |
true |
1 |
2013-10-01 |
131000 |
true |
2 |
2013-10-31 |