DBA Data[Home] [Help]

APPS.JTF_RS_JOB_ROLES_PVT dependencies on JTF_RS_JOB_ROLES_PKG

Line 119: jtf_rs_job_roles_pkg.insert_row(

115:
116:
117: /* Insert the row into the table by calling the table handler. */
118:
119: jtf_rs_job_roles_pkg.insert_row(
120: x_rowid => l_rowid,
121: x_job_role_id => l_job_role_id,
122: x_job_id => l_job_id,
123: x_role_id => l_role_id,

Line 267: jtf_rs_job_roles_pkg.lock_row(

263: is still valid. */
264:
265: BEGIN
266:
267: jtf_rs_job_roles_pkg.lock_row(
268: x_job_role_id => l_job_role_id,
269: x_object_version_number => p_object_version_num
270: );
271:

Line 292: jtf_rs_job_roles_pkg.delete_row(

288: BEGIN
289:
290: /* Delete the row into the table by calling the table handler. */
291:
292: jtf_rs_job_roles_pkg.delete_row(
293: x_job_role_id => l_job_role_id
294: );
295:
296: EXCEPTION