DBA Data[Home] [Help]

APPS.IRC_IOS_INS dependencies on IRC_OFFER_STATUS_HISTORY

Line 87: -- Insert the row into: irc_offer_status_history

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

Line 89: insert into irc_offer_status_history

85: --
86: --
87: -- Insert the row into: irc_offer_status_history
88: --
89: insert into irc_offer_status_history
90: (offer_status_history_id
91: ,offer_id
92: ,status_change_date
93: ,offer_status

Line 173: Cursor C_Sel1 is select irc_offer_status_history_s.nextval from sys.dual;

169: Procedure pre_insert
170: (p_rec in out nocopy irc_ios_shd.g_rec_type
171: ) is
172: --
173: Cursor C_Sel1 is select irc_offer_status_history_s.nextval from sys.dual;
174: --
175: Cursor C_Sel2 is
176: Select null
177: from irc_offer_status_history

Line 177: from irc_offer_status_history

173: Cursor C_Sel1 is select irc_offer_status_history_s.nextval from sys.dual;
174: --
175: Cursor C_Sel2 is
176: Select null
177: from irc_offer_status_history
178: where offer_status_history_id =
179: irc_ios_ins.g_offer_status_history_id_i;
180: --
181: l_proc varchar2(72) := g_package||'pre_insert';

Line 199: fnd_message.set_token('TABLE_NAME','irc_offer_status_history');

195: --
196: -- The primary key values are already in use.
197: --
198: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
199: fnd_message.set_token('TABLE_NAME','irc_offer_status_history');
200: fnd_message.raise_error;
201: End If;
202: Close C_Sel2;
203: --

Line 290: (p_module_name => 'IRC_OFFER_STATUS_HISTORY'

286: --
287: when hr_api.cannot_find_prog_unit then
288: --
289: hr_api.cannot_find_prog_unit_error
290: (p_module_name => 'IRC_OFFER_STATUS_HISTORY'
291: ,p_hook_type => 'AI');
292: --
293: end;
294: --