DBA Data[Home] [Help]

APPS.BEN_LOCATION_OBJECT dependencies on HR_LOCATIONS_ALL

Line 22: type g_cache_loc_table is table of hr_locations_all%rowtype index

18: 115.4 12 Dec 01 Tmathers dos2unix for 2128462.
19: -----------------------------------------------------------------------------
20: */
21: --
22: type g_cache_loc_table is table of hr_locations_all%rowtype index
23: by binary_integer;
24: --
25: g_cache_loc_rec g_cache_loc_table;
26: g_cache_last_loc_rec hr_locations_all%rowtype;

Line 26: g_cache_last_loc_rec hr_locations_all%rowtype;

22: type g_cache_loc_table is table of hr_locations_all%rowtype index
23: by binary_integer;
24: --
25: g_cache_loc_rec g_cache_loc_table;
26: g_cache_last_loc_rec hr_locations_all%rowtype;
27: --
28: -- Set object routines
29: --
30: procedure set_object

Line 31: (p_rec in out nocopy hr_locations_all%rowtype);

27: --
28: -- Set object routines
29: --
30: procedure set_object
31: (p_rec in out nocopy hr_locations_all%rowtype);
32: --
33: procedure set_loc_object
34: (p_location_id in number,
35: p_rec in out nocopy hr_locations_all%rowtype);

Line 35: p_rec in out nocopy hr_locations_all%rowtype);

31: (p_rec in out nocopy hr_locations_all%rowtype);
32: --
33: procedure set_loc_object
34: (p_location_id in number,
35: p_rec in out nocopy hr_locations_all%rowtype);
36: --
37: -- Get object routines
38: --
39: procedure get_object

Line 41: p_rec in out nocopy hr_locations_all%rowtype);

37: -- Get object routines
38: --
39: procedure get_object
40: (p_location_id in number,
41: p_rec in out nocopy hr_locations_all%rowtype);
42: --
43: procedure clear_down_cache;
44: --
45: end ben_location_object;