DBA Data[Home] [Help]

APPS.PER_ES_CREATE_CWK dependencies on HR_LOOKUPS

Line 18: select lookup_code from hr_lookups where

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

Line 22: l_identifier_type hr_lookups.lookup_code%TYPE;

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