DBA Data[Home] [Help]

APPS.BEN_PLAN_IN_PROGRAM_API dependencies on HR_UTILITY

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

556: p_effective_start_date := l_effective_start_date;
557: p_effective_end_date := l_effective_end_date;
558: p_object_version_number := l_object_version_number;
559: --
560: hr_utility.set_location(' Leaving:'||l_proc, 70);
561: --
562: exception
563: --
564: when hr_api.validate_enabled then

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

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

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

699: l_effective_end_date ben_plip_f.effective_end_date%TYPE;
700: --
701: begin
702: --
703: hr_utility.set_location('Entering:'|| l_proc, 10);
704: --
705: -- Issue a savepoint if operating in validation only mode
706: --
707: savepoint update_Plan_in_Program;

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

705: -- Issue a savepoint if operating in validation only mode
706: --
707: savepoint update_Plan_in_Program;
708: --
709: hr_utility.set_location(l_proc, 20);
710: --
711: -- Process Logic
712: --
713: l_object_version_number := p_object_version_number;

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

1040: -- End of API User Hook for the after hook of update_Plan_in_Program
1041: --
1042: end;
1043: --
1044: hr_utility.set_location(l_proc, 60);
1045: --
1046: -- When in validation only mode raise the Validate_Enabled exception
1047: --
1048: if p_validate then

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

1054: p_object_version_number := l_object_version_number;
1055: p_effective_start_date := l_effective_start_date;
1056: p_effective_end_date := l_effective_end_date;
1057: --
1058: hr_utility.set_location(' Leaving:'||l_proc, 70);
1059: --
1060: exception
1061: --
1062: when hr_api.validate_enabled then

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

1069: -- Only set output warning arguments
1070: -- (Any key or derived arguments must be set to null
1071: -- when validation only mode is being used.)
1072: --
1073: hr_utility.set_location(' Leaving:'||l_proc, 80);
1074: --
1075: when others then
1076: --
1077: -- A validation or unexpected error has occured

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

1115:
1116: --
1117: begin
1118: --
1119: hr_utility.set_location('Entering:'|| l_proc, 10);
1120: --
1121: -- Issue a savepoint if operating in validation only mode
1122: --
1123: savepoint delete_Plan_in_Program;

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

1121: -- Issue a savepoint if operating in validation only mode
1122: --
1123: savepoint delete_Plan_in_Program;
1124: --
1125: hr_utility.set_location(l_proc, 20);
1126: --
1127: -- Process Logic
1128: --
1129: l_object_version_number := p_object_version_number;

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

1184: -- End of API User Hook for the after hook of delete_Plan_in_Program
1185: --
1186: end;
1187: --
1188: hr_utility.set_location(l_proc, 60);
1189: --
1190: -- When in validation only mode raise the Validate_Enabled exception
1191: --
1192: if p_validate then

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

1192: if p_validate then
1193: raise hr_api.validate_enabled;
1194: end if;
1195: --
1196: hr_utility.set_location(' Leaving:'||l_proc, 70);
1197: --
1198: exception
1199: --
1200: when hr_api.validate_enabled then

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

1242: l_validation_end_date date;
1243: --
1244: begin
1245: --
1246: hr_utility.set_location('Entering:'|| l_proc, 10);
1247: --
1248: BEN_CPP_shd.lck
1249: (
1250: p_plip_id => p_plip_id

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

1254: ,p_effective_date => p_effective_date
1255: ,p_datetrack_mode => p_datetrack_mode
1256: );
1257: --
1258: hr_utility.set_location(' Leaving:'||l_proc, 70);
1259: --
1260: end lck;
1261: --
1262: end ben_Plan_in_Program_api;