DBA Data[Home] [Help]

APPS.HR_PUMP_META_MAPPER dependencies on HR_PUMP_MAPPING_PACKAGES

Line 112: -- than hr_pump_mapping_packages.mapping_package%type, and it can be

108: type t_mapping_package is record
109: (
110: --
111: -- Use hr_pump_module_parameters.mapping_definition%type as it's larger
112: -- than hr_pump_mapping_packages.mapping_package%type, and it can be
113: -- the source of a package name.
114: --
115: mapping_package hr_pump_module_parameters.mapping_definition%type
116: );

Line 424: -- HR_PUMP_MAPPING_PACKAGES.

420:
421: -- ------------------------ get_mapping_packages --------------------------
422: -- Description:
423: -- Fetches the mapping function package information from
424: -- HR_PUMP_MAPPING_PACKAGES.
425: -- ------------------------------------------------------------------------
426: procedure get_mapping_packages
427: (
428: p_module_package in varchar2,

Line 439: from hr_pump_mapping_packages mp,

435: p_module_package in varchar2,
436: p_module_name in varchar2
437: ) is
438: select mp.mapping_package
439: from hr_pump_mapping_packages mp,
440: hr_api_modules am
441: where (mp.module_name is not null and
442: upper(mp.module_name) = upper(p_module_name) and
443: upper(am.module_name) = upper(p_module_name) and

Line 451: l_mapping_package hr_pump_mapping_packages.mapping_package%type;

447: or (mp.module_package is null and mp.module_name is null)
448: order by checking_order asc;
449: --
450: l_seqno number;
451: l_mapping_package hr_pump_mapping_packages.mapping_package%type;
452: begin
453: l_seqno := 1;
454: open csr_mapping_packages( p_module_package, p_module_name );
455: loop