DBA Data[Home] [Help]

PACKAGE: APPS.HR_KPI

Source


1 PACKAGE HR_KPI AUTHID CURRENT_USER as
2 /* $Header: hrkpi02.pkh 120.0.12010000.1 2008/07/28 03:28:01 appldev ship $ */
3 
4 
5   --
6   -- Although the implementation of request is java we still call
7   -- through a PL/SQL wrapper rather than via call spec directly
8   -- to allow more flexibility (eg. autonmous tx), better error
9   -- handling. The trade off is performance which is less critical
10   -- for this prototype code
11   --
12   function  request (context in varchar2, cookie in out nocopy varchar2,sid in varchar2)
13   return varchar2 ;
14 
15   procedure parseResponse (response  in     varchar2,
16 			               l_type      in out nocopy varchar2,
17                            l_sub       in out nocopy varchar2,
18                            l_value     in out nocopy varchar2,
19                            l_error     in out nocopy varchar2
20                            ) ;
21 
22   procedure save_user_preference ( p_name  in varchar2,
23                                    p_value in varchar2 ) ;
24   --procedure dbg(p_msg in varchar2);
25 
26   procedure debug_end(package_name in varchar2,method_name in varchar2);
27   procedure debug_event(package_name in varchar2,method_name in varchar2,message_text in varchar2);
28   procedure debug_exception(routine in varchar2,
29                         errcode in number,
30                         errmsg in varchar2);
31   procedure debug_start(package_name in varchar2,method_name in varchar2);
32   procedure debug_text(package_name in varchar2,method_name in varchar2,message_text in varchar2);
33 end hr_kpi;