DBA Data[Home] [Help]

APPS.PER_PML_SHD dependencies on PER_OBJECTIVES_LIBRARY

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

17: l_proc varchar2(72) := g_package||'constraint_error';
18: --
19: Begin
20: --
21: If (p_constraint_name = 'PER_OBJECTIVES_LIBRARY_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 101: from per_objectives_library

97: ,attribute27
98: ,attribute28
99: ,attribute29
100: ,attribute30
101: from per_objectives_library
102: where objective_id = p_objective_id;
103: --
104: l_fct_ret boolean;
105: --

Line 218: from per_objectives_library

214: ,attribute27
215: ,attribute28
216: ,attribute29
217: ,attribute30
218: from per_objectives_library
219: where objective_id = p_objective_id
220: for update nowait;
221: --
222: l_proc varchar2(72) := g_package||'lck';

Line 267: fnd_message.set_token('TABLE_NAME', 'per_objectives_library');

263: -- The object is locked therefore we need to supply a meaningful
264: -- error message.
265: --
266: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
267: fnd_message.set_token('TABLE_NAME', 'per_objectives_library');
268: fnd_message.raise_error;
269: End lck;
270: --
271: -- ----------------------------------------------------------------------------