DBA Data[Home] [Help]

APPS.PAY_FR_DB_PAY_SETUP dependencies on PAY_CUSTOMIZED_RESTRICTIONS

Line 2344: created and inserted into pay_customized_restrictions.

2340: DESCRIPTION
2341: Creates a new customize restriction type.
2342: NOTES
2343: This function returns the customized_restriction_id of the row it has
2344: created and inserted into pay_customized_restrictions.
2345: */
2346: --
2347: FUNCTION insert_customize_restriction
2348: ( p_business_group_id number default NULL,

Line 2381: from pay_customized_restrictions pcr

2377: --
2378: begin
2379: select 'Y'
2380: into v_name_already_exists
2381: from pay_customized_restrictions pcr
2382: where pcr.form_name = p_form_name;
2383: exception
2384: when NO_DATA_FOUND then NULL;
2385: end;

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

2414: if g_debug then
2415: hr_utility.set_location('insert_customize_restriction',5);
2416: end if;
2417: --
2418: -- Create a row in pay_customized_restrictions and pay_custom_restrictions_tl
2419: --
2420:
2421: PER_CUSTOMIZED_RESTR_PKG.INSERT_ROW (
2422: X_ROWID => v_rowid,