DBA Data[Home] [Help]

APPS.PER_OSE_BUS dependencies on PER_OSE_SHD

Line 176: (p_rec in per_ose_shd.g_rec_type

172: --
173: -- {End Of Comments}
174: -- ----------------------------------------------------------------------------
175: Procedure chk_non_updateable_args
176: (p_rec in per_ose_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_ose_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_ose_shd.api_updating
189: (p_org_structure_element_id => p_rec.org_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_ose_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_ose_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_ose_shd.g_old_rec.org_structure_version_id

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

Line 227: nvl(per_ose_shd.g_old_rec.organization_id_parent

223: to which ORG_STRUCTURE_VERSION_ID and ORGANIZATION_ID_CHILD is the unique
224: combination in table PER_ORG_STRUCTURE_ELEMENTS.
225:
226: if nvl(p_rec.organization_id_parent, hr_api.g_number) <>
227: nvl(per_ose_shd.g_old_rec.organization_id_parent
228: ,hr_api.g_number
229: ) then
230: l_argument := 'organization_id_parent';
231: raise l_error;

Line 237: nvl(per_ose_shd.g_old_rec.organization_id_child

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

Line 666: (p_rec in per_ose_shd.g_rec_type

662: -- ----------------------------------------------------------------------------
663: -- |---------------------------< insert_validate >----------------------------|
664: -- ----------------------------------------------------------------------------
665: Procedure insert_validate
666: (p_rec in per_ose_shd.g_rec_type
667: ,p_effective_date in date
668: ) is
669: --
670: l_proc varchar2(72) := g_package||'insert_validate';

Line 730: (p_rec in per_ose_shd.g_rec_type

726: -- ----------------------------------------------------------------------------
727: -- |---------------------------< update_validate >----------------------------|
728: -- ----------------------------------------------------------------------------
729: Procedure update_validate
730: (p_rec in per_ose_shd.g_rec_type
731: ,p_effective_date in date
732: ) is
733: --
734: l_proc varchar2(72) := g_package||'update_validate';

Line 792: (p_rec in per_ose_shd.g_rec_type

788: -- ----------------------------------------------------------------------------
789: -- |---------------------------< delete_validate >----------------------------|
790: -- ----------------------------------------------------------------------------
791: Procedure delete_validate
792: (p_rec in per_ose_shd.g_rec_type
793: ,p_hr_installed in VARCHAR2
794: ,p_pa_installed in VARCHAR2
795: ,p_chk_children_exist in VARCHAR2
796: ) is