DBA Data[Home] [Help]

APPS.AME_ACT_BUS dependencies on AME_ACT_SHD

Line 38: ,p_rec in ame_act_shd.g_rec_type

34: -- {End Of Comments}
35: -- ----------------------------------------------------------------------------
36: Procedure chk_non_updateable_args
37: (p_effective_date in date
38: ,p_rec in ame_act_shd.g_rec_type
39: ) IS
40: --
41: createdBy ame_actions.created_by%type;
42: l_proc varchar2(72) := g_package || 'chk_non_updateable_args';

Line 62: IF NOT ame_act_shd.api_updating

58: --
59: -- Only proceed with the validation if a row exists for the current
60: -- record in the HR Schema.
61: --
62: IF NOT ame_act_shd.api_updating
63: (p_action_id => p_rec.action_id
64: ,p_action_type_id => p_rec.action_type_id
65: ,p_effective_date => p_effective_date
66: ,p_object_version_number => p_rec.object_version_number

Line 98: nvl(ame_act_shd.g_old_rec.parameter,

94: /* Action is based on an approval group so it's not updateable. */
95: IF
96: nvl(p_rec.parameter,
97: hr_api.g_number) <>
98: nvl(ame_act_shd.g_old_rec.parameter,
99: hr_api.g_number) THEN
100: l_argument := 'parameter';
101: RAISE l_error;
102: END IF;

Line 109: nvl(ame_act_shd.g_old_rec.description,

105: and ame_utility_pkg.check_seeddb = 'N') THEN
106: IF
107: nvl(p_rec.description,
108: hr_api.g_number) <>
109: nvl(ame_act_shd.g_old_rec.description,
110: hr_api.g_number) then
111: l_argument := 'description';
112: RAISE l_error;
113: end if;

Line 114: IF nvl(p_rec.parameter,hr_api.g_number) <> nvl(ame_act_shd.g_old_rec.parameter,hr_api.g_number) THEN

110: hr_api.g_number) then
111: l_argument := 'description';
112: RAISE l_error;
113: end if;
114: IF nvl(p_rec.parameter,hr_api.g_number) <> nvl(ame_act_shd.g_old_rec.parameter,hr_api.g_number) THEN
115: l_argument := 'parameter';
116: RAISE l_error;
117: END IF;
118:

Line 692: ame_act_shd.child_rows_exist

688: ,p_argument => 'action_id'
689: ,p_argument_value => p_action_id
690: );
691: --
692: ame_act_shd.child_rows_exist
693: (p_action_id => p_action_id
694: ,p_start_date => p_validation_start_date
695: ,p_end_date => p_validation_end_date);
696: --

Line 717: (p_rec in ame_act_shd.g_rec_type

713: -- ----------------------------------------------------------------------------
714: -- |---------------------------< insert_validate >----------------------------|
715: -- ----------------------------------------------------------------------------
716: Procedure insert_validate
717: (p_rec in ame_act_shd.g_rec_type
718: ,p_effective_date in date
719: ,p_datetrack_mode in varchar2
720: ,p_validation_start_date in date
721: ,p_validation_end_date in date

Line 748: (p_rec in ame_act_shd.g_rec_type

744: -- ----------------------------------------------------------------------------
745: -- |---------------------------< update_validate >----------------------------|
746: -- ----------------------------------------------------------------------------
747: Procedure update_validate
748: (p_rec in ame_act_shd.g_rec_type
749: ,p_effective_date in date
750: ,p_datetrack_mode in varchar2
751: ,p_validation_start_date in date
752: ,p_validation_end_date in date

Line 793: (p_rec in ame_act_shd.g_rec_type

789: -- ----------------------------------------------------------------------------
790: -- |---------------------------< delete_validate >----------------------------|
791: -- ----------------------------------------------------------------------------
792: Procedure delete_validate
793: (p_rec in ame_act_shd.g_rec_type
794: ,p_effective_date in date
795: ,p_datetrack_mode in varchar2
796: ,p_validation_start_date in date
797: ,p_validation_end_date in date