DBA Data[Home] [Help]

APPS.BEN_ELEMENT_ENTRY dependencies on PER_BUSINESS_GROUPS

Line 329: , per_business_groups_perf pbgf

325: --
326: select plr.rule_mode
327: into l_adjust_ee_source
328: from pay_legislation_rules plr
329: , per_business_groups_perf pbgf
330: where plr.rule_type = 'ADJUSTMENT_EE_SOURCE'
331: and pbgf.legislation_code = plr.legislation_code
332: and pbgf.business_group_id = p_business_group_id;
333: --

Line 739: l_leg_code per_business_groups.legislation_code%type;

735: function get_legislation_code
736: (p_business_group_id in number)
737: return varchar2 is
738:
739: l_leg_code per_business_groups.legislation_code%type;
740: cursor c_leg is
741: select bg.legislation_code
742: from per_business_groups bg
743: where bg.business_group_id = p_business_group_id;

Line 742: from per_business_groups bg

738:
739: l_leg_code per_business_groups.legislation_code%type;
740: cursor c_leg is
741: select bg.legislation_code
742: from per_business_groups bg
743: where bg.business_group_id = p_business_group_id;
744:
745: begin
746: