procedure convert_to_cxml_date
(p_ora_date in date, x_cxml_date out varchar2);
Converts Oracle date to cXML date in ISO 8601 format. The time element is not included.
If both date and time are required, use convert_to_cxml_datetime procedure.
| p_ora_date | The Oracle date. |
| x_cxml_date | The cXML date converted from the Oracle date. |
procedure convert_to_cxml_datetime
(p_ora_date in date, x_cxml_date out varchar2);
Converts Oracle date and time to cXML date and time in ISO 8601 format.
If only the date is required, use convert_to_cxml_date procedure.
Attention: Be sure to set the profile option ECX: Server Time Zone. If you do not set this profile option, the time zone defaults to GMT. See Define System Profile Options.
| p_ora_date | The Oracle date and time. |
| x_cxml_date | The cXML date and time converted from the Oracle date and time. |
procedure convert_from_cxml_datetime
(p_cxml date in varchar2, x_ora_date out date);
Converts cXML date and time to Oracle date and time.
Attention: Be sure to set the profile option ECX: Server Time Zone. If you do not set this profile option, the time zone defaults to GMT. See Define System Profile Options.
| p_cxml_date | The cXML date and time on an incoming document. |
| x_ora_date | The Oracle date and time converted from the cXML date and time. |