DBA Data[Home] [Help]

APPS.HR_PUMP_META_MAPPER dependencies on HR_GENERAL

Line 211: -- Error exceptions that may be raised by hr_general.describe_procedure.

207: -- ERROR EXCEPTIONS --
208: ----------------------
209:
210: --
211: -- Error exceptions that may be raised by hr_general.describe_procedure.
212: --
213: package_not_exists exception;
214: pragma exception_init(package_not_exists, -6564);
215: --

Line 477: -- Uses the results of the hr_general.describe_procedure call to get

473: end get_mapping_packages;
474:
475: -- ---------------------------- get_latest_api ----------------------------
476: -- Description:
477: -- Uses the results of the hr_general.describe_procedure call to get
478: -- the latest API overload version. By "latest" we mean the overload with
479: -- the most mandatory parameters as this is the normal case with the
480: -- HRMS API strategy. Of course, the HRMS API strategy will allow APIs
481: -- to be overloaded to remove parameters also in which case the above

Line 669: -- Calls hr_general.describe_procedure on the API specified by

665: end get_latest_api;
666:
667: -- -------------------------- describe_api --------------------------------
668: -- Description:
669: -- Calls hr_general.describe_procedure on the API specified by
670: -- p_module_package || '.' || p_module_name, and returns an initial
671: -- t_parameter_tbl and a count of the API parameters.
672: -- ------------------------------------------------------------------------
673: procedure describe_api

Line 709: hr_general.describe_procedure

705: hr_utility.trace('Entered describe_api.');
706: end if;
707:
708: begin
709: hr_general.describe_procedure
710: ( object_name => p_module_package || '.' || p_module_name,
711: reserved1 => null,
712: reserved2 => null,
713: overload => l_overload,

Line 1213: -- Calls hr_general.describe_procedure on a parameter mapping function.

1209: end merge_api_and_seed_data;
1210:
1211: -- ----------------------- describe_function ------------------------------
1212: -- Description:
1213: -- Calls hr_general.describe_procedure on a parameter mapping function.
1214: -- Sets up the parameter lists for the functions and updates the relevant
1215: -- counts.
1216: -- ------------------------------------------------------------------------
1217: procedure describe_function

Line 1269: hr_general.describe_procedure

1265:
1266: for i in 1 .. p_mapping_package_tbl.count loop
1267: begin
1268: l_package := p_mapping_package_tbl(i).mapping_package;
1269: hr_general.describe_procedure
1270: ( object_name => l_package || '.' || p_function.function_name,
1271: reserved1 => null,
1272: reserved2 => null,
1273: overload => l_overload,