DBA Data[Home] [Help]

APPS.PQH_RLS_UPD dependencies on HR_API

Line 118: When hr_api.check_integrity_violated Then

114: --
115: hr_utility.set_location(' Leaving:'||l_proc,10);
116: --
117: Exception
118: When hr_api.check_integrity_violated Then
119: -- A check constraint has been violated
120: --
121: pqh_rls_shd.constraint_error
122: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 122: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

118: When hr_api.check_integrity_violated Then
119: -- A check constraint has been violated
120: --
121: pqh_rls_shd.constraint_error
122: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
123: When hr_api.parent_integrity_violated Then
124: -- Parent integrity has been violated
125: --
126: pqh_rls_shd.constraint_error

Line 123: When hr_api.parent_integrity_violated Then

119: -- A check constraint has been violated
120: --
121: pqh_rls_shd.constraint_error
122: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
123: When hr_api.parent_integrity_violated Then
124: -- Parent integrity has been violated
125: --
126: pqh_rls_shd.constraint_error
127: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 127: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

123: When hr_api.parent_integrity_violated Then
124: -- Parent integrity has been violated
125: --
126: pqh_rls_shd.constraint_error
127: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
128: When hr_api.unique_integrity_violated Then
129: -- Unique integrity has been violated
130: --
131: pqh_rls_shd.constraint_error

Line 128: When hr_api.unique_integrity_violated Then

124: -- Parent integrity has been violated
125: --
126: pqh_rls_shd.constraint_error
127: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
128: When hr_api.unique_integrity_violated Then
129: -- Unique integrity has been violated
130: --
131: pqh_rls_shd.constraint_error
132: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

Line 132: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));

128: When hr_api.unique_integrity_violated Then
129: -- Unique integrity has been violated
130: --
131: pqh_rls_shd.constraint_error
132: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
133: When Others Then
134: --
135: Raise;
136: End update_dml;

Line 470: If (p_rec.role_name = hr_api.g_varchar2) then

466: -- plsql record structure
467: -- to see if a system default is being used. If a system default
468: -- is being used then we must set to the 'current' argument value.
469: --
470: If (p_rec.role_name = hr_api.g_varchar2) then
471: p_rec.role_name :=
472: pqh_rls_shd.g_old_rec.role_name;
473: End If;
474: If (p_rec.role_type_cd = hr_api.g_varchar2) then

Line 474: If (p_rec.role_type_cd = hr_api.g_varchar2) then

470: If (p_rec.role_name = hr_api.g_varchar2) then
471: p_rec.role_name :=
472: pqh_rls_shd.g_old_rec.role_name;
473: End If;
474: If (p_rec.role_type_cd = hr_api.g_varchar2) then
475: p_rec.role_type_cd :=
476: pqh_rls_shd.g_old_rec.role_type_cd;
477: End If;
478: If (p_rec.enable_flag = hr_api.g_varchar2) then

Line 478: If (p_rec.enable_flag = hr_api.g_varchar2) then

474: If (p_rec.role_type_cd = hr_api.g_varchar2) then
475: p_rec.role_type_cd :=
476: pqh_rls_shd.g_old_rec.role_type_cd;
477: End If;
478: If (p_rec.enable_flag = hr_api.g_varchar2) then
479: p_rec.enable_flag :=
480: pqh_rls_shd.g_old_rec.enable_flag;
481: End If;
482: If (p_rec.business_group_id = hr_api.g_number) then

Line 482: If (p_rec.business_group_id = hr_api.g_number) then

478: If (p_rec.enable_flag = hr_api.g_varchar2) then
479: p_rec.enable_flag :=
480: pqh_rls_shd.g_old_rec.enable_flag;
481: End If;
482: If (p_rec.business_group_id = hr_api.g_number) then
483: p_rec.business_group_id :=
484: pqh_rls_shd.g_old_rec.business_group_id;
485: End If;
486: --

Line 490: If (p_rec.information_category = hr_api.g_varchar2) then

486: --
487: -- mvankada
488: -- For Developer DF columns
489:
490: If (p_rec.information_category = hr_api.g_varchar2) then
491: p_rec.information_category :=
492: pqh_rls_shd.g_old_rec.information_category;
493: End If;
494: If (p_rec.information1 = hr_api.g_varchar2) then

Line 494: If (p_rec.information1 = hr_api.g_varchar2) then

490: If (p_rec.information_category = hr_api.g_varchar2) then
491: p_rec.information_category :=
492: pqh_rls_shd.g_old_rec.information_category;
493: End If;
494: If (p_rec.information1 = hr_api.g_varchar2) then
495: p_rec.information1 :=
496: pqh_rls_shd.g_old_rec.information1;
497: End If;
498: If (p_rec.information2 = hr_api.g_varchar2) then

