project BLF > class Session > method GetDateValue
Description
Read the value of any date data item in the session component.
Parameters
icName | input | character | Name of the data item. |
otValue | output | date | value of the data item |
oiReturnStatus | output | integer | Return status of the method. |
Internal usage
unused
program code (program1/session.p)
find tDataItems where
tDataItems.tcName = icName and
tDataItems.tcDataType = "t":U no-error.
if available tDataItems
then assign otValue = tDataItems.ttDateValue.
else assign otValue = ?.