DBA Data[Home] [Help]

APPS.OTA_CRT_SHD dependencies on OTA_CERTIFICATIONS_B

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

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

83: ,VALIDITY_DURATION_UNITS
84: ,RENEWABLE_FLAG
85: ,VALIDITY_START_TYPE
86: ,COMPETENCY_UPDATE_LEVEL
87: from ota_certifications_b
88: where certification_id = p_certification_id;
89: --
90: l_fct_ret boolean;
91: --

Line 190: from ota_certifications_b

186: ,VALIDITY_DURATION_UNITS
187: ,RENEWABLE_FLAG
188: ,VALIDITY_START_TYPE
189: ,COMPETENCY_UPDATE_LEVEL
190: from ota_certifications_b
191: where certification_id = p_certification_id
192: for update nowait;
193: --
194: l_proc varchar2(72) := g_package||'lck';

Line 239: fnd_message.set_token('TABLE_NAME', 'ota_certifications_b');

235: -- The object is locked therefore we need to supply a meaningful
236: -- error message.
237: --
238: fnd_message.set_name('PAY', 'HR_7165_OBJECT_LOCKED');
239: fnd_message.set_token('TABLE_NAME', 'ota_certifications_b');
240: fnd_message.raise_error;
241: End lck;
242: --
243: -- ----------------------------------------------------------------------------