DBA Data[Home] [Help]

APPS.AME_STV_BUS dependencies on AME_STV_SHD

Line 195: ,p_rec in ame_stv_shd.g_rec_type

191: -- {End Of Comments}
192: -- ----------------------------------------------------------------------------
193: Procedure chk_non_updateable_args
194: (p_effective_date in date
195: ,p_rec in ame_stv_shd.g_rec_type
196: ) IS
197: --
198: l_proc varchar2(72) := g_package || 'chk_non_updateable_args';
199: --

Line 205: IF NOT ame_stv_shd.api_updating

201: --
202: -- Only proceed with the validation if a row exists for the current
203: -- record in the HR Schema.
204: --
205: IF NOT ame_stv_shd.api_updating
206: (p_condition_id => p_rec.condition_id
207: ,p_string_value => p_rec.string_value
208: ,p_effective_date => p_effective_date
209: ,p_object_version_number => p_rec.object_version_number

Line 223: nvl(ame_stv_shd.g_old_rec.condition_id,hr_api.g_number) then

219: --
220: -- CONDITION_ID is non-updateable
221: --
222: if nvl(p_rec.condition_id, hr_api.g_number) <>
223: nvl(ame_stv_shd.g_old_rec.condition_id,hr_api.g_number) then
224: hr_api.argument_changed_error
225: (p_api_name => l_proc
226: ,p_argument => 'CONDITION_ID'
227: ,p_base_table => ame_stv_shd.g_tab_nam

Line 227: ,p_base_table => ame_stv_shd.g_tab_nam

223: nvl(ame_stv_shd.g_old_rec.condition_id,hr_api.g_number) then
224: hr_api.argument_changed_error
225: (p_api_name => l_proc
226: ,p_argument => 'CONDITION_ID'
227: ,p_base_table => ame_stv_shd.g_tab_nam
228: );
229: end if;
230: --
231: -- STRING_VALUE is non-updateable

Line 234: nvl(ame_stv_shd.g_old_rec.string_value,hr_api.g_varchar2) then

230: --
231: -- STRING_VALUE is non-updateable
232: --
233: if nvl(p_rec.string_value, hr_api.g_varchar2) <>
234: nvl(ame_stv_shd.g_old_rec.string_value,hr_api.g_varchar2) then
235: hr_api.argument_changed_error
236: (p_api_name => l_proc
237: ,p_argument => 'STRING_VALUE'
238: ,p_base_table => ame_stv_shd.g_tab_nam

Line 238: ,p_base_table => ame_stv_shd.g_tab_nam

234: nvl(ame_stv_shd.g_old_rec.string_value,hr_api.g_varchar2) then
235: hr_api.argument_changed_error
236: (p_api_name => l_proc
237: ,p_argument => 'STRING_VALUE'
238: ,p_base_table => ame_stv_shd.g_tab_nam
239: );
240: end if;
241: --
242: End chk_non_updateable_args;

Line 422: (p_rec in ame_stv_shd.g_rec_type

418: -- ----------------------------------------------------------------------------
419: -- |---------------------------< insert_validate >----------------------------|
420: -- ----------------------------------------------------------------------------
421: Procedure insert_validate
422: (p_rec in ame_stv_shd.g_rec_type
423: ,p_effective_date in date
424: ,p_datetrack_mode in varchar2
425: ,p_validation_start_date in date
426: ,p_validation_end_date in date

Line 452: (p_rec in ame_stv_shd.g_rec_type

448: -- ----------------------------------------------------------------------------
449: -- |---------------------------< update_validate >----------------------------|
450: -- ----------------------------------------------------------------------------
451: Procedure update_validate
452: (p_rec in ame_stv_shd.g_rec_type
453: ,p_effective_date in date
454: ,p_datetrack_mode in varchar2
455: ,p_validation_start_date in date
456: ,p_validation_end_date in date

Line 487: (p_rec in ame_stv_shd.g_rec_type

483: -- ----------------------------------------------------------------------------
484: -- |---------------------------< delete_validate >----------------------------|
485: -- ----------------------------------------------------------------------------
486: Procedure delete_validate
487: (p_rec in ame_stv_shd.g_rec_type
488: ,p_effective_date in date
489: ,p_datetrack_mode in varchar2
490: ,p_validation_start_date in date
491: ,p_validation_end_date in date