DBA Data[Home] [Help]

PACKAGE: APPS.OT_WORKFLOW_SS

Source


1 PACKAGE ot_workflow_ss AUTHID CURRENT_USER AS
2 /* $Header: otwkflss.pkh 115.1 2003/04/09 09:29:13 sbhullar noship $ */
3 /*
4    This package contails new (v4.0+)workflow related business logic
5 */
6 --
7 -- ------------------------------------------------------------------------
8 -- |------------------------< Get_event_standard_price >-------------------------|
9 -- ------------------------------------------------------------------------
10 --
11 -- Description
12 --
13 --  Get the event standard price
14 --
15 function get_event_standard_price
16          (p_transaction_id IN hr_api_transactions.transaction_id%TYPE)
17         return number;
18 --
19 --
20 --
21 -- ------------------------------------------------------------------------
22 -- |------------------------< Get_activity_type >-------------------------|
23 -- ------------------------------------------------------------------------
24 --
25 -- Description
26 --
27 --  Get the activity type
28 --
29 function get_activity_type
30          (p_transaction_id IN hr_api_transactions.transaction_id%TYPE)
31         return varchar2;
32 --
33 -- ------------------------------------------------------------------------
34 -- |------------------------< Get_activity_category >-------------------------|
35 -- ------------------------------------------------------------------------
36 --
37 -- Description
38 --
39 --  Get the activity category
40 --
41 function get_act_pm_category
42          (p_transaction_id IN hr_api_transactions.transaction_id%TYPE)
43         return varchar2;
44 --
45 -- ------------------------------------------------------------------------
46 -- |------------------------< Get_act_pm_delivery_method >-------------------------|
47 -- ------------------------------------------------------------------------
48 --
49 -- Description
50 --
51 --  Get the activity primary delivery method
52 --
53 function get_act_pm_delivery_method
54          (p_transaction_id IN hr_api_transactions.transaction_id%TYPE)
55         return varchar2;
56 --
57 -- ------------------------------------------------------------------------
58 -- |------------------------< Get_enrollment_status >-------------------------|
59 -- ------------------------------------------------------------------------
60 --
61 -- Description
62 --
63 --  Get the enrollment status
64 --
65 function get_enrollment_status
69 --
66          (p_transaction_id IN hr_api_transactions.transaction_id%TYPE)
67         return varchar2;
68 --
70 END ot_workflow_ss;