DBA Data[Home] [Help]

APPS.BEN_PLAN_IN_PROGRAM_API dependencies on HR_UTILITY

Line 169: hr_utility.set_location('Entering:'|| l_proc, 10);

165:
166: --
167: begin
168: --
169: hr_utility.set_location('Entering:'|| l_proc, 10);
170: --
171: -- Issue a savepoint if operating in validation only mode
172: --
173: savepoint create_Plan_in_Program;

Line 175: hr_utility.set_location(l_proc, 20);

171: -- Issue a savepoint if operating in validation only mode
172: --
173: savepoint create_Plan_in_Program;
174: --
175: hr_utility.set_location(l_proc, 20);
176: --
177: -- Process Logic
178: --
179: begin

Line 516: hr_utility.set_location(l_proc, 60);

512: p_effective_date => p_effective_date);
513: --
514: end loop;
515: -- bug 1285336
516: hr_utility.set_location(l_proc, 60);
517: FOR l_otp IN c_otp LOOP
518: --
519: hr_utility.set_location('Before entering into create_opt_pltyp_in_pgm ', 65);
520: hr_utility.set_location('l_otp.pgm_id '||l_otp.pgm_id , 65.1);

Line 519: hr_utility.set_location('Before entering into create_opt_pltyp_in_pgm ', 65);

515: -- bug 1285336
516: hr_utility.set_location(l_proc, 60);
517: FOR l_otp IN c_otp LOOP
518: --
519: hr_utility.set_location('Before entering into create_opt_pltyp_in_pgm ', 65);
520: hr_utility.set_location('l_otp.pgm_id '||l_otp.pgm_id , 65.1);
521: hr_utility.set_location('l_otp.ptip_id'||l_otp.ptip_id,65.2);
522: hr_utility.set_location('l_otp.pl_typ_id'||l_otp.pl_typ_id,65.3);
523: --

Line 520: hr_utility.set_location('l_otp.pgm_id '||l_otp.pgm_id , 65.1);

516: hr_utility.set_location(l_proc, 60);
517: FOR l_otp IN c_otp LOOP
518: --
519: hr_utility.set_location('Before entering into create_opt_pltyp_in_pgm ', 65);
520: hr_utility.set_location('l_otp.pgm_id '||l_otp.pgm_id , 65.1);
521: hr_utility.set_location('l_otp.ptip_id'||l_otp.ptip_id,65.2);
522: hr_utility.set_location('l_otp.pl_typ_id'||l_otp.pl_typ_id,65.3);
523: --
524: ben_opt_pltyp_in_pgm_api.create_opt_pltyp_in_pgm

Line 521: hr_utility.set_location('l_otp.ptip_id'||l_otp.ptip_id,65.2);

517: FOR l_otp IN c_otp LOOP
518: --
519: hr_utility.set_location('Before entering into create_opt_pltyp_in_pgm ', 65);
520: hr_utility.set_location('l_otp.pgm_id '||l_otp.pgm_id , 65.1);
521: hr_utility.set_location('l_otp.ptip_id'||l_otp.ptip_id,65.2);
522: hr_utility.set_location('l_otp.pl_typ_id'||l_otp.pl_typ_id,65.3);
523: --
524: ben_opt_pltyp_in_pgm_api.create_opt_pltyp_in_pgm
525: (p_validate => false

Line 522: hr_utility.set_location('l_otp.pl_typ_id'||l_otp.pl_typ_id,65.3);

518: --
519: hr_utility.set_location('Before entering into create_opt_pltyp_in_pgm ', 65);
520: hr_utility.set_location('l_otp.pgm_id '||l_otp.pgm_id , 65.1);
521: hr_utility.set_location('l_otp.ptip_id'||l_otp.ptip_id,65.2);
522: hr_utility.set_location('l_otp.pl_typ_id'||l_otp.pl_typ_id,65.3);
523: --
524: ben_opt_pltyp_in_pgm_api.create_opt_pltyp_in_pgm
525: (p_validate => false
526: ,p_optip_id =>l_optip_id

Line 538: hr_utility.set_location('Before entering into create_opt_pltyp_in_pgm ', 66);

534: -- ,p_cmbn_ptip_opt_id =>p_cmbn_ptip_opt_id
535: ,p_object_version_number =>l_otp_object_version_number
536: ,p_effective_date =>p_effective_date
537: );
538: hr_utility.set_location('Before entering into create_opt_pltyp_in_pgm ', 66);
539: END LOOP ;
540:
541: --
542: -- When in validation only mode raise the Validate_Enabled exception

Line 556: hr_utility.set_location(' Leaving:'||l_proc, 70);

552: p_effective_start_date := l_effective_start_date;
553: p_effective_end_date := l_effective_end_date;
554: p_object_version_number := l_object_version_number;
555: --
556: hr_utility.set_location(' Leaving:'||l_proc, 70);
557: --
558: exception
559: --
560: when hr_api.validate_enabled then

Line 575: hr_utility.set_location(' Leaving:'||l_proc, 80);

571: p_plip_id := null;
572: p_effective_start_date := null;
573: p_effective_end_date := null;
574: p_object_version_number := null;
575: hr_utility.set_location(' Leaving:'||l_proc, 80);
576: --
577: when others then
578: --
579: -- A validation or unexpected error has occured

Line 698: hr_utility.set_location('Entering:'|| l_proc, 10);

694: l_effective_end_date ben_plip_f.effective_end_date%TYPE;
695: --
696: begin
697: --
698: hr_utility.set_location('Entering:'|| l_proc, 10);
699: --
700: -- Issue a savepoint if operating in validation only mode
701: --
702: savepoint update_Plan_in_Program;

Line 704: hr_utility.set_location(l_proc, 20);

700: -- Issue a savepoint if operating in validation only mode
701: --
702: savepoint update_Plan_in_Program;
703: --
704: hr_utility.set_location(l_proc, 20);
705: --
706: -- Process Logic
707: --
708: l_object_version_number := p_object_version_number;

Line 1036: hr_utility.set_location(l_proc, 60);

1032: -- End of API User Hook for the after hook of update_Plan_in_Program
1033: --
1034: end;
1035: --
1036: hr_utility.set_location(l_proc, 60);
1037: --
1038: -- When in validation only mode raise the Validate_Enabled exception
1039: --
1040: if p_validate then

Line 1050: hr_utility.set_location(' Leaving:'||l_proc, 70);

1046: p_object_version_number := l_object_version_number;
1047: p_effective_start_date := l_effective_start_date;
1048: p_effective_end_date := l_effective_end_date;
1049: --
1050: hr_utility.set_location(' Leaving:'||l_proc, 70);
1051: --
1052: exception
1053: --
1054: when hr_api.validate_enabled then

Line 1065: hr_utility.set_location(' Leaving:'||l_proc, 80);

1061: -- Only set output warning arguments
1062: -- (Any key or derived arguments must be set to null
1063: -- when validation only mode is being used.)
1064: --
1065: hr_utility.set_location(' Leaving:'||l_proc, 80);
1066: --
1067: when others then
1068: --
1069: -- A validation or unexpected error has occured

Line 1111: hr_utility.set_location('Entering:'|| l_proc, 10);

1107:
1108: --
1109: begin
1110: --
1111: hr_utility.set_location('Entering:'|| l_proc, 10);
1112: --
1113: -- Issue a savepoint if operating in validation only mode
1114: --
1115: savepoint delete_Plan_in_Program;

Line 1117: hr_utility.set_location(l_proc, 20);

1113: -- Issue a savepoint if operating in validation only mode
1114: --
1115: savepoint delete_Plan_in_Program;
1116: --
1117: hr_utility.set_location(l_proc, 20);
1118: --
1119: -- Process Logic
1120: --
1121: l_object_version_number := p_object_version_number;

Line 1180: hr_utility.set_location(l_proc, 60);

1176: -- End of API User Hook for the after hook of delete_Plan_in_Program
1177: --
1178: end;
1179: --
1180: hr_utility.set_location(l_proc, 60);
1181: --
1182: -- When in validation only mode raise the Validate_Enabled exception
1183: --
1184: if p_validate then

Line 1188: hr_utility.set_location(' Leaving:'||l_proc, 70);

1184: if p_validate then
1185: raise hr_api.validate_enabled;
1186: end if;
1187: --
1188: hr_utility.set_location(' Leaving:'||l_proc, 70);
1189: --
1190: exception
1191: --
1192: when hr_api.validate_enabled then

Line 1238: hr_utility.set_location('Entering:'|| l_proc, 10);

1234: l_validation_end_date date;
1235: --
1236: begin
1237: --
1238: hr_utility.set_location('Entering:'|| l_proc, 10);
1239: --
1240: BEN_CPP_shd.lck
1241: (
1242: p_plip_id => p_plip_id

Line 1250: hr_utility.set_location(' Leaving:'||l_proc, 70);

1246: ,p_effective_date => p_effective_date
1247: ,p_datetrack_mode => p_datetrack_mode
1248: );
1249: --
1250: hr_utility.set_location(' Leaving:'||l_proc, 70);
1251: --
1252: end lck;
1253: --
1254: end ben_Plan_in_Program_api;