DBA Data[Home] [Help]

PACKAGE: APPS.HR_ENTRY_DISPLAY

Source


1 PACKAGE HR_ENTRY_DISPLAY as
2 /* $Header: pyentdis.pkh 120.0 2005/05/29 04:36 appldev noship $ */
3 --
4  /*===========================================================================+
5  |               Copyright (c) 1993 Oracle Corporation                        |
6  |                  Redwood Shores, California, USA                           |
7  |                       All rights reserved.                                 |
8  +============================================================================+
9   Name
10     hr_entry_display
11   Purpose
12     This package is used for maintaining entry level display utilities.
13 
14   Notes
15     This was originally used for forms 2.3 usage and extended to more generic
16     usage.
17 
18     Used by all 2.3 forms that display element entries. Element entries are
19     displayed horizontally to aid data entry and therefore 2.3 forms cannot
20     provide this without using special routines to fetch element entries which
21     are then displayed using a loop within the form NB. the 4.0 forms that
22     display element entries can use native 4.0 forms functionality to display
23     the entries horizontally.
24 
25   History
26     04-Mar-94  J.S.Hobbs   40.0         Date created.
27     16-Sep-04  T.Habara   115.2         Added original_entry_name().
28  ============================================================================*/
29 --
30  -----------------------------------------------------------------------------
31  -- Name                                                                    --
32  --   original_entry_name                                                   --
33  -- Purpose                                                                 --
34  --   This function is used for displaying the original entry name for      --
35  --   the specified element entry id.                                       --
36  -- Arguments                                                               --
37  --   See below.                                                            --
38  -- Notes                                                                   --
39  --   None.                                                                 --
40  -----------------------------------------------------------------------------
41 --
42  FUNCTION original_entry_name
43  (p_original_entry_id       in number
44  ) return varchar2;
45 --
46  -----------------------------------------------------------------------------
47  -- Name                                                                    --
48  --   count_input_values (obsolete)                                         --
49  -- Purpose                                                                 --
50  --   This procedure is used for entry form(s) population. It counts how    --
51  --   many input values are defined for the specified element type and      --
52  --   also set a loop counter value to 1.                                   --
53  -- Arguments                                                               --
54  --   See below.                                                            --
55  -- Notes                                                                   --
56  --   This is no longer used.                                               --
57  -----------------------------------------------------------------------------
58 --
59 --
60  PROCEDURE count_input_values
61  (
62   p_element_type_id         in number,
63   p_session_date            in date,
64   p_number_of_input_values  out nocopy number,
65   p_population_loop_counter out nocopy number
66  );
67 --
68  -----------------------------------------------------------------------------
69  -- Name                                                                    --
70  --   get_input_value_details (obsolete)                                    --
71  -- Purpose                                                                 --
72  --   This procedure is used for selecting input value details and          --
73  --   assocated entry values for the entry forms(s).                        --
74  -- Arguments                                                               --
75  --   See below.                                                            --
76  -- Notes                                                                   --
77  --   This is no longer used.                                               --
78  -----------------------------------------------------------------------------
79 --
80  PROCEDURE get_input_value_details
81  (
82   p_element_type_id         in number,
83   p_element_link_id         in number,
84   p_session_date            in date,
85   p_input_currency_code     in varchar2,
86   p_input_value_id1         in number,
87   p_input_value_id2         in number,
88   p_input_value_id3         in number,
89   p_input_value_id4         in number,
90   p_input_value_id5         in number,
91   p_input_value_id6         in number,
92   p_element_entry_id        in number,
93   p_input_value_id         out nocopy number,
94   p_input_name             out nocopy varchar2,
95   p_default_value          out nocopy varchar2,
96   p_mandatory_flag         out nocopy varchar2,
97   p_uom                    out nocopy varchar2,
98   p_warning_or_error       out nocopy varchar2,
99   p_hot_default_flag       out nocopy varchar2,
100   p_lookup_type            out nocopy varchar2,
101   p_formula_id             out nocopy number,
102   p_database_format_value  out nocopy varchar2,
103   p_screen_format_value    out nocopy varchar2
104  );
105 --
106 END HR_ENTRY_DISPLAY;