DBA Data[Home] [Help]

APPS.PER_ES_CREATE_PERSON dependencies on HR_LOOKUPS

Line 16: select lookup_code from hr_lookups where

12: ,p_per_information2 VARCHAR2
13: ,p_per_information3 VARCHAR2) is
14:
15: Cursor get_lookup_type(p_per_information2 varchar2) is
16: select lookup_code from hr_lookups where
17: lookup_type='ES_IDENTIFIER_TYPE'
18: and lookup_code=p_per_information2;
19:
20: l_identifier_type hr_lookups.lookup_code%TYPE;

Line 20: l_identifier_type hr_lookups.lookup_code%TYPE;

16: select lookup_code from hr_lookups where
17: lookup_type='ES_IDENTIFIER_TYPE'
18: and lookup_code=p_per_information2;
19:
20: l_identifier_type hr_lookups.lookup_code%TYPE;
21: l_identifier_value VARCHAR2(10);
22: l_proc VARCHAR2(72) := g_package||'CREATE_ES_PERSON';
23: l_national_identifier per_all_people_f.national_identifier%TYPE;
24: