/* Page Process: set cookie */
begin
owa_util.mime_header('text/html', FALSE);
owa_cookie.send(
name => :P10_SET_COOKIE_NAME,
value => :P10_SET_COOKIE_VALUE,
expires => sysdate + to_number(:P10_SET_LIFETIME)
);
apex_util.redirect_url (
p_url => 'f?p=155555:10:' || :SESSION,
p_reset_htp_buffer => false );
end;