DBA Data[Home] [Help]

APPS.PER_SSB_SHD dependencies on PER_RI_SETUP_SUB_TASKS

Line 21: If (p_constraint_name = 'PER_RI_SETUP_SUB_TASKS_PK') Then

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'PER_RI_SETUP_SUB_TASKS_PK') Then
22: fnd_message.set_name('PAY', 'HR_6153_ALL_PROCEDURE_FAIL');
23: fnd_message.set_token('PROCEDURE', l_proc);
24: fnd_message.set_token('STEP','5');
25: fnd_message.raise_error;

Line 60: from per_ri_setup_sub_tasks

56: ,setup_sub_task_creation_date
57: ,setup_sub_task_last_mod_date
58: ,legislation_code
59: ,object_version_number
60: from per_ri_setup_sub_tasks
61: where setup_sub_task_code = p_setup_sub_task_code;
62: --
63: l_fct_ret boolean;
64: --

Line 136: from per_ri_setup_sub_tasks

132: ,setup_sub_task_creation_date
133: ,setup_sub_task_last_mod_date
134: ,legislation_code
135: ,object_version_number
136: from per_ri_setup_sub_tasks
137: where setup_sub_task_code = p_setup_sub_task_code
138: for update nowait;
139: --
140: l_proc varchar2(72) := g_package||'lck';

Line 185: fnd_message.set_token('TABLE_NAME', 'per_ri_setup_sub_tasks');

181: -- The object is locked therefore we need to supply a meaningful
182: -- error message.
183: --
184: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
185: fnd_message.set_token('TABLE_NAME', 'per_ri_setup_sub_tasks');
186: fnd_message.raise_error;
187: End lck;
188: --
189: -- ----------------------------------------------------------------------------