DBA Data[Home] [Help]

APPS.PER_IN_ASG_LEG_HOOK dependencies on PAY_IN_UTILS

Line 100: pay_in_utils.set_location(g_debug,'Entering: '||l_procedure,10);

96: BEGIN
97:
98: g_debug := hr_utility.debug_enabled ;
99: l_procedure := g_package ||'check_asg';
100: pay_in_utils.set_location(g_debug,'Entering: '||l_procedure,10);
101:
102: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'IN') THEN
103: hr_utility.trace ('IN Legislation not installed. Not performing the validations');
104: pay_in_utils.set_location(g_debug,'Leaving: '||l_procedure,20);

Line 104: pay_in_utils.set_location(g_debug,'Leaving: '||l_procedure,20);

100: pay_in_utils.set_location(g_debug,'Entering: '||l_procedure,10);
101:
102: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'IN') THEN
103: hr_utility.trace ('IN Legislation not installed. Not performing the validations');
104: pay_in_utils.set_location(g_debug,'Leaving: '||l_procedure,20);
105: RETURN;
106: END IF;
107:
108: pay_in_utils.set_location(g_debug,l_procedure,30);

Line 108: pay_in_utils.set_location(g_debug,l_procedure,30);

104: pay_in_utils.set_location(g_debug,'Leaving: '||l_procedure,20);
105: RETURN;
106: END IF;
107:
108: pay_in_utils.set_location(g_debug,l_procedure,30);
109: --
110: -- Code for PF Information
111: --
112: l_message := 'SUCCESS';

Line 129: pay_in_utils.set_location(g_debug,l_procedure,40);

125: OPEN c_org_name(g_gre_id);
126: FETCH c_org_name
127: INTO l_gre_org;
128: IF c_org_name%NOTFOUND THEN
129: pay_in_utils.set_location(g_debug,l_procedure,40);
130: l_gre_org := NULL;
131: END IF;
132: CLOSE c_org_name;
133:

Line 138: pay_in_utils.set_location(g_debug,l_procedure,40);

134: OPEN c_org_name(g_pf_id);
135: FETCH c_org_name
136: INTO l_pf_org;
137: IF c_org_name%NOTFOUND THEN
138: pay_in_utils.set_location(g_debug,l_procedure,40);
139: l_pf_org := NULL;
140: END IF;
141: CLOSE c_org_name;
142:

Line 147: pay_in_utils.set_location(g_debug,l_procedure,40);

143: OPEN c_org_name(g_esi_id);
144: FETCH c_org_name
145: INTO l_esi_org;
146: IF c_org_name%NOTFOUND THEN
147: pay_in_utils.set_location(g_debug,l_procedure,40);
148: l_esi_org := NULL;
149: END IF;
150: CLOSE c_org_name;
151:

Line 161: pay_in_utils.set_location(g_debug,l_procedure,50);

157: l_gre_id := g_gre_id;
158: l_pf_id := g_pf_id;
159: l_esi_id := g_esi_id;
160:
161: pay_in_utils.set_location(g_debug,l_procedure,50);
162:
163: pay_in_ff_pkg.check_pf_update
164: (p_effective_date => p_effective_date
165: ,p_dt_mode => p_dt_mode

Line 176: pay_in_utils.set_location(g_debug,'Leaving: '||l_procedure,60);

172: ,p_pf => l_pf_id
173: ,p_esi => l_esi_id
174: );
175:
176: pay_in_utils.set_location(g_debug,'Leaving: '||l_procedure,60);
177:
178: /*EXCEPTION
179: WHEN OTHERS THEN
180: IF c_org_name%ISOPEN THEN close c_org_name; END IF;

Line 240: pay_in_utils.set_location(g_debug,'Entering: '||l_procedure,10);

236: l_procedure VARCHAR2(100);
237: BEGIN
238: g_debug := hr_utility.debug_enabled;
239: l_procedure := g_package ||'check_asg_update';
240: pay_in_utils.set_location(g_debug,'Entering: '||l_procedure,10);
241: --
242:
243: check_asg
244: (p_dt_mode => p_datetrack_update_mode

Line 259: pay_in_utils.set_location(g_debug,'Leaving: '||g_procedure_name,20);

255: ,p_director => p_segment10
256: ,p_specified => p_segment11
257: );
258:
259: pay_in_utils.set_location(g_debug,'Leaving: '||g_procedure_name,20);
260:
261: /*EXCEPTION
262: WHEN OTHERS THEN
263: hr_utility.set_message(800, 'PER_IN_ORACLE_GENERIC_ERROR');

Line 268: pay_in_utils.set_location(g_debug,'Leaving: '||l_procedure,20);

264: hr_utility.set_message_token('FUNCTION',l_procedure);
265: hr_utility.set_message_token('SQLERRMC',sqlerrm);
266: hr_utility.raise_error; */
267:
268: pay_in_utils.set_location(g_debug,'Leaving: '||l_procedure,20);
269: END check_asg_update;
270:
271:
272: END per_in_asg_leg_hook;