DBA Data[Home] [Help]

APPS.PER_PSE_BUS dependencies on PER_PSE_SHD

Line 176: (p_rec in per_pse_shd.g_rec_type

172: --
173: -- {End Of Comments}
174: -- ----------------------------------------------------------------------------
175: Procedure chk_non_updateable_args
176: (p_rec in per_pse_shd.g_rec_type
177: ) IS
178: --
179: l_proc varchar2(72) := g_package || 'chk_non_updateable_args';
180: l_error EXCEPTION;

Line 188: IF NOT per_pse_shd.api_updating

184: --
185: -- Only proceed with the validation if a row exists for the current
186: -- record in the HR Schema.
187: --
188: IF NOT per_pse_shd.api_updating
189: (p_pos_structure_element_id => p_rec.pos_structure_element_id
190: ,p_object_version_number => p_rec.object_version_number
191: ) THEN
192: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');

Line 202: nvl(per_pse_shd.g_old_rec.business_group_id

198: -- EDIT_HERE: Add checks to ensure non-updateable args have
199: -- not been updated.
200: --
201: if nvl(p_rec.business_group_id, hr_api.g_number) <>
202: nvl(per_pse_shd.g_old_rec.business_group_id
203: ,hr_api.g_number
204: ) then
205: l_argument := 'business_group_id';
206: raise l_error;

Line 210: nvl(per_pse_shd.g_old_rec.pos_structure_version_id

206: raise l_error;
207: end if;
208: --
209: if nvl(p_rec.pos_structure_version_id, hr_api.g_number) <>
210: nvl(per_pse_shd.g_old_rec.pos_structure_version_id
211: ,hr_api.g_number
212: ) then
213: l_argument := 'pos_structure_version_id';
214: raise l_error;

Line 227: nvl(per_pse_shd.g_old_rec.parent_position_id

223: to which POS_STRUCTURE_VERSION_ID and SUBORDINATE_POSITION_ID is the unique
224: combination in table PER_POS_STRUCTURE_ELEMENTS.
225:
226: if nvl(p_rec.parent_position_id, hr_api.g_number) <>
227: nvl(per_pse_shd.g_old_rec.parent_position_id
228: ,hr_api.g_number
229: ) then
230: l_argument := 'parent_position_id';
231: raise l_error;

Line 237: nvl(per_pse_shd.g_old_rec.subordinate_position_id

233:
234: bug no 3888749 ends here */
235: --
236: if nvl(p_rec.subordinate_position_id, hr_api.g_number) <>
237: nvl(per_pse_shd.g_old_rec.subordinate_position_id
238: ,hr_api.g_number
239: ) then
240: l_argument := 'subordinate_position_id';
241: raise l_error;

Line 536: (p_rec in per_pse_shd.g_rec_type

532: -- ----------------------------------------------------------------------------
533: -- |---------------------------< insert_validate >----------------------------|
534: -- ----------------------------------------------------------------------------
535: Procedure insert_validate
536: (p_rec in per_pse_shd.g_rec_type
537: ,p_effective_date in date
538: ) is
539: --
540: l_proc varchar2(72) := g_package||'insert_validate';

Line 575: (p_rec in per_pse_shd.g_rec_type

571: -- ----------------------------------------------------------------------------
572: -- |---------------------------< update_validate >----------------------------|
573: -- ----------------------------------------------------------------------------
574: Procedure update_validate
575: (p_rec in per_pse_shd.g_rec_type
576: ,p_effective_date in date
577: ) is
578: --
579: l_proc varchar2(72) := g_package||'update_validate';

Line 600: (p_rec in per_pse_shd.g_rec_type

596: -- ----------------------------------------------------------------------------
597: -- |---------------------------< delete_validate >----------------------------|
598: -- ----------------------------------------------------------------------------
599: Procedure delete_validate
600: (p_rec in per_pse_shd.g_rec_type
601: ,p_hr_installed in VARCHAR2
602: ,p_chk_children in VARCHAR2
603: ) is
604: --