246: BEGIN
247: if p_departure_id is null then return null; end if;
248: select actual_departure_date
249: into l_ret 250: from wsh_departures 251: where departure_id = p_departure_id;
252: return l_ret;
253:
254: EXCEPTION when others then return NULL;