DBA Data[Home] [Help]

APPS.OTA_ANC_INS dependencies on OTA_ANNOUNCEMENTS

Line 87: -- Insert the row into: ota_announcements

83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: --
86: --
87: -- Insert the row into: ota_announcements
88: --
89: insert into ota_announcements
90: (announcement_id
91: ,business_group_id

Line 89: insert into ota_announcements

85: --
86: --
87: -- Insert the row into: ota_announcements
88: --
89: insert into ota_announcements
90: (announcement_id
91: ,business_group_id
92: ,object_version_number
93: ,start_date_active

Line 213: Cursor C_Sel1 is select ota_announcements_s.nextval from sys.dual;

209: Procedure pre_insert
210: (p_rec in out nocopy ota_anc_shd.g_rec_type
211: ) is
212: --
213: Cursor C_Sel1 is select ota_announcements_s.nextval from sys.dual;
214: --
215: Cursor C_Sel2 is
216: Select null
217: from ota_announcements

Line 217: from ota_announcements

213: Cursor C_Sel1 is select ota_announcements_s.nextval from sys.dual;
214: --
215: Cursor C_Sel2 is
216: Select null
217: from ota_announcements
218: where announcement_id =
219: ota_anc_ins.g_announcement_id_i;
220: --
221: l_proc varchar2(72) := g_package||'pre_insert';

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

235: --
236: -- The primary key values are already in use.
237: --
238: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
239: fnd_message.set_token('TABLE_NAME','ota_announcements');
240: fnd_message.raise_error;
241: End If;
242: Close C_Sel2;
243: --

Line 370: (p_module_name => 'OTA_ANNOUNCEMENTS'

366: --
367: when hr_api.cannot_find_prog_unit then
368: --
369: hr_api.cannot_find_prog_unit_error
370: (p_module_name => 'OTA_ANNOUNCEMENTS'
371: ,p_hook_type => 'AI');
372: --
373: end;
374: --