DBA Data[Home] [Help]

APPS.PER_IN_ASG_LEG_HOOK dependencies on PAY_IN_UTILS

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

64: BEGIN
65:
66: g_debug := hr_utility.debug_enabled ;
67: l_procedure := g_package ||'check_asg';
68: pay_in_utils.set_location(g_debug,'Entering: '||l_procedure,10);
69:
70: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'IN') THEN
71: hr_utility.trace ('IN Legislation not installed. Not performing the validations');
72: pay_in_utils.set_location(g_debug,'Leaving: '||l_procedure,20);

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

68: pay_in_utils.set_location(g_debug,'Entering: '||l_procedure,10);
69:
70: IF NOT hr_utility.chk_product_install('Oracle Human Resources', 'IN') THEN
71: hr_utility.trace ('IN Legislation not installed. Not performing the validations');
72: pay_in_utils.set_location(g_debug,'Leaving: '||l_procedure,20);
73: RETURN;
74: END IF;
75:
76: pay_in_utils.set_location(g_debug,l_procedure,30);

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

72: pay_in_utils.set_location(g_debug,'Leaving: '||l_procedure,20);
73: RETURN;
74: END IF;
75:
76: pay_in_utils.set_location(g_debug,l_procedure,30);
77: --
78: -- Code for PF Information
79: --
80: l_message := 'SUCCESS';

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

82: OPEN c_org_name(p_gre_id);
83: FETCH c_org_name
84: INTO l_gre_org;
85: IF c_org_name%NOTFOUND THEN
86: pay_in_utils.set_location(g_debug,l_procedure,40);
87: l_gre_org := NULL;
88: END IF;
89: CLOSE c_org_name;
90:

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

91: OPEN c_org_name(p_pf_org_id);
92: FETCH c_org_name
93: INTO l_pf_org;
94: IF c_org_name%NOTFOUND THEN
95: pay_in_utils.set_location(g_debug,l_procedure,40);
96: l_pf_org := NULL;
97: END IF;
98: CLOSE c_org_name;
99:

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

100: OPEN c_org_name(p_esi_org_id);
101: FETCH c_org_name
102: INTO l_esi_org;
103: IF c_org_name%NOTFOUND THEN
104: pay_in_utils.set_location(g_debug,l_procedure,40);
105: l_esi_org := NULL;
106: END IF;
107: CLOSE c_org_name;
108:

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

105: l_esi_org := NULL;
106: END IF;
107: CLOSE c_org_name;
108:
109: pay_in_utils.set_location(g_debug,l_procedure,50);
110:
111: pay_in_ff_pkg.check_pf_update
112: (p_effective_date => p_effective_date
113: ,p_dt_mode => p_dt_mode

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

120: ,p_pf => NULL
121: ,p_esi => NULL
122: );
123:
124: pay_in_utils.set_location(g_debug,'Leaving: '||l_procedure,60);
125:
126: EXCEPTION
127: WHEN OTHERS THEN
128: IF c_org_name%ISOPEN THEN close c_org_name; END IF;

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

184: l_procedure VARCHAR2(100);
185: BEGIN
186: g_debug := hr_utility.debug_enabled;
187: l_procedure := g_package ||'check_asg_update';
188: pay_in_utils.set_location(g_debug,'Entering: '||l_procedure,10);
189: --
190:
191: /* check_asg
192: (p_dt_mode => p_datetrack_update_mode

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

203: ,p_director => p_segment10
204: ,p_specified => p_segment11
205: );
206:
207: pay_in_utils.set_location(g_debug,'Leaving: '||g_procedure_name,20);
208:
209: EXCEPTION
210: WHEN OTHERS THEN
211: hr_utility.set_message(800, 'PER_IN_ORACLE_GENERIC_ERROR');

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

212: hr_utility.set_message_token('FUNCTION',g_procedure_name);
213: hr_utility.set_message_token('SQLERRMC',sqlerrm);
214: hr_utility.raise_error; */
215:
216: pay_in_utils.set_location(g_debug,'Leaving: '||l_procedure,20);
217: END check_asg_update;
218:
219:
220: END per_in_asg_leg_hook;