DBA Data[Home] [Help]

APPS.IRC_APS_INS dependencies on IRC_APS_SHD

Line 76: (p_rec in out nocopy irc_aps_shd.g_rec_type

72: --
73: -- {End Of Comments}
74: -- ----------------------------------------------------------------------------
75: Procedure insert_dml
76: (p_rec in out nocopy irc_aps_shd.g_rec_type
77: ) is
78: --
79: l_proc varchar2(72) := g_package||'insert_dml';
80: --

Line 109: irc_aps_shd.constraint_error

105: Exception
106: When hr_api.check_integrity_violated Then
107: -- A check constraint has been violated
108: --
109: irc_aps_shd.constraint_error
110: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
111: When hr_api.parent_integrity_violated Then
112: -- Parent integrity has been violated
113: --

Line 114: irc_aps_shd.constraint_error

110: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
111: When hr_api.parent_integrity_violated Then
112: -- Parent integrity has been violated
113: --
114: irc_aps_shd.constraint_error
115: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
116: When hr_api.unique_integrity_violated Then
117: -- Unique integrity has been violated
118: --

Line 119: irc_aps_shd.constraint_error

115: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
116: When hr_api.unique_integrity_violated Then
117: -- Unique integrity has been violated
118: --
119: irc_aps_shd.constraint_error
120: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
121: When Others Then
122: --
123: Raise;

Line 164: (p_rec in out nocopy irc_aps_shd.g_rec_type

160: --
161: -- {End Of Comments}
162: -- ----------------------------------------------------------------------------
163: Procedure pre_insert
164: (p_rec in out nocopy irc_aps_shd.g_rec_type
165: ) is
166: --
167: Cursor C_Sel1 is select irc_apl_profile_snapshots_s.nextval from sys.dual;
168: --

Line 252: ,p_rec in irc_aps_shd.g_rec_type

248: -- {End Of Comments}
249: -- ----------------------------------------------------------------------------
250: Procedure post_insert
251: (p_effective_date in date
252: ,p_rec in irc_aps_shd.g_rec_type
253: ) is
254: --
255: l_proc varchar2(72) := g_package||'post_insert';
256: --

Line 290: ,p_rec in out nocopy irc_aps_shd.g_rec_type

286: -- |---------------------------------< ins >----------------------------------|
287: -- ----------------------------------------------------------------------------
288: Procedure ins
289: (p_effective_date in date
290: ,p_rec in out nocopy irc_aps_shd.g_rec_type
291: ) is
292: --
293: l_proc varchar2(72) := g_package||'ins';
294: --

Line 339: l_rec irc_aps_shd.g_rec_type;

335: ,p_profile_snapshot_id out nocopy number
336: ,p_object_version_number out nocopy number
337: ) is
338: --
339: l_rec irc_aps_shd.g_rec_type;
340: l_proc varchar2(72) := g_package||'ins';
341: --
342: Begin
343: hr_utility.set_location('Entering:'||l_proc, 5);

Line 349: irc_aps_shd.convert_args

345: -- Call conversion function to turn arguments into the
346: -- p_rec structure.
347: --
348: l_rec :=
349: irc_aps_shd.convert_args
350: (null
351: ,p_person_id
352: ,null
353: );