DBA Data[Home] [Help]

APPS.BEN_RULES dependencies on HR_UTILITY

Line 90: hr_utility.set_location ('Entering '||l_package,10);

86: l_return varchar2(30);
87: --
88: begin
89: --
90: hr_utility.set_location ('Entering '||l_package,10);
91: --
92: if p_comp_selection_rule_id is not null then
93: --
94: -- Call formula initialise routine

Line 96: hr_utility.set_location ('call formula '||l_package,20);

92: if p_comp_selection_rule_id is not null then
93: --
94: -- Call formula initialise routine
95: --
96: hr_utility.set_location ('call formula '||l_package,20);
97: l_outputs := benutils.formula
98: (p_formula_id => p_comp_selection_rule_id,
99: p_effective_date => p_effective_date,
100: p_business_group_id => p_business_group_id,

Line 115: hr_utility.set_location ('Ret N '||l_package,10);

111: l_return := l_outputs(l_outputs.first).value;
112: --
113: if l_return = 'N' then
114: --
115: hr_utility.set_location ('Ret N '||l_package,10);
116: return false;
117: --
118: elsif l_return = 'Y' then
119: --

Line 120: hr_utility.set_location ('Ret Y '||l_package,10);

116: return false;
117: --
118: elsif l_return = 'Y' then
119: --
120: hr_utility.set_location ('Ret Y '||l_package,10);
121: return true;
122: --
123: elsif l_return <> 'Y' then
124: --

Line 134: hr_utility.set_location ('Leaving TRUE '||l_package,10);

130: end if;
131: --
132: else
133: --
134: hr_utility.set_location ('Leaving TRUE '||l_package,10);
135: return true;
136: --
137: end if;
138: --