u7193 user exit

The u7193 user exit converts the American date format (mm/dd/yy) to international format (dd/mm/yy).

Syntax

results = oconv(str.exp, ’u7193’)

Description

Month, day and year must all be 2-digit numbers.

Example(s)

date = "11/06/01"
intl.date = oconv(date,’u7193’)

At the end of this operation, intl.date contains "06/11/01".