DBA Data[Home] [Help]

APPS.BEN_ORG_OBJECT dependencies on HR_ALL_ORGANIZATION_UNITS

Line 24: type g_cache_org_table is table of hr_all_organization_units%rowtype index

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;
26: --
27: type g_cache_pay_table is table of pay_all_payrolls_f%rowtype index
28: by binary_integer;

Line 36: g_cache_last_org_rec hr_all_organization_units%rowtype;

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;
39: g_cache_ben_rec g_cache_ben_table;
40: g_cache_last_ben_rec ben_benfts_grp%rowtype;

Line 48: (p_rec in out NOCOPY hr_all_organization_units%rowtype);

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: --
50: procedure set_object
51: (p_rec in out NOCOPY pay_all_payrolls_f%rowtype);
52: --

Line 64: p_rec in out nocopy hr_all_organization_units%rowtype);

60: --
61: procedure set_org_object
62: (p_organization_id in number,
63: p_effective_date in date,
64: p_rec in out nocopy hr_all_organization_units%rowtype);
65: --
66: procedure set_pay_object
67: (p_payroll_id in number,
68: p_business_group_id in number,

Line 85: p_rec in out nocopy hr_all_organization_units%rowtype);

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);
86: --
87: procedure get_object
88: (p_payroll_id in number,
89: p_rec in out nocopy pay_all_payrolls_f%rowtype);