DBA Data[Home] [Help]

APPS.PAY_DB_PAY_SETUP dependencies on PAY_CUSTOMIZED_RESTRICTIONS

Line 2337: created and inserted into pay_customized_restrictions.

2333: DESCRIPTION
2334: Creates a new customize restriction type.
2335: NOTES
2336: This function returns the customized_restriction_id of the row it has
2337: created and inserted into pay_customized_restrictions.
2338: */
2339: --
2340: FUNCTION insert_customize_restriction
2341: ( p_business_group_id number default NULL,

Line 2374: from pay_customized_restrictions pcr

2370: --
2371: begin
2372: select 'Y'
2373: into v_name_already_exists
2374: from pay_customized_restrictions pcr
2375: where pcr.form_name = p_form_name;
2376: exception
2377: when NO_DATA_FOUND then NULL;
2378: end;

Line 2411: -- Create a row in pay_customized_restrictions and pay_custom_restrictions_tl

2407: if g_debug then
2408: hr_utility.set_location('insert_customize_restriction',5);
2409: end if;
2410: --
2411: -- Create a row in pay_customized_restrictions and pay_custom_restrictions_tl
2412: --
2413:
2414: PER_CUSTOMIZED_RESTR_PKG.INSERT_ROW (
2415: X_ROWID => v_rowid,