DBA Data[Home] [Help]

APPS.BEN_ORG_OBJECT dependencies on PER_BUSINESS_GROUPS

Line 21: type g_cache_bus_table is table of per_business_groups%rowtype index

17: 115.3 12 Dec 01 Tmathers dos2unix for 2128462.
18: -----------------------------------------------------------------------------
19: */
20: --
21: type g_cache_bus_table is table of per_business_groups%rowtype index
22: by binary_integer;
23: --
24: type g_cache_org_table is table of hr_all_organization_units%rowtype index
25: by binary_integer;

Line 34: g_cache_last_bus_rec per_business_groups%rowtype;

30: type g_cache_ben_table is table of ben_benfts_grp%rowtype index
31: by binary_integer;
32: --
33: g_cache_bus_rec g_cache_bus_table;
34: g_cache_last_bus_rec per_business_groups%rowtype;
35: g_cache_org_rec g_cache_org_table;
36: g_cache_last_org_rec hr_all_organization_units%rowtype;
37: g_cache_pay_rec g_cache_pay_table;
38: g_cache_last_pay_rec pay_all_payrolls_f%rowtype;

Line 45: (p_rec in out NOCOPY per_business_groups%rowtype);

41: --
42: -- Set object routines
43: --
44: procedure set_object
45: (p_rec in out NOCOPY per_business_groups%rowtype);
46: --
47: procedure set_object
48: (p_rec in out NOCOPY hr_all_organization_units%rowtype);
49: --

Line 59: p_rec in out nocopy per_business_groups%rowtype);

55: --
56: procedure set_bus_object
57: (p_business_group_id in number,
58: p_effective_date in date,
59: p_rec in out nocopy per_business_groups%rowtype);
60: --
61: procedure set_org_object
62: (p_organization_id in number,
63: p_effective_date in date,

Line 81: p_rec in out nocopy per_business_groups%rowtype);

77: -- Get object routines
78: --
79: procedure get_object
80: (p_business_group_id in number,
81: p_rec in out nocopy per_business_groups%rowtype);
82: --
83: procedure get_object
84: (p_organization_id in number,
85: p_rec in out nocopy hr_all_organization_units%rowtype);