DBA Data[Home] [Help]

PACKAGE: APPS.QPR_COLLECT_TIME_DATA

Source


1 PACKAGE QPR_COLLECT_TIME_DATA AUTHID CURRENT_USER AS
2 /* $Header: QPRUCTMS.pls 120.0 2007/10/11 13:08:38 agbennet noship $ */
3 --  Calendar type constants --
4   GREGORIAN_CALENDAR number := 1 ;
5   FISCAL_CALENDAR number :=  2;
6 
7   procedure collect_time_data(errbuf out nocopy varchar2,
8                               retcode out nocopy number,
9                               p_instance_id in number,
10                               p_calendar_type in number,
11                               p_calendar_code in varchar2,
12                               p_date_from in varchar2,
13                               p_date_to in varchar2);
14 END;
15 
16 
17