Line 498: If (p_rec.information2 = hr_api.g_varchar2) then

494: If (p_rec.information1 = hr_api.g_varchar2) then
495: p_rec.information1 :=
496: pqh_rls_shd.g_old_rec.information1;
497: End If;
498: If (p_rec.information2 = hr_api.g_varchar2) then
499: p_rec.information2 :=
500: pqh_rls_shd.g_old_rec.information2;
501: End If;
502: If (p_rec.information3 = hr_api.g_varchar2) then

Line 502: If (p_rec.information3 = hr_api.g_varchar2) then

498: If (p_rec.information2 = hr_api.g_varchar2) then
499: p_rec.information2 :=
500: pqh_rls_shd.g_old_rec.information2;
501: End If;
502: If (p_rec.information3 = hr_api.g_varchar2) then
503: p_rec.information3 :=
504: pqh_rls_shd.g_old_rec.information3;
505: End If;
506: If (p_rec.information4 = hr_api.g_varchar2) then

Line 506: If (p_rec.information4 = hr_api.g_varchar2) then

502: If (p_rec.information3 = hr_api.g_varchar2) then
503: p_rec.information3 :=
504: pqh_rls_shd.g_old_rec.information3;
505: End If;
506: If (p_rec.information4 = hr_api.g_varchar2) then
507: p_rec.information4 :=
508: pqh_rls_shd.g_old_rec.information4;
509: End If;
510: If (p_rec.information5 = hr_api.g_varchar2) then

Line 510: If (p_rec.information5 = hr_api.g_varchar2) then

506: If (p_rec.information4 = hr_api.g_varchar2) then
507: p_rec.information4 :=
508: pqh_rls_shd.g_old_rec.information4;
509: End If;
510: If (p_rec.information5 = hr_api.g_varchar2) then
511: p_rec.information5 :=
512: pqh_rls_shd.g_old_rec.information5;
513: End If;
514: If (p_rec.information6 = hr_api.g_varchar2) then

Line 514: If (p_rec.information6 = hr_api.g_varchar2) then

510: If (p_rec.information5 = hr_api.g_varchar2) then
511: p_rec.information5 :=
512: pqh_rls_shd.g_old_rec.information5;
513: End If;
514: If (p_rec.information6 = hr_api.g_varchar2) then
515: p_rec.information6 :=
516: pqh_rls_shd.g_old_rec.information6;
517: End If;
518: If (p_rec.information7 = hr_api.g_varchar2) then

Line 518: If (p_rec.information7 = hr_api.g_varchar2) then

514: If (p_rec.information6 = hr_api.g_varchar2) then
515: p_rec.information6 :=
516: pqh_rls_shd.g_old_rec.information6;
517: End If;
518: If (p_rec.information7 = hr_api.g_varchar2) then
519: p_rec.information7 :=
520: pqh_rls_shd.g_old_rec.information7;
521: End If;
522: If (p_rec.information8 = hr_api.g_varchar2) then

Line 522: If (p_rec.information8 = hr_api.g_varchar2) then

518: If (p_rec.information7 = hr_api.g_varchar2) then
519: p_rec.information7 :=
520: pqh_rls_shd.g_old_rec.information7;
521: End If;
522: If (p_rec.information8 = hr_api.g_varchar2) then
523: p_rec.information8 :=
524: pqh_rls_shd.g_old_rec.information8;
525: End If;
526: If (p_rec.information9 = hr_api.g_varchar2) then

Line 526: If (p_rec.information9 = hr_api.g_varchar2) then

522: If (p_rec.information8 = hr_api.g_varchar2) then
523: p_rec.information8 :=
524: pqh_rls_shd.g_old_rec.information8;
525: End If;
526: If (p_rec.information9 = hr_api.g_varchar2) then
527: p_rec.information9 :=
528: pqh_rls_shd.g_old_rec.information9;
529: End If;
530: If (p_rec.information10 = hr_api.g_varchar2) then

Line 530: If (p_rec.information10 = hr_api.g_varchar2) then

526: If (p_rec.information9 = hr_api.g_varchar2) then
527: p_rec.information9 :=
528: pqh_rls_shd.g_old_rec.information9;
529: End If;
530: If (p_rec.information10 = hr_api.g_varchar2) then
531: p_rec.information10 :=
532: pqh_rls_shd.g_old_rec.information10;
533: End If;
534: If (p_rec.information11 = hr_api.g_varchar2) then

Line 534: If (p_rec.information11 = hr_api.g_varchar2) then

530: If (p_rec.information10 = hr_api.g_varchar2) then
531: p_rec.information10 :=
532: pqh_rls_shd.g_old_rec.information10;
533: End If;
534: If (p_rec.information11 = hr_api.g_varchar2) then
535: p_rec.information11 :=
536: pqh_rls_shd.g_old_rec.information11;
537: End If;
538: If (p_rec.information12 = hr_api.g_varchar2) then

