DBA Data[Home] [Help]

PACKAGE: APPS.HR_COST

Source


1 package hr_cost as
2 /* $Header: pycostng.pkh 120.1.12010000.2 2008/09/15 12:23:58 pparate ship $ */
3 --
4 --
5 -- Copyright (c) Oracle Corporation 1991, 1992, 1993, 1994 All rights reserved.
6 --
7 /*
8    NAME
9       pycostng.pkh
10 --
11    DESCRIPTION
12       Package headers for the procedures used in the costing process.
13       ie. called by file: pycos.lpc.
14 --
15   MODIFIED (DD-MON-YYYY)
16      alogue     23-FEB-2007 - Added p_element_type_id to get_context_value.
17      alogue     20-MAY-2005 - New get_rr_date function.
18      alogue     07-DEC-2004 - New get_context_value function.
19      alogue     22-MAR-2004 - New cost_bal_adj function and remove
20                               old obsolete code.
21      mwcallag   20-MAR-1995 - Removed procedure get_suspense. Now
22                               performed in the 'C' code.
23      mwcallag   16-AUG-1994 - Major changes for new functionality.
24                               See pycos.lpc for more information.
25      mwcallag   24-MAR-1993 - Removed blank lines.
26      H. Minton  11-MAR-1993 - Added copyright and exit line.
27      mwcallag   03-MAR-1993 - created.
28 */
29     function cost_bal_adj
30     (
31         p_element_entry_id in number,
32         p_baladj_date      in date
33     ) return varchar2;
34 --
35     function get_context_value
36     (
37         p_inp_val_name      in  varchar2,
38         p_run_result_id     in  number,
39         p_element_type_id   in number,
40         p_eff_date          in  date
41     ) return varchar2;
42 --
43     function get_rr_date
44     (
45         p_source_id         in  number,
46         p_source_type       in  varchar2,
47         p_end_date          in  date,
48         p_date_earned       in  date
49     ) return date;
50     function get_cost_date
51     (
52         p_source_id         in  number,
53         p_source_type       in  varchar2,
54         p_end_date          in  date,
55         p_date_earned       in  date
56     ) return date;
57 --
58 end hr_cost;