DBA Data[Home] [Help]

APPS.CE_BAL_UTIL dependencies on CE_T_DATE

Line 29: l_date ce_t_date:= ce_t_date(p_start);

25: +=======================================================================*/
26:
27: FUNCTION get_date_range(p_start IN DATE,
28: p_end IN DATE) RETURN t_date_table PIPELINED IS
29: l_date ce_t_date:= ce_t_date(p_start);
30: BEGIN
31: loop
32: exit when l_date.single_date > p_end;
33: pipe row(l_date);