DBA Data[Home] [Help]

APPS.PAY_SA_RULES dependencies on HR_UTILITY

Line 30: hr_utility.set_location('PAY_SA_RULES.get_source_text_context',1);

26: ,p_source_text in out nocopy varchar2)
27: is
28: l_joiner varchar2(1) := 'N';
29: begin
30: hr_utility.set_location('PAY_SA_RULES.get_source_text_context',1);
31: begin
32: select 'Y'
33: into l_joiner
34: from pay_assignment_actions aa

Line 50: hr_utility.set_location('pay_sa_RULES.get_source_text_context='||

46: when others then
47: l_joiner := 'N';
48: end;
49: p_source_text := l_joiner;
50: hr_utility.set_location('pay_sa_RULES.get_source_text_context='||
51: p_source_text,2);
52:
53: end get_source_text_context;
54:

Line 63: hr_utility.set_location('PAY_SA_RULES.get_source_text_context',1);

59: ,p_source_text2 in out nocopy varchar2)
60: is
61: l_leaver varchar2(1) := 'N';
62: begin
63: hr_utility.set_location('PAY_SA_RULES.get_source_text_context',1);
64: begin
65: select 'Y'
66: into l_leaver
67: from pay_assignment_actions aa

Line 83: hr_utility.set_location('pay_sa_RULES.get_source_text_context='||

79: when otherS then
80: l_leaver := 'N';
81: end;
82: p_source_text2 := l_leaver;
83: hr_utility.set_location('pay_sa_RULES.get_source_text_context='||
84: p_source_text2,2);
85:
86: end get_source_text2_context;
87:

Line 122: hr_utility.set_location('Leaving get_source_number_context.',10);

118: exception
119: when others then
120: p_source_number := 0;
121: end;
122: hr_utility.set_location('Leaving get_source_number_context.',10);
123:
124: end get_source_number_context;
125: end pay_sa_rules;