DBA Data[Home] [Help]

APPS.BEN_XEL_DEL dependencies on HR_APPLICATION_OWNERSHIPS

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

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

Line 28: DELETE FROM hr_application_ownerships

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