DBA Data[Home] [Help]

APPS.PAY_IE_RULES dependencies on HR_UTILITY

Line 21: hr_utility.set_location('PAY_ie_RULES.get_source_text_context',1);

17: p_ee_id number,
18: p_source_text in out NOCOPY varchar2)
19: is
20: begin
21: hr_utility.set_location('PAY_ie_RULES.get_source_text_context',1);
22: /* removed the defaulting as due to a core bug defulating was being
23: called even for ASG_YTD dim. this resulted in bugs! */
24: --p_source_text := 'IE_A1';
25: p_source_text := null;

Line 26: hr_utility.set_location('PAY_IE_RULES.get_source_text_context',3);

22: /* removed the defaulting as due to a core bug defulating was being
23: called even for ASG_YTD dim. this resulted in bugs! */
24: --p_source_text := 'IE_A1';
25: p_source_text := null;
26: hr_utility.set_location('PAY_IE_RULES.get_source_text_context',3);
27: hr_utility.set_location('PAY_IE_RULES.get_source_text_context='||
28: p_source_text,4);
29: end get_source_text_context;
30:

Line 27: hr_utility.set_location('PAY_IE_RULES.get_source_text_context='||

23: called even for ASG_YTD dim. this resulted in bugs! */
24: --p_source_text := 'IE_A1';
25: p_source_text := null;
26: hr_utility.set_location('PAY_IE_RULES.get_source_text_context',3);
27: hr_utility.set_location('PAY_IE_RULES.get_source_text_context='||
28: p_source_text,4);
29: end get_source_text_context;
30:
31:

Line 49: -- hr_utility.trace_on('Y','IETUINT');

45: and l_effective_date between asg.effective_start_date and asg.effective_end_date
46: and l_effective_date between papf.effective_start_date and papf.effective_end_date
47: and papf.soft_coding_keyflex_id = scl.soft_coding_keyflex_id;
48: BEGIN
49: -- hr_utility.trace_on('Y','IETUINT');
50: hr_utility.set_location('asg_id = ' || p_assignment_id,20);
51: hr_utility.set_location('effective_date = ' || p_effective_date,30);
52:
53: OPEN c_get_tex_unit_id(p_assignment_id,p_effective_date);

Line 50: hr_utility.set_location('asg_id = ' || p_assignment_id,20);

46: and l_effective_date between papf.effective_start_date and papf.effective_end_date
47: and papf.soft_coding_keyflex_id = scl.soft_coding_keyflex_id;
48: BEGIN
49: -- hr_utility.trace_on('Y','IETUINT');
50: hr_utility.set_location('asg_id = ' || p_assignment_id,20);
51: hr_utility.set_location('effective_date = ' || p_effective_date,30);
52:
53: OPEN c_get_tex_unit_id(p_assignment_id,p_effective_date);
54: FETCH c_get_tex_unit_id INTO p_tax_unit_id ;

Line 51: hr_utility.set_location('effective_date = ' || p_effective_date,30);

47: and papf.soft_coding_keyflex_id = scl.soft_coding_keyflex_id;
48: BEGIN
49: -- hr_utility.trace_on('Y','IETUINT');
50: hr_utility.set_location('asg_id = ' || p_assignment_id,20);
51: hr_utility.set_location('effective_date = ' || p_effective_date,30);
52:
53: OPEN c_get_tex_unit_id(p_assignment_id,p_effective_date);
54: FETCH c_get_tex_unit_id INTO p_tax_unit_id ;
55: CLOSE c_get_tex_unit_id;

Line 57: hr_utility.set_location('p_tax_unit_id = ' || p_tax_unit_id,30);

53: OPEN c_get_tex_unit_id(p_assignment_id,p_effective_date);
54: FETCH c_get_tex_unit_id INTO p_tax_unit_id ;
55: CLOSE c_get_tex_unit_id;
56:
57: hr_utility.set_location('p_tax_unit_id = ' || p_tax_unit_id,30);
58: EXCEPTION
59: WHEN others THEN
60: p_tax_unit_id := NULL;
61: END get_main_tax_unit_id;