DBA Data[Home] [Help]

APPS.IRC_IDP_INS dependencies on IRC_DEFAULT_POSTINGS

Line 87: -- Insert the row into: irc_default_postings

83: p_rec.object_version_number := 1; -- Initialise the object version
84: --
85: irc_idp_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: irc_default_postings
88: --
89: insert into irc_default_postings
90: (default_posting_id
91: ,position_id

Line 89: insert into irc_default_postings

85: irc_idp_shd.g_api_dml := true; -- Set the api dml status
86: --
87: -- Insert the row into: irc_default_postings
88: --
89: insert into irc_default_postings
90: (default_posting_id
91: ,position_id
92: ,job_id
93: ,attribute_category

Line 235: Cursor C_Sel1 is select irc_default_postings_s.nextval from sys.dual;

231: Procedure pre_insert
232: (p_rec in out nocopy irc_idp_shd.g_rec_type
233: ) is
234: --
235: Cursor C_Sel1 is select irc_default_postings_s.nextval from sys.dual;
236: --
237: Cursor C_Sel2 is
238: Select null
239: from irc_default_postings

Line 239: from irc_default_postings

235: Cursor C_Sel1 is select irc_default_postings_s.nextval from sys.dual;
236: --
237: Cursor C_Sel2 is
238: Select null
239: from irc_default_postings
240: where default_posting_id =
241: irc_idp_ins.g_default_posting_id_i;
242: --
243: l_proc varchar2(72) := g_package||'pre_insert';

Line 261: fnd_message.set_token('TABLE_NAME','irc_default_postings');

257: --
258: -- The primary key values are already in use.
259: --
260: fnd_message.set_name('PER','PER_289391_KEY_ALREADY_USED');
261: fnd_message.set_token('TABLE_NAME','irc_default_postings');
262: fnd_message.raise_error;
263: End If;
264: Close C_Sel2;
265: --

Line 408: (p_module_name => 'IRC_DEFAULT_POSTINGS'

404: --
405: when hr_api.cannot_find_prog_unit then
406: --
407: hr_api.cannot_find_prog_unit_error
408: (p_module_name => 'IRC_DEFAULT_POSTINGS'
409: ,p_hook_type => 'AI');
410: --
411: end;
412: --