DBA Data[Home] [Help]

APPS.PAY_RCU_DEL dependencies on HR_APPLICATION_OWNERSHIPS

Line 15: -- Deletes row(s) from hr_application_ownerships depending on the mode that

11: -- ----------------------< delete_app_ownerships >----------------------------|
12: -- ----------------------------------------------------------------------------
13: --
14: -- Description:
15: -- Deletes row(s) from hr_application_ownerships depending on the mode that
16: -- the row handler has been called in.
17: --
18: -- ----------------------------------------------------------------------------
19: PROCEDURE delete_app_ownerships(p_pk_column IN varchar2

Line 27: DELETE FROM hr_application_ownerships

23: --
24: IF (hr_startup_data_api_support.return_startup_mode
25: IN ('STARTUP','GENERIC')) THEN
26: --
27: DELETE FROM hr_application_ownerships
28: WHERE key_name = p_pk_column
29: AND key_value = p_pk_value;
30: --
31: END IF;