Line 538: If (p_rec.information12 = hr_api.g_varchar2) then

534: If (p_rec.information11 = hr_api.g_varchar2) then
535: p_rec.information11 :=
536: pqh_rls_shd.g_old_rec.information11;
537: End If;
538: If (p_rec.information12 = hr_api.g_varchar2) then
539: p_rec.information12 :=
540: pqh_rls_shd.g_old_rec.information12;
541: End If;
542: If (p_rec.information13 = hr_api.g_varchar2) then

Line 542: If (p_rec.information13 = hr_api.g_varchar2) then

538: If (p_rec.information12 = hr_api.g_varchar2) then
539: p_rec.information12 :=
540: pqh_rls_shd.g_old_rec.information12;
541: End If;
542: If (p_rec.information13 = hr_api.g_varchar2) then
543: p_rec.information13 :=
544: pqh_rls_shd.g_old_rec.information13;
545: End If;
546: If (p_rec.information14 = hr_api.g_varchar2) then

Line 546: If (p_rec.information14 = hr_api.g_varchar2) then

542: If (p_rec.information13 = hr_api.g_varchar2) then
543: p_rec.information13 :=
544: pqh_rls_shd.g_old_rec.information13;
545: End If;
546: If (p_rec.information14 = hr_api.g_varchar2) then
547: p_rec.information14 :=
548: pqh_rls_shd.g_old_rec.information14;
549: End If;
550: If (p_rec.information15 = hr_api.g_varchar2) then

Line 550: If (p_rec.information15 = hr_api.g_varchar2) then

546: If (p_rec.information14 = hr_api.g_varchar2) then
547: p_rec.information14 :=
548: pqh_rls_shd.g_old_rec.information14;
549: End If;
550: If (p_rec.information15 = hr_api.g_varchar2) then
551: p_rec.information15 :=
552: pqh_rls_shd.g_old_rec.information15;
553: End If;
554: If (p_rec.information16 = hr_api.g_varchar2) then

Line 554: If (p_rec.information16 = hr_api.g_varchar2) then

550: If (p_rec.information15 = hr_api.g_varchar2) then
551: p_rec.information15 :=
552: pqh_rls_shd.g_old_rec.information15;
553: End If;
554: If (p_rec.information16 = hr_api.g_varchar2) then
555: p_rec.information16 :=
556: pqh_rls_shd.g_old_rec.information16;
557: End If;
558: If (p_rec.information17 = hr_api.g_varchar2) then

Line 558: If (p_rec.information17 = hr_api.g_varchar2) then

554: If (p_rec.information16 = hr_api.g_varchar2) then
555: p_rec.information16 :=
556: pqh_rls_shd.g_old_rec.information16;
557: End If;
558: If (p_rec.information17 = hr_api.g_varchar2) then
559: p_rec.information17 :=
560: pqh_rls_shd.g_old_rec.information17;
561: End If;
562: If (p_rec.information18 = hr_api.g_varchar2) then

Line 562: If (p_rec.information18 = hr_api.g_varchar2) then

558: If (p_rec.information17 = hr_api.g_varchar2) then
559: p_rec.information17 :=
560: pqh_rls_shd.g_old_rec.information17;
561: End If;
562: If (p_rec.information18 = hr_api.g_varchar2) then
563: p_rec.information18 :=
564: pqh_rls_shd.g_old_rec.information18;
565: End If;
566: If (p_rec.information19 = hr_api.g_varchar2) then

Line 566: If (p_rec.information19 = hr_api.g_varchar2) then

562: If (p_rec.information18 = hr_api.g_varchar2) then
563: p_rec.information18 :=
564: pqh_rls_shd.g_old_rec.information18;
565: End If;
566: If (p_rec.information19 = hr_api.g_varchar2) then
567: p_rec.information19 :=
568: pqh_rls_shd.g_old_rec.information19;
569: End If;
570: If (p_rec.information20 = hr_api.g_varchar2) then

Line 570: If (p_rec.information20 = hr_api.g_varchar2) then

566: If (p_rec.information19 = hr_api.g_varchar2) then
567: p_rec.information19 :=
568: pqh_rls_shd.g_old_rec.information19;
569: End If;
570: If (p_rec.information20 = hr_api.g_varchar2) then
571: p_rec.information20 :=
572: pqh_rls_shd.g_old_rec.information20;
573: End If;
574: If (p_rec.information21 = hr_api.g_varchar2) then

Line 574: If (p_rec.information21 = hr_api.g_varchar2) then

