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 722: -- not_exists_in_hr_lookups

718: --
719: end get_assignment_id;
720:
721: ------------------------------------------------------------------------
722: -- not_exists_in_hr_lookups
723: ------------------------------------------------------------------------
724: function not_exists_in_hr_lookups(p_lookup_type in varchar2,
725: p_lookup_code in varchar2) return boolean is
726: --

Line 724: function not_exists_in_hr_lookups(p_lookup_type in varchar2,

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

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

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

Line 750: end not_exists_in_hr_lookups;

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