DBA Data[Home] [Help]

APPS.AME_MAN_UPD dependencies on AME_MAN_SHD

Line 58: (p_rec in out nocopy ame_man_shd.g_rec_type

54: --
55: -- {End Of Comments}
56: -- ----------------------------------------------------------------------------
57: Procedure dt_update_dml
58: (p_rec in out nocopy ame_man_shd.g_rec_type
59: ,p_effective_date in date
60: ,p_datetrack_mode in varchar2
61: ,p_validation_start_date in date
62: ,p_validation_end_date in date

Line 77: ame_man_shd.get_object_version_number

73: -- Because we are updating a row we must get the next object
74: -- version number.
75: --
76: p_rec.object_version_number :=
77: ame_man_shd.get_object_version_number
78: (p_attribute_id => p_rec.attribute_id
79: ,p_action_type_id => p_rec.action_type_id
80: );
81: --

Line 111: ame_man_shd.constraint_error

107: Exception
108: When hr_api.check_integrity_violated Then
109: -- A check constraint has been violated
110: --
111: ame_man_shd.constraint_error
112: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
113: When hr_api.unique_integrity_violated Then
114: -- Unique integrity has been violated
115: --

Line 116: ame_man_shd.constraint_error

112: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
113: When hr_api.unique_integrity_violated Then
114: -- Unique integrity has been violated
115: --
116: ame_man_shd.constraint_error
117: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
118: When Others Then
119: --
120: Raise;

Line 155: (p_rec in out nocopy ame_man_shd.g_rec_type

151: --
152: -- {End Of Comments}
153: -- ----------------------------------------------------------------------------
154: Procedure update_dml
155: (p_rec in out nocopy ame_man_shd.g_rec_type
156: ,p_effective_date in date
157: ,p_datetrack_mode in varchar2
158: ,p_validation_start_date in date
159: ,p_validation_end_date in date

Line 222: (p_rec in out nocopy ame_man_shd.g_rec_type

218: --
219: -- {End Of Comments}
220: -- ----------------------------------------------------------------------------
221: Procedure dt_pre_update
222: (p_rec in out nocopy ame_man_shd.g_rec_type
223: ,p_effective_date in date
224: ,p_datetrack_mode in varchar2
225: ,p_validation_start_date in date
226: ,p_validation_end_date in date

Line 238: ame_man_shd.upd_end_date

234: If (p_datetrack_mode <> hr_api.g_correction) then
235: --
236: -- Update the current effective end date
237: --
238: ame_man_shd.upd_end_date
239: (p_effective_date => p_effective_date
240: ,p_attribute_id => p_rec.attribute_id
241: ,p_action_type_id => p_rec.action_type_id
242: ,p_new_end_date => p_validation_start_date

Line 308: (p_rec in out nocopy ame_man_shd.g_rec_type

304: --
305: -- {End Of Comments}
306: -- ----------------------------------------------------------------------------
307: Procedure pre_update
308: (p_rec in out nocopy ame_man_shd.g_rec_type
309: ,p_effective_date in date
310: ,p_datetrack_mode in varchar2
311: ,p_validation_start_date in date
312: ,p_validation_end_date in date

Line 366: (p_rec in ame_man_shd.g_rec_type

362: --
363: -- {End Of Comments}
364: -- ----------------------------------------------------------------------------
365: Procedure post_update
366: (p_rec in ame_man_shd.g_rec_type
367: ,p_effective_date in date
368: ,p_datetrack_mode in varchar2
369: ,p_validation_start_date in date
370: ,p_validation_end_date in date

Line 401: => ame_man_shd.g_old_rec.start_date

397: => p_rec.security_group_id
398: ,p_object_version_number
399: => p_rec.object_version_number
400: ,p_start_date_o
401: => ame_man_shd.g_old_rec.start_date
402: ,p_end_date_o
403: => ame_man_shd.g_old_rec.end_date
404: ,p_security_group_id_o
405: => ame_man_shd.g_old_rec.security_group_id

Line 403: => ame_man_shd.g_old_rec.end_date

399: => p_rec.object_version_number
400: ,p_start_date_o
401: => ame_man_shd.g_old_rec.start_date
402: ,p_end_date_o
403: => ame_man_shd.g_old_rec.end_date
404: ,p_security_group_id_o
405: => ame_man_shd.g_old_rec.security_group_id
406: ,p_object_version_number_o
407: => ame_man_shd.g_old_rec.object_version_number

Line 405: => ame_man_shd.g_old_rec.security_group_id

401: => ame_man_shd.g_old_rec.start_date
402: ,p_end_date_o
403: => ame_man_shd.g_old_rec.end_date
404: ,p_security_group_id_o
405: => ame_man_shd.g_old_rec.security_group_id
406: ,p_object_version_number_o
407: => ame_man_shd.g_old_rec.object_version_number
408: );
409: --

Line 407: => ame_man_shd.g_old_rec.object_version_number

403: => ame_man_shd.g_old_rec.end_date
404: ,p_security_group_id_o
405: => ame_man_shd.g_old_rec.security_group_id
406: ,p_object_version_number_o
407: => ame_man_shd.g_old_rec.object_version_number
408: );
409: --
410: exception
411: --

Line 467: (p_rec in out nocopy ame_man_shd.g_rec_type

463: --
464: -- {End Of Comments}
465: -- ----------------------------------------------------------------------------
466: Procedure convert_defs
467: (p_rec in out nocopy ame_man_shd.g_rec_type
468: ) is
469: --
470: Begin
471: --

Line 479: ame_man_shd.g_old_rec.security_group_id;

475: -- is being used then we must set to the 'current' argument value.
476: --
477: If (p_rec.security_group_id = hr_api.g_number) then
478: p_rec.security_group_id :=
479: ame_man_shd.g_old_rec.security_group_id;
480: End If;
481: --
482: End convert_defs;
483: --

Line 490: ,p_rec in out nocopy ame_man_shd.g_rec_type

486: -- ----------------------------------------------------------------------------
487: Procedure upd
488: (p_effective_date in date
489: ,p_datetrack_mode in varchar2
490: ,p_rec in out nocopy ame_man_shd.g_rec_type
491: ) is
492: --
493: l_proc varchar2(72) := g_package||'upd';
494: l_validation_start_date date;

Line 506: ame_man_shd.lck

502: dt_api.validate_dt_upd_mode(p_datetrack_mode => p_datetrack_mode);
503: --
504: -- We must lock the row which we need to update.
505: --
506: ame_man_shd.lck
507: (p_effective_date => p_effective_date
508: ,p_datetrack_mode => p_datetrack_mode
509: ,p_attribute_id => p_rec.attribute_id
510: ,p_action_type_id => p_rec.action_type_id

Line 583: l_rec ame_man_shd.g_rec_type;

579: ,p_start_date out nocopy date
580: ,p_end_date out nocopy date
581: ) is
582: --
583: l_rec ame_man_shd.g_rec_type;
584: l_proc varchar2(72) := g_package||'upd';
585: --
586: Begin
587: hr_utility.set_location('Entering:'||l_proc, 5);

Line 593: ame_man_shd.convert_args

589: -- Call conversion function to turn arguments into the
590: -- l_rec structure.
591: --
592: l_rec :=
593: ame_man_shd.convert_args
594: (p_attribute_id
595: ,p_action_type_id
596: ,null
597: ,null