DBA Data[Home] [Help]

APPS.BEN_ORG_OBJECT dependencies on PER_BUSINESS_GROUPS

Line 29: procedure set_object(p_rec in out NOCOPY per_business_groups%rowtype) is

25: g_hash_jump number := ben_hash_utility.get_hash_jump;
26: --
27: -- Set object routines
28: --
29: procedure set_object(p_rec in out NOCOPY per_business_groups%rowtype) is
30: --
31: l_proc varchar2(80) := g_package||'set_object';
32: l_index pls_integer;
33: --l_not_hash_found boolean;

Line 214: p_rec in out nocopy per_business_groups%rowtype) is

210: --
211: procedure set_bus_object
212: (p_business_group_id in number,
213: p_effective_date in date,
214: p_rec in out nocopy per_business_groups%rowtype) is
215: --
216: l_proc varchar2(80) := g_package||'set_bus_object';
217: --
218: cursor c1 is

Line 220: from per_business_groups bus

216: l_proc varchar2(80) := g_package||'set_bus_object';
217: --
218: cursor c1 is
219: select bus.*
220: from per_business_groups bus
221: where bus.business_group_id = p_business_group_id
222: and p_effective_date
223: between bus.date_from
224: and nvl(bus.date_to,p_effective_date);

Line 226: --l_rec per_business_groups%rowtype;

222: and p_effective_date
223: between bus.date_from
224: and nvl(bus.date_to,p_effective_date);
225: --115.2 remove additional declaration
226: --l_rec per_business_groups%rowtype;
227: --
228: begin
229: --
230: --hr_utility.set_location('Entering '||l_proc,10);

Line 394: p_rec in out nocopy per_business_groups%rowtype) is

390: --
391: -- Get object routines
392: --
393: procedure get_object(p_business_group_id in number,
394: p_rec in out nocopy per_business_groups%rowtype) is
395: --
396: l_proc varchar2(80) := g_package||'get_object';
397: l_index pls_integer;
398: --l_not_hash_found boolean;

Line 400: --l_rec per_business_groups%rowtype;

396: l_proc varchar2(80) := g_package||'get_object';
397: l_index pls_integer;
398: --l_not_hash_found boolean;
399: l_env ben_env_object.g_global_env_rec_type;
400: --l_rec per_business_groups%rowtype;
401: --
402: begin
403: --
404: --hr_utility.set_location('Entering '||l_proc,10);

Line 667: l_last_bus_rec per_business_groups%rowtype;

663: end get_object;
664: --
665: procedure clear_down_cache is
666: --
667: l_last_bus_rec per_business_groups%rowtype;
668: l_last_org_rec hr_all_organization_units%rowtype;
669: l_last_pay_rec pay_all_payrolls_f%rowtype;
670: l_last_ben_rec ben_benfts_grp%rowtype;
671: --