DBA Data[Home] [Help]

APPS.PER_QP_REPORTS dependencies on PER_QP_REPORTS

Line 1: PACKAGE BODY PER_QP_REPORTS as

1: PACKAGE BODY PER_QP_REPORTS as
2: /* $Header: ffqpr01t.pkb 115.0 99/07/16 02:03:19 porting ship $ */
3: /*===========================================================================+
4: | Copyright (c) 1993 Oracle Corporation |
5: | Redwood Shores, California, USA |

Line 28: hr_utility.set_location('per_qp_reports.get_formula_type',1);

24: from ff_formula_types
25: where upper(formula_type_name) = 'QUICKPAINT';
26: --
27: begin
28: hr_utility.set_location('per_qp_reports.get_formula_type',1);
29: open c;
30: fetch c into l_formula_type_id;
31: if c%notfound then
32: close c;

Line 49: hr_utility.set_location('per_qp_reports.get_sequence_id',1);

45: select ff_qp_reports_s.nextval
46: from sys.dual;
47: --
48: begin
49: hr_utility.set_location('per_qp_reports.get_sequence_id',1);
50: open c;
51: fetch c into l_sequence;
52: close c;
53: return(l_sequence);

Line 71: hr_utility.set_location('per_qp_reports.check_unique_name',1);

67: nvl(p_business_group_id, 0)
68: and nvl(legislation_code, nvl(p_legislation_code, ' ')) =
69: nvl(p_legislation_code, ' ');
70: begin
71: hr_utility.set_location('per_qp_reports.check_unique_name',1);
72: open c;
73: fetch c into l_exists;
74: if c%found then
75: close c;

Line 82: END PER_QP_REPORTS;

78: end if;
79: close c;
80: end check_unique_name;
81: --
82: END PER_QP_REPORTS;