DBA Data[Home] [Help]

APPS.AME_ACT_INS dependencies on AME_ACT_SHD

Line 83: (p_rec in out nocopy ame_act_shd.g_rec_type

79: --
80: -- {End Of Comments}
81: -- ----------------------------------------------------------------------------
82: Procedure dt_insert_dml
83: (p_rec in out nocopy ame_act_shd.g_rec_type
84: ,p_effective_date in date
85: ,p_datetrack_mode in varchar2
86: ,p_validation_start_date in date
87: ,p_validation_end_date in date

Line 96: and t.start_date = ame_act_shd.g_old_rec.start_date

92: select t.creation_date
93: from ame_actions t
94: where t.action_id = p_rec.action_id
95: and t.action_type_id = p_rec.action_type_id
96: and t.start_date = ame_act_shd.g_old_rec.start_date
97: and t.end_date = p_validation_start_date;
98: --
99: Cursor C_Sel2 Is
100: select created_by

Line 135: ame_act_shd.get_object_version_number

131: --
132: -- Get the object version number for the insert
133: --
134: p_rec.object_version_number :=
135: ame_act_shd.get_object_version_number
136: (p_action_id => p_rec.action_id
137: ,p_action_type_id => p_rec.action_type_id
138: );
139: --

Line 233: ame_act_shd.constraint_error

229: Exception
230: When hr_api.check_integrity_violated Then
231: -- A check constraint has been violated
232: --
233: ame_act_shd.constraint_error
234: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
235: When hr_api.unique_integrity_violated Then
236: -- Unique integrity has been violated
237: --

Line 238: ame_act_shd.constraint_error

234: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
235: When hr_api.unique_integrity_violated Then
236: -- Unique integrity has been violated
237: --
238: ame_act_shd.constraint_error
239: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
240: When Others Then
241: --
242: Raise;

Line 249: (p_rec in out nocopy ame_act_shd.g_rec_type

245: -- ----------------------------------------------------------------------------
246: -- |------------------------------< insert_dml >------------------------------|
247: -- ----------------------------------------------------------------------------
248: Procedure insert_dml
249: (p_rec in out nocopy ame_act_shd.g_rec_type
250: ,p_effective_date in date
251: ,p_datetrack_mode in varchar2
252: ,p_validation_start_date in date
253: ,p_validation_end_date in date

Line 312: (p_rec in out nocopy ame_act_shd.g_rec_type

308: --
309: -- {End Of Comments}
310: -- ----------------------------------------------------------------------------
311: Procedure pre_insert
312: (p_rec in out nocopy ame_act_shd.g_rec_type
313: ,p_effective_date in date
314: ,p_datetrack_mode in varchar2
315: ,p_validation_start_date in date
316: ,p_validation_end_date in date

Line 413: (p_rec in ame_act_shd.g_rec_type

409: --
410: -- {End Of Comments}
411: -- ----------------------------------------------------------------------------
412: Procedure post_insert
413: (p_rec in ame_act_shd.g_rec_type
414: ,p_effective_date in date
415: ,p_datetrack_mode in varchar2
416: ,p_validation_start_date in date
417: ,p_validation_end_date in date

Line 505: ,p_rec in ame_act_shd.g_rec_type

501: -- ----------------------------------------------------------------------------
502: Procedure ins_lck
503: (p_effective_date in date
504: ,p_datetrack_mode in varchar2
505: ,p_rec in ame_act_shd.g_rec_type
506: ,p_validation_start_date out nocopy date
507: ,p_validation_end_date out nocopy date
508: ) is
509: --

Line 550: ,p_rec in out nocopy ame_act_shd.g_rec_type

546: -- |---------------------------------< ins >----------------------------------|
547: -- ----------------------------------------------------------------------------
548: Procedure ins
549: (p_effective_date in date
550: ,p_rec in out nocopy ame_act_shd.g_rec_type
551: ) is
552: --
553: l_proc varchar2(72) := g_package||'ins';
554: l_datetrack_mode varchar2(30) := hr_api.g_insert;

Line 636: l_rec ame_act_shd.g_rec_type;

632: ,p_start_date out nocopy date
633: ,p_end_date out nocopy date
634: ) is
635: --
636: l_rec ame_act_shd.g_rec_type;
637: l_proc varchar2(72) := g_package||'ins';
638: --
639: Begin
640: hr_utility.set_location('Entering:'||l_proc, 5);

Line 646: ame_act_shd.convert_args

642: -- Call conversion function to turn arguments into the
643: -- p_rec structure.
644: --
645: l_rec :=
646: ame_act_shd.convert_args
647: (null
648: ,p_action_type_id
649: ,p_parameter
650: ,null