570: If (p_rec.information20 = hr_api.g_varchar2) then
571: p_rec.information20 :=
572: pqh_rls_shd.g_old_rec.information20;
573: End If;
574: If (p_rec.information21 = hr_api.g_varchar2) then
575: p_rec.information21 :=
576: pqh_rls_shd.g_old_rec.information21;
577: End If;
578: If (p_rec.information22 = hr_api.g_varchar2) then

Line 578: If (p_rec.information22 = hr_api.g_varchar2) then

574: If (p_rec.information21 = hr_api.g_varchar2) then
575: p_rec.information21 :=
576: pqh_rls_shd.g_old_rec.information21;
577: End If;
578: If (p_rec.information22 = hr_api.g_varchar2) then
579: p_rec.information22 :=
580: pqh_rls_shd.g_old_rec.information22;
581: End If;
582: If (p_rec.information23 = hr_api.g_varchar2) then

Line 582: If (p_rec.information23 = hr_api.g_varchar2) then

578: If (p_rec.information22 = hr_api.g_varchar2) then
579: p_rec.information22 :=
580: pqh_rls_shd.g_old_rec.information22;
581: End If;
582: If (p_rec.information23 = hr_api.g_varchar2) then
583: p_rec.information23 :=
584: pqh_rls_shd.g_old_rec.information23;
585: End If;
586: If (p_rec.information24 = hr_api.g_varchar2) then

Line 586: If (p_rec.information24 = hr_api.g_varchar2) then

582: If (p_rec.information23 = hr_api.g_varchar2) then
583: p_rec.information23 :=
584: pqh_rls_shd.g_old_rec.information23;
585: End If;
586: If (p_rec.information24 = hr_api.g_varchar2) then
587: p_rec.information24 :=
588: pqh_rls_shd.g_old_rec.information24;
589: End If;
590: If (p_rec.information25 = hr_api.g_varchar2) then

Line 590: If (p_rec.information25 = hr_api.g_varchar2) then

586: If (p_rec.information24 = hr_api.g_varchar2) then
587: p_rec.information24 :=
588: pqh_rls_shd.g_old_rec.information24;
589: End If;
590: If (p_rec.information25 = hr_api.g_varchar2) then
591: p_rec.information25 :=
592: pqh_rls_shd.g_old_rec.information25;
593: End If;
594: If (p_rec.information26 = hr_api.g_varchar2) then

Line 594: If (p_rec.information26 = hr_api.g_varchar2) then

590: If (p_rec.information25 = hr_api.g_varchar2) then
591: p_rec.information25 :=
592: pqh_rls_shd.g_old_rec.information25;
593: End If;
594: If (p_rec.information26 = hr_api.g_varchar2) then
595: p_rec.information26 :=
596: pqh_rls_shd.g_old_rec.information26;
597: End If;
598: If (p_rec.information27 = hr_api.g_varchar2) then

Line 598: If (p_rec.information27 = hr_api.g_varchar2) then

594: If (p_rec.information26 = hr_api.g_varchar2) then
595: p_rec.information26 :=
596: pqh_rls_shd.g_old_rec.information26;
597: End If;
598: If (p_rec.information27 = hr_api.g_varchar2) then
599: p_rec.information27 :=
600: pqh_rls_shd.g_old_rec.information27;
601: End If;
602: If (p_rec.information28 = hr_api.g_varchar2) then

Line 602: If (p_rec.information28 = hr_api.g_varchar2) then

598: If (p_rec.information27 = hr_api.g_varchar2) then
599: p_rec.information27 :=
600: pqh_rls_shd.g_old_rec.information27;
601: End If;
602: If (p_rec.information28 = hr_api.g_varchar2) then
603: p_rec.information28 :=
604: pqh_rls_shd.g_old_rec.information28;
605: End If;
606: If (p_rec.information29 = hr_api.g_varchar2) then

Line 606: If (p_rec.information29 = hr_api.g_varchar2) then

602: If (p_rec.information28 = hr_api.g_varchar2) then
603: p_rec.information28 :=
604: pqh_rls_shd.g_old_rec.information28;
605: End If;
606: If (p_rec.information29 = hr_api.g_varchar2) then
607: p_rec.information29 :=
608: pqh_rls_shd.g_old_rec.information29;
609: End If;
610: If (p_rec.information30 = hr_api.g_varchar2) then

Line 610: If (p_rec.information30 = hr_api.g_varchar2) then

606: If (p_rec.information29 = hr_api.g_varchar2) then
607: p_rec.information29 :=
608: pqh_rls_shd.g_old_rec.information29;
609: End If;
610: If (p_rec.information30 = hr_api.g_varchar2) then
611: p_rec.information30 :=
612: pqh_rls_shd.g_old_rec.information30;
613: End If;
614: