DBA Data[Home] [Help]

APPS.OTA_CMB_SHD dependencies on OTA_CERTIFICATION_MEMBERS

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

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

75: ,attribute17
76: ,attribute18
77: ,attribute19
78: ,attribute20
79: from ota_certification_members
80: where certification_member_id = p_certification_member_id;
81: --
82: l_fct_ret boolean;
83: --

Line 174: from ota_certification_members

170: ,attribute17
171: ,attribute18
172: ,attribute19
173: ,attribute20
174: from ota_certification_members
175: where certification_member_id = p_certification_member_id
176: for update nowait;
177: --
178: l_proc varchar2(72) := g_package||'lck';

Line 223: fnd_message.set_token('TABLE_NAME', 'ota_certification_members');

219: -- The object is locked therefore we need to supply a meaningful
220: -- error message.
221: --
222: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
223: fnd_message.set_token('TABLE_NAME', 'ota_certification_members');
224: fnd_message.raise_error;
225: End lck;
226: --
227: -- ----------------------------------------------------------------------------