DBA Data[Home] [Help]

APPS.BENUTILS dependencies on HR_LOOKUPS

Line 222: from hr_lookups

218: --
219: cursor c_lookups is
220: select lookup_type,
221: lookup_code
222: from hr_lookups
223: where lookup_type in (nvl(p_lookup_type_1,'DUMMY_VALUE'),
224: nvl(p_lookup_type_2,'DUMMY_VALUE'),
225: nvl(p_lookup_type_3,'DUMMY_VALUE'),
226: nvl(p_lookup_type_4,'DUMMY_VALUE'),

Line 725: -- not_exists_in_hr_lookups

721: --
722: end get_assignment_id;
723:
724: ------------------------------------------------------------------------
725: -- not_exists_in_hr_lookups
726: ------------------------------------------------------------------------
727: function not_exists_in_hr_lookups(p_lookup_type in varchar2,
728: p_lookup_code in varchar2) return boolean is
729: --

Line 727: function not_exists_in_hr_lookups(p_lookup_type in varchar2,

723:
724: ------------------------------------------------------------------------
725: -- not_exists_in_hr_lookups
726: ------------------------------------------------------------------------
727: function not_exists_in_hr_lookups(p_lookup_type in varchar2,
728: p_lookup_code in varchar2) return boolean is
729: --
730: l_proc varchar2(80) := 'benutils.not_exists_in_hr_lookups';
731: --

Line 730: l_proc varchar2(80) := 'benutils.not_exists_in_hr_lookups';

726: ------------------------------------------------------------------------
727: function not_exists_in_hr_lookups(p_lookup_type in varchar2,
728: p_lookup_code in varchar2) return boolean is
729: --
730: l_proc varchar2(80) := 'benutils.not_exists_in_hr_lookups';
731: --
732: begin
733: --
734: hr_utility.set_location('Entering:'||l_proc, 5);

Line 753: end not_exists_in_hr_lookups;

749: --
750: hr_utility.set_location('Leaving:'||l_proc, 5);
751: return true;
752: --
753: end not_exists_in_hr_lookups;
754:
755: ------------------------------------------------------------------------
756: -- formula_exists
757: ------------------------------------------------------------------------