DBA Data[Home] [Help]

APPS.PAY_ACCRUAL_PLANS_PKG dependencies on PAY_DB_PAY_SETUP

Line 292: DESCRIPTION calls the function PAY_DB_PAY_SETUP.CREATE_ELEMENT,The sole

288: /*
289: ****************************************************************************
290: NAME create_element
291:
292: DESCRIPTION calls the function PAY_DB_PAY_SETUP.CREATE_ELEMENT,The sole
293: reason for this is to cut down on space and reduce the margin
294: for errors in the call, apssing only the things that change.
295:
296: NOTES anticipate the only use for this is to be called from the

Line 301: in the calls to PAY_DB_PAY_SETUP.create_element. RMF 27-Nov-95.

297: pre_insert_actions routine in this package.
298:
299: Added p_legislation_code and p_currency_code to the param list
300: passed in and used them instead of the hard coded US and USD
301: in the calls to PAY_DB_PAY_SETUP.create_element. RMF 27-Nov-95.
302: ****************************************************************************
303: */
304: FUNCTION create_element(p_element_name IN varchar2,
305: p_element_description IN varchar2,

Line 323: l_element_type_id := PAY_DB_PAY_SETUP.create_element

319: hr_utility.set_location('pay_accrual_plans_pkg.create_element',1);
320: l_effective_start_date := hr_general.start_of_time;
321: l_effective_end_date := hr_general.end_of_time;
322: --
323: l_element_type_id := PAY_DB_PAY_SETUP.create_element
324: (p_element_name => p_element_name,
325: p_description => p_element_description,
326: p_reporting_name => '',
327: p_classification_name => p_classification_name,

Line 399: l_input_value_id := pay_db_pay_setup.create_input_value(

395: hr_utility.set_location('pay_accrual_plans_pkg.create_input_value',1);
396: l_effective_start_date := hr_general.start_of_time;
397: l_effective_end_date := hr_general.end_of_time;
398: --
399: l_input_value_id := pay_db_pay_setup.create_input_value(
400: p_element_name => p_element_name,
401: p_name => p_input_value_name,
402: p_uom => '',
403: p_uom_code => p_uom_code,