DBA Data[Home] [Help]

APPS.BEN_LF_EVT_CLPS_RESTORE dependencies on HR_UTILITY

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

681: l_bckdt_per_in_ler_rec get_bckdt_per_in_ler%ROWTYPE;
682: --
683: begin
684: --
685: hr_utility.set_location('Entering:'|| l_proc, 10);
686: --
687: open get_bckdt_per_in_ler;
688: fetch get_bckdt_per_in_ler into l_bckdt_per_in_ler_rec;
689: --

Line 697: hr_utility.set_location('backout per in ler :'|| p_bckdt_per_in_ler_id, 10);

693: g_pil_id_cs_bckdt := l_bckdt_per_in_ler_rec.bckt_per_in_ler_id;
694: --
695: if get_bckdt_per_in_ler%found then
696: --
697: hr_utility.set_location('backout per in ler :'|| p_bckdt_per_in_ler_id, 10);
698: fnd_message.set_name('BEN','BEN_92246_BCKDT_PIL_FOUND');
699: fnd_message.set_token('LER_NAME',l_bckdt_per_in_ler_rec.name);
700: benutils.write(p_text => fnd_message.get);
701: --

Line 705: hr_utility.set_location('Leaving:'|| l_proc, 10);

701: --
702: end if;
703: close get_bckdt_per_in_ler;
704: --
705: hr_utility.set_location('Leaving:'|| l_proc, 10);
706: --
707: end get_ori_bckdt_pil;
708: --
709: -- ----------------------------------------------------------------------------

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

750: l_enrt_rslt_exists varchar2(1) := 'N';
751: --
752: begin
753: --
754: hr_utility.set_location ('Entering '||l_proc,10);
755: --
756: open c_enrt_rslt_exists;
757: fetch c_enrt_rslt_exists into l_enrt_rslt_exists;
758: close c_enrt_rslt_exists;

Line 760: hr_utility.set_location ('Leaving '||l_proc,10);

756: open c_enrt_rslt_exists;
757: fetch c_enrt_rslt_exists into l_enrt_rslt_exists;
758: close c_enrt_rslt_exists;
759: --
760: hr_utility.set_location ('Leaving '||l_proc,10);
761: --
762: return l_enrt_rslt_exists;
763: --
764: end ele_made_for_bckdt_pil;

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

808: l_found boolean;
809: --
810: begin
811: --
812: hr_utility.set_location ('Entering '||l_proc,10);
813: hr_utility.set_location ('Entering bck pil id '||p_prev_per_in_ler_id,10);
814: hr_utility.set_location ('Entering pil id '||p_new_per_in_ler_id,10);
815: --
816: --

Line 813: hr_utility.set_location ('Entering bck pil id '||p_prev_per_in_ler_id,10);

809: --
810: begin
811: --
812: hr_utility.set_location ('Entering '||l_proc,10);
813: hr_utility.set_location ('Entering bck pil id '||p_prev_per_in_ler_id,10);
814: hr_utility.set_location ('Entering pil id '||p_new_per_in_ler_id,10);
815: --
816: --
817: for int_pen_rec in c_pen_dat(p_new_per_in_ler_id)

Line 814: hr_utility.set_location ('Entering pil id '||p_new_per_in_ler_id,10);

810: begin
811: --
812: hr_utility.set_location ('Entering '||l_proc,10);
813: hr_utility.set_location ('Entering bck pil id '||p_prev_per_in_ler_id,10);
814: hr_utility.set_location ('Entering pil id '||p_new_per_in_ler_id,10);
815: --
816: --
817: for int_pen_rec in c_pen_dat(p_new_per_in_ler_id)
818: loop

Line 830: hr_utility.set_location('Leaving: ' || l_differ

826: --
827: if nvl(l_int_pen_table.last, 0) = 0 then
828: --
829: l_differ := 'N';
830: hr_utility.set_location('Leaving: ' || l_differ
831: ||' 0 '|| l_proc, 10);
832: return l_differ;
833: --
834: end if;

Line 838: hr_utility.set_location(to_char(nvl(l_int_pen_table.last, 0)) ,4987);

834: end if;
835: --
836: -- Now compare the original pen record and new pen record.
837: --
838: hr_utility.set_location(to_char(nvl(l_int_pen_table.last, 0)) ,4987);
839: --
840: --
841: hr_utility.set_location(' Before first Loop ',4987);
842: for l_int_count in l_int_pen_table.first..l_int_pen_table.last loop

Line 841: hr_utility.set_location(' Before first Loop ',4987);

837: --
838: hr_utility.set_location(to_char(nvl(l_int_pen_table.last, 0)) ,4987);
839: --
840: --
841: hr_utility.set_location(' Before first Loop ',4987);
842: for l_int_count in l_int_pen_table.first..l_int_pen_table.last loop
843: --
844: l_found := FALSE;
845: --

Line 846: hr_utility.set_location(' Before Loop ',4987);

842: for l_int_count in l_int_pen_table.first..l_int_pen_table.last loop
843: --
844: l_found := FALSE;
845: --
846: hr_utility.set_location(' Before Loop ',4987);
847: for prev_pen_rec in c_pen_dat(p_prev_per_in_ler_id)
848: loop
849: --
850: hr_utility.set_location(' Before if ',4987);

Line 850: hr_utility.set_location(' Before if ',4987);

846: hr_utility.set_location(' Before Loop ',4987);
847: for prev_pen_rec in c_pen_dat(p_prev_per_in_ler_id)
848: loop
849: --
850: hr_utility.set_location(' Before if ',4987);
851: if nvl(prev_pen_rec.SSPNDD_FLAG, '$') =
852: nvl(l_int_pen_table(l_int_count).SSPNDD_FLAG, '$') and
853: nvl(prev_pen_rec.PGM_ID, -1) =
854: nvl(l_int_pen_table(l_int_count).PGM_ID, -1) and

Line 876: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);

872: end if;
873: --
874: end loop;
875: --
876: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);
877: --
878: return l_differ;
879: --
880: end comp_prev_new_pen;

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

948: l_count number := 0;
949: --
950: begin
951: --
952: hr_utility.set_location ('Entering '||l_proc,10);
953: --
954: p_inter_pil_cnt := 0;
955: open c_bckt_csd_pil;
956: fetch c_bckt_csd_pil into l_bckt_csd_lf_evt_ocrd_dt,l_bckt_csd_per_in_ler_id;

Line 980: hr_utility.set_location ('Leaving '||l_proc,10);

976: end if;
977: --
978: close c_inter_pil_cnt;
979: --
980: hr_utility.set_location ('Leaving '||l_proc,10);
981: --
982: end get_inter_pil_cnt;
983: --
984: -- ----------------------------------------------------------------------------

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

1104: l_differ varchar2(30) := 'N';
1105: --
1106: begin
1107: --
1108: hr_utility.set_location ('Entering '||l_proc,10);
1109: hr_utility.set_location ('modified '||l_proc,10);
1110: --
1111: --First Get the intervening life event count
1112: --

Line 1109: hr_utility.set_location ('modified '||l_proc,10);

1105: --
1106: begin
1107: --
1108: hr_utility.set_location ('Entering '||l_proc,10);
1109: hr_utility.set_location ('modified '||l_proc,10);
1110: --
1111: --First Get the intervening life event count
1112: --
1113:

Line 1118: hr_utility.set_location ('l_int_pil_id '||l_int_pil_id,10);

1114: /* Added for Enhancement Bug :8716679 */
1115: open c_int_pil_id;
1116: fetch c_int_pil_id into l_int_pil_id;
1117: close c_int_pil_id;
1118: hr_utility.set_location ('l_int_pil_id '||l_int_pil_id,10);
1119:
1120: open c_prev_pil1;
1121: fetch c_prev_pil1 into l_prev_per_in_ler_id1;
1122: if(c_prev_pil1%notfound) then

Line 1123: hr_utility.set_location ('cursor notfound ',10);

1119:
1120: open c_prev_pil1;
1121: fetch c_prev_pil1 into l_prev_per_in_ler_id1;
1122: if(c_prev_pil1%notfound) then
1123: hr_utility.set_location ('cursor notfound ',10);
1124: l_prev_per_in_ler_id1 := l_int_pil_id;
1125: close c_prev_pil1;
1126: else
1127: close c_prev_pil1;

Line 1129: hr_utility.set_location ('l_prev_per_in_ler_id1 '||l_prev_per_in_ler_id1,10);

1125: close c_prev_pil1;
1126: else
1127: close c_prev_pil1;
1128: end if;
1129: hr_utility.set_location ('l_prev_per_in_ler_id1 '||l_prev_per_in_ler_id1,10);
1130: /* End of Enhancement Bug :8716679 */
1131:
1132: open c_ele_md_for_inter_pil;
1133: fetch c_ele_md_for_inter_pil into l_enrt_rslt_exists;

Line 1150: hr_utility.set_location ('l_inter_pil_cnt '||l_inter_pil_cnt,199);

1146: p_inter_pil_cnt => l_inter_pil_cnt,
1147: p_inter_pil_le_dt => l_inter_pil_le_dt,
1148: p_effective_date => p_effective_date);
1149: --
1150: hr_utility.set_location ('l_inter_pil_cnt '||l_inter_pil_cnt,199);
1151: hr_utility.set_location ('l_inter_pil_le_dt '||l_inter_pil_le_dt,199);
1152: hr_utility.set_location ('l_inter_per_in_ler_id '||l_inter_per_in_ler_id,199);
1153: hr_utility.set_location ('l_bckt_csd_lf_evt_ocrd_dt '||l_bckt_csd_lf_evt_ocrd_dt,199);
1154: hr_utility.set_location ('l_bckt_csd_per_in_ler_id '||l_bckt_csd_per_in_ler_id,199);

Line 1151: hr_utility.set_location ('l_inter_pil_le_dt '||l_inter_pil_le_dt,199);

1147: p_inter_pil_le_dt => l_inter_pil_le_dt,
1148: p_effective_date => p_effective_date);
1149: --
1150: hr_utility.set_location ('l_inter_pil_cnt '||l_inter_pil_cnt,199);
1151: hr_utility.set_location ('l_inter_pil_le_dt '||l_inter_pil_le_dt,199);
1152: hr_utility.set_location ('l_inter_per_in_ler_id '||l_inter_per_in_ler_id,199);
1153: hr_utility.set_location ('l_bckt_csd_lf_evt_ocrd_dt '||l_bckt_csd_lf_evt_ocrd_dt,199);
1154: hr_utility.set_location ('l_bckt_csd_per_in_ler_id '||l_bckt_csd_per_in_ler_id,199);
1155: --

Line 1152: hr_utility.set_location ('l_inter_per_in_ler_id '||l_inter_per_in_ler_id,199);

1148: p_effective_date => p_effective_date);
1149: --
1150: hr_utility.set_location ('l_inter_pil_cnt '||l_inter_pil_cnt,199);
1151: hr_utility.set_location ('l_inter_pil_le_dt '||l_inter_pil_le_dt,199);
1152: hr_utility.set_location ('l_inter_per_in_ler_id '||l_inter_per_in_ler_id,199);
1153: hr_utility.set_location ('l_bckt_csd_lf_evt_ocrd_dt '||l_bckt_csd_lf_evt_ocrd_dt,199);
1154: hr_utility.set_location ('l_bckt_csd_per_in_ler_id '||l_bckt_csd_per_in_ler_id,199);
1155: --
1156: if l_inter_pil_cnt = 0 then

Line 1153: hr_utility.set_location ('l_bckt_csd_lf_evt_ocrd_dt '||l_bckt_csd_lf_evt_ocrd_dt,199);

1149: --
1150: hr_utility.set_location ('l_inter_pil_cnt '||l_inter_pil_cnt,199);
1151: hr_utility.set_location ('l_inter_pil_le_dt '||l_inter_pil_le_dt,199);
1152: hr_utility.set_location ('l_inter_per_in_ler_id '||l_inter_per_in_ler_id,199);
1153: hr_utility.set_location ('l_bckt_csd_lf_evt_ocrd_dt '||l_bckt_csd_lf_evt_ocrd_dt,199);
1154: hr_utility.set_location ('l_bckt_csd_per_in_ler_id '||l_bckt_csd_per_in_ler_id,199);
1155: --
1156: if l_inter_pil_cnt = 0 then
1157: --

Line 1154: hr_utility.set_location ('l_bckt_csd_per_in_ler_id '||l_bckt_csd_per_in_ler_id,199);

1150: hr_utility.set_location ('l_inter_pil_cnt '||l_inter_pil_cnt,199);
1151: hr_utility.set_location ('l_inter_pil_le_dt '||l_inter_pil_le_dt,199);
1152: hr_utility.set_location ('l_inter_per_in_ler_id '||l_inter_per_in_ler_id,199);
1153: hr_utility.set_location ('l_bckt_csd_lf_evt_ocrd_dt '||l_bckt_csd_lf_evt_ocrd_dt,199);
1154: hr_utility.set_location ('l_bckt_csd_per_in_ler_id '||l_bckt_csd_per_in_ler_id,199);
1155: --
1156: if l_inter_pil_cnt = 0 then
1157: --
1158: --Get the previous life event

Line 1165: hr_utility.set_location ('l_prev_per_in_ler_id '||l_prev_per_in_ler_id,199);

1161: close c_prev_pil;
1162: --
1163: if l_prev_per_in_ler_id is not null then
1164: --
1165: hr_utility.set_location ('l_prev_per_in_ler_id '||l_prev_per_in_ler_id,199);
1166: --
1167: l_differ := comp_prev_new_pen(p_person_id => p_person_id
1168: ,p_business_group_id => p_business_group_id
1169: ,p_effective_date => p_effective_date

Line 1173: hr_utility.set_location (' l_differ '||l_differ,199);

1169: ,p_effective_date => p_effective_date
1170: ,p_new_per_in_ler_id => l_bckt_csd_per_in_ler_id
1171: ,p_prev_per_in_ler_id=> l_prev_per_in_ler_id);
1172: --
1173: hr_utility.set_location (' l_differ '||l_differ,199);
1174: if l_differ = 'N' then
1175: --
1176: l_enrt_rslt_exists := 'N';
1177: --

Line 1207: hr_utility.set_location (' l_differ '||l_differ,299);

1203: ,p_effective_date => p_effective_date
1204: ,p_new_per_in_ler_id => l_inter_per_in_ler_id
1205: ,p_prev_per_in_ler_id=> l_bckt_csd_per_in_ler_id );
1206: --
1207: hr_utility.set_location (' l_differ '||l_differ,299);
1208: if l_differ = 'N' then
1209: --
1210: l_enrt_rslt_exists := 'N';
1211: --

Line 1230: hr_utility.set_location ('Leaving l_enrt_rslt_exists '||l_enrt_rslt_exists,199);

1226: l_enrt_rslt_exists := 'N';
1227: --
1228: end if;
1229: --
1230: hr_utility.set_location ('Leaving l_enrt_rslt_exists '||l_enrt_rslt_exists,199);
1231: --
1232: hr_utility.set_location ('Leaving '||l_proc,10);
1233: --
1234: return l_enrt_rslt_exists;

Line 1232: hr_utility.set_location ('Leaving '||l_proc,10);

1228: end if;
1229: --
1230: hr_utility.set_location ('Leaving l_enrt_rslt_exists '||l_enrt_rslt_exists,199);
1231: --
1232: hr_utility.set_location ('Leaving '||l_proc,10);
1233: --
1234: return l_enrt_rslt_exists;
1235: --
1236: end ele_made_for_inter_pil;

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

1282: l_bckdt_epe_egd_count number;
1283: --
1284: begin
1285: --
1286: hr_utility.set_location ('Entering '||l_proc,10);
1287: --
1288: select count(*) into l_bckdt_epe_egd_count
1289: from ben_elig_dpnt epe_egd
1290: where epe_egd.elig_per_elctbl_chc_id = p_bckdt_epe_id

Line 1312: hr_utility.set_location ('Leaving : N : 0 '||l_proc,10);

1308: nvl(l_bckdt_epe_egd_count,0) = 0
1309: then
1310: --
1311: l_differ := 'N';
1312: hr_utility.set_location ('Leaving : N : 0 '||l_proc,10);
1313: return l_differ;
1314: --
1315: elsif nvl(l_curr_epe_egd_table.last, 0) <> nvl(l_bckdt_epe_egd_count,0) then
1316: --

Line 1318: hr_utility.set_location ('Leaving : Y : <>0 '||l_proc,10);

1314: --
1315: elsif nvl(l_curr_epe_egd_table.last, 0) <> nvl(l_bckdt_epe_egd_count,0) then
1316: --
1317: l_differ := 'Y';
1318: hr_utility.set_location ('Leaving : Y : <>0 '||l_proc,10);
1319: hr_utility.set_location ('Leaving : Y : ' || nvl(l_curr_epe_egd_table.last, 0)
1320: || ' ' || nvl(l_bckdt_epe_egd_count,0) || ' ' ||
1321: l_proc,10);
1322: return l_differ;

Line 1319: hr_utility.set_location ('Leaving : Y : ' || nvl(l_curr_epe_egd_table.last, 0)

1315: elsif nvl(l_curr_epe_egd_table.last, 0) <> nvl(l_bckdt_epe_egd_count,0) then
1316: --
1317: l_differ := 'Y';
1318: hr_utility.set_location ('Leaving : Y : <>0 '||l_proc,10);
1319: hr_utility.set_location ('Leaving : Y : ' || nvl(l_curr_epe_egd_table.last, 0)
1320: || ' ' || nvl(l_bckdt_epe_egd_count,0) || ' ' ||
1321: l_proc,10);
1322: return l_differ;
1323: --

Line 1381: hr_utility.set_location('Leaving: ' || l_differ || l_proc, 10);

1377: end if;
1378: --
1379: end loop;
1380: --
1381: hr_utility.set_location('Leaving: ' || l_differ || l_proc, 10);
1382: --
1383: return l_differ;
1384: --
1385: end comp_ori_new_egd;

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

1432: l_bckdt_enb_ecr_count number;
1433: --
1434: begin
1435: --
1436: hr_utility.set_location ('Entering '||l_proc,10);
1437: --
1438: select count(*) into l_bckdt_enb_ecr_count
1439: from ben_enrt_rt enb_ecr
1440: where enb_ecr.enrt_bnft_id = p_bckdt_enb_id

Line 1461: hr_utility.set_location ('Leavingi : N : 0 '||l_proc,10);

1457: nvl(l_bckdt_enb_ecr_count,0) = 0
1458: then
1459: --
1460: l_differ := 'N';
1461: hr_utility.set_location ('Leavingi : N : 0 '||l_proc,10);
1462: return l_differ;
1463: --
1464: elsif nvl(l_curr_enb_ecr_table.last, 0) <> nvl(l_bckdt_enb_ecr_count,0) then
1465: --

Line 1467: hr_utility.set_location ('Leavingi : Y : <>0 '||l_proc,10);

1463: --
1464: elsif nvl(l_curr_enb_ecr_table.last, 0) <> nvl(l_bckdt_enb_ecr_count,0) then
1465: --
1466: l_differ := 'Y';
1467: hr_utility.set_location ('Leavingi : Y : <>0 '||l_proc,10);
1468: return l_differ;
1469: --
1470: end if;
1471: --

Line 1539: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);

1535: end if;
1536: --
1537: end loop;
1538: --
1539: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);
1540: --
1541: return l_differ;
1542: --
1543: end comp_ori_new_enb_ecr;

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

1589: l_bckdt_epe_ecr_count number;
1590: --
1591: begin
1592: --
1593: hr_utility.set_location ('Entering '||l_proc,10);
1594: --
1595: select count(*) into l_bckdt_epe_ecr_count
1596: from ben_enrt_rt epe_ecr
1597: where epe_ecr.elig_per_elctbl_chc_id = p_bckdt_epe_id

Line 1630: hr_utility.set_location ('Leavingi : N : 0 '||l_proc,10);

1626: nvl(l_bckdt_epe_ecr_count,0) = 0
1627: then
1628: --
1629: l_differ := 'N';
1630: hr_utility.set_location ('Leavingi : N : 0 '||l_proc,10);
1631: return l_differ;
1632: --
1633: elsif nvl(l_curr_epe_ecr_table.last, 0) <> nvl(l_bckdt_epe_ecr_count,0) then
1634: --

Line 1636: hr_utility.set_location ('Leavingi : Y : <>0 '||l_proc,10);

1632: --
1633: elsif nvl(l_curr_epe_ecr_table.last, 0) <> nvl(l_bckdt_epe_ecr_count,0) then
1634: --
1635: l_differ := 'Y';
1636: hr_utility.set_location ('Leavingi : Y : <>0 '||l_proc,10);
1637: return l_differ;
1638: --
1639: end if;
1640: --

Line 1708: hr_utility.set_location('Leaving:'||l_differ || l_proc, 10);

1704: end if;
1705: --
1706: end loop;
1707: --
1708: hr_utility.set_location('Leaving:'||l_differ || l_proc, 10);
1709: --
1710: return l_differ;
1711: --
1712: end comp_ori_new_epe_ecr;

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

1781: l_bckdt_enb_count number;
1782: --
1783: begin
1784: --
1785: hr_utility.set_location ('Entering '||l_proc,10);
1786: --
1787: select count(*) into l_bckdt_enb_count
1788: from ben_enrt_bnft enb
1789: where enb.elig_per_elctbl_chc_id = p_bckdt_epe_id

Line 1823: hr_utility.set_location('Leaving: ' || l_differ ||' 0 '|| l_proc, 10);

1819: then
1820: --
1821: l_differ := 'N';
1822:
1823: hr_utility.set_location('Leaving: ' || l_differ ||' 0 '|| l_proc, 10);
1824: return l_differ;
1825: --
1826: elsif nvl(l_curr_enb_table.last, 0) <> nvl(l_bckdt_enb_count,0) then
1827: --

Line 1830: hr_utility.set_location('Leaving: ' || l_differ ||' <>0 '|| l_proc, 10);

1826: elsif nvl(l_curr_enb_table.last, 0) <> nvl(l_bckdt_enb_count,0) then
1827: --
1828: l_differ := 'Y';
1829:
1830: hr_utility.set_location('Leaving: ' || l_differ ||' <>0 '|| l_proc, 10);
1831: return l_differ;
1832: --
1833: end if;
1834: --

Line 1914: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);

1910: --
1911: end loop;
1912: --
1913:
1914: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);
1915: --
1916: return l_differ;
1917: --
1918: end comp_ori_new_enb;

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

1990: l_bckdt_ecd_count number;
1991: --
1992: begin
1993: --
1994: hr_utility.set_location ('Entering '||l_proc,10);
1995: --
1996: select count(*) into l_bckdt_ecd_count
1997: from ben_elig_cvrd_dpnt_f ecd,
1998: ben_per_in_ler pil

Line 2027: hr_utility.set_location('Leaving: ' || l_differ ||' 0 '|| l_proc, 10);

2023: then
2024: --
2025: l_differ := 'N';
2026:
2027: hr_utility.set_location('Leaving: ' || l_differ ||' 0 '|| l_proc, 10);
2028: return l_differ;
2029: --
2030: elsif nvl(l_curr_ecd_table.last, 0) <> nvl(l_bckdt_ecd_count,0) then
2031: --

Line 2034: hr_utility.set_location('Leaving: ' || l_differ ||' <>0 '|| l_proc, 10);

2030: elsif nvl(l_curr_ecd_table.last, 0) <> nvl(l_bckdt_ecd_count,0) then
2031: --
2032: l_differ := 'Y';
2033:
2034: hr_utility.set_location('Leaving: ' || l_differ ||' <>0 '|| l_proc, 10);
2035: return l_differ;
2036: --
2037: end if;
2038: --

Line 2073: hr_utility.set_location('Leaving: ' || l_differ ||' 0 '|| l_proc, 10);

2069: --
2070: end loop;
2071: --
2072:
2073: hr_utility.set_location('Leaving: ' || l_differ ||' 0 '|| l_proc, 10);
2074: --
2075: return l_differ;
2076: --
2077: end comp_ori_new_ecd;

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

2165: l_found boolean;
2166: --
2167: begin
2168: --
2169: hr_utility.set_location ('Entering '||l_proc,10);
2170: --
2171: open c_bckdt_epe_cnt;
2172: fetch c_bckdt_epe_cnt into l_bckdt_epe_cnt;
2173: close c_bckdt_epe_cnt;

Line 2220: hr_utility.set_location('pl_id = ' || nvl(l_bckdt_epe_table(l_count).pl_id, -1), 1234);

2216: --
2217: for l_count in l_bckdt_epe_table.first..l_bckdt_epe_table.last loop
2218: --
2219: /*
2220: hr_utility.set_location('pl_id = ' || nvl(l_bckdt_epe_table(l_count).pl_id, -1), 1234);
2221: hr_utility.set_location('oipl_id = ' || nvl(l_bckdt_epe_table(l_count).oipl_id, -1), 1234);
2222: hr_utility.set_location('PGM_ID = ' || nvl(l_bckdt_epe_table(l_count).PGM_ID, -1), 1234);
2223: hr_utility.set_location('PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PLIP_ID, -1), 1234);
2224: hr_utility.set_location('PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PTIP_ID, -1), 1234);

Line 2221: hr_utility.set_location('oipl_id = ' || nvl(l_bckdt_epe_table(l_count).oipl_id, -1), 1234);

2217: for l_count in l_bckdt_epe_table.first..l_bckdt_epe_table.last loop
2218: --
2219: /*
2220: hr_utility.set_location('pl_id = ' || nvl(l_bckdt_epe_table(l_count).pl_id, -1), 1234);
2221: hr_utility.set_location('oipl_id = ' || nvl(l_bckdt_epe_table(l_count).oipl_id, -1), 1234);
2222: hr_utility.set_location('PGM_ID = ' || nvl(l_bckdt_epe_table(l_count).PGM_ID, -1), 1234);
2223: hr_utility.set_location('PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PLIP_ID, -1), 1234);
2224: hr_utility.set_location('PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PTIP_ID, -1), 1234);
2225: hr_utility.set_location('PL_TYP_ID = ' || nvl(l_bckdt_epe_table(l_count).PL_TYP_ID, -1), 1234);

Line 2222: hr_utility.set_location('PGM_ID = ' || nvl(l_bckdt_epe_table(l_count).PGM_ID, -1), 1234);

2218: --
2219: /*
2220: hr_utility.set_location('pl_id = ' || nvl(l_bckdt_epe_table(l_count).pl_id, -1), 1234);
2221: hr_utility.set_location('oipl_id = ' || nvl(l_bckdt_epe_table(l_count).oipl_id, -1), 1234);
2222: hr_utility.set_location('PGM_ID = ' || nvl(l_bckdt_epe_table(l_count).PGM_ID, -1), 1234);
2223: hr_utility.set_location('PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PLIP_ID, -1), 1234);
2224: hr_utility.set_location('PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PTIP_ID, -1), 1234);
2225: hr_utility.set_location('PL_TYP_ID = ' || nvl(l_bckdt_epe_table(l_count).PL_TYP_ID, -1), 1234);
2226: hr_utility.set_location('CMBN_PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_ID, -1), 1234);

Line 2223: hr_utility.set_location('PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PLIP_ID, -1), 1234);

2219: /*
2220: hr_utility.set_location('pl_id = ' || nvl(l_bckdt_epe_table(l_count).pl_id, -1), 1234);
2221: hr_utility.set_location('oipl_id = ' || nvl(l_bckdt_epe_table(l_count).oipl_id, -1), 1234);
2222: hr_utility.set_location('PGM_ID = ' || nvl(l_bckdt_epe_table(l_count).PGM_ID, -1), 1234);
2223: hr_utility.set_location('PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PLIP_ID, -1), 1234);
2224: hr_utility.set_location('PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PTIP_ID, -1), 1234);
2225: hr_utility.set_location('PL_TYP_ID = ' || nvl(l_bckdt_epe_table(l_count).PL_TYP_ID, -1), 1234);
2226: hr_utility.set_location('CMBN_PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_ID, -1), 1234);
2227: hr_utility.set_location('CMBN_PTIP_OPT_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_OPT_ID, -1), 1234);

Line 2224: hr_utility.set_location('PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PTIP_ID, -1), 1234);

2220: hr_utility.set_location('pl_id = ' || nvl(l_bckdt_epe_table(l_count).pl_id, -1), 1234);
2221: hr_utility.set_location('oipl_id = ' || nvl(l_bckdt_epe_table(l_count).oipl_id, -1), 1234);
2222: hr_utility.set_location('PGM_ID = ' || nvl(l_bckdt_epe_table(l_count).PGM_ID, -1), 1234);
2223: hr_utility.set_location('PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PLIP_ID, -1), 1234);
2224: hr_utility.set_location('PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PTIP_ID, -1), 1234);
2225: hr_utility.set_location('PL_TYP_ID = ' || nvl(l_bckdt_epe_table(l_count).PL_TYP_ID, -1), 1234);
2226: hr_utility.set_location('CMBN_PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_ID, -1), 1234);
2227: hr_utility.set_location('CMBN_PTIP_OPT_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_OPT_ID, -1), 1234);
2228: hr_utility.set_location('CMBN_PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PLIP_ID, -1), 1234);

Line 2225: hr_utility.set_location('PL_TYP_ID = ' || nvl(l_bckdt_epe_table(l_count).PL_TYP_ID, -1), 1234);

2221: hr_utility.set_location('oipl_id = ' || nvl(l_bckdt_epe_table(l_count).oipl_id, -1), 1234);
2222: hr_utility.set_location('PGM_ID = ' || nvl(l_bckdt_epe_table(l_count).PGM_ID, -1), 1234);
2223: hr_utility.set_location('PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PLIP_ID, -1), 1234);
2224: hr_utility.set_location('PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PTIP_ID, -1), 1234);
2225: hr_utility.set_location('PL_TYP_ID = ' || nvl(l_bckdt_epe_table(l_count).PL_TYP_ID, -1), 1234);
2226: hr_utility.set_location('CMBN_PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_ID, -1), 1234);
2227: hr_utility.set_location('CMBN_PTIP_OPT_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_OPT_ID, -1), 1234);
2228: hr_utility.set_location('CMBN_PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PLIP_ID, -1), 1234);
2229: hr_utility.set_location('SPCL_RT_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_PL_ID, -1), 1234);

Line 2226: hr_utility.set_location('CMBN_PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_ID, -1), 1234);

2222: hr_utility.set_location('PGM_ID = ' || nvl(l_bckdt_epe_table(l_count).PGM_ID, -1), 1234);
2223: hr_utility.set_location('PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PLIP_ID, -1), 1234);
2224: hr_utility.set_location('PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PTIP_ID, -1), 1234);
2225: hr_utility.set_location('PL_TYP_ID = ' || nvl(l_bckdt_epe_table(l_count).PL_TYP_ID, -1), 1234);
2226: hr_utility.set_location('CMBN_PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_ID, -1), 1234);
2227: hr_utility.set_location('CMBN_PTIP_OPT_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_OPT_ID, -1), 1234);
2228: hr_utility.set_location('CMBN_PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PLIP_ID, -1), 1234);
2229: hr_utility.set_location('SPCL_RT_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_PL_ID, -1), 1234);
2230: hr_utility.set_location('SPCL_RT_OIPL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_OIPL_ID, -1), 1234);

Line 2227: hr_utility.set_location('CMBN_PTIP_OPT_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_OPT_ID, -1), 1234);

2223: hr_utility.set_location('PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PLIP_ID, -1), 1234);
2224: hr_utility.set_location('PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PTIP_ID, -1), 1234);
2225: hr_utility.set_location('PL_TYP_ID = ' || nvl(l_bckdt_epe_table(l_count).PL_TYP_ID, -1), 1234);
2226: hr_utility.set_location('CMBN_PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_ID, -1), 1234);
2227: hr_utility.set_location('CMBN_PTIP_OPT_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_OPT_ID, -1), 1234);
2228: hr_utility.set_location('CMBN_PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PLIP_ID, -1), 1234);
2229: hr_utility.set_location('SPCL_RT_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_PL_ID, -1), 1234);
2230: hr_utility.set_location('SPCL_RT_OIPL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_OIPL_ID, -1), 1234);
2231: hr_utility.set_location('MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);

Line 2228: hr_utility.set_location('CMBN_PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PLIP_ID, -1), 1234);

2224: hr_utility.set_location('PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).PTIP_ID, -1), 1234);
2225: hr_utility.set_location('PL_TYP_ID = ' || nvl(l_bckdt_epe_table(l_count).PL_TYP_ID, -1), 1234);
2226: hr_utility.set_location('CMBN_PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_ID, -1), 1234);
2227: hr_utility.set_location('CMBN_PTIP_OPT_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_OPT_ID, -1), 1234);
2228: hr_utility.set_location('CMBN_PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PLIP_ID, -1), 1234);
2229: hr_utility.set_location('SPCL_RT_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_PL_ID, -1), 1234);
2230: hr_utility.set_location('SPCL_RT_OIPL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_OIPL_ID, -1), 1234);
2231: hr_utility.set_location('MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2232: hr_utility.set_location('DFLT_FLAG = ' || l_bckdt_epe_table(l_count).DFLT_FLAG, 1234);

Line 2229: hr_utility.set_location('SPCL_RT_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_PL_ID, -1), 1234);

2225: hr_utility.set_location('PL_TYP_ID = ' || nvl(l_bckdt_epe_table(l_count).PL_TYP_ID, -1), 1234);
2226: hr_utility.set_location('CMBN_PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_ID, -1), 1234);
2227: hr_utility.set_location('CMBN_PTIP_OPT_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_OPT_ID, -1), 1234);
2228: hr_utility.set_location('CMBN_PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PLIP_ID, -1), 1234);
2229: hr_utility.set_location('SPCL_RT_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_PL_ID, -1), 1234);
2230: hr_utility.set_location('SPCL_RT_OIPL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_OIPL_ID, -1), 1234);
2231: hr_utility.set_location('MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2232: hr_utility.set_location('DFLT_FLAG = ' || l_bckdt_epe_table(l_count).DFLT_FLAG, 1234);
2233: hr_utility.set_location('ELCTBL_FLAG = ' || l_bckdt_epe_table(l_count).ELCTBL_FLAG, 1234);

Line 2230: hr_utility.set_location('SPCL_RT_OIPL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_OIPL_ID, -1), 1234);

2226: hr_utility.set_location('CMBN_PTIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_ID, -1), 1234);
2227: hr_utility.set_location('CMBN_PTIP_OPT_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_OPT_ID, -1), 1234);
2228: hr_utility.set_location('CMBN_PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PLIP_ID, -1), 1234);
2229: hr_utility.set_location('SPCL_RT_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_PL_ID, -1), 1234);
2230: hr_utility.set_location('SPCL_RT_OIPL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_OIPL_ID, -1), 1234);
2231: hr_utility.set_location('MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2232: hr_utility.set_location('DFLT_FLAG = ' || l_bckdt_epe_table(l_count).DFLT_FLAG, 1234);
2233: hr_utility.set_location('ELCTBL_FLAG = ' || l_bckdt_epe_table(l_count).ELCTBL_FLAG, 1234);
2234: hr_utility.set_location('MNDTRY_FLAG = ' || l_bckdt_epe_table(l_count).MNDTRY_FLAG, 1234);

Line 2231: hr_utility.set_location('MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);

2227: hr_utility.set_location('CMBN_PTIP_OPT_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PTIP_OPT_ID, -1), 1234);
2228: hr_utility.set_location('CMBN_PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PLIP_ID, -1), 1234);
2229: hr_utility.set_location('SPCL_RT_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_PL_ID, -1), 1234);
2230: hr_utility.set_location('SPCL_RT_OIPL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_OIPL_ID, -1), 1234);
2231: hr_utility.set_location('MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2232: hr_utility.set_location('DFLT_FLAG = ' || l_bckdt_epe_table(l_count).DFLT_FLAG, 1234);
2233: hr_utility.set_location('ELCTBL_FLAG = ' || l_bckdt_epe_table(l_count).ELCTBL_FLAG, 1234);
2234: hr_utility.set_location('MNDTRY_FLAG = ' || l_bckdt_epe_table(l_count).MNDTRY_FLAG, 1234);
2235: hr_utility.set_location('ALWS_DPNT_DSGN_FLAG = ' || l_bckdt_epe_table(l_count).ALWS_DPNT_DSGN_FLAG, 1234);

Line 2232: hr_utility.set_location('DFLT_FLAG = ' || l_bckdt_epe_table(l_count).DFLT_FLAG, 1234);

2228: hr_utility.set_location('CMBN_PLIP_ID = ' || nvl(l_bckdt_epe_table(l_count).CMBN_PLIP_ID, -1), 1234);
2229: hr_utility.set_location('SPCL_RT_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_PL_ID, -1), 1234);
2230: hr_utility.set_location('SPCL_RT_OIPL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_OIPL_ID, -1), 1234);
2231: hr_utility.set_location('MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2232: hr_utility.set_location('DFLT_FLAG = ' || l_bckdt_epe_table(l_count).DFLT_FLAG, 1234);
2233: hr_utility.set_location('ELCTBL_FLAG = ' || l_bckdt_epe_table(l_count).ELCTBL_FLAG, 1234);
2234: hr_utility.set_location('MNDTRY_FLAG = ' || l_bckdt_epe_table(l_count).MNDTRY_FLAG, 1234);
2235: hr_utility.set_location('ALWS_DPNT_DSGN_FLAG = ' || l_bckdt_epe_table(l_count).ALWS_DPNT_DSGN_FLAG, 1234);
2236: hr_utility.set_location('AUTO_ENRT_FLAG = ' || l_bckdt_epe_table(l_count).AUTO_ENRT_FLAG, 1234);

Line 2233: hr_utility.set_location('ELCTBL_FLAG = ' || l_bckdt_epe_table(l_count).ELCTBL_FLAG, 1234);

2229: hr_utility.set_location('SPCL_RT_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_PL_ID, -1), 1234);
2230: hr_utility.set_location('SPCL_RT_OIPL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_OIPL_ID, -1), 1234);
2231: hr_utility.set_location('MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2232: hr_utility.set_location('DFLT_FLAG = ' || l_bckdt_epe_table(l_count).DFLT_FLAG, 1234);
2233: hr_utility.set_location('ELCTBL_FLAG = ' || l_bckdt_epe_table(l_count).ELCTBL_FLAG, 1234);
2234: hr_utility.set_location('MNDTRY_FLAG = ' || l_bckdt_epe_table(l_count).MNDTRY_FLAG, 1234);
2235: hr_utility.set_location('ALWS_DPNT_DSGN_FLAG = ' || l_bckdt_epe_table(l_count).ALWS_DPNT_DSGN_FLAG, 1234);
2236: hr_utility.set_location('AUTO_ENRT_FLAG = ' || l_bckdt_epe_table(l_count).AUTO_ENRT_FLAG, 1234);
2237: hr_utility.set_location('CTFN_RQD_FLAG = ' || l_bckdt_epe_table(l_count).CTFN_RQD_FLAG, 1234);

Line 2234: hr_utility.set_location('MNDTRY_FLAG = ' || l_bckdt_epe_table(l_count).MNDTRY_FLAG, 1234);

2230: hr_utility.set_location('SPCL_RT_OIPL_ID = ' || nvl(l_bckdt_epe_table(l_count).SPCL_RT_OIPL_ID, -1), 1234);
2231: hr_utility.set_location('MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2232: hr_utility.set_location('DFLT_FLAG = ' || l_bckdt_epe_table(l_count).DFLT_FLAG, 1234);
2233: hr_utility.set_location('ELCTBL_FLAG = ' || l_bckdt_epe_table(l_count).ELCTBL_FLAG, 1234);
2234: hr_utility.set_location('MNDTRY_FLAG = ' || l_bckdt_epe_table(l_count).MNDTRY_FLAG, 1234);
2235: hr_utility.set_location('ALWS_DPNT_DSGN_FLAG = ' || l_bckdt_epe_table(l_count).ALWS_DPNT_DSGN_FLAG, 1234);
2236: hr_utility.set_location('AUTO_ENRT_FLAG = ' || l_bckdt_epe_table(l_count).AUTO_ENRT_FLAG, 1234);
2237: hr_utility.set_location('CTFN_RQD_FLAG = ' || l_bckdt_epe_table(l_count).CTFN_RQD_FLAG, 1234);
2238: hr_utility.set_location('BNFT_PRVDR_POOL_ID = ' || nvl(l_bckdt_epe_table(l_count).BNFT_PRVDR_POOL_ID, -1), 1234);

Line 2235: hr_utility.set_location('ALWS_DPNT_DSGN_FLAG = ' || l_bckdt_epe_table(l_count).ALWS_DPNT_DSGN_FLAG, 1234);

2231: hr_utility.set_location('MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_bckdt_epe_table(l_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2232: hr_utility.set_location('DFLT_FLAG = ' || l_bckdt_epe_table(l_count).DFLT_FLAG, 1234);
2233: hr_utility.set_location('ELCTBL_FLAG = ' || l_bckdt_epe_table(l_count).ELCTBL_FLAG, 1234);
2234: hr_utility.set_location('MNDTRY_FLAG = ' || l_bckdt_epe_table(l_count).MNDTRY_FLAG, 1234);
2235: hr_utility.set_location('ALWS_DPNT_DSGN_FLAG = ' || l_bckdt_epe_table(l_count).ALWS_DPNT_DSGN_FLAG, 1234);
2236: hr_utility.set_location('AUTO_ENRT_FLAG = ' || l_bckdt_epe_table(l_count).AUTO_ENRT_FLAG, 1234);
2237: hr_utility.set_location('CTFN_RQD_FLAG = ' || l_bckdt_epe_table(l_count).CTFN_RQD_FLAG, 1234);
2238: hr_utility.set_location('BNFT_PRVDR_POOL_ID = ' || nvl(l_bckdt_epe_table(l_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2239: hr_utility.set_location('YR_PERD_ID = ' || nvl(l_bckdt_epe_table(l_count).YR_PERD_ID, -1), 1234);

Line 2236: hr_utility.set_location('AUTO_ENRT_FLAG = ' || l_bckdt_epe_table(l_count).AUTO_ENRT_FLAG, 1234);

2232: hr_utility.set_location('DFLT_FLAG = ' || l_bckdt_epe_table(l_count).DFLT_FLAG, 1234);
2233: hr_utility.set_location('ELCTBL_FLAG = ' || l_bckdt_epe_table(l_count).ELCTBL_FLAG, 1234);
2234: hr_utility.set_location('MNDTRY_FLAG = ' || l_bckdt_epe_table(l_count).MNDTRY_FLAG, 1234);
2235: hr_utility.set_location('ALWS_DPNT_DSGN_FLAG = ' || l_bckdt_epe_table(l_count).ALWS_DPNT_DSGN_FLAG, 1234);
2236: hr_utility.set_location('AUTO_ENRT_FLAG = ' || l_bckdt_epe_table(l_count).AUTO_ENRT_FLAG, 1234);
2237: hr_utility.set_location('CTFN_RQD_FLAG = ' || l_bckdt_epe_table(l_count).CTFN_RQD_FLAG, 1234);
2238: hr_utility.set_location('BNFT_PRVDR_POOL_ID = ' || nvl(l_bckdt_epe_table(l_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2239: hr_utility.set_location('YR_PERD_ID = ' || nvl(l_bckdt_epe_table(l_count).YR_PERD_ID, -1), 1234);
2240: hr_utility.set_location('ENRT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);

Line 2237: hr_utility.set_location('CTFN_RQD_FLAG = ' || l_bckdt_epe_table(l_count).CTFN_RQD_FLAG, 1234);

2233: hr_utility.set_location('ELCTBL_FLAG = ' || l_bckdt_epe_table(l_count).ELCTBL_FLAG, 1234);
2234: hr_utility.set_location('MNDTRY_FLAG = ' || l_bckdt_epe_table(l_count).MNDTRY_FLAG, 1234);
2235: hr_utility.set_location('ALWS_DPNT_DSGN_FLAG = ' || l_bckdt_epe_table(l_count).ALWS_DPNT_DSGN_FLAG, 1234);
2236: hr_utility.set_location('AUTO_ENRT_FLAG = ' || l_bckdt_epe_table(l_count).AUTO_ENRT_FLAG, 1234);
2237: hr_utility.set_location('CTFN_RQD_FLAG = ' || l_bckdt_epe_table(l_count).CTFN_RQD_FLAG, 1234);
2238: hr_utility.set_location('BNFT_PRVDR_POOL_ID = ' || nvl(l_bckdt_epe_table(l_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2239: hr_utility.set_location('YR_PERD_ID = ' || nvl(l_bckdt_epe_table(l_count).YR_PERD_ID, -1), 1234);
2240: hr_utility.set_location('ENRT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2241: hr_utility.set_location('ENRT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_RL, -1), 1234);

Line 2238: hr_utility.set_location('BNFT_PRVDR_POOL_ID = ' || nvl(l_bckdt_epe_table(l_count).BNFT_PRVDR_POOL_ID, -1), 1234);

2234: hr_utility.set_location('MNDTRY_FLAG = ' || l_bckdt_epe_table(l_count).MNDTRY_FLAG, 1234);
2235: hr_utility.set_location('ALWS_DPNT_DSGN_FLAG = ' || l_bckdt_epe_table(l_count).ALWS_DPNT_DSGN_FLAG, 1234);
2236: hr_utility.set_location('AUTO_ENRT_FLAG = ' || l_bckdt_epe_table(l_count).AUTO_ENRT_FLAG, 1234);
2237: hr_utility.set_location('CTFN_RQD_FLAG = ' || l_bckdt_epe_table(l_count).CTFN_RQD_FLAG, 1234);
2238: hr_utility.set_location('BNFT_PRVDR_POOL_ID = ' || nvl(l_bckdt_epe_table(l_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2239: hr_utility.set_location('YR_PERD_ID = ' || nvl(l_bckdt_epe_table(l_count).YR_PERD_ID, -1), 1234);
2240: hr_utility.set_location('ENRT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2241: hr_utility.set_location('ENRT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2242: hr_utility.set_location('DPNT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);

Line 2239: hr_utility.set_location('YR_PERD_ID = ' || nvl(l_bckdt_epe_table(l_count).YR_PERD_ID, -1), 1234);

2235: hr_utility.set_location('ALWS_DPNT_DSGN_FLAG = ' || l_bckdt_epe_table(l_count).ALWS_DPNT_DSGN_FLAG, 1234);
2236: hr_utility.set_location('AUTO_ENRT_FLAG = ' || l_bckdt_epe_table(l_count).AUTO_ENRT_FLAG, 1234);
2237: hr_utility.set_location('CTFN_RQD_FLAG = ' || l_bckdt_epe_table(l_count).CTFN_RQD_FLAG, 1234);
2238: hr_utility.set_location('BNFT_PRVDR_POOL_ID = ' || nvl(l_bckdt_epe_table(l_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2239: hr_utility.set_location('YR_PERD_ID = ' || nvl(l_bckdt_epe_table(l_count).YR_PERD_ID, -1), 1234);
2240: hr_utility.set_location('ENRT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2241: hr_utility.set_location('ENRT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2242: hr_utility.set_location('DPNT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2243: hr_utility.set_location('LER_CHG_DPNT_CVG_CD = ' || nvl(l_bckdt_epe_table(l_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);

Line 2240: hr_utility.set_location('ENRT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);

2236: hr_utility.set_location('AUTO_ENRT_FLAG = ' || l_bckdt_epe_table(l_count).AUTO_ENRT_FLAG, 1234);
2237: hr_utility.set_location('CTFN_RQD_FLAG = ' || l_bckdt_epe_table(l_count).CTFN_RQD_FLAG, 1234);
2238: hr_utility.set_location('BNFT_PRVDR_POOL_ID = ' || nvl(l_bckdt_epe_table(l_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2239: hr_utility.set_location('YR_PERD_ID = ' || nvl(l_bckdt_epe_table(l_count).YR_PERD_ID, -1), 1234);
2240: hr_utility.set_location('ENRT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2241: hr_utility.set_location('ENRT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2242: hr_utility.set_location('DPNT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2243: hr_utility.set_location('LER_CHG_DPNT_CVG_CD = ' || nvl(l_bckdt_epe_table(l_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);
2244: hr_utility.set_location('DPNT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_RL, -1), 1234);

Line 2241: hr_utility.set_location('ENRT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_RL, -1), 1234);

2237: hr_utility.set_location('CTFN_RQD_FLAG = ' || l_bckdt_epe_table(l_count).CTFN_RQD_FLAG, 1234);
2238: hr_utility.set_location('BNFT_PRVDR_POOL_ID = ' || nvl(l_bckdt_epe_table(l_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2239: hr_utility.set_location('YR_PERD_ID = ' || nvl(l_bckdt_epe_table(l_count).YR_PERD_ID, -1), 1234);
2240: hr_utility.set_location('ENRT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2241: hr_utility.set_location('ENRT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2242: hr_utility.set_location('DPNT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2243: hr_utility.set_location('LER_CHG_DPNT_CVG_CD = ' || nvl(l_bckdt_epe_table(l_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);
2244: hr_utility.set_location('DPNT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_RL, -1), 1234);
2245: hr_utility.set_location('ENRT_CVG_STRT_DT = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT, hr_api.g_eot), 1234);

Line 2242: hr_utility.set_location('DPNT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);

2238: hr_utility.set_location('BNFT_PRVDR_POOL_ID = ' || nvl(l_bckdt_epe_table(l_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2239: hr_utility.set_location('YR_PERD_ID = ' || nvl(l_bckdt_epe_table(l_count).YR_PERD_ID, -1), 1234);
2240: hr_utility.set_location('ENRT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2241: hr_utility.set_location('ENRT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2242: hr_utility.set_location('DPNT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2243: hr_utility.set_location('LER_CHG_DPNT_CVG_CD = ' || nvl(l_bckdt_epe_table(l_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);
2244: hr_utility.set_location('DPNT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_RL, -1), 1234);
2245: hr_utility.set_location('ENRT_CVG_STRT_DT = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT, hr_api.g_eot), 1234);
2246: hr_utility.set_location('ERLST_DEENRT_DT = ' || nvl(l_bckdt_epe_table(l_count).ERLST_DEENRT_DT, hr_api.g_eot), 1234);

Line 2243: hr_utility.set_location('LER_CHG_DPNT_CVG_CD = ' || nvl(l_bckdt_epe_table(l_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);

2239: hr_utility.set_location('YR_PERD_ID = ' || nvl(l_bckdt_epe_table(l_count).YR_PERD_ID, -1), 1234);
2240: hr_utility.set_location('ENRT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2241: hr_utility.set_location('ENRT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2242: hr_utility.set_location('DPNT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2243: hr_utility.set_location('LER_CHG_DPNT_CVG_CD = ' || nvl(l_bckdt_epe_table(l_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);
2244: hr_utility.set_location('DPNT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_RL, -1), 1234);
2245: hr_utility.set_location('ENRT_CVG_STRT_DT = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT, hr_api.g_eot), 1234);
2246: hr_utility.set_location('ERLST_DEENRT_DT = ' || nvl(l_bckdt_epe_table(l_count).ERLST_DEENRT_DT, hr_api.g_eot), 1234);
2247: */

Line 2244: hr_utility.set_location('DPNT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_RL, -1), 1234);

2240: hr_utility.set_location('ENRT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2241: hr_utility.set_location('ENRT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2242: hr_utility.set_location('DPNT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2243: hr_utility.set_location('LER_CHG_DPNT_CVG_CD = ' || nvl(l_bckdt_epe_table(l_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);
2244: hr_utility.set_location('DPNT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_RL, -1), 1234);
2245: hr_utility.set_location('ENRT_CVG_STRT_DT = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT, hr_api.g_eot), 1234);
2246: hr_utility.set_location('ERLST_DEENRT_DT = ' || nvl(l_bckdt_epe_table(l_count).ERLST_DEENRT_DT, hr_api.g_eot), 1234);
2247: */
2248: l_found := FALSE;

Line 2245: hr_utility.set_location('ENRT_CVG_STRT_DT = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT, hr_api.g_eot), 1234);

2241: hr_utility.set_location('ENRT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2242: hr_utility.set_location('DPNT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2243: hr_utility.set_location('LER_CHG_DPNT_CVG_CD = ' || nvl(l_bckdt_epe_table(l_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);
2244: hr_utility.set_location('DPNT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_RL, -1), 1234);
2245: hr_utility.set_location('ENRT_CVG_STRT_DT = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT, hr_api.g_eot), 1234);
2246: hr_utility.set_location('ERLST_DEENRT_DT = ' || nvl(l_bckdt_epe_table(l_count).ERLST_DEENRT_DT, hr_api.g_eot), 1234);
2247: */
2248: l_found := FALSE;
2249: l_diff_auto_flag := TRUE ;

Line 2246: hr_utility.set_location('ERLST_DEENRT_DT = ' || nvl(l_bckdt_epe_table(l_count).ERLST_DEENRT_DT, hr_api.g_eot), 1234);

2242: hr_utility.set_location('DPNT_CVG_STRT_DT_CD = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2243: hr_utility.set_location('LER_CHG_DPNT_CVG_CD = ' || nvl(l_bckdt_epe_table(l_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);
2244: hr_utility.set_location('DPNT_CVG_STRT_DT_RL = ' || nvl(l_bckdt_epe_table(l_count).DPNT_CVG_STRT_DT_RL, -1), 1234);
2245: hr_utility.set_location('ENRT_CVG_STRT_DT = ' || nvl(l_bckdt_epe_table(l_count).ENRT_CVG_STRT_DT, hr_api.g_eot), 1234);
2246: hr_utility.set_location('ERLST_DEENRT_DT = ' || nvl(l_bckdt_epe_table(l_count).ERLST_DEENRT_DT, hr_api.g_eot), 1234);
2247: */
2248: l_found := FALSE;
2249: l_diff_auto_flag := TRUE ;
2250: --

Line 2254: hr_utility.set_location('Curr pl_id = ' || nvl(l_curr_epe_table(l_curr_count).pl_id, -1), 1234);

2250: --
2251: for l_curr_count in l_curr_epe_table.first..l_curr_epe_table.last loop
2252: --
2253: /*
2254: hr_utility.set_location('Curr pl_id = ' || nvl(l_curr_epe_table(l_curr_count).pl_id, -1), 1234);
2255: hr_utility.set_location('Curr oipl_id = ' || nvl(l_curr_epe_table(l_curr_count).oipl_id, -1), 1234);
2256: hr_utility.set_location('Curr PGM_ID = ' || nvl(l_curr_epe_table(l_curr_count).PGM_ID, -1), 1234);
2257: hr_utility.set_location('Curr PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PLIP_ID, -1), 1234);
2258: hr_utility.set_location('Curr PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PTIP_ID, -1), 1234);

Line 2255: hr_utility.set_location('Curr oipl_id = ' || nvl(l_curr_epe_table(l_curr_count).oipl_id, -1), 1234);

2251: for l_curr_count in l_curr_epe_table.first..l_curr_epe_table.last loop
2252: --
2253: /*
2254: hr_utility.set_location('Curr pl_id = ' || nvl(l_curr_epe_table(l_curr_count).pl_id, -1), 1234);
2255: hr_utility.set_location('Curr oipl_id = ' || nvl(l_curr_epe_table(l_curr_count).oipl_id, -1), 1234);
2256: hr_utility.set_location('Curr PGM_ID = ' || nvl(l_curr_epe_table(l_curr_count).PGM_ID, -1), 1234);
2257: hr_utility.set_location('Curr PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PLIP_ID, -1), 1234);
2258: hr_utility.set_location('Curr PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PTIP_ID, -1), 1234);
2259: hr_utility.set_location('Curr PL_TYP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PL_TYP_ID, -1), 1234);

Line 2256: hr_utility.set_location('Curr PGM_ID = ' || nvl(l_curr_epe_table(l_curr_count).PGM_ID, -1), 1234);

2252: --
2253: /*
2254: hr_utility.set_location('Curr pl_id = ' || nvl(l_curr_epe_table(l_curr_count).pl_id, -1), 1234);
2255: hr_utility.set_location('Curr oipl_id = ' || nvl(l_curr_epe_table(l_curr_count).oipl_id, -1), 1234);
2256: hr_utility.set_location('Curr PGM_ID = ' || nvl(l_curr_epe_table(l_curr_count).PGM_ID, -1), 1234);
2257: hr_utility.set_location('Curr PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PLIP_ID, -1), 1234);
2258: hr_utility.set_location('Curr PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PTIP_ID, -1), 1234);
2259: hr_utility.set_location('Curr PL_TYP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PL_TYP_ID, -1), 1234);
2260: hr_utility.set_location('Curr CMBN_PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_ID, -1), 1234);

Line 2257: hr_utility.set_location('Curr PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PLIP_ID, -1), 1234);

2253: /*
2254: hr_utility.set_location('Curr pl_id = ' || nvl(l_curr_epe_table(l_curr_count).pl_id, -1), 1234);
2255: hr_utility.set_location('Curr oipl_id = ' || nvl(l_curr_epe_table(l_curr_count).oipl_id, -1), 1234);
2256: hr_utility.set_location('Curr PGM_ID = ' || nvl(l_curr_epe_table(l_curr_count).PGM_ID, -1), 1234);
2257: hr_utility.set_location('Curr PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PLIP_ID, -1), 1234);
2258: hr_utility.set_location('Curr PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PTIP_ID, -1), 1234);
2259: hr_utility.set_location('Curr PL_TYP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PL_TYP_ID, -1), 1234);
2260: hr_utility.set_location('Curr CMBN_PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_ID, -1), 1234);
2261: hr_utility.set_location('Curr CMBN_PTIP_OPT_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_OPT_ID, -1), 1234);

Line 2258: hr_utility.set_location('Curr PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PTIP_ID, -1), 1234);

2254: hr_utility.set_location('Curr pl_id = ' || nvl(l_curr_epe_table(l_curr_count).pl_id, -1), 1234);
2255: hr_utility.set_location('Curr oipl_id = ' || nvl(l_curr_epe_table(l_curr_count).oipl_id, -1), 1234);
2256: hr_utility.set_location('Curr PGM_ID = ' || nvl(l_curr_epe_table(l_curr_count).PGM_ID, -1), 1234);
2257: hr_utility.set_location('Curr PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PLIP_ID, -1), 1234);
2258: hr_utility.set_location('Curr PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PTIP_ID, -1), 1234);
2259: hr_utility.set_location('Curr PL_TYP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PL_TYP_ID, -1), 1234);
2260: hr_utility.set_location('Curr CMBN_PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_ID, -1), 1234);
2261: hr_utility.set_location('Curr CMBN_PTIP_OPT_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_OPT_ID, -1), 1234);
2262: hr_utility.set_location('Curr CMBN_PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PLIP_ID, -1), 1234);

Line 2259: hr_utility.set_location('Curr PL_TYP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PL_TYP_ID, -1), 1234);

2255: hr_utility.set_location('Curr oipl_id = ' || nvl(l_curr_epe_table(l_curr_count).oipl_id, -1), 1234);
2256: hr_utility.set_location('Curr PGM_ID = ' || nvl(l_curr_epe_table(l_curr_count).PGM_ID, -1), 1234);
2257: hr_utility.set_location('Curr PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PLIP_ID, -1), 1234);
2258: hr_utility.set_location('Curr PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PTIP_ID, -1), 1234);
2259: hr_utility.set_location('Curr PL_TYP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PL_TYP_ID, -1), 1234);
2260: hr_utility.set_location('Curr CMBN_PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_ID, -1), 1234);
2261: hr_utility.set_location('Curr CMBN_PTIP_OPT_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_OPT_ID, -1), 1234);
2262: hr_utility.set_location('Curr CMBN_PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PLIP_ID, -1), 1234);
2263: hr_utility.set_location('Curr SPCL_RT_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_PL_ID, -1), 1234);

Line 2260: hr_utility.set_location('Curr CMBN_PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_ID, -1), 1234);

2256: hr_utility.set_location('Curr PGM_ID = ' || nvl(l_curr_epe_table(l_curr_count).PGM_ID, -1), 1234);
2257: hr_utility.set_location('Curr PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PLIP_ID, -1), 1234);
2258: hr_utility.set_location('Curr PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PTIP_ID, -1), 1234);
2259: hr_utility.set_location('Curr PL_TYP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PL_TYP_ID, -1), 1234);
2260: hr_utility.set_location('Curr CMBN_PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_ID, -1), 1234);
2261: hr_utility.set_location('Curr CMBN_PTIP_OPT_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_OPT_ID, -1), 1234);
2262: hr_utility.set_location('Curr CMBN_PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PLIP_ID, -1), 1234);
2263: hr_utility.set_location('Curr SPCL_RT_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_PL_ID, -1), 1234);
2264: hr_utility.set_location('Curr SPCL_RT_OIPL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_OIPL_ID, -1), 1234);

Line 2261: hr_utility.set_location('Curr CMBN_PTIP_OPT_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_OPT_ID, -1), 1234);

2257: hr_utility.set_location('Curr PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PLIP_ID, -1), 1234);
2258: hr_utility.set_location('Curr PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PTIP_ID, -1), 1234);
2259: hr_utility.set_location('Curr PL_TYP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PL_TYP_ID, -1), 1234);
2260: hr_utility.set_location('Curr CMBN_PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_ID, -1), 1234);
2261: hr_utility.set_location('Curr CMBN_PTIP_OPT_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_OPT_ID, -1), 1234);
2262: hr_utility.set_location('Curr CMBN_PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PLIP_ID, -1), 1234);
2263: hr_utility.set_location('Curr SPCL_RT_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_PL_ID, -1), 1234);
2264: hr_utility.set_location('Curr SPCL_RT_OIPL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_OIPL_ID, -1), 1234);
2265: hr_utility.set_location('Curr MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);

Line 2262: hr_utility.set_location('Curr CMBN_PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PLIP_ID, -1), 1234);

2258: hr_utility.set_location('Curr PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PTIP_ID, -1), 1234);
2259: hr_utility.set_location('Curr PL_TYP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PL_TYP_ID, -1), 1234);
2260: hr_utility.set_location('Curr CMBN_PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_ID, -1), 1234);
2261: hr_utility.set_location('Curr CMBN_PTIP_OPT_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_OPT_ID, -1), 1234);
2262: hr_utility.set_location('Curr CMBN_PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PLIP_ID, -1), 1234);
2263: hr_utility.set_location('Curr SPCL_RT_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_PL_ID, -1), 1234);
2264: hr_utility.set_location('Curr SPCL_RT_OIPL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_OIPL_ID, -1), 1234);
2265: hr_utility.set_location('Curr MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2266: hr_utility.set_location('Curr DFLT_FLAG = ' || l_curr_epe_table(l_curr_count).DFLT_FLAG, 1234);

Line 2263: hr_utility.set_location('Curr SPCL_RT_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_PL_ID, -1), 1234);

2259: hr_utility.set_location('Curr PL_TYP_ID = ' || nvl(l_curr_epe_table(l_curr_count).PL_TYP_ID, -1), 1234);
2260: hr_utility.set_location('Curr CMBN_PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_ID, -1), 1234);
2261: hr_utility.set_location('Curr CMBN_PTIP_OPT_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_OPT_ID, -1), 1234);
2262: hr_utility.set_location('Curr CMBN_PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PLIP_ID, -1), 1234);
2263: hr_utility.set_location('Curr SPCL_RT_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_PL_ID, -1), 1234);
2264: hr_utility.set_location('Curr SPCL_RT_OIPL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_OIPL_ID, -1), 1234);
2265: hr_utility.set_location('Curr MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2266: hr_utility.set_location('Curr DFLT_FLAG = ' || l_curr_epe_table(l_curr_count).DFLT_FLAG, 1234);
2267: hr_utility.set_location('Curr ELCTBL_FLAG = ' || l_curr_epe_table(l_curr_count).ELCTBL_FLAG, 1234);

Line 2264: hr_utility.set_location('Curr SPCL_RT_OIPL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_OIPL_ID, -1), 1234);

2260: hr_utility.set_location('Curr CMBN_PTIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_ID, -1), 1234);
2261: hr_utility.set_location('Curr CMBN_PTIP_OPT_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_OPT_ID, -1), 1234);
2262: hr_utility.set_location('Curr CMBN_PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PLIP_ID, -1), 1234);
2263: hr_utility.set_location('Curr SPCL_RT_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_PL_ID, -1), 1234);
2264: hr_utility.set_location('Curr SPCL_RT_OIPL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_OIPL_ID, -1), 1234);
2265: hr_utility.set_location('Curr MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2266: hr_utility.set_location('Curr DFLT_FLAG = ' || l_curr_epe_table(l_curr_count).DFLT_FLAG, 1234);
2267: hr_utility.set_location('Curr ELCTBL_FLAG = ' || l_curr_epe_table(l_curr_count).ELCTBL_FLAG, 1234);
2268: hr_utility.set_location('Curr MNDTRY_FLAG = ' || l_curr_epe_table(l_curr_count).MNDTRY_FLAG, 1234);

Line 2265: hr_utility.set_location('Curr MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);

2261: hr_utility.set_location('Curr CMBN_PTIP_OPT_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PTIP_OPT_ID, -1), 1234);
2262: hr_utility.set_location('Curr CMBN_PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PLIP_ID, -1), 1234);
2263: hr_utility.set_location('Curr SPCL_RT_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_PL_ID, -1), 1234);
2264: hr_utility.set_location('Curr SPCL_RT_OIPL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_OIPL_ID, -1), 1234);
2265: hr_utility.set_location('Curr MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2266: hr_utility.set_location('Curr DFLT_FLAG = ' || l_curr_epe_table(l_curr_count).DFLT_FLAG, 1234);
2267: hr_utility.set_location('Curr ELCTBL_FLAG = ' || l_curr_epe_table(l_curr_count).ELCTBL_FLAG, 1234);
2268: hr_utility.set_location('Curr MNDTRY_FLAG = ' || l_curr_epe_table(l_curr_count).MNDTRY_FLAG, 1234);
2269: hr_utility.set_location('Curr ALWS_DPNT_DSGN_FLAG = ' || l_curr_epe_table(l_curr_count).ALWS_DPNT_DSGN_FLAG, 1234);

Line 2266: hr_utility.set_location('Curr DFLT_FLAG = ' || l_curr_epe_table(l_curr_count).DFLT_FLAG, 1234);

2262: hr_utility.set_location('Curr CMBN_PLIP_ID = ' || nvl(l_curr_epe_table(l_curr_count).CMBN_PLIP_ID, -1), 1234);
2263: hr_utility.set_location('Curr SPCL_RT_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_PL_ID, -1), 1234);
2264: hr_utility.set_location('Curr SPCL_RT_OIPL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_OIPL_ID, -1), 1234);
2265: hr_utility.set_location('Curr MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2266: hr_utility.set_location('Curr DFLT_FLAG = ' || l_curr_epe_table(l_curr_count).DFLT_FLAG, 1234);
2267: hr_utility.set_location('Curr ELCTBL_FLAG = ' || l_curr_epe_table(l_curr_count).ELCTBL_FLAG, 1234);
2268: hr_utility.set_location('Curr MNDTRY_FLAG = ' || l_curr_epe_table(l_curr_count).MNDTRY_FLAG, 1234);
2269: hr_utility.set_location('Curr ALWS_DPNT_DSGN_FLAG = ' || l_curr_epe_table(l_curr_count).ALWS_DPNT_DSGN_FLAG, 1234);
2270: hr_utility.set_location('Curr AUTO_ENRT_FLAG = ' || l_curr_epe_table(l_curr_count).AUTO_ENRT_FLAG, 1234);

Line 2267: hr_utility.set_location('Curr ELCTBL_FLAG = ' || l_curr_epe_table(l_curr_count).ELCTBL_FLAG, 1234);

2263: hr_utility.set_location('Curr SPCL_RT_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_PL_ID, -1), 1234);
2264: hr_utility.set_location('Curr SPCL_RT_OIPL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_OIPL_ID, -1), 1234);
2265: hr_utility.set_location('Curr MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2266: hr_utility.set_location('Curr DFLT_FLAG = ' || l_curr_epe_table(l_curr_count).DFLT_FLAG, 1234);
2267: hr_utility.set_location('Curr ELCTBL_FLAG = ' || l_curr_epe_table(l_curr_count).ELCTBL_FLAG, 1234);
2268: hr_utility.set_location('Curr MNDTRY_FLAG = ' || l_curr_epe_table(l_curr_count).MNDTRY_FLAG, 1234);
2269: hr_utility.set_location('Curr ALWS_DPNT_DSGN_FLAG = ' || l_curr_epe_table(l_curr_count).ALWS_DPNT_DSGN_FLAG, 1234);
2270: hr_utility.set_location('Curr AUTO_ENRT_FLAG = ' || l_curr_epe_table(l_curr_count).AUTO_ENRT_FLAG, 1234);
2271: hr_utility.set_location('Curr CTFN_RQD_FLAG = ' || l_curr_epe_table(l_curr_count).CTFN_RQD_FLAG, 1234);

Line 2268: hr_utility.set_location('Curr MNDTRY_FLAG = ' || l_curr_epe_table(l_curr_count).MNDTRY_FLAG, 1234);

2264: hr_utility.set_location('Curr SPCL_RT_OIPL_ID = ' || nvl(l_curr_epe_table(l_curr_count).SPCL_RT_OIPL_ID, -1), 1234);
2265: hr_utility.set_location('Curr MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2266: hr_utility.set_location('Curr DFLT_FLAG = ' || l_curr_epe_table(l_curr_count).DFLT_FLAG, 1234);
2267: hr_utility.set_location('Curr ELCTBL_FLAG = ' || l_curr_epe_table(l_curr_count).ELCTBL_FLAG, 1234);
2268: hr_utility.set_location('Curr MNDTRY_FLAG = ' || l_curr_epe_table(l_curr_count).MNDTRY_FLAG, 1234);
2269: hr_utility.set_location('Curr ALWS_DPNT_DSGN_FLAG = ' || l_curr_epe_table(l_curr_count).ALWS_DPNT_DSGN_FLAG, 1234);
2270: hr_utility.set_location('Curr AUTO_ENRT_FLAG = ' || l_curr_epe_table(l_curr_count).AUTO_ENRT_FLAG, 1234);
2271: hr_utility.set_location('Curr CTFN_RQD_FLAG = ' || l_curr_epe_table(l_curr_count).CTFN_RQD_FLAG, 1234);
2272: hr_utility.set_location('Curr BNFT_PRVDR_POOL_ID = ' || nvl(l_curr_epe_table(l_curr_count).BNFT_PRVDR_POOL_ID, -1), 1234);

Line 2269: hr_utility.set_location('Curr ALWS_DPNT_DSGN_FLAG = ' || l_curr_epe_table(l_curr_count).ALWS_DPNT_DSGN_FLAG, 1234);

2265: hr_utility.set_location('Curr MUST_ENRL_ANTHR_PL_ID = ' || nvl(l_curr_epe_table(l_curr_count).MUST_ENRL_ANTHR_PL_ID, -1), 1234);
2266: hr_utility.set_location('Curr DFLT_FLAG = ' || l_curr_epe_table(l_curr_count).DFLT_FLAG, 1234);
2267: hr_utility.set_location('Curr ELCTBL_FLAG = ' || l_curr_epe_table(l_curr_count).ELCTBL_FLAG, 1234);
2268: hr_utility.set_location('Curr MNDTRY_FLAG = ' || l_curr_epe_table(l_curr_count).MNDTRY_FLAG, 1234);
2269: hr_utility.set_location('Curr ALWS_DPNT_DSGN_FLAG = ' || l_curr_epe_table(l_curr_count).ALWS_DPNT_DSGN_FLAG, 1234);
2270: hr_utility.set_location('Curr AUTO_ENRT_FLAG = ' || l_curr_epe_table(l_curr_count).AUTO_ENRT_FLAG, 1234);
2271: hr_utility.set_location('Curr CTFN_RQD_FLAG = ' || l_curr_epe_table(l_curr_count).CTFN_RQD_FLAG, 1234);
2272: hr_utility.set_location('Curr BNFT_PRVDR_POOL_ID = ' || nvl(l_curr_epe_table(l_curr_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2273: hr_utility.set_location('Curr YR_PERD_ID = ' || nvl(l_curr_epe_table(l_curr_count).YR_PERD_ID, -1), 1234);

Line 2270: hr_utility.set_location('Curr AUTO_ENRT_FLAG = ' || l_curr_epe_table(l_curr_count).AUTO_ENRT_FLAG, 1234);

2266: hr_utility.set_location('Curr DFLT_FLAG = ' || l_curr_epe_table(l_curr_count).DFLT_FLAG, 1234);
2267: hr_utility.set_location('Curr ELCTBL_FLAG = ' || l_curr_epe_table(l_curr_count).ELCTBL_FLAG, 1234);
2268: hr_utility.set_location('Curr MNDTRY_FLAG = ' || l_curr_epe_table(l_curr_count).MNDTRY_FLAG, 1234);
2269: hr_utility.set_location('Curr ALWS_DPNT_DSGN_FLAG = ' || l_curr_epe_table(l_curr_count).ALWS_DPNT_DSGN_FLAG, 1234);
2270: hr_utility.set_location('Curr AUTO_ENRT_FLAG = ' || l_curr_epe_table(l_curr_count).AUTO_ENRT_FLAG, 1234);
2271: hr_utility.set_location('Curr CTFN_RQD_FLAG = ' || l_curr_epe_table(l_curr_count).CTFN_RQD_FLAG, 1234);
2272: hr_utility.set_location('Curr BNFT_PRVDR_POOL_ID = ' || nvl(l_curr_epe_table(l_curr_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2273: hr_utility.set_location('Curr YR_PERD_ID = ' || nvl(l_curr_epe_table(l_curr_count).YR_PERD_ID, -1), 1234);
2274: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);

Line 2271: hr_utility.set_location('Curr CTFN_RQD_FLAG = ' || l_curr_epe_table(l_curr_count).CTFN_RQD_FLAG, 1234);

2267: hr_utility.set_location('Curr ELCTBL_FLAG = ' || l_curr_epe_table(l_curr_count).ELCTBL_FLAG, 1234);
2268: hr_utility.set_location('Curr MNDTRY_FLAG = ' || l_curr_epe_table(l_curr_count).MNDTRY_FLAG, 1234);
2269: hr_utility.set_location('Curr ALWS_DPNT_DSGN_FLAG = ' || l_curr_epe_table(l_curr_count).ALWS_DPNT_DSGN_FLAG, 1234);
2270: hr_utility.set_location('Curr AUTO_ENRT_FLAG = ' || l_curr_epe_table(l_curr_count).AUTO_ENRT_FLAG, 1234);
2271: hr_utility.set_location('Curr CTFN_RQD_FLAG = ' || l_curr_epe_table(l_curr_count).CTFN_RQD_FLAG, 1234);
2272: hr_utility.set_location('Curr BNFT_PRVDR_POOL_ID = ' || nvl(l_curr_epe_table(l_curr_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2273: hr_utility.set_location('Curr YR_PERD_ID = ' || nvl(l_curr_epe_table(l_curr_count).YR_PERD_ID, -1), 1234);
2274: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2275: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_RL, -1), 1234);

Line 2272: hr_utility.set_location('Curr BNFT_PRVDR_POOL_ID = ' || nvl(l_curr_epe_table(l_curr_count).BNFT_PRVDR_POOL_ID, -1), 1234);

2268: hr_utility.set_location('Curr MNDTRY_FLAG = ' || l_curr_epe_table(l_curr_count).MNDTRY_FLAG, 1234);
2269: hr_utility.set_location('Curr ALWS_DPNT_DSGN_FLAG = ' || l_curr_epe_table(l_curr_count).ALWS_DPNT_DSGN_FLAG, 1234);
2270: hr_utility.set_location('Curr AUTO_ENRT_FLAG = ' || l_curr_epe_table(l_curr_count).AUTO_ENRT_FLAG, 1234);
2271: hr_utility.set_location('Curr CTFN_RQD_FLAG = ' || l_curr_epe_table(l_curr_count).CTFN_RQD_FLAG, 1234);
2272: hr_utility.set_location('Curr BNFT_PRVDR_POOL_ID = ' || nvl(l_curr_epe_table(l_curr_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2273: hr_utility.set_location('Curr YR_PERD_ID = ' || nvl(l_curr_epe_table(l_curr_count).YR_PERD_ID, -1), 1234);
2274: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2275: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2276: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);

Line 2273: hr_utility.set_location('Curr YR_PERD_ID = ' || nvl(l_curr_epe_table(l_curr_count).YR_PERD_ID, -1), 1234);

2269: hr_utility.set_location('Curr ALWS_DPNT_DSGN_FLAG = ' || l_curr_epe_table(l_curr_count).ALWS_DPNT_DSGN_FLAG, 1234);
2270: hr_utility.set_location('Curr AUTO_ENRT_FLAG = ' || l_curr_epe_table(l_curr_count).AUTO_ENRT_FLAG, 1234);
2271: hr_utility.set_location('Curr CTFN_RQD_FLAG = ' || l_curr_epe_table(l_curr_count).CTFN_RQD_FLAG, 1234);
2272: hr_utility.set_location('Curr BNFT_PRVDR_POOL_ID = ' || nvl(l_curr_epe_table(l_curr_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2273: hr_utility.set_location('Curr YR_PERD_ID = ' || nvl(l_curr_epe_table(l_curr_count).YR_PERD_ID, -1), 1234);
2274: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2275: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2276: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2277: hr_utility.set_location('Curr LER_CHG_DPNT_CVG_CD = ' || nvl(l_curr_epe_table(l_curr_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);

Line 2274: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);

2270: hr_utility.set_location('Curr AUTO_ENRT_FLAG = ' || l_curr_epe_table(l_curr_count).AUTO_ENRT_FLAG, 1234);
2271: hr_utility.set_location('Curr CTFN_RQD_FLAG = ' || l_curr_epe_table(l_curr_count).CTFN_RQD_FLAG, 1234);
2272: hr_utility.set_location('Curr BNFT_PRVDR_POOL_ID = ' || nvl(l_curr_epe_table(l_curr_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2273: hr_utility.set_location('Curr YR_PERD_ID = ' || nvl(l_curr_epe_table(l_curr_count).YR_PERD_ID, -1), 1234);
2274: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2275: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2276: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2277: hr_utility.set_location('Curr LER_CHG_DPNT_CVG_CD = ' || nvl(l_curr_epe_table(l_curr_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);
2278: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_RL, -1), 1234);

Line 2275: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_RL, -1), 1234);

2271: hr_utility.set_location('Curr CTFN_RQD_FLAG = ' || l_curr_epe_table(l_curr_count).CTFN_RQD_FLAG, 1234);
2272: hr_utility.set_location('Curr BNFT_PRVDR_POOL_ID = ' || nvl(l_curr_epe_table(l_curr_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2273: hr_utility.set_location('Curr YR_PERD_ID = ' || nvl(l_curr_epe_table(l_curr_count).YR_PERD_ID, -1), 1234);
2274: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2275: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2276: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2277: hr_utility.set_location('Curr LER_CHG_DPNT_CVG_CD = ' || nvl(l_curr_epe_table(l_curr_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);
2278: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_RL, -1), 1234);
2279: hr_utility.set_location('Curr ENRT_CVG_STRT_DT = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT, hr_api.g_eot), 1234);

Line 2276: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);

2272: hr_utility.set_location('Curr BNFT_PRVDR_POOL_ID = ' || nvl(l_curr_epe_table(l_curr_count).BNFT_PRVDR_POOL_ID, -1), 1234);
2273: hr_utility.set_location('Curr YR_PERD_ID = ' || nvl(l_curr_epe_table(l_curr_count).YR_PERD_ID, -1), 1234);
2274: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2275: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2276: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2277: hr_utility.set_location('Curr LER_CHG_DPNT_CVG_CD = ' || nvl(l_curr_epe_table(l_curr_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);
2278: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_RL, -1), 1234);
2279: hr_utility.set_location('Curr ENRT_CVG_STRT_DT = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT, hr_api.g_eot), 1234);
2280: hr_utility.set_location('Curr ERLST_DEENRT_DT = ' || nvl(l_curr_epe_table(l_curr_count).ERLST_DEENRT_DT, hr_api.g_eot) , 1234);

Line 2277: hr_utility.set_location('Curr LER_CHG_DPNT_CVG_CD = ' || nvl(l_curr_epe_table(l_curr_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);

2273: hr_utility.set_location('Curr YR_PERD_ID = ' || nvl(l_curr_epe_table(l_curr_count).YR_PERD_ID, -1), 1234);
2274: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2275: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2276: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2277: hr_utility.set_location('Curr LER_CHG_DPNT_CVG_CD = ' || nvl(l_curr_epe_table(l_curr_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);
2278: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_RL, -1), 1234);
2279: hr_utility.set_location('Curr ENRT_CVG_STRT_DT = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT, hr_api.g_eot), 1234);
2280: hr_utility.set_location('Curr ERLST_DEENRT_DT = ' || nvl(l_curr_epe_table(l_curr_count).ERLST_DEENRT_DT, hr_api.g_eot) , 1234);
2281:

Line 2278: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_RL, -1), 1234);

2274: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_CD, '$'), 1234);
2275: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2276: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2277: hr_utility.set_location('Curr LER_CHG_DPNT_CVG_CD = ' || nvl(l_curr_epe_table(l_curr_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);
2278: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_RL, -1), 1234);
2279: hr_utility.set_location('Curr ENRT_CVG_STRT_DT = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT, hr_api.g_eot), 1234);
2280: hr_utility.set_location('Curr ERLST_DEENRT_DT = ' || nvl(l_curr_epe_table(l_curr_count).ERLST_DEENRT_DT, hr_api.g_eot) , 1234);
2281:
2282:

Line 2279: hr_utility.set_location('Curr ENRT_CVG_STRT_DT = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT, hr_api.g_eot), 1234);

2275: hr_utility.set_location('Curr ENRT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT_RL, -1), 1234);
2276: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2277: hr_utility.set_location('Curr LER_CHG_DPNT_CVG_CD = ' || nvl(l_curr_epe_table(l_curr_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);
2278: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_RL, -1), 1234);
2279: hr_utility.set_location('Curr ENRT_CVG_STRT_DT = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT, hr_api.g_eot), 1234);
2280: hr_utility.set_location('Curr ERLST_DEENRT_DT = ' || nvl(l_curr_epe_table(l_curr_count).ERLST_DEENRT_DT, hr_api.g_eot) , 1234);
2281:
2282:
2283: if l_bckdt_epe_table(l_count).AUTO_ENRT_FLAG = 'Y' and

Line 2280: hr_utility.set_location('Curr ERLST_DEENRT_DT = ' || nvl(l_curr_epe_table(l_curr_count).ERLST_DEENRT_DT, hr_api.g_eot) , 1234);

2276: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_CD = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_CD, '$'), 1234);
2277: hr_utility.set_location('Curr LER_CHG_DPNT_CVG_CD = ' || nvl(l_curr_epe_table(l_curr_count).LER_CHG_DPNT_CVG_CD, '$'), 1234);
2278: hr_utility.set_location('Curr DPNT_CVG_STRT_DT_RL = ' || nvl(l_curr_epe_table(l_curr_count).DPNT_CVG_STRT_DT_RL, -1), 1234);
2279: hr_utility.set_location('Curr ENRT_CVG_STRT_DT = ' || nvl(l_curr_epe_table(l_curr_count).ENRT_CVG_STRT_DT, hr_api.g_eot), 1234);
2280: hr_utility.set_location('Curr ERLST_DEENRT_DT = ' || nvl(l_curr_epe_table(l_curr_count).ERLST_DEENRT_DT, hr_api.g_eot) , 1234);
2281:
2282:
2283: if l_bckdt_epe_table(l_count).AUTO_ENRT_FLAG = 'Y' and
2284: l_curr_epe_table(l_curr_count).AUTO_ENRT_FLAG = 'Y' and

Line 2456: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);

2452: --
2453: end if; -- epe ckecks if statement
2454: --
2455:
2456: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);
2457: --
2458: return l_differ;
2459: --
2460: end comp_ori_new_pil_outcome;

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

2567: l_found boolean;
2568: --
2569: begin
2570: --
2571: hr_utility.set_location ('Entering '||l_proc,10);
2572: --
2573: open c_bckdt_epe_cnt;
2574: fetch c_bckdt_epe_cnt into l_bckdt_epe_cnt;
2575: close c_bckdt_epe_cnt;

Line 2788: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);

2784: --
2785: end if; -- epe ckecks if statement
2786: --
2787:
2788: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);
2789: --
2790: return l_differ;
2791: --
2792: end comp_ori_new_pil_for_popl;

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

2824: and pcd.effective_end_date;
2825:
2826: begin
2827: --
2828: hr_utility.set_location('Entering:'|| l_proc, 10);
2829: --
2830: for per_cm_rec in c_per_cm loop
2831: --
2832: ben_per_cm_prvdd_api.update_per_cm_prvdd

Line 2844: hr_utility.set_location('Leaving:'|| l_proc, 10);

2840: ,p_datetrack_mode => hr_api.g_correction);
2841: --
2842: end loop;
2843: --
2844: hr_utility.set_location('Leaving:'|| l_proc, 10);
2845: --
2846: end void_literature;
2847: --
2848: procedure pad_cmnt_to_rsnd_lit(

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

2881: and pcd.effective_end_date;
2882: --
2883: begin
2884: --
2885: hr_utility.set_location('Entering:'|| l_proc, 10);
2886: --
2887: for per_cm_rec in c_per_cm loop
2888: --
2889: --

Line 2904: hr_utility.set_location('Leaving:'|| l_proc, 10);

2900: ,p_datetrack_mode => hr_api.g_correction);
2901: --
2902: end loop;
2903: --
2904: hr_utility.set_location('Leaving:'|| l_proc, 10);
2905: --
2906: end pad_cmnt_to_rsnd_lit;
2907: --
2908: procedure extend_enrt_date(p_person_id in number

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

2925: --
2926: l_move_out_by number;
2927: begin
2928: --
2929: hr_utility.set_location('Entering:'|| l_proc, 10);
2930: --
2931: -- Only extend the dates if the pel status was STRTD
2932: --
2933: if g_bckdt_pil_prvs_stat_cd = 'STRTD' then

Line 2968: hr_utility.set_location('Leaving:'|| l_proc, 10);

2964: end loop;
2965: --
2966: end if;
2967: --
2968: hr_utility.set_location('Leaving:'|| l_proc, 10);
2969: --
2970: end extend_enrt_date;
2971: --
2972: -- ----------------------------------------------------------------------------

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

3012: l_cqb_rec c_cqb%rowtype;
3013: l_crp_rec c_get_cbr_per_in_ler%rowtype;
3014: begin
3015: --
3016: hr_utility.set_location('Entering:'|| l_proc, 10);
3017: --
3018: -- If backout event was a secondary COBRA qualifying event,
3019: -- re-instate the COBRA eligibility end date.
3020: --

Line 3063: hr_utility.set_location('Leaving:'|| l_proc, 10);

3059: where cqb.per_in_ler_id = p_bckdt_per_in_ler_id
3060: and cqb.business_group_id = p_business_group_id
3061: and cqb.bkup_tbl_typ_cd = 'BEN_CBR_QUALD_BNF';
3062: --
3063: hr_utility.set_location('Leaving:'|| l_proc, 10);
3064:
3065: end reinstate_cbr_dates;
3066: --
3067: -- ----------------------------------------------------------------------------

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

3111: l_bckdt_prv_count number;
3112: --
3113: begin
3114: --
3115: hr_utility.set_location ('Entering '||l_proc,10);
3116: --
3117: select count(*) into l_bckdt_prv_count
3118: from ben_prtt_rt_val prv
3119: where prv.prtt_enrt_rslt_id = p_bckdt_pen_id

Line 3140: hr_utility.set_location('Leaving: ' || l_differ ||' 0 '|| l_proc, 10);

3136: then
3137: --
3138: l_differ := 'N';
3139:
3140: hr_utility.set_location('Leaving: ' || l_differ ||' 0 '|| l_proc, 10);
3141: return l_differ;
3142: --
3143: elsif nvl(l_curr_prv_table.last, 0) <> nvl(l_bckdt_prv_count,0) then
3144: --

Line 3147: hr_utility.set_location('Leaving: ' || l_differ ||'<> 0 '|| l_proc, 10);

3143: elsif nvl(l_curr_prv_table.last, 0) <> nvl(l_bckdt_prv_count,0) then
3144: --
3145: l_differ := 'Y';
3146:
3147: hr_utility.set_location('Leaving: ' || l_differ ||'<> 0 '|| l_proc, 10);
3148: return l_differ;
3149: --
3150: end if;
3151: --

Line 3229: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);

3225: --
3226: end loop;
3227: --
3228:
3229: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);
3230: --
3231: return l_differ;
3232: --
3233: end comp_ori_new_prv;

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

3459: l_found boolean;
3460: --
3461: begin
3462: --
3463: hr_utility.set_location ('Entering '||l_proc,10);
3464: hr_utility.set_location ('Entering bck pil id '||p_bckdt_per_in_ler_id,10);
3465: hr_utility.set_location ('Entering pil id '||p_per_in_ler_id,10);
3466: --
3467: -- Bug 1266433 : Do not consider the results of flex credits and

Line 3464: hr_utility.set_location ('Entering bck pil id '||p_bckdt_per_in_ler_id,10);

3460: --
3461: begin
3462: --
3463: hr_utility.set_location ('Entering '||l_proc,10);
3464: hr_utility.set_location ('Entering bck pil id '||p_bckdt_per_in_ler_id,10);
3465: hr_utility.set_location ('Entering pil id '||p_per_in_ler_id,10);
3466: --
3467: -- Bug 1266433 : Do not consider the results of flex credits and
3468: -- imputed income as they are not considered in c_curr_pen_dat

Line 3465: hr_utility.set_location ('Entering pil id '||p_per_in_ler_id,10);

3461: begin
3462: --
3463: hr_utility.set_location ('Entering '||l_proc,10);
3464: hr_utility.set_location ('Entering bck pil id '||p_bckdt_per_in_ler_id,10);
3465: hr_utility.set_location ('Entering pil id '||p_per_in_ler_id,10);
3466: --
3467: -- Bug 1266433 : Do not consider the results of flex credits and
3468: -- imputed income as they are not considered in c_curr_pen_dat
3469: --

Line 3508: hr_utility.set_location('Leaving: ' || l_differ

3504: then
3505: --
3506: l_differ := 'N';
3507:
3508: hr_utility.set_location('Leaving: ' || l_differ
3509: ||' 0 '|| l_proc, 10);
3510: return l_differ;
3511: --
3512: elsif nvl(l_curr_pen_table.last, 0) = 0 and

Line 3517: hr_utility.set_location('Leaving: ' || l_differ

3513: p_dont_check_cnt_flag = 'Y' then
3514: --
3515: l_differ := 'N';
3516:
3517: hr_utility.set_location('Leaving: ' || l_differ
3518: ||' 0 '|| l_proc, 10);
3519: return l_differ;
3520: --
3521: elsif nvl(l_curr_pen_table.last, 0) <> nvl(l_bckdt_pen_cnt,0) and

Line 3526: hr_utility.set_location('Leaving: ' || l_differ ||' <>0 '||

3522: p_dont_check_cnt_flag = 'N' then
3523: --
3524: l_differ := 'Y';
3525:
3526: hr_utility.set_location('Leaving: ' || l_differ ||' <>0 '||
3527: nvl(l_curr_pen_table.last, 0) || ' bck= '
3528: || nvl(l_bckdt_pen_cnt,0) || l_proc, 10);
3529: return l_differ;
3530: --

Line 3537: hr_utility.set_location(to_char(nvl(l_curr_pen_table.last, 0)) ,4987);

3533: -- Now compare the original pen record and new pen record.
3534: --
3535: l_found := FALSE;
3536: --
3537: hr_utility.set_location(to_char(nvl(l_curr_pen_table.last, 0)) ,4987);
3538: if nvl(l_curr_pen_table.last, 0) > 0 then
3539: --
3540: hr_utility.set_location(' Before first Loop ',4987);
3541: for l_curr_count in l_curr_pen_table.first..l_curr_pen_table.last loop

Line 3540: hr_utility.set_location(' Before first Loop ',4987);

3536: --
3537: hr_utility.set_location(to_char(nvl(l_curr_pen_table.last, 0)) ,4987);
3538: if nvl(l_curr_pen_table.last, 0) > 0 then
3539: --
3540: hr_utility.set_location(' Before first Loop ',4987);
3541: for l_curr_count in l_curr_pen_table.first..l_curr_pen_table.last loop
3542: --
3543: l_found := FALSE;
3544: --

Line 3545: hr_utility.set_location(' Before Loop ',4987);

3541: for l_curr_count in l_curr_pen_table.first..l_curr_pen_table.last loop
3542: --
3543: l_found := FALSE;
3544: --
3545: hr_utility.set_location(' Before Loop ',4987);
3546: for bckdt_pen_rec in c_bckdt_pen_dat
3547: loop
3548: --
3549:

Line 3550: hr_utility.set_location(' Before if ',4987);

3546: for bckdt_pen_rec in c_bckdt_pen_dat
3547: loop
3548: --
3549:
3550: hr_utility.set_location(' Before if ',4987);
3551: /*
3552: hr_utility.set_location( 'SSPNDD_FLAG ' ||
3553: nvl(bckdt_pen_rec.SSPNDD_FLAG, '$r') ||'--'||
3554: nvl(l_curr_pen_table(l_curr_count).SSPNDD_FLAG, '$'),4987);

Line 3552: hr_utility.set_location( 'SSPNDD_FLAG ' ||

3548: --
3549:
3550: hr_utility.set_location(' Before if ',4987);
3551: /*
3552: hr_utility.set_location( 'SSPNDD_FLAG ' ||
3553: nvl(bckdt_pen_rec.SSPNDD_FLAG, '$r') ||'--'||
3554: nvl(l_curr_pen_table(l_curr_count).SSPNDD_FLAG, '$'),4987);
3555: hr_utility.set_location( 'ENRT_CVG_STRT_DT '
3556: || nvl(bckdt_pen_rec.ENRT_CVG_STRT_DT, hr_api.g_eot) ||'--'||

Line 3555: hr_utility.set_location( 'ENRT_CVG_STRT_DT '

3551: /*
3552: hr_utility.set_location( 'SSPNDD_FLAG ' ||
3553: nvl(bckdt_pen_rec.SSPNDD_FLAG, '$r') ||'--'||
3554: nvl(l_curr_pen_table(l_curr_count).SSPNDD_FLAG, '$'),4987);
3555: hr_utility.set_location( 'ENRT_CVG_STRT_DT '
3556: || nvl(bckdt_pen_rec.ENRT_CVG_STRT_DT, hr_api.g_eot) ||'--'||
3557: nvl(l_curr_pen_table(l_curr_count).ENRT_CVG_STRT_DT, hr_api.g_eot),4987);
3558: hr_utility.set_location( 'ENRT_CVG_THRU_DT '
3559: || nvl(bckdt_pen_rec.ENRT_CVG_THRU_DT, hr_api.g_eot)||'--'||

Line 3558: hr_utility.set_location( 'ENRT_CVG_THRU_DT '

3554: nvl(l_curr_pen_table(l_curr_count).SSPNDD_FLAG, '$'),4987);
3555: hr_utility.set_location( 'ENRT_CVG_STRT_DT '
3556: || nvl(bckdt_pen_rec.ENRT_CVG_STRT_DT, hr_api.g_eot) ||'--'||
3557: nvl(l_curr_pen_table(l_curr_count).ENRT_CVG_STRT_DT, hr_api.g_eot),4987);
3558: hr_utility.set_location( 'ENRT_CVG_THRU_DT '
3559: || nvl(bckdt_pen_rec.ENRT_CVG_THRU_DT, hr_api.g_eot)||'--'||
3560: nvl(l_curr_pen_table(l_curr_count).ENRT_CVG_THRU_DT, hr_api.g_eot),4987);
3561: hr_utility.set_location( 'PRTT_IS_CVRD_FLA '
3562: || nvl(bckdt_pen_rec.PRTT_IS_CVRD_FLAG, '$') ||'--'||

Line 3561: hr_utility.set_location( 'PRTT_IS_CVRD_FLA '

3557: nvl(l_curr_pen_table(l_curr_count).ENRT_CVG_STRT_DT, hr_api.g_eot),4987);
3558: hr_utility.set_location( 'ENRT_CVG_THRU_DT '
3559: || nvl(bckdt_pen_rec.ENRT_CVG_THRU_DT, hr_api.g_eot)||'--'||
3560: nvl(l_curr_pen_table(l_curr_count).ENRT_CVG_THRU_DT, hr_api.g_eot),4987);
3561: hr_utility.set_location( 'PRTT_IS_CVRD_FLA '
3562: || nvl(bckdt_pen_rec.PRTT_IS_CVRD_FLAG, '$') ||'--'||
3563: nvl(l_curr_pen_table(l_curr_count).PRTT_IS_CVRD_FLAG, '$'),4987);
3564: hr_utility.set_location( 'PRTT_IS_CVRD_FLAG'
3565: || nvl(bckdt_pen_rec.BNFT_AMT, -1)||'--'||

Line 3564: hr_utility.set_location( 'PRTT_IS_CVRD_FLAG'

3560: nvl(l_curr_pen_table(l_curr_count).ENRT_CVG_THRU_DT, hr_api.g_eot),4987);
3561: hr_utility.set_location( 'PRTT_IS_CVRD_FLA '
3562: || nvl(bckdt_pen_rec.PRTT_IS_CVRD_FLAG, '$') ||'--'||
3563: nvl(l_curr_pen_table(l_curr_count).PRTT_IS_CVRD_FLAG, '$'),4987);
3564: hr_utility.set_location( 'PRTT_IS_CVRD_FLAG'
3565: || nvl(bckdt_pen_rec.BNFT_AMT, -1)||'--'||
3566: nvl(l_curr_pen_table(l_curr_count).BNFT_AMT, -1),4987);
3567: hr_utility.set_location( 'BNFT_NNMNTRY_UOM '
3568: || nvl(bckdt_pen_rec.BNFT_NNMNTRY_UOM, '$') ||'--'||

Line 3567: hr_utility.set_location( 'BNFT_NNMNTRY_UOM '

3563: nvl(l_curr_pen_table(l_curr_count).PRTT_IS_CVRD_FLAG, '$'),4987);
3564: hr_utility.set_location( 'PRTT_IS_CVRD_FLAG'
3565: || nvl(bckdt_pen_rec.BNFT_AMT, -1)||'--'||
3566: nvl(l_curr_pen_table(l_curr_count).BNFT_AMT, -1),4987);
3567: hr_utility.set_location( 'BNFT_NNMNTRY_UOM '
3568: || nvl(bckdt_pen_rec.BNFT_NNMNTRY_UOM, '$') ||'--'||
3569: nvl(l_curr_pen_table(l_curr_count).BNFT_NNMNTRY_UOM, '$'),4987);
3570: hr_utility.set_location( 'BNFT_TYP_CD '
3571: || nvl(bckdt_pen_rec.BNFT_TYP_CD, '$') ||'--'||

Line 3570: hr_utility.set_location( 'BNFT_TYP_CD '

3566: nvl(l_curr_pen_table(l_curr_count).BNFT_AMT, -1),4987);
3567: hr_utility.set_location( 'BNFT_NNMNTRY_UOM '
3568: || nvl(bckdt_pen_rec.BNFT_NNMNTRY_UOM, '$') ||'--'||
3569: nvl(l_curr_pen_table(l_curr_count).BNFT_NNMNTRY_UOM, '$'),4987);
3570: hr_utility.set_location( 'BNFT_TYP_CD '
3571: || nvl(bckdt_pen_rec.BNFT_TYP_CD, '$') ||'--'||
3572: nvl(l_curr_pen_table(l_curr_count).BNFT_TYP_CD, '$'),4987);
3573: hr_utility.set_location( 'UOM ' || nvl(bckdt_pen_rec.UOM, '$') ||'--'||
3574: nvl(l_curr_pen_table(l_curr_count).UOM, '$'),4987);

Line 3573: hr_utility.set_location( 'UOM ' || nvl(bckdt_pen_rec.UOM, '$') ||'--'||

3569: nvl(l_curr_pen_table(l_curr_count).BNFT_NNMNTRY_UOM, '$'),4987);
3570: hr_utility.set_location( 'BNFT_TYP_CD '
3571: || nvl(bckdt_pen_rec.BNFT_TYP_CD, '$') ||'--'||
3572: nvl(l_curr_pen_table(l_curr_count).BNFT_TYP_CD, '$'),4987);
3573: hr_utility.set_location( 'UOM ' || nvl(bckdt_pen_rec.UOM, '$') ||'--'||
3574: nvl(l_curr_pen_table(l_curr_count).UOM, '$'),4987);
3575: hr_utility.set_location( 'ORGNL_ENRT_DT '
3576: || nvl(bckdt_pen_rec.ORGNL_ENRT_DT, hr_api.g_eot) ||'--'||
3577: nvl(l_curr_pen_table(l_curr_count).ORGNL_ENRT_DT, hr_api.g_eot),4987);

Line 3575: hr_utility.set_location( 'ORGNL_ENRT_DT '

3571: || nvl(bckdt_pen_rec.BNFT_TYP_CD, '$') ||'--'||
3572: nvl(l_curr_pen_table(l_curr_count).BNFT_TYP_CD, '$'),4987);
3573: hr_utility.set_location( 'UOM ' || nvl(bckdt_pen_rec.UOM, '$') ||'--'||
3574: nvl(l_curr_pen_table(l_curr_count).UOM, '$'),4987);
3575: hr_utility.set_location( 'ORGNL_ENRT_DT '
3576: || nvl(bckdt_pen_rec.ORGNL_ENRT_DT, hr_api.g_eot) ||'--'||
3577: nvl(l_curr_pen_table(l_curr_count).ORGNL_ENRT_DT, hr_api.g_eot),4987);
3578: hr_utility.set_location( 'ENRT_MTHD_CD '
3579: || nvl(bckdt_pen_rec.ENRT_MTHD_CD, '$') ||'--'||

Line 3578: hr_utility.set_location( 'ENRT_MTHD_CD '

3574: nvl(l_curr_pen_table(l_curr_count).UOM, '$'),4987);
3575: hr_utility.set_location( 'ORGNL_ENRT_DT '
3576: || nvl(bckdt_pen_rec.ORGNL_ENRT_DT, hr_api.g_eot) ||'--'||
3577: nvl(l_curr_pen_table(l_curr_count).ORGNL_ENRT_DT, hr_api.g_eot),4987);
3578: hr_utility.set_location( 'ENRT_MTHD_CD '
3579: || nvl(bckdt_pen_rec.ENRT_MTHD_CD, '$') ||'--'||
3580: nvl(l_curr_pen_table(l_curr_count).ENRT_MTHD_CD, '$'),4987);
3581: hr_utility.set_location( 'ENRT_OVRIDN_FLAG '||
3582: nvl(bckdt_pen_rec.ENRT_OVRIDN_FLAG, '$') ||'--'||

Line 3581: hr_utility.set_location( 'ENRT_OVRIDN_FLAG '||

3577: nvl(l_curr_pen_table(l_curr_count).ORGNL_ENRT_DT, hr_api.g_eot),4987);
3578: hr_utility.set_location( 'ENRT_MTHD_CD '
3579: || nvl(bckdt_pen_rec.ENRT_MTHD_CD, '$') ||'--'||
3580: nvl(l_curr_pen_table(l_curr_count).ENRT_MTHD_CD, '$'),4987);
3581: hr_utility.set_location( 'ENRT_OVRIDN_FLAG '||
3582: nvl(bckdt_pen_rec.ENRT_OVRIDN_FLAG, '$') ||'--'||
3583: nvl(l_curr_pen_table(l_curr_count).ENRT_OVRIDN_FLAG, '$'),4987);
3584: hr_utility.set_location( 'ENRT_OVRID_RSN_CD '
3585: || nvl(bckdt_pen_rec.ENRT_OVRID_RSN_CD, '$')||'--'||

Line 3584: hr_utility.set_location( 'ENRT_OVRID_RSN_CD '

3580: nvl(l_curr_pen_table(l_curr_count).ENRT_MTHD_CD, '$'),4987);
3581: hr_utility.set_location( 'ENRT_OVRIDN_FLAG '||
3582: nvl(bckdt_pen_rec.ENRT_OVRIDN_FLAG, '$') ||'--'||
3583: nvl(l_curr_pen_table(l_curr_count).ENRT_OVRIDN_FLAG, '$'),4987);
3584: hr_utility.set_location( 'ENRT_OVRID_RSN_CD '
3585: || nvl(bckdt_pen_rec.ENRT_OVRID_RSN_CD, '$')||'--'||
3586: nvl(l_curr_pen_table(l_curr_count).ENRT_OVRID_RSN_CD, '$'),4987);
3587: hr_utility.set_location( 'ERLST_DEENRT_DT '
3588: || nvl(bckdt_pen_rec.ERLST_DEENRT_DT, hr_api.g_eot)||'--'||

Line 3587: hr_utility.set_location( 'ERLST_DEENRT_DT '

3583: nvl(l_curr_pen_table(l_curr_count).ENRT_OVRIDN_FLAG, '$'),4987);
3584: hr_utility.set_location( 'ENRT_OVRID_RSN_CD '
3585: || nvl(bckdt_pen_rec.ENRT_OVRID_RSN_CD, '$')||'--'||
3586: nvl(l_curr_pen_table(l_curr_count).ENRT_OVRID_RSN_CD, '$'),4987);
3587: hr_utility.set_location( 'ERLST_DEENRT_DT '
3588: || nvl(bckdt_pen_rec.ERLST_DEENRT_DT, hr_api.g_eot)||'--'||
3589: nvl(l_curr_pen_table(l_curr_count).ERLST_DEENRT_DT, hr_api.g_eot),4987);
3590:
3591: hr_utility.set_location( 'ENRT_OVRID_THRU_DT'

Line 3591: hr_utility.set_location( 'ENRT_OVRID_THRU_DT'

3587: hr_utility.set_location( 'ERLST_DEENRT_DT '
3588: || nvl(bckdt_pen_rec.ERLST_DEENRT_DT, hr_api.g_eot)||'--'||
3589: nvl(l_curr_pen_table(l_curr_count).ERLST_DEENRT_DT, hr_api.g_eot),4987);
3590:
3591: hr_utility.set_location( 'ENRT_OVRID_THRU_DT'
3592: || nvl(bckdt_pen_rec.ENRT_OVRID_THRU_DT, hr_api.g_eot) ||'--'||
3593: nvl(l_curr_pen_table(l_curr_count).ENRT_OVRID_THRU_DT, hr_api.g_eot),4987);
3594: hr_utility.set_location( 'NO_LNGR_ELIG_FLAG'
3595: || nvl(bckdt_pen_rec.NO_LNGR_ELIG_FLAG, '$')||'--'||

Line 3594: hr_utility.set_location( 'NO_LNGR_ELIG_FLAG'

3590:
3591: hr_utility.set_location( 'ENRT_OVRID_THRU_DT'
3592: || nvl(bckdt_pen_rec.ENRT_OVRID_THRU_DT, hr_api.g_eot) ||'--'||
3593: nvl(l_curr_pen_table(l_curr_count).ENRT_OVRID_THRU_DT, hr_api.g_eot),4987);
3594: hr_utility.set_location( 'NO_LNGR_ELIG_FLAG'
3595: || nvl(bckdt_pen_rec.NO_LNGR_ELIG_FLAG, '$')||'--'||
3596: nvl(l_curr_pen_table(l_curr_count).NO_LNGR_ELIG_FLAG, '$'),4987);
3597: hr_utility.set_location( 'PRTT_ENRT_RSLT_STAT_CD'
3598: || nvl(bckdt_pen_rec.PRTT_ENRT_RSLT_STAT_CD, '$')||'--'||

Line 3597: hr_utility.set_location( 'PRTT_ENRT_RSLT_STAT_CD'

3593: nvl(l_curr_pen_table(l_curr_count).ENRT_OVRID_THRU_DT, hr_api.g_eot),4987);
3594: hr_utility.set_location( 'NO_LNGR_ELIG_FLAG'
3595: || nvl(bckdt_pen_rec.NO_LNGR_ELIG_FLAG, '$')||'--'||
3596: nvl(l_curr_pen_table(l_curr_count).NO_LNGR_ELIG_FLAG, '$'),4987);
3597: hr_utility.set_location( 'PRTT_ENRT_RSLT_STAT_CD'
3598: || nvl(bckdt_pen_rec.PRTT_ENRT_RSLT_STAT_CD, '$')||'--'||
3599: nvl(l_curr_pen_table(l_curr_count).PRTT_ENRT_RSLT_STAT_CD, '$')
3600: ||'--'|| p_dont_check_cnt_flag ,4987);
3601: hr_utility.set_location( 'COMP_LVL_CD' || nvl(bckdt_pen_rec.COMP_LVL_CD, '$')||'--'||

Line 3601: hr_utility.set_location( 'COMP_LVL_CD' || nvl(bckdt_pen_rec.COMP_LVL_CD, '$')||'--'||

3597: hr_utility.set_location( 'PRTT_ENRT_RSLT_STAT_CD'
3598: || nvl(bckdt_pen_rec.PRTT_ENRT_RSLT_STAT_CD, '$')||'--'||
3599: nvl(l_curr_pen_table(l_curr_count).PRTT_ENRT_RSLT_STAT_CD, '$')
3600: ||'--'|| p_dont_check_cnt_flag ,4987);
3601: hr_utility.set_location( 'COMP_LVL_CD' || nvl(bckdt_pen_rec.COMP_LVL_CD, '$')||'--'||
3602: nvl(l_curr_pen_table(l_curr_count). COMP_LVL_CD, '$'),4987);
3603: hr_utility.set_location( 'PGM_ID ' || nvl(bckdt_pen_rec.PGM_ID, -1)||'--'||
3604: nvl(l_curr_pen_table(l_curr_count).PGM_ID,-1),4987);
3605: hr_utility.set_location( 'PL_ID ' || nvl(bckdt_pen_rec.PL_ID, -1)||'--'||

Line 3603: hr_utility.set_location( 'PGM_ID ' || nvl(bckdt_pen_rec.PGM_ID, -1)||'--'||

3599: nvl(l_curr_pen_table(l_curr_count).PRTT_ENRT_RSLT_STAT_CD, '$')
3600: ||'--'|| p_dont_check_cnt_flag ,4987);
3601: hr_utility.set_location( 'COMP_LVL_CD' || nvl(bckdt_pen_rec.COMP_LVL_CD, '$')||'--'||
3602: nvl(l_curr_pen_table(l_curr_count). COMP_LVL_CD, '$'),4987);
3603: hr_utility.set_location( 'PGM_ID ' || nvl(bckdt_pen_rec.PGM_ID, -1)||'--'||
3604: nvl(l_curr_pen_table(l_curr_count).PGM_ID,-1),4987);
3605: hr_utility.set_location( 'PL_ID ' || nvl(bckdt_pen_rec.PL_ID, -1)||'--'||
3606: nvl(l_curr_pen_table(l_curr_count).PL_ID, -1), 4987);
3607: hr_utility.set_location( 'PL_TYP_ID '||nvl(bckdt_pen_rec.PL_TYP_ID, -1)||'--'||

Line 3605: hr_utility.set_location( 'PL_ID ' || nvl(bckdt_pen_rec.PL_ID, -1)||'--'||

3601: hr_utility.set_location( 'COMP_LVL_CD' || nvl(bckdt_pen_rec.COMP_LVL_CD, '$')||'--'||
3602: nvl(l_curr_pen_table(l_curr_count). COMP_LVL_CD, '$'),4987);
3603: hr_utility.set_location( 'PGM_ID ' || nvl(bckdt_pen_rec.PGM_ID, -1)||'--'||
3604: nvl(l_curr_pen_table(l_curr_count).PGM_ID,-1),4987);
3605: hr_utility.set_location( 'PL_ID ' || nvl(bckdt_pen_rec.PL_ID, -1)||'--'||
3606: nvl(l_curr_pen_table(l_curr_count).PL_ID, -1), 4987);
3607: hr_utility.set_location( 'PL_TYP_ID '||nvl(bckdt_pen_rec.PL_TYP_ID, -1)||'--'||
3608: nvl(l_curr_pen_table(l_curr_count).PL_TYP_ID, -1),4987);
3609:

Line 3607: hr_utility.set_location( 'PL_TYP_ID '||nvl(bckdt_pen_rec.PL_TYP_ID, -1)||'--'||

3603: hr_utility.set_location( 'PGM_ID ' || nvl(bckdt_pen_rec.PGM_ID, -1)||'--'||
3604: nvl(l_curr_pen_table(l_curr_count).PGM_ID,-1),4987);
3605: hr_utility.set_location( 'PL_ID ' || nvl(bckdt_pen_rec.PL_ID, -1)||'--'||
3606: nvl(l_curr_pen_table(l_curr_count).PL_ID, -1), 4987);
3607: hr_utility.set_location( 'PL_TYP_ID '||nvl(bckdt_pen_rec.PL_TYP_ID, -1)||'--'||
3608: nvl(l_curr_pen_table(l_curr_count).PL_TYP_ID, -1),4987);
3609:
3610: hr_utility.set_location( 'OIPL_ID' || nvl(bckdt_pen_rec.OIPL_ID, -1) ||'--'||
3611: nvl(l_curr_pen_table(l_curr_count).OIPL_ID, -1),4987);

Line 3610: hr_utility.set_location( 'OIPL_ID' || nvl(bckdt_pen_rec.OIPL_ID, -1) ||'--'||

3606: nvl(l_curr_pen_table(l_curr_count).PL_ID, -1), 4987);
3607: hr_utility.set_location( 'PL_TYP_ID '||nvl(bckdt_pen_rec.PL_TYP_ID, -1)||'--'||
3608: nvl(l_curr_pen_table(l_curr_count).PL_TYP_ID, -1),4987);
3609:
3610: hr_utility.set_location( 'OIPL_ID' || nvl(bckdt_pen_rec.OIPL_ID, -1) ||'--'||
3611: nvl(l_curr_pen_table(l_curr_count).OIPL_ID, -1),4987);
3612: hr_utility.set_location( 'PTIP_ID ' || nvl(bckdt_pen_rec.PTIP_ID, -1) ||'--'||
3613: nvl(l_curr_pen_table(l_curr_count).PTIP_ID, -1),4987);
3614: hr_utility.set_location( 'LER_ID ' || nvl(bckdt_pen_rec.LER_ID, -1) ||'--'||

Line 3612: hr_utility.set_location( 'PTIP_ID ' || nvl(bckdt_pen_rec.PTIP_ID, -1) ||'--'||

3608: nvl(l_curr_pen_table(l_curr_count).PL_TYP_ID, -1),4987);
3609:
3610: hr_utility.set_location( 'OIPL_ID' || nvl(bckdt_pen_rec.OIPL_ID, -1) ||'--'||
3611: nvl(l_curr_pen_table(l_curr_count).OIPL_ID, -1),4987);
3612: hr_utility.set_location( 'PTIP_ID ' || nvl(bckdt_pen_rec.PTIP_ID, -1) ||'--'||
3613: nvl(l_curr_pen_table(l_curr_count).PTIP_ID, -1),4987);
3614: hr_utility.set_location( 'LER_ID ' || nvl(bckdt_pen_rec.LER_ID, -1) ||'--'||
3615: nvl(l_curr_pen_table(l_curr_count).LER_ID, -1),4987);
3616: hr_utility.set_location( 'RPLCS_SSPNDD_RSLT_ID '

Line 3614: hr_utility.set_location( 'LER_ID ' || nvl(bckdt_pen_rec.LER_ID, -1) ||'--'||

3610: hr_utility.set_location( 'OIPL_ID' || nvl(bckdt_pen_rec.OIPL_ID, -1) ||'--'||
3611: nvl(l_curr_pen_table(l_curr_count).OIPL_ID, -1),4987);
3612: hr_utility.set_location( 'PTIP_ID ' || nvl(bckdt_pen_rec.PTIP_ID, -1) ||'--'||
3613: nvl(l_curr_pen_table(l_curr_count).PTIP_ID, -1),4987);
3614: hr_utility.set_location( 'LER_ID ' || nvl(bckdt_pen_rec.LER_ID, -1) ||'--'||
3615: nvl(l_curr_pen_table(l_curr_count).LER_ID, -1),4987);
3616: hr_utility.set_location( 'RPLCS_SSPNDD_RSLT_ID '
3617: || nvl(bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID, -1)||'--'||
3618: nvl(l_curr_pen_table(l_curr_count).RPLCS_SSPNDD_RSLT_ID, -1),4987);

Line 3616: hr_utility.set_location( 'RPLCS_SSPNDD_RSLT_ID '

3612: hr_utility.set_location( 'PTIP_ID ' || nvl(bckdt_pen_rec.PTIP_ID, -1) ||'--'||
3613: nvl(l_curr_pen_table(l_curr_count).PTIP_ID, -1),4987);
3614: hr_utility.set_location( 'LER_ID ' || nvl(bckdt_pen_rec.LER_ID, -1) ||'--'||
3615: nvl(l_curr_pen_table(l_curr_count).LER_ID, -1),4987);
3616: hr_utility.set_location( 'RPLCS_SSPNDD_RSLT_ID '
3617: || nvl(bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID, -1)||'--'||
3618: nvl(l_curr_pen_table(l_curr_count).RPLCS_SSPNDD_RSLT_ID, -1),4987);
3619:
3620: */

Line 3730: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);

3726: --
3727: end if;
3728: --
3729:
3730: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);
3731: --
3732: return l_differ;
3733: --
3734: end comp_ori_new_pen;

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

3797: l_count number := 0;
3798: --
3799: begin
3800: --
3801: hr_utility.set_location ('Entering '||l_proc,10);
3802: --
3803: p_inter_pil_cnt := 0;
3804: open c_bckt_csd_pil;
3805: fetch c_bckt_csd_pil into l_bckt_csd_lf_evt_ocrd_dt;

Line 3826: hr_utility.set_location ('Leaving '||l_proc,10);

3822: end if;
3823: --
3824: close c_inter_pil_cnt;
3825: --
3826: hr_utility.set_location ('Leaving '||l_proc,10);
3827: --
3828: end get_inter_pil_cnt;
3829: */
3830: --

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

4037: l_bnft_prvdd_ldgr_id number;
4038: --
4039: begin
4040: --
4041: hr_utility.set_location ('Entering '||l_proc,10);
4042: --
4043: for l_bckdt_pen_rec in c_bckdt_pen loop
4044: --
4045: for l_curr_pen_rec in c_curr_pen(l_bckdt_pen_rec.pl_id ,

Line 4113: hr_utility.set_location('Leaving:'|| l_proc, 10);

4109: end loop;
4110: end loop;
4111: end loop;
4112: --
4113: hr_utility.set_location('Leaving:'|| l_proc, 10);
4114: --
4115: end reinstate_bpl_per_pen;
4116: --
4117: procedure reinstate_ppr_per_pen(

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

4261: l_datetrack_mode varchar2(80);
4262: --
4263: begin
4264: --
4265: hr_utility.set_location('Entering ' || l_proc,10);
4266: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id ' || p_bckdt_prtt_enrt_rslt_id,10);
4267: hr_utility.set_location('p_prtt_enrt_rslt_id ' || p_prtt_enrt_rslt_id,10);
4268: hr_utility.set_location('p_effective_date ' || p_effective_date,10);
4269: hr_utility.set_location('p_bckdt_elig_cvrd_dpnt_id ' || p_bckdt_elig_cvrd_dpnt_id,10);

Line 4266: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id ' || p_bckdt_prtt_enrt_rslt_id,10);

4262: --
4263: begin
4264: --
4265: hr_utility.set_location('Entering ' || l_proc,10);
4266: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id ' || p_bckdt_prtt_enrt_rslt_id,10);
4267: hr_utility.set_location('p_prtt_enrt_rslt_id ' || p_prtt_enrt_rslt_id,10);
4268: hr_utility.set_location('p_effective_date ' || p_effective_date,10);
4269: hr_utility.set_location('p_bckdt_elig_cvrd_dpnt_id ' || p_bckdt_elig_cvrd_dpnt_id,10);
4270: --

Line 4267: hr_utility.set_location('p_prtt_enrt_rslt_id ' || p_prtt_enrt_rslt_id,10);

4263: begin
4264: --
4265: hr_utility.set_location('Entering ' || l_proc,10);
4266: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id ' || p_bckdt_prtt_enrt_rslt_id,10);
4267: hr_utility.set_location('p_prtt_enrt_rslt_id ' || p_prtt_enrt_rslt_id,10);
4268: hr_utility.set_location('p_effective_date ' || p_effective_date,10);
4269: hr_utility.set_location('p_bckdt_elig_cvrd_dpnt_id ' || p_bckdt_elig_cvrd_dpnt_id,10);
4270: --
4271: -- for participant

Line 4268: hr_utility.set_location('p_effective_date ' || p_effective_date,10);

4264: --
4265: hr_utility.set_location('Entering ' || l_proc,10);
4266: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id ' || p_bckdt_prtt_enrt_rslt_id,10);
4267: hr_utility.set_location('p_prtt_enrt_rslt_id ' || p_prtt_enrt_rslt_id,10);
4268: hr_utility.set_location('p_effective_date ' || p_effective_date,10);
4269: hr_utility.set_location('p_bckdt_elig_cvrd_dpnt_id ' || p_bckdt_elig_cvrd_dpnt_id,10);
4270: --
4271: -- for participant
4272: --

Line 4269: hr_utility.set_location('p_bckdt_elig_cvrd_dpnt_id ' || p_bckdt_elig_cvrd_dpnt_id,10);

4265: hr_utility.set_location('Entering ' || l_proc,10);
4266: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id ' || p_bckdt_prtt_enrt_rslt_id,10);
4267: hr_utility.set_location('p_prtt_enrt_rslt_id ' || p_prtt_enrt_rslt_id,10);
4268: hr_utility.set_location('p_effective_date ' || p_effective_date,10);
4269: hr_utility.set_location('p_bckdt_elig_cvrd_dpnt_id ' || p_bckdt_elig_cvrd_dpnt_id,10);
4270: --
4271: -- for participant
4272: --
4273: IF p_bckdt_prtt_enrt_rslt_id is not null

Line 4287: hr_utility.set_location('Reinstate Provider by Creating ',99099);

4283: FETCH c_curr_ppr INTO l_curr_ppr;
4284:
4285: IF c_curr_ppr%NOTFOUND
4286: THEN
4287: hr_utility.set_location('Reinstate Provider by Creating ',99099);
4288: ben_prmry_care_prvdr_api.create_prmry_care_prvdr (p_validate => FALSE,
4289: p_prmry_care_prvdr_id => l_prmry_care_prvdr_id,
4290: p_effective_start_date => l_ppr_effective_start_date,
4291: p_effective_end_date => l_ppr_effective_end_date,

Line 4346: hr_utility.set_location('Reinstate Provider by Updating in mode '||l_datetrack_mode,99099);

4342: l_datetrack_mode := hr_api.g_correction;
4343: ELSE
4344: l_datetrack_mode := hr_api.g_update;
4345: END IF;
4346: hr_utility.set_location('Reinstate Provider by Updating in mode '||l_datetrack_mode,99099);
4347: ben_prmry_care_prvdr_api.update_prmry_care_prvdr (p_validate => FALSE,
4348: p_prmry_care_prvdr_id => l_old_ppr_rec.prmry_care_prvdr_id,
4349: p_effective_start_date => l_ppr_effective_start_date,
4350: p_effective_end_date => l_ppr_effective_end_date,

Line 4403: hr_utility.set_location('after participant ' || l_proc,20);

4399: END LOOP;
4400: --
4401: END IF;
4402: --
4403: hr_utility.set_location('after participant ' || l_proc,20);
4404: -- for dependent
4405: --
4406: IF p_bckdt_prtt_enrt_rslt_id is null
4407: and p_bckdt_elig_cvrd_dpnt_id is not null

Line 4420: hr_utility.set_location('Reinstate Provider by Creating ',99099);

4416: FETCH c_curr_ppr INTO l_curr_ppr;
4417:
4418: IF c_curr_ppr%NOTFOUND
4419: THEN
4420: hr_utility.set_location('Reinstate Provider by Creating ',99099);
4421: ben_prmry_care_prvdr_api.create_prmry_care_prvdr (p_validate => FALSE,
4422: p_prmry_care_prvdr_id => l_prmry_care_prvdr_id,
4423: p_effective_start_date => l_ppr_effective_start_date,
4424: p_effective_end_date => l_ppr_effective_end_date,

Line 4479: hr_utility.set_location('Reinstate Provider by Updating in mode '||l_datetrack_mode,99099);

4475: l_datetrack_mode := hr_api.g_correction;
4476: ELSE
4477: l_datetrack_mode := hr_api.g_update;
4478: END IF;
4479: hr_utility.set_location('Reinstate Provider by Updating in mode '||l_datetrack_mode,99099);
4480: ben_prmry_care_prvdr_api.update_prmry_care_prvdr (p_validate => FALSE,
4481: p_prmry_care_prvdr_id => l_old_ppr_rec.prmry_care_prvdr_id,
4482: p_effective_start_date => l_ppr_effective_start_date,
4483: p_effective_end_date => l_ppr_effective_end_date,

Line 4536: hr_utility.set_location('Leaving ' || l_proc,30);

4532: END LOOP;
4533: --
4534: END IF;
4535: --
4536: hr_utility.set_location('Leaving ' || l_proc,30);
4537: --
4538: end reinstate_ppr_per_pen;
4539: --
4540: procedure reinstate_pea_per_pen(

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

4613: l_rslt_ovn number;
4614: --
4615: begin
4616: --
4617: hr_utility.set_location('Entering benleclr' || l_proc,10);
4618: --
4619: for l_old_pea_rec in c_old_pea loop
4620: --
4621: open c_pea(l_old_pea_rec.actn_typ_id);

Line 4667: hr_utility.set_location('Leaving ' || l_proc,10);

4663: --
4664: close c_pea;
4665: end loop;
4666: --
4667: hr_utility.set_location('Leaving ' || l_proc,10);
4668: --
4669: end reinstate_pea_per_pen;
4670:
4671: procedure reinstate_cpp_per_pdp(

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

4729: l_datetrack_mode varchar2(80) := null;
4730: --
4731: begin
4732: --
4733: hr_utility.set_location('Entering ' || l_proc,10);
4734: --
4735: for l_old_cpp_rec in c_old_cpp loop
4736: --
4737: open c_cpp(l_old_cpp_rec.actn_typ_id, l_old_cpp_rec.dpnt_dsgn_ctfn_typ_cd);

Line 4812: hr_utility.set_location('Leaving ' || l_proc,10);

4808: --
4809: close c_cpp;
4810: end loop;
4811: --
4812: hr_utility.set_location('Leaving ' || l_proc,10);
4813: --
4814: end reinstate_cpp_per_pdp;
4815: --
4816: -- This procedure creates the enrollment results based on what participant

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

5050: l_enrt_cvg_strt_dt date; -- bug 5895645
5051: --
5052: begin
5053: --
5054: hr_utility.set_location('Entering ' || l_proc,10);
5055: hr_utility.set_location('p_bckdt_per_in_ler_id ' || p_bckdt_per_in_ler_id,10);
5056: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id ' || p_bckdt_prtt_enrt_rslt_id,10);
5057: hr_utility.set_location('p_prtt_enrt_rslt_id ' || p_prtt_enrt_rslt_id,10);
5058: --

Line 5055: hr_utility.set_location('p_bckdt_per_in_ler_id ' || p_bckdt_per_in_ler_id,10);

5051: --
5052: begin
5053: --
5054: hr_utility.set_location('Entering ' || l_proc,10);
5055: hr_utility.set_location('p_bckdt_per_in_ler_id ' || p_bckdt_per_in_ler_id,10);
5056: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id ' || p_bckdt_prtt_enrt_rslt_id,10);
5057: hr_utility.set_location('p_prtt_enrt_rslt_id ' || p_prtt_enrt_rslt_id,10);
5058: --
5059:

Line 5056: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id ' || p_bckdt_prtt_enrt_rslt_id,10);

5052: begin
5053: --
5054: hr_utility.set_location('Entering ' || l_proc,10);
5055: hr_utility.set_location('p_bckdt_per_in_ler_id ' || p_bckdt_per_in_ler_id,10);
5056: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id ' || p_bckdt_prtt_enrt_rslt_id,10);
5057: hr_utility.set_location('p_prtt_enrt_rslt_id ' || p_prtt_enrt_rslt_id,10);
5058: --
5059:
5060: --

Line 5057: hr_utility.set_location('p_prtt_enrt_rslt_id ' || p_prtt_enrt_rslt_id,10);

5053: --
5054: hr_utility.set_location('Entering ' || l_proc,10);
5055: hr_utility.set_location('p_bckdt_per_in_ler_id ' || p_bckdt_per_in_ler_id,10);
5056: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id ' || p_bckdt_prtt_enrt_rslt_id,10);
5057: hr_utility.set_location('p_prtt_enrt_rslt_id ' || p_prtt_enrt_rslt_id,10);
5058: --
5059:
5060: --
5061: for bckdt_pen_dpnts_rec in c_bckdt_pen_dpnts loop

Line 5063: hr_utility.set_location('Reinstating dependent person id = ' ||

5059:
5060: --
5061: for bckdt_pen_dpnts_rec in c_bckdt_pen_dpnts loop
5062: --
5063: hr_utility.set_location('Reinstating dependent person id = ' ||
5064: bckdt_pen_dpnts_rec.dpnt_person_id, 999);
5065: open c_pen_dpnts(bckdt_pen_dpnts_rec.dpnt_person_id);
5066: fetch c_pen_dpnts into l_pen_dpnts_rec;
5067: if c_pen_dpnts%notfound then

Line 5068: hr_utility.set_location('Creating new dependent row', 8085);

5064: bckdt_pen_dpnts_rec.dpnt_person_id, 999);
5065: open c_pen_dpnts(bckdt_pen_dpnts_rec.dpnt_person_id);
5066: fetch c_pen_dpnts into l_pen_dpnts_rec;
5067: if c_pen_dpnts%notfound then
5068: hr_utility.set_location('Creating new dependent row', 8085);
5069: --
5070: -- Create the dependents row.
5071: --
5072: -- Calculate Dependents Coverage Start Date

Line 5109: hr_utility.set_location('Cvg start dt ='||to_char(l_cvg_strt_dt), 25);

5105: l_cvg_strt_dt := nvl(p_enrt_cvg_strt_dt,l_enrt_cvg_strt_dt);
5106: --
5107: end if;
5108: --
5109: hr_utility.set_location('Cvg start dt ='||to_char(l_cvg_strt_dt), 25);
5110: hr_utility.set_location('p_enrt_cvg_strt_dt ='||to_char(p_enrt_cvg_strt_dt), 25);
5111: hr_utility.set_location('l_enrt_cvg_strt_dt =' || l_enrt_cvg_strt_dt, 25);
5112: --
5113: -- Now hook the depenedent to the new enrollment result.

Line 5110: hr_utility.set_location('p_enrt_cvg_strt_dt ='||to_char(p_enrt_cvg_strt_dt), 25);

5106: --
5107: end if;
5108: --
5109: hr_utility.set_location('Cvg start dt ='||to_char(l_cvg_strt_dt), 25);
5110: hr_utility.set_location('p_enrt_cvg_strt_dt ='||to_char(p_enrt_cvg_strt_dt), 25);
5111: hr_utility.set_location('l_enrt_cvg_strt_dt =' || l_enrt_cvg_strt_dt, 25);
5112: --
5113: -- Now hook the depenedent to the new enrollment result.
5114: --

Line 5111: hr_utility.set_location('l_enrt_cvg_strt_dt =' || l_enrt_cvg_strt_dt, 25);

5107: end if;
5108: --
5109: hr_utility.set_location('Cvg start dt ='||to_char(l_cvg_strt_dt), 25);
5110: hr_utility.set_location('p_enrt_cvg_strt_dt ='||to_char(p_enrt_cvg_strt_dt), 25);
5111: hr_utility.set_location('l_enrt_cvg_strt_dt =' || l_enrt_cvg_strt_dt, 25);
5112: --
5113: -- Now hook the depenedent to the new enrollment result.
5114: --
5115: open c_epe_dpnt(bckdt_pen_dpnts_rec.dpnt_person_id);

Line 5138: hr_utility.set_location('End-dated row found - vvp', 7777);

5134: close c_epe_dpnt;
5135: --
5136: --
5137: elsif bckdt_pen_dpnts_rec.cvg_thru_dt <> hr_api.g_eot then
5138: hr_utility.set_location('End-dated row found - vvp', 7777);
5139:
5140: --5692797 Check whether backed out PDP record exists for the dependent in same enrollment
5141: --with valid coverage. If yes, no need to reinstate this end-dated record.
5142: l_chk_valid_pdp := null;

Line 5147: hr_utility.set_location('l_chk_valid_pdp = '|| l_chk_valid_pdp, 8085);

5143: open c_chk_valid_pdp(bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id);
5144: fetch c_chk_valid_pdp into l_chk_valid_pdp;
5145: close c_chk_valid_pdp;
5146:
5147: hr_utility.set_location('l_chk_valid_pdp = '|| l_chk_valid_pdp, 8085);
5148: if l_chk_valid_pdp is null then
5149: open c_epe_dpnt(bckdt_pen_dpnts_rec.dpnt_person_id);
5150: fetch c_epe_dpnt into l_epe_dpnt_rec;
5151: if c_epe_dpnt%found then

Line 5173: hr_utility.set_location('l_elig_cvrd_dpnt_id ='||l_elig_cvrd_dpnt_id, 25);

5169: end if; --end l_chk_valid_pdp
5170: end if;
5171: close c_pen_dpnts;
5172: --
5173: hr_utility.set_location('l_elig_cvrd_dpnt_id ='||l_elig_cvrd_dpnt_id, 25);
5174: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id'||p_bckdt_prtt_enrt_rslt_id,25);
5175: hr_utility.set_location('bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id'||bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id,25);
5176: hr_utility.set_location('p_prtt_enrt_rslt_id'||p_prtt_enrt_rslt_id,25);
5177: hr_utility.set_location('p_business_group_id'||p_business_group_id,25);

Line 5174: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id'||p_bckdt_prtt_enrt_rslt_id,25);

5170: end if;
5171: close c_pen_dpnts;
5172: --
5173: hr_utility.set_location('l_elig_cvrd_dpnt_id ='||l_elig_cvrd_dpnt_id, 25);
5174: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id'||p_bckdt_prtt_enrt_rslt_id,25);
5175: hr_utility.set_location('bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id'||bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id,25);
5176: hr_utility.set_location('p_prtt_enrt_rslt_id'||p_prtt_enrt_rslt_id,25);
5177: hr_utility.set_location('p_business_group_id'||p_business_group_id,25);
5178: hr_utility.set_location('p_effective_date'||p_effective_date,25);

Line 5175: hr_utility.set_location('bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id'||bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id,25);

5171: close c_pen_dpnts;
5172: --
5173: hr_utility.set_location('l_elig_cvrd_dpnt_id ='||l_elig_cvrd_dpnt_id, 25);
5174: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id'||p_bckdt_prtt_enrt_rslt_id,25);
5175: hr_utility.set_location('bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id'||bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id,25);
5176: hr_utility.set_location('p_prtt_enrt_rslt_id'||p_prtt_enrt_rslt_id,25);
5177: hr_utility.set_location('p_business_group_id'||p_business_group_id,25);
5178: hr_utility.set_location('p_effective_date'||p_effective_date,25);
5179: hr_utility.set_location('p_person_id '||p_person_id,25);

Line 5176: hr_utility.set_location('p_prtt_enrt_rslt_id'||p_prtt_enrt_rslt_id,25);

5172: --
5173: hr_utility.set_location('l_elig_cvrd_dpnt_id ='||l_elig_cvrd_dpnt_id, 25);
5174: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id'||p_bckdt_prtt_enrt_rslt_id,25);
5175: hr_utility.set_location('bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id'||bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id,25);
5176: hr_utility.set_location('p_prtt_enrt_rslt_id'||p_prtt_enrt_rslt_id,25);
5177: hr_utility.set_location('p_business_group_id'||p_business_group_id,25);
5178: hr_utility.set_location('p_effective_date'||p_effective_date,25);
5179: hr_utility.set_location('p_person_id '||p_person_id,25);
5180: --

Line 5177: hr_utility.set_location('p_business_group_id'||p_business_group_id,25);

5173: hr_utility.set_location('l_elig_cvrd_dpnt_id ='||l_elig_cvrd_dpnt_id, 25);
5174: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id'||p_bckdt_prtt_enrt_rslt_id,25);
5175: hr_utility.set_location('bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id'||bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id,25);
5176: hr_utility.set_location('p_prtt_enrt_rslt_id'||p_prtt_enrt_rslt_id,25);
5177: hr_utility.set_location('p_business_group_id'||p_business_group_id,25);
5178: hr_utility.set_location('p_effective_date'||p_effective_date,25);
5179: hr_utility.set_location('p_person_id '||p_person_id,25);
5180: --
5181: if l_elig_cvrd_dpnt_id is not null then

Line 5178: hr_utility.set_location('p_effective_date'||p_effective_date,25);

5174: hr_utility.set_location('p_bckdt_prtt_enrt_rslt_id'||p_bckdt_prtt_enrt_rslt_id,25);
5175: hr_utility.set_location('bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id'||bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id,25);
5176: hr_utility.set_location('p_prtt_enrt_rslt_id'||p_prtt_enrt_rslt_id,25);
5177: hr_utility.set_location('p_business_group_id'||p_business_group_id,25);
5178: hr_utility.set_location('p_effective_date'||p_effective_date,25);
5179: hr_utility.set_location('p_person_id '||p_person_id,25);
5180: --
5181: if l_elig_cvrd_dpnt_id is not null then
5182: --Reinstates PCP at dependent level.

Line 5179: hr_utility.set_location('p_person_id '||p_person_id,25);

5175: hr_utility.set_location('bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id'||bckdt_pen_dpnts_rec.elig_cvrd_dpnt_id,25);
5176: hr_utility.set_location('p_prtt_enrt_rslt_id'||p_prtt_enrt_rslt_id,25);
5177: hr_utility.set_location('p_business_group_id'||p_business_group_id,25);
5178: hr_utility.set_location('p_effective_date'||p_effective_date,25);
5179: hr_utility.set_location('p_person_id '||p_person_id,25);
5180: --
5181: if l_elig_cvrd_dpnt_id is not null then
5182: --Reinstates PCP at dependent level.
5183: reinstate_ppr_per_pen(

Line 5234: hr_utility.set_location('Leaving ' || l_proc,10);

5230: );
5231: --
5232: end if;
5233: --
5234: hr_utility.set_location('Leaving ' || l_proc,10);
5235: --
5236: end reinstate_dpnts_per_pen;
5237: --
5238: procedure reinstate_pbc_per_pbn(

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

5292: l_datetrack_mode varchar2(80) := null;
5293: --
5294: begin
5295: --
5296: hr_utility.set_location('Entering ' || l_proc,10);
5297: --
5298: for l_old_pbc_rec in c_old_pbc loop
5299: --
5300: open c_pbc(l_old_pbc_rec.actn_typ_id, l_old_pbc_rec.BNF_CTFN_TYP_CD);

Line 5375: hr_utility.set_location('Leaving ' || l_proc,10);

5371: --
5372: close c_pbc;
5373: end loop;
5374: --
5375: hr_utility.set_location('Leaving ' || l_proc,10);
5376: --
5377: end reinstate_pbc_per_pbn;
5378: --
5379: -- This procedure creates the enrollment beneficiary records for each

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

5578: l_upd_date date;
5579: --
5580: begin
5581: --
5582: hr_utility.set_location('Entering ' || l_proc,10);
5583: l_upd_mode := false;
5584: --
5585: for l_old_bnf_rec in c_old_bnf loop
5586: --

Line 5587: hr_utility.set_location('l_old_bnf_rec.effective_end_date ' || l_old_bnf_rec.effective_end_date,10);

5583: l_upd_mode := false;
5584: --
5585: for l_old_bnf_rec in c_old_bnf loop
5586: --
5587: hr_utility.set_location('l_old_bnf_rec.effective_end_date ' || l_old_bnf_rec.effective_end_date,10);
5588: hr_utility.set_location('l_old_bnf_rec.effective_start_date ' || l_old_bnf_rec.effective_start_date,10);
5589: hr_utility.set_location('l_old_bnf_rec.ftr_rec ' || l_old_bnf_rec.ftr_rec,10);
5590:
5591: open c_bnf(l_old_bnf_rec.bnf_person_id);

Line 5588: hr_utility.set_location('l_old_bnf_rec.effective_start_date ' || l_old_bnf_rec.effective_start_date,10);

5584: --
5585: for l_old_bnf_rec in c_old_bnf loop
5586: --
5587: hr_utility.set_location('l_old_bnf_rec.effective_end_date ' || l_old_bnf_rec.effective_end_date,10);
5588: hr_utility.set_location('l_old_bnf_rec.effective_start_date ' || l_old_bnf_rec.effective_start_date,10);
5589: hr_utility.set_location('l_old_bnf_rec.ftr_rec ' || l_old_bnf_rec.ftr_rec,10);
5590:
5591: open c_bnf(l_old_bnf_rec.bnf_person_id);
5592: fetch c_bnf into l_bnf_rec;

Line 5589: hr_utility.set_location('l_old_bnf_rec.ftr_rec ' || l_old_bnf_rec.ftr_rec,10);

5585: for l_old_bnf_rec in c_old_bnf loop
5586: --
5587: hr_utility.set_location('l_old_bnf_rec.effective_end_date ' || l_old_bnf_rec.effective_end_date,10);
5588: hr_utility.set_location('l_old_bnf_rec.effective_start_date ' || l_old_bnf_rec.effective_start_date,10);
5589: hr_utility.set_location('l_old_bnf_rec.ftr_rec ' || l_old_bnf_rec.ftr_rec,10);
5590:
5591: open c_bnf(l_old_bnf_rec.bnf_person_id);
5592: fetch c_bnf into l_bnf_rec;
5593: if c_bnf%notfound then

Line 5595: hr_utility.set_location('In create call ' || l_proc,10);

5591: open c_bnf(l_old_bnf_rec.bnf_person_id);
5592: fetch c_bnf into l_bnf_rec;
5593: if c_bnf%notfound then
5594: --
5595: hr_utility.set_location('In create call ' || l_proc,10);
5596: ben_plan_beneficiary_api.create_plan_beneficiary
5597: (p_validate => FALSE
5598: ,p_pl_bnf_id => l_pl_bnf_id
5599: ,p_effective_start_date => l_bnf_effective_start_date

Line 5653: hr_utility.set_location('In create call ' || l_bnf_effective_start_date,10);

5649: ,p_effective_date => p_effective_date
5650: ,p_dsgn_thru_dt => l_old_bnf_rec.dsgn_thru_dt
5651: ,p_dsgn_strt_dt => l_old_bnf_rec.dsgn_strt_dt);
5652:
5653: hr_utility.set_location('In create call ' || l_bnf_effective_start_date,10);
5654: hr_utility.set_location('In create call ' || l_bnf_effective_end_date,10);
5655:
5656: /*Bug 12964358: Set the flag l_upd_mode to true if history is to reinstated on reprocessing the LE */
5657: if(l_upd_mode = false and

Line 5654: hr_utility.set_location('In create call ' || l_bnf_effective_end_date,10);

5650: ,p_dsgn_thru_dt => l_old_bnf_rec.dsgn_thru_dt
5651: ,p_dsgn_strt_dt => l_old_bnf_rec.dsgn_strt_dt);
5652:
5653: hr_utility.set_location('In create call ' || l_bnf_effective_start_date,10);
5654: hr_utility.set_location('In create call ' || l_bnf_effective_end_date,10);
5655:
5656: /*Bug 12964358: Set the flag l_upd_mode to true if history is to reinstated on reprocessing the LE */
5657: if(l_upd_mode = false and
5658: l_old_bnf_rec.effective_start_date = l_bnf_effective_start_date) then

Line 5670: hr_utility.set_location('In delete call create' || l_bnf_effective_end_date,10);

5666: l_del_date :=l_old_bnf_rec.effective_end_date;
5667: else
5668: l_del_date :=l_bnf_effective_start_date;
5669: end if;
5670: hr_utility.set_location('In delete call create' || l_bnf_effective_end_date,10);
5671: ben_plan_beneficiary_api.delete_PLAN_BENEFICIARY
5672: (p_validate => false
5673: ,p_pl_bnf_id => l_pl_bnf_id
5674: ,p_effective_start_date => l_bnf_effective_start_date

Line 5686: hr_utility.set_location('p_effective_date ' || p_effective_date,10);

5682: end if;
5683: --
5684: else
5685: --
5686: hr_utility.set_location('p_effective_date ' || p_effective_date,10);
5687: hr_utility.set_location('l_bnf_rec.effective_start_date ' || l_bnf_rec.effective_start_date,10);
5688: hr_utility.set_location('l_bnf_rec.effective_end_date ' || l_bnf_rec.effective_end_date,10);
5689: if p_effective_date = l_bnf_rec.effective_start_date or
5690: p_effective_date = l_bnf_rec.effective_end_date then

Line 5687: hr_utility.set_location('l_bnf_rec.effective_start_date ' || l_bnf_rec.effective_start_date,10);

5683: --
5684: else
5685: --
5686: hr_utility.set_location('p_effective_date ' || p_effective_date,10);
5687: hr_utility.set_location('l_bnf_rec.effective_start_date ' || l_bnf_rec.effective_start_date,10);
5688: hr_utility.set_location('l_bnf_rec.effective_end_date ' || l_bnf_rec.effective_end_date,10);
5689: if p_effective_date = l_bnf_rec.effective_start_date or
5690: p_effective_date = l_bnf_rec.effective_end_date then
5691: /*Bug 12964358: Reinstate the plan beneficiary history on reprocessing the LE.If elections are reinstated

Line 5688: hr_utility.set_location('l_bnf_rec.effective_end_date ' || l_bnf_rec.effective_end_date,10);

5684: else
5685: --
5686: hr_utility.set_location('p_effective_date ' || p_effective_date,10);
5687: hr_utility.set_location('l_bnf_rec.effective_start_date ' || l_bnf_rec.effective_start_date,10);
5688: hr_utility.set_location('l_bnf_rec.effective_end_date ' || l_bnf_rec.effective_end_date,10);
5689: if p_effective_date = l_bnf_rec.effective_start_date or
5690: p_effective_date = l_bnf_rec.effective_end_date then
5691: /*Bug 12964358: Reinstate the plan beneficiary history on reprocessing the LE.If elections are reinstated
5692: as of sysdate, then update mode will be 'update' else 'correction' . Flag l_upd_mode is set based upon the date on which

Line 5717: hr_utility.set_location('update call ' ,10);

5713: l_upd_obj_version_number := l_bnf_rec.object_version_number;
5714: l_datetrack_mode := hr_api.g_update;
5715: end if;
5716: --
5717: hr_utility.set_location('update call ' ,10);
5718: ben_plan_beneficiary_api.update_PLAN_BENEFICIARY
5719: (p_validate => FALSE
5720: ,p_pl_bnf_id => l_bnf_rec.pl_bnf_id
5721: ,p_effective_start_date => l_bnf_effective_start_date

Line 5787: hr_utility.set_location('In delete call upd' || l_bnf_effective_end_date,10);

5783: else
5784: l_del_date :=l_bnf_effective_start_date;
5785: end if;
5786: l_bnf_object_version_number := l_upd_obj_version_number;
5787: hr_utility.set_location('In delete call upd' || l_bnf_effective_end_date,10);
5788: ben_plan_beneficiary_api.delete_PLAN_BENEFICIARY
5789: (p_validate => false
5790: ,p_pl_bnf_id => l_pl_bnf_id
5791: ,p_effective_start_date => l_bnf_effective_start_date

Line 5845: hr_utility.set_location('Leaving ' || l_proc,10);

5841: close c_bnf;
5842: end loop;
5843: --
5844: --We need to add the call to process_bnf_actn_items which will
5845: hr_utility.set_location('Leaving ' || l_proc,10);
5846:
5847: --
5848: end reinstate_pbn_per_pen;
5849: --

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

5923: l_datetrack_mode varchar2(80) := null;
5924: --
5925: begin
5926: --
5927: hr_utility.set_location('Entering ' || l_proc,10);
5928: --
5929: for l_old_pcs_rec in c_old_pcs loop
5930: --
5931: open c_pcs(l_old_pcs_rec.enrt_ctfn_typ_cd,

Line 5983: hr_utility.set_location('Leaving ' || l_proc,10);

5979: --
5980: close c_pcs;
5981: end loop;
5982: --
5983: hr_utility.set_location('Leaving ' || l_proc,10);
5984: --
5985: end reinstate_pcs_per_pen;
5986: --
5987: -- This procedure creates the enrollment results based on what participant

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

6513: --
6514:
6515: begin
6516: --
6517: hr_utility.set_location('Entering ' || l_proc,10);
6518: --
6519: open c_bckdt_pil;
6520: fetch c_bckdt_pil into l_bckdt_pil_prev_stat_cd, l_bckdt_pil_ovn, l_bckt_csd_per_in_ler_id;
6521: close c_bckdt_pil;

Line 6554: hr_utility.set_location('Inside BCKDT pen loop ' || l_proc,20);

6550: --
6551: -- If the enrollment record is valid for the current
6552: -- effective_date then recreate the enrollment.
6553: --
6554: hr_utility.set_location('Inside BCKDT pen loop ' || l_proc,20);
6555: --
6556: -- if p_effective_date <= l_bckdt_pen_rec.effective_end_date
6557: --
6558: l_bckt_csd_pen_esd := null;

Line 6582: hr_utility.set_location('After epe fetch ' || l_proc,30);

6578: l_bckdt_pen_rec.pgm_id,
6579: l_bckdt_pen_rec.oipl_id);
6580: fetch c_epe_pen into l_epe_pen_rec;
6581: close c_epe_pen;
6582: hr_utility.set_location('After epe fetch ' || l_proc,30);
6583: --
6584: g_sys_date := greatest(trunc(l_epe_pen_rec.enrt_perd_strt_dt),
6585: nvl(nvl(l_bckt_csd_pen_esd, g_bckt_csd_lf_evt_ocrd_dt), hr_api.g_sot),
6586: l_bckdt_pen_rec.effective_start_date);

Line 6596: hr_utility.set_location('Date used to reinstate the enrollment = ' || g_sys_date, 333);

6592: --
6593: l_max_enrt_esd := greatest(g_sys_date, nvl(l_max_enrt_esd, hr_api.g_sot));
6594: --
6595: --
6596: hr_utility.set_location('Date used to reinstate the enrollment = ' || g_sys_date, 333);
6597: if g_sys_date <= l_bckdt_pen_rec.effective_end_date
6598: then
6599: --
6600: -- Get the benefits Information.

Line 6610: hr_utility.set_location('Inside bnft loop ' || l_proc,40);

6606: open c_bnft(l_epe_pen_rec.elig_per_elctbl_chc_id,l_bckdt_pen_rec.bnft_ordr_num );
6607: loop
6608: --
6609:
6610: hr_utility.set_location('Inside bnft loop ' || l_proc,40);
6611: --Bug 3315323 we need to reinstate the previuos benefit amount for the case
6612: --of SAAEAR also as enb record may have null value there for first enrollment
6613: --or it may not be the right amount.
6614: --

Line 6647: hr_utility.set_location(l_proc,50);

6643: l_bnft_rec.val := l_bckdt_pen_rec.BNFT_AMT;
6644: --
6645: end if;
6646: end if;
6647: hr_utility.set_location(l_proc,50);
6648: close c_bnft;
6649: --
6650: for l_count in 1..10 loop
6651: --

Line 6667: hr_utility.set_location('Inside rate loop ' ||l_proc,50);

6663: for l_rec in c_rt(l_epe_pen_rec.elig_per_elctbl_chc_id,
6664: l_bnft_rec.enrt_bnft_id)
6665: loop
6666: --
6667: hr_utility.set_location('Inside rate loop ' ||l_proc,50);
6668: --
6669: -- Get the prtt rate val for this enrollment result.
6670: -- Use to pass to the enrollment process.
6671: --

Line 6675: hr_utility.set_location('enrt_rt_id : dflt_val : val : entr_val' ||

6671: --
6672: -- Bug : 1634870 : If the user not selected the rate before backout
6673: -- then do not pass it to the reinstate process.
6674: --
6675: hr_utility.set_location('enrt_rt_id : dflt_val : val : entr_val' ||
6676: '_at_enrt_flag : acty_base_rt_id : ' , 501);
6677: hr_utility.set_location(l_rec.enrt_rt_id || ' : ' || l_rec.dflt_val || ' : ' || l_rec.val || ' : '
6678: || l_rec.entr_val_at_enrt_flag || ' : ' ||
6679: l_rec.acty_base_rt_id, 501);

Line 6677: hr_utility.set_location(l_rec.enrt_rt_id || ' : ' || l_rec.dflt_val || ' : ' || l_rec.val || ' : '

6673: -- then do not pass it to the reinstate process.
6674: --
6675: hr_utility.set_location('enrt_rt_id : dflt_val : val : entr_val' ||
6676: '_at_enrt_flag : acty_base_rt_id : ' , 501);
6677: hr_utility.set_location(l_rec.enrt_rt_id || ' : ' || l_rec.dflt_val || ' : ' || l_rec.val || ' : '
6678: || l_rec.entr_val_at_enrt_flag || ' : ' ||
6679: l_rec.acty_base_rt_id, 501);
6680: --
6681: l_prv_rec := l_prv_rec_nulls;

Line 6688: hr_utility.set_location('prtt_rt_val_id : rt_val : ' ||

6684: fetch c_prv into l_prv_rec;
6685: if c_prv%found then -- l_prv_rec.prtt_rt_val_id is not null then
6686: --
6687: l_count := l_count+1;
6688: hr_utility.set_location('prtt_rt_val_id : rt_val : ' ||
6689: l_prv_rec.prtt_rt_val_id || ' : ' || l_prv_rec.rt_val
6690: || ' : ' || l_prv_rec.acty_base_rt_id , 502);
6691: l_rt_table(l_count).enrt_rt_id := l_rec.enrt_rt_id;
6692: if l_prv_rec.mlt_cd in ('CL','CVG','AP','PRNT','CLANDCVG','APANDCVG','PRNTANDCVG') then

Line 6741: hr_utility.set_location('Calling ben_election_information ' ||l_proc,60);

6737: then
6738: l_enrt_cvg_strt_dt := l_bckdt_pen_rec.enrt_cvg_strt_dt ;
6739: end if ;
6740: -- 5746429 ends
6741: hr_utility.set_location('Calling ben_election_information ' ||l_proc,60);
6742: hr_utility.set_location('Calling l_bnft_rec.val ' ||l_bnft_rec.val,60);
6743: hr_utility.set_location('Calling l_enrt_cvg_strt_dt ' ||l_enrt_cvg_strt_dt,60);
6744: --
6745: --

Line 6742: hr_utility.set_location('Calling l_bnft_rec.val ' ||l_bnft_rec.val,60);

6738: l_enrt_cvg_strt_dt := l_bckdt_pen_rec.enrt_cvg_strt_dt ;
6739: end if ;
6740: -- 5746429 ends
6741: hr_utility.set_location('Calling ben_election_information ' ||l_proc,60);
6742: hr_utility.set_location('Calling l_bnft_rec.val ' ||l_bnft_rec.val,60);
6743: hr_utility.set_location('Calling l_enrt_cvg_strt_dt ' ||l_enrt_cvg_strt_dt,60);
6744: --
6745: --
6746:

Line 6743: hr_utility.set_location('Calling l_enrt_cvg_strt_dt ' ||l_enrt_cvg_strt_dt,60);

6739: end if ;
6740: -- 5746429 ends
6741: hr_utility.set_location('Calling ben_election_information ' ||l_proc,60);
6742: hr_utility.set_location('Calling l_bnft_rec.val ' ||l_bnft_rec.val,60);
6743: hr_utility.set_location('Calling l_enrt_cvg_strt_dt ' ||l_enrt_cvg_strt_dt,60);
6744: --
6745: --
6746:
6747: ben_election_information.election_information

Line 6936: hr_utility.set_location('prtt_enrt_rslt_id = ' ||

6932: := l_epe_pen_rec.dpnt_cvg_strt_dt_cd;
6933: l_enrt_table(l_enrt_count).dpnt_cvg_strt_dt_rl
6934: := l_epe_pen_rec.dpnt_cvg_strt_dt_rl;
6935: /* Trace messages for the enrollments, uncomment for tracing bugs */
6936: hr_utility.set_location('prtt_enrt_rslt_id = ' ||
6937: l_enrt_table(l_enrt_count).prtt_enrt_rslt_id, 9999);
6938: hr_utility.set_location('bckdt_prtt_enrt_rslt_id = ' ||
6939: l_enrt_table(l_enrt_count).bckdt_prtt_enrt_rslt_id, 9999);
6940: hr_utility.set_location('bckdt_enrt_ovridn_flag = ' ||

Line 6938: hr_utility.set_location('bckdt_prtt_enrt_rslt_id = ' ||

6934: := l_epe_pen_rec.dpnt_cvg_strt_dt_rl;
6935: /* Trace messages for the enrollments, uncomment for tracing bugs */
6936: hr_utility.set_location('prtt_enrt_rslt_id = ' ||
6937: l_enrt_table(l_enrt_count).prtt_enrt_rslt_id, 9999);
6938: hr_utility.set_location('bckdt_prtt_enrt_rslt_id = ' ||
6939: l_enrt_table(l_enrt_count).bckdt_prtt_enrt_rslt_id, 9999);
6940: hr_utility.set_location('bckdt_enrt_ovridn_flag = ' ||
6941: l_enrt_table(l_enrt_count).bckdt_enrt_ovridn_flag, 72);
6942: hr_utility.set_location('bckdt_enrt_cvg_strt_dt = ' ||

Line 6940: hr_utility.set_location('bckdt_enrt_ovridn_flag = ' ||

6936: hr_utility.set_location('prtt_enrt_rslt_id = ' ||
6937: l_enrt_table(l_enrt_count).prtt_enrt_rslt_id, 9999);
6938: hr_utility.set_location('bckdt_prtt_enrt_rslt_id = ' ||
6939: l_enrt_table(l_enrt_count).bckdt_prtt_enrt_rslt_id, 9999);
6940: hr_utility.set_location('bckdt_enrt_ovridn_flag = ' ||
6941: l_enrt_table(l_enrt_count).bckdt_enrt_ovridn_flag, 72);
6942: hr_utility.set_location('bckdt_enrt_cvg_strt_dt = ' ||
6943: l_enrt_table(l_enrt_count).bckdt_enrt_cvg_strt_dt, 72);
6944: hr_utility.set_location('pen_ovn_number = ' ||

Line 6942: hr_utility.set_location('bckdt_enrt_cvg_strt_dt = ' ||

6938: hr_utility.set_location('bckdt_prtt_enrt_rslt_id = ' ||
6939: l_enrt_table(l_enrt_count).bckdt_prtt_enrt_rslt_id, 9999);
6940: hr_utility.set_location('bckdt_enrt_ovridn_flag = ' ||
6941: l_enrt_table(l_enrt_count).bckdt_enrt_ovridn_flag, 72);
6942: hr_utility.set_location('bckdt_enrt_cvg_strt_dt = ' ||
6943: l_enrt_table(l_enrt_count).bckdt_enrt_cvg_strt_dt, 72);
6944: hr_utility.set_location('pen_ovn_number = ' ||
6945: l_enrt_table(l_enrt_count).pen_ovn_number, 9999);
6946: hr_utility.set_location('old_pl_id = ' ||

Line 6944: hr_utility.set_location('pen_ovn_number = ' ||

6940: hr_utility.set_location('bckdt_enrt_ovridn_flag = ' ||
6941: l_enrt_table(l_enrt_count).bckdt_enrt_ovridn_flag, 72);
6942: hr_utility.set_location('bckdt_enrt_cvg_strt_dt = ' ||
6943: l_enrt_table(l_enrt_count).bckdt_enrt_cvg_strt_dt, 72);
6944: hr_utility.set_location('pen_ovn_number = ' ||
6945: l_enrt_table(l_enrt_count).pen_ovn_number, 9999);
6946: hr_utility.set_location('old_pl_id = ' ||
6947: l_enrt_table(l_enrt_count).old_pl_id, 9999);
6948: hr_utility.set_location('new_pl_id = ' ||

Line 6946: hr_utility.set_location('old_pl_id = ' ||

6942: hr_utility.set_location('bckdt_enrt_cvg_strt_dt = ' ||
6943: l_enrt_table(l_enrt_count).bckdt_enrt_cvg_strt_dt, 72);
6944: hr_utility.set_location('pen_ovn_number = ' ||
6945: l_enrt_table(l_enrt_count).pen_ovn_number, 9999);
6946: hr_utility.set_location('old_pl_id = ' ||
6947: l_enrt_table(l_enrt_count).old_pl_id, 9999);
6948: hr_utility.set_location('new_pl_id = ' ||
6949: l_enrt_table(l_enrt_count).new_pl_id, 9999);
6950: hr_utility.set_location('old_oipl_id = ' ||

Line 6948: hr_utility.set_location('new_pl_id = ' ||

6944: hr_utility.set_location('pen_ovn_number = ' ||
6945: l_enrt_table(l_enrt_count).pen_ovn_number, 9999);
6946: hr_utility.set_location('old_pl_id = ' ||
6947: l_enrt_table(l_enrt_count).old_pl_id, 9999);
6948: hr_utility.set_location('new_pl_id = ' ||
6949: l_enrt_table(l_enrt_count).new_pl_id, 9999);
6950: hr_utility.set_location('old_oipl_id = ' ||
6951: l_enrt_table(l_enrt_count).old_oipl_id, 9999);
6952: hr_utility.set_location('new_oipl_id = ' ||

Line 6950: hr_utility.set_location('old_oipl_id = ' ||

6946: hr_utility.set_location('old_pl_id = ' ||
6947: l_enrt_table(l_enrt_count).old_pl_id, 9999);
6948: hr_utility.set_location('new_pl_id = ' ||
6949: l_enrt_table(l_enrt_count).new_pl_id, 9999);
6950: hr_utility.set_location('old_oipl_id = ' ||
6951: l_enrt_table(l_enrt_count).old_oipl_id, 9999);
6952: hr_utility.set_location('new_oipl_id = ' ||
6953: l_enrt_table(l_enrt_count).new_oipl_id, 9999);
6954: hr_utility.set_location('old_pl_typ_id = ' ||

Line 6952: hr_utility.set_location('new_oipl_id = ' ||

6948: hr_utility.set_location('new_pl_id = ' ||
6949: l_enrt_table(l_enrt_count).new_pl_id, 9999);
6950: hr_utility.set_location('old_oipl_id = ' ||
6951: l_enrt_table(l_enrt_count).old_oipl_id, 9999);
6952: hr_utility.set_location('new_oipl_id = ' ||
6953: l_enrt_table(l_enrt_count).new_oipl_id, 9999);
6954: hr_utility.set_location('old_pl_typ_id = ' ||
6955: l_enrt_table(l_enrt_count).old_pl_typ_id, 9999);
6956: hr_utility.set_location('new_pl_typ_id = ' ||

Line 6954: hr_utility.set_location('old_pl_typ_id = ' ||

6950: hr_utility.set_location('old_oipl_id = ' ||
6951: l_enrt_table(l_enrt_count).old_oipl_id, 9999);
6952: hr_utility.set_location('new_oipl_id = ' ||
6953: l_enrt_table(l_enrt_count).new_oipl_id, 9999);
6954: hr_utility.set_location('old_pl_typ_id = ' ||
6955: l_enrt_table(l_enrt_count).old_pl_typ_id, 9999);
6956: hr_utility.set_location('new_pl_typ_id = ' ||
6957: l_enrt_table(l_enrt_count).new_pl_typ_id, 9999);
6958: hr_utility.set_location('pgm_id = ' ||

Line 6956: hr_utility.set_location('new_pl_typ_id = ' ||

6952: hr_utility.set_location('new_oipl_id = ' ||
6953: l_enrt_table(l_enrt_count).new_oipl_id, 9999);
6954: hr_utility.set_location('old_pl_typ_id = ' ||
6955: l_enrt_table(l_enrt_count).old_pl_typ_id, 9999);
6956: hr_utility.set_location('new_pl_typ_id = ' ||
6957: l_enrt_table(l_enrt_count).new_pl_typ_id, 9999);
6958: hr_utility.set_location('pgm_id = ' ||
6959: l_enrt_table(l_enrt_count).pgm_id, 9999);
6960: hr_utility.set_location('elig_per_elctbl_chc_id = ' ||

Line 6958: hr_utility.set_location('pgm_id = ' ||

6954: hr_utility.set_location('old_pl_typ_id = ' ||
6955: l_enrt_table(l_enrt_count).old_pl_typ_id, 9999);
6956: hr_utility.set_location('new_pl_typ_id = ' ||
6957: l_enrt_table(l_enrt_count).new_pl_typ_id, 9999);
6958: hr_utility.set_location('pgm_id = ' ||
6959: l_enrt_table(l_enrt_count).pgm_id, 9999);
6960: hr_utility.set_location('elig_per_elctbl_chc_id = ' ||
6961: l_enrt_table(l_enrt_count).elig_per_elctbl_chc_id, 9999);
6962: /**/

Line 6960: hr_utility.set_location('elig_per_elctbl_chc_id = ' ||

6956: hr_utility.set_location('new_pl_typ_id = ' ||
6957: l_enrt_table(l_enrt_count).new_pl_typ_id, 9999);
6958: hr_utility.set_location('pgm_id = ' ||
6959: l_enrt_table(l_enrt_count).pgm_id, 9999);
6960: hr_utility.set_location('elig_per_elctbl_chc_id = ' ||
6961: l_enrt_table(l_enrt_count).elig_per_elctbl_chc_id, 9999);
6962: /**/
6963: --
6964: end if;

Line 7075: hr_utility.set_location('Date for multi row edits = ' ||

7071: end if;
7072: --
7073: if l_bckdt_pil_prev_stat_cd<>'STRTD' or
7074: l_found_non_automatics then
7075: hr_utility.set_location('Date for multi row edits = ' ||
7076: l_pgm_table(l_cnt).max_enrt_esd || ' ' || ' pgm = ' ||
7077: l_pgm_table(l_cnt).pgm_id, 333);
7078: ben_prtt_enrt_result_api.multi_rows_edit
7079: (p_person_id => p_person_id,

Line 7103: hr_utility.set_location('Date for multi row edits = ' ||

7099: -- created.
7100: --
7101: -- Call multi row edits just as miscellanious form calls.
7102: --
7103: hr_utility.set_location('Date for multi row edits = ' ||
7104: l_max_enrt_esd , 333);
7105: ben_prtt_enrt_result_api.multi_rows_edit
7106: (p_person_id => p_person_id,
7107: p_effective_date => l_max_enrt_esd,

Line 7176: hr_utility.set_location('Date = ' || l_pl_table(l_cnt).max_enrt_esd, 333);

7172: for l_cnt in 1..l_pl_table.LAST loop
7173: --
7174: -- Invoke post result process
7175: --
7176: hr_utility.set_location('Date = ' || l_pl_table(l_cnt).max_enrt_esd, 333);
7177: hr_utility.set_location('PL = ' || l_pl_table(l_cnt).pl_id, 333);
7178: --RCHASE - ensure automatics are handled differently than
7179: -- form enrollments by process_post_enrollment
7180: -- Bug 5623259.

Line 7177: hr_utility.set_location('PL = ' || l_pl_table(l_cnt).pl_id, 333);

7173: --
7174: -- Invoke post result process
7175: --
7176: hr_utility.set_location('Date = ' || l_pl_table(l_cnt).max_enrt_esd, 333);
7177: hr_utility.set_location('PL = ' || l_pl_table(l_cnt).pl_id, 333);
7178: --RCHASE - ensure automatics are handled differently than
7179: -- form enrollments by process_post_enrollment
7180: -- Bug 5623259.
7181: --

Line 7220: hr_utility.set_location('Enrt Date = ' ||

7216: for l_cnt in 1..l_enrt_table.LAST loop
7217: --
7218: -- Reinstate the enrollment beneficiary rows.
7219: --
7220: hr_utility.set_location('Enrt Date = ' ||
7221: l_enrt_table(l_cnt).effective_start_date, 333);
7222: hr_utility.set_location('Reinstate the enrollment beneficiary rows',12);
7223: reinstate_pbn_per_pen(
7224: p_person_id => p_person_id

Line 7222: hr_utility.set_location('Reinstate the enrollment beneficiary rows',12);

7218: -- Reinstate the enrollment beneficiary rows.
7219: --
7220: hr_utility.set_location('Enrt Date = ' ||
7221: l_enrt_table(l_cnt).effective_start_date, 333);
7222: hr_utility.set_location('Reinstate the enrollment beneficiary rows',12);
7223: reinstate_pbn_per_pen(
7224: p_person_id => p_person_id
7225: ,p_bckdt_prtt_enrt_rslt_id
7226: => l_enrt_table(l_cnt).bckdt_prtt_enrt_rslt_id

Line 7314: hr_utility.set_location('Restoring the overriden result: ' ||

7310: for i in 1..l_enrt_table.last loop
7311: --
7312: if l_enrt_table(i).bckdt_enrt_ovridn_flag = 'Y' then
7313: --
7314: hr_utility.set_location('Restoring the overriden result: ' ||
7315: l_enrt_table(i).bckdt_prtt_enrt_rslt_id, 72);
7316: --
7317: -- Get the latest object version number as the post enrollment process
7318: -- may have updated the new enrt result.

Line 7346: hr_utility.set_location('Updating new prv: ' || l_rt_rec.new_prv_id ||

7342: for l_rt_rec in c_ovridn_rt(l_enrt_table(i).bckdt_prtt_enrt_rslt_id
7343: ,l_enrt_table(i).prtt_enrt_rslt_id )
7344: loop
7345: --
7346: hr_utility.set_location('Updating new prv: ' || l_rt_rec.new_prv_id ||
7347: ' with overriden prv_id: ' ||
7348: l_rt_rec.prtt_rt_val_id, 72);
7349: --
7350: ben_prtt_rt_val_api.update_prtt_rt_val

Line 7375: hr_utility.set_location('Updating new ecd with overriden ecd_id: ' ||

7371: ,l_enrt_table(i).prtt_enrt_rslt_id
7372: ,l_enrt_table(i).g_sys_date)
7373: loop
7374: --
7375: hr_utility.set_location('Updating new ecd with overriden ecd_id: ' ||
7376: l_dpnt_rec.elig_cvrd_dpnt_id, 72);
7377: --
7378: ben_elig_cvrd_dpnt_api.update_elig_cvrd_dpnt
7379: (p_elig_cvrd_dpnt_id => l_dpnt_rec.new_pdp_id

Line 7434: hr_utility.set_location ('Leaving '||l_proc,10);

7430: ,p_ler_id => null
7431: ,p_per_in_ler_id => p_per_in_ler_id
7432: );
7433: --
7434: hr_utility.set_location ('Leaving '||l_proc,10);
7435: --
7436: end reinstate_the_prev_enrt;
7437: --
7438: -- ----------------------------------------------------------------------------

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

7458:
7459: --
7460: begin
7461: --
7462: hr_utility.set_location ('Entering '||l_proc,10);
7463: --
7464: get_inter_pil_cnt (
7465: p_bckdt_per_in_ler_id => p_bckdt_per_in_ler_id,
7466: p_per_in_ler_id => p_per_in_ler_id,

Line 7477: hr_utility.set_location ('Entering Inter pil ='|| l_inter_pil_cnt , 4987);

7473: p_inter_pil_cnt => l_inter_pil_cnt,
7474: p_inter_pil_le_dt => l_inter_pil_le_dt,
7475: p_effective_date => p_effective_date);
7476: --
7477: hr_utility.set_location ('Entering Inter pil ='|| l_inter_pil_cnt , 4987);
7478: if l_inter_pil_cnt = 0
7479: then
7480: --
7481: -- No intervening pil's so need to check the backed out

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

7665: l_found boolean;
7666: --
7667: begin
7668: --
7669: hr_utility.set_location ('Entering '||l_proc,10);
7670: l_found := FALSE;
7671: --
7672: if nvl(p_bckdt_epe_row.pl_id, -1) = nvl(p_current_epe_row.pl_id, -1) and
7673: nvl(p_bckdt_epe_row.oipl_id, -1) = nvl(p_current_epe_row.oipl_id, -1) and

Line 7791: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);

7787: l_differ := 'Y';
7788: --
7789: end if; -- epe ckecks if statement
7790: --
7791: hr_utility.set_location('Leaving:' || l_differ || l_proc, 10);
7792: --
7793: return l_differ;
7794: --
7795: end comp_ori_new_epe;

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

7827: --
7828: --
7829: begin
7830: --
7831: hr_utility.set_location('Entering ' || l_proc,10);
7832: --
7833: l_bkd_penepe_counter := 0 ;
7834: l_bkd_pilepe_inst_table.delete ;
7835: l_bckdt_pen_table.delete ;

Line 7845: hr_utility.set_location('Inside BCKDT pen loop ' || l_proc,20);

7841: c_pgm_id => p_pgm_id,
7842: c_pl_id => p_pl_id ) loop
7843: --
7844: --
7845: hr_utility.set_location('Inside BCKDT pen loop ' || l_proc,20);
7846: --
7847: ben_reinstate_epe_cache.get_pilcobjepe_dets(
7848: p_per_in_ler_id => p_bckdt_per_in_ler_id
7849: ,p_pgm_id => l_bckdt_pen_rec.pgm_id

Line 7879: hr_utility.set_location ('Leaving '||l_proc,10);

7875: end loop;
7876: p_pilepe_inst_table := l_bkd_pilepe_inst_table ;
7877: p_bckdt_pen_table := l_bckdt_pen_table ;
7878: --
7879: hr_utility.set_location ('Leaving '||l_proc,10);
7880: --
7881: end get_backedout_results;
7882: --
7883: /**** NO LONGER USED.... NEEDS TO BE DELETED COMPLETD

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

7917: l_schema VARCHAR2(10);
7918: --
7919: begin
7920: --
7921: hr_utility.set_location ('Entering '||l_proc,10);
7922: --
7923: -- 9999 Remove it after complete test.
7924: -- bug 4615207 : added GHR product installation chk -Multiple Rate chk to be performed only for GHR
7925: IF (fnd_installation.get_app_info('GHR',l_dummy1, l_dummy2, l_schema)) THEN

Line 7931: hr_utility.set_location ('Multiple rate found and no reinstate done',11);

7927: fetch c_multiple_rate into l_dummy;
7928: if c_multiple_rate%found then
7929: close c_multiple_rate;
7930: -- Multiple rate is found and no reinstate
7931: hr_utility.set_location ('Multiple rate found and no reinstate done',11);
7932: return;
7933: end if;
7934: close c_multiple_rate;
7935:

Line 8013: hr_utility.set_location('Leaving:'|| l_proc, 10);

8009: p_effective_date => p_effective_date);
8010: --
8011: end if;
8012: --
8013: hr_utility.set_location('Leaving:'|| l_proc, 10);
8014: --
8015: end p_lf_evt_clps_restore_old;
8016: -- New reinstate Enrollment routine
8017: */

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

8331: /*End Bug 9538592*/
8332: --
8333: begin
8334: --
8335: hr_utility.set_location('Entering ' || l_proc,10);
8336: --
8337: open c_bckdt_pil;
8338: fetch c_bckdt_pil into l_bckdt_pil_prev_stat_cd, l_bckdt_pil_ovn, l_bckt_csd_per_in_ler_id;
8339: close c_bckdt_pil;

Line 8381: hr_utility.set_location('Inside BCKDT pen loop ' || l_proc,20);

8377: --
8378: -- If the enrollment record is valid for the current
8379: -- effective_date then recreate the enrollment.
8380: --
8381: hr_utility.set_location('Inside BCKDT pen loop ' || l_proc,20);
8382: --
8383: --
8384: l_bckt_csd_pen_esd := null;
8385: l_bckt_csd_pil_leod := null;

Line 8406: hr_utility.set_location('After epe fetch ' || l_proc,30);

8402: --
8403: --
8404: l_epe_pen_rec := p_epe_table(l_pen_record);
8405: --
8406: hr_utility.set_location('After epe fetch ' || l_proc,30);
8407: --
8408: g_sys_date := greatest(trunc(p_enrt_perd_strt_dt),
8409: nvl(nvl(l_bckt_csd_pen_esd, g_bckt_csd_lf_evt_ocrd_dt), hr_api.g_sot),
8410: l_bckdt_pen_rec.effective_start_date);

Line 8415: hr_utility.set_location('Date used to reinstate the enrollment = ' || g_sys_date, 333);

8411: --
8412: l_max_enrt_esd := greatest(g_sys_date, nvl(l_max_enrt_esd, hr_api.g_sot));
8413: --
8414: --
8415: hr_utility.set_location('Date used to reinstate the enrollment = ' || g_sys_date, 333);
8416: --
8417: if g_sys_date <= l_bckdt_pen_rec.effective_end_date
8418: then
8419: --

Line 8429: hr_utility.set_location('Inside bnft loop ' || l_proc,40);

8425: --
8426: open c_bnft(l_epe_pen_rec.elig_per_elctbl_chc_id,l_bckdt_pen_rec.bnft_ordr_num );
8427: loop
8428: --
8429: hr_utility.set_location('Inside bnft loop ' || l_proc,40);
8430: --Bug 3315323 we need to reinstate the previuos benefit amount for the case
8431: --of SAAEAR also as enb record may have null value there for first enrollment
8432: --or it may not be the right amount.
8433: --

Line 8466: hr_utility.set_location(l_proc,50);

8462: l_bnft_rec.val := l_bckdt_pen_rec.BNFT_AMT;
8463: --
8464: end if;
8465: end if;
8466: hr_utility.set_location(l_proc,50);
8467: close c_bnft;
8468: --
8469: for l_count in 1..10 loop
8470: --

Line 8486: hr_utility.set_location('Inside rate loop ' ||l_proc,50);

8482: for l_rec in c_rt(l_epe_pen_rec.elig_per_elctbl_chc_id,
8483: l_bnft_rec.enrt_bnft_id)
8484: loop
8485: --
8486: hr_utility.set_location('Inside rate loop ' ||l_proc,50);
8487: --
8488: -- Get the prtt rate val for this enrollment result.
8489: -- Use to pass to the enrollment process.
8490: --

Line 8494: hr_utility.set_location('enrt_rt_id : dflt_val : val : entr_val' ||

8490: --
8491: -- Bug : 1634870 : If the user not selected the rate before backout
8492: -- then do not pass it to the reinstate process.
8493: --
8494: hr_utility.set_location('enrt_rt_id : dflt_val : val : entr_val' ||
8495: '_at_enrt_flag : acty_base_rt_id : ' , 501);
8496: hr_utility.set_location(l_rec.enrt_rt_id || ' : ' || l_rec.dflt_val || ' : ' || l_rec.val || ' : '
8497: || l_rec.entr_val_at_enrt_flag || ' : ' ||
8498: l_rec.acty_base_rt_id, 501);

Line 8496: hr_utility.set_location(l_rec.enrt_rt_id || ' : ' || l_rec.dflt_val || ' : ' || l_rec.val || ' : '

8492: -- then do not pass it to the reinstate process.
8493: --
8494: hr_utility.set_location('enrt_rt_id : dflt_val : val : entr_val' ||
8495: '_at_enrt_flag : acty_base_rt_id : ' , 501);
8496: hr_utility.set_location(l_rec.enrt_rt_id || ' : ' || l_rec.dflt_val || ' : ' || l_rec.val || ' : '
8497: || l_rec.entr_val_at_enrt_flag || ' : ' ||
8498: l_rec.acty_base_rt_id, 501);
8499: --
8500: l_prv_rec := l_prv_rec_nulls;

Line 8507: hr_utility.set_location('prtt_rt_val_id : rt_val : ' ||

8503: fetch c_prv into l_prv_rec;
8504: if c_prv%found then -- l_prv_rec.prtt_rt_val_id is not null then
8505: --
8506: l_count := l_count+1;
8507: hr_utility.set_location('prtt_rt_val_id : rt_val : ' ||
8508: l_prv_rec.prtt_rt_val_id || ' : ' || l_prv_rec.rt_val
8509: || ' : ' || l_prv_rec.acty_base_rt_id , 502);
8510: l_rt_table(l_count).enrt_rt_id := l_rec.enrt_rt_id;
8511: if l_prv_rec.mlt_cd in ('CL','CVG','AP','PRNT','CLANDCVG','APANDCVG','PRNTANDCVG') then

Line 8561: hr_utility.set_location('Calling ben_election_information ' ||l_proc,60);

8557: l_enrt_cvg_strt_dt := l_bckdt_pen_rec.enrt_cvg_strt_dt ;
8558: end if ;
8559: -- 5746429 ends
8560: --
8561: hr_utility.set_location('Calling ben_election_information ' ||l_proc,60);
8562: hr_utility.set_location('Calling l_bnft_rec.val ' ||l_bnft_rec.val,60);
8563: hr_utility.set_location('Calling l_enrt_cvg_strt_dt ' ||l_enrt_cvg_strt_dt,60);
8564: --
8565:

Line 8562: hr_utility.set_location('Calling l_bnft_rec.val ' ||l_bnft_rec.val,60);

8558: end if ;
8559: -- 5746429 ends
8560: --
8561: hr_utility.set_location('Calling ben_election_information ' ||l_proc,60);
8562: hr_utility.set_location('Calling l_bnft_rec.val ' ||l_bnft_rec.val,60);
8563: hr_utility.set_location('Calling l_enrt_cvg_strt_dt ' ||l_enrt_cvg_strt_dt,60);
8564: --
8565:
8566: /*Added for Bug 7426609 */

Line 8563: hr_utility.set_location('Calling l_enrt_cvg_strt_dt ' ||l_enrt_cvg_strt_dt,60);

8559: -- 5746429 ends
8560: --
8561: hr_utility.set_location('Calling ben_election_information ' ||l_proc,60);
8562: hr_utility.set_location('Calling l_bnft_rec.val ' ||l_bnft_rec.val,60);
8563: hr_utility.set_location('Calling l_enrt_cvg_strt_dt ' ||l_enrt_cvg_strt_dt,60);
8564: --
8565:
8566: /*Added for Bug 7426609 */
8567: /* Get the old epe id of the Interim from the backed out pen records. */

Line 8568: hr_utility.set_location('Suspended Flag ' ||l_bckdt_pen_rec.SSPNDD_FLAG,60);

8564: --
8565:
8566: /*Added for Bug 7426609 */
8567: /* Get the old epe id of the Interim from the backed out pen records. */
8568: hr_utility.set_location('Suspended Flag ' ||l_bckdt_pen_rec.SSPNDD_FLAG,60);
8569: hr_utility.set_location('Interim Rslt Id ' ||l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID,60);
8570: hr_utility.set_location('P_per_in_ler_id ' ||p_per_in_ler_id,60);
8571:
8572:

Line 8569: hr_utility.set_location('Interim Rslt Id ' ||l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID,60);

8565:
8566: /*Added for Bug 7426609 */
8567: /* Get the old epe id of the Interim from the backed out pen records. */
8568: hr_utility.set_location('Suspended Flag ' ||l_bckdt_pen_rec.SSPNDD_FLAG,60);
8569: hr_utility.set_location('Interim Rslt Id ' ||l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID,60);
8570: hr_utility.set_location('P_per_in_ler_id ' ||p_per_in_ler_id,60);
8571:
8572:
8573: if(l_bckdt_pen_rec.SSPNDD_FLAG = 'Y' and l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID is not NULL) then

Line 8570: hr_utility.set_location('P_per_in_ler_id ' ||p_per_in_ler_id,60);

8566: /*Added for Bug 7426609 */
8567: /* Get the old epe id of the Interim from the backed out pen records. */
8568: hr_utility.set_location('Suspended Flag ' ||l_bckdt_pen_rec.SSPNDD_FLAG,60);
8569: hr_utility.set_location('Interim Rslt Id ' ||l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID,60);
8570: hr_utility.set_location('P_per_in_ler_id ' ||p_per_in_ler_id,60);
8571:
8572:
8573: if(l_bckdt_pen_rec.SSPNDD_FLAG = 'Y' and l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID is not NULL) then
8574: l_prev_pil_id := null;

Line 8594: hr_utility.set_location('Prev per_in_ler_id='||l_prev_pil_id,9995);

8590:
8591: open c_prev_pil;
8592: fetch c_prev_pil into l_prev_pil_id;
8593: close c_prev_pil;
8594: hr_utility.set_location('Prev per_in_ler_id='||l_prev_pil_id,9995);
8595:
8596: /* Get new and old suspended epe id */
8597: open c_get_epe_id(l_bckdt_pen_rec.prtt_enrt_rslt_id,l_bckdt_pen_rec.per_in_ler_id);
8598: fetch c_get_epe_id into l_susp_epe_id;

Line 8600: hr_utility.set_location('Old Susp_chc='||l_susp_epe_id,9995);

8596: /* Get new and old suspended epe id */
8597: open c_get_epe_id(l_bckdt_pen_rec.prtt_enrt_rslt_id,l_bckdt_pen_rec.per_in_ler_id);
8598: fetch c_get_epe_id into l_susp_epe_id;
8599: close c_get_epe_id;
8600: hr_utility.set_location('Old Susp_chc='||l_susp_epe_id,9995);
8601:
8602: open c_get_new_epe_id(l_susp_epe_id);
8603: fetch c_get_new_epe_id into l_new_susp_epe_id;
8604: close c_get_new_epe_id;

Line 8605: hr_utility.set_location('New Susp_chc='||l_new_susp_epe_id,9995);

8601:
8602: open c_get_new_epe_id(l_susp_epe_id);
8603: fetch c_get_new_epe_id into l_new_susp_epe_id;
8604: close c_get_new_epe_id;
8605: hr_utility.set_location('New Susp_chc='||l_new_susp_epe_id,9995);
8606:
8607: open c_interim_bnft(l_new_susp_epe_id);
8608: fetch c_interim_bnft into l_sus_bnft_amt;
8609: close c_interim_bnft;

Line 8614: hr_utility.set_location('Prev Susp_chc='||l_prev_pil_sus_epe_id,9995);

8610:
8611: open c_prev_pil_epe_id(l_new_susp_epe_id,l_prev_pil_id);
8612: fetch c_prev_pil_epe_id into l_prev_pil_sus_epe_id;
8613: close c_prev_pil_epe_id;
8614: hr_utility.set_location('Prev Susp_chc='||l_prev_pil_sus_epe_id,9995);
8615:
8616: if(l_prev_pil_sus_epe_id is not null) then
8617: open c_interim_bnft(l_prev_pil_sus_epe_id);
8618: fetch c_interim_bnft into l_prev_sus_bnft_amt,l_prev_sus_bnf_id;

Line 8620: hr_utility.set_location('Prev Susp bnft amt='||l_prev_sus_bnft_amt,9995);

8616: if(l_prev_pil_sus_epe_id is not null) then
8617: open c_interim_bnft(l_prev_pil_sus_epe_id);
8618: fetch c_interim_bnft into l_prev_sus_bnft_amt,l_prev_sus_bnf_id;
8619: close c_interim_bnft;
8620: hr_utility.set_location('Prev Susp bnft amt='||l_prev_sus_bnft_amt,9995);
8621: if( nvl(l_prev_sus_bnft_amt,-1) = nvl(l_sus_bnft_amt.bnft_amt,-1) ) then
8622:
8623: /* Get new and old interim epe id */
8624: open c_get_epe_id(l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID,l_bckdt_pen_rec.per_in_ler_id);

Line 8632: hr_utility.set_location('New interim_chc='||g_reinstate_interim_chc_id,9995);

8628: open c_get_new_epe_id(g_reinstate_interim_chc_id);
8629: fetch c_get_new_epe_id into l_interim_chc_id;
8630: close c_get_new_epe_id;
8631: g_reinstate_interim_chc_id := l_interim_chc_id;
8632: hr_utility.set_location('New interim_chc='||g_reinstate_interim_chc_id,9995);
8633:
8634: --Bug 14059090
8635: if l_interim_chc_id = l_new_susp_epe_id
8636: then

Line 8648: hr_utility.set_location('Prev epe id='||l_prev_pil_int_epe_id,9995);

8644:
8645: open c_prev_pil_epe_id(l_interim_chc_id,l_prev_pil_id);
8646: fetch c_prev_pil_epe_id into l_prev_pil_int_epe_id;
8647: close c_prev_pil_epe_id;
8648: hr_utility.set_location('Prev epe id='||l_prev_pil_int_epe_id,9995);
8649:
8650: if(l_prev_pil_int_epe_id is not null) then
8651: open c_interim_bnft(l_prev_pil_int_epe_id);
8652: fetch c_interim_bnft into l_prev_int_bnft_amt,l_prev_int_bnf_id;

Line 8654: hr_utility.set_location('Prev bnft amt='||l_prev_int_bnft_amt,9995);

8650: if(l_prev_pil_int_epe_id is not null) then
8651: open c_interim_bnft(l_prev_pil_int_epe_id);
8652: fetch c_interim_bnft into l_prev_int_bnft_amt,l_prev_int_bnf_id;
8653: close c_interim_bnft;
8654: hr_utility.set_location('Prev bnft amt='||l_prev_int_bnft_amt,9995);
8655: if( nvl(l_prev_int_bnft_amt,-1) = nvl(l_int_bnft_amt.bnft_amt,-1) ) then
8656: ben_lf_evt_clps_restore.g_reinstate_interim_flag := true;
8657: hr_utility.set_location('Value set to true ',9995);
8658: end if;

Line 8657: hr_utility.set_location('Value set to true ',9995);

8653: close c_interim_bnft;
8654: hr_utility.set_location('Prev bnft amt='||l_prev_int_bnft_amt,9995);
8655: if( nvl(l_prev_int_bnft_amt,-1) = nvl(l_int_bnft_amt.bnft_amt,-1) ) then
8656: ben_lf_evt_clps_restore.g_reinstate_interim_flag := true;
8657: hr_utility.set_location('Value set to true ',9995);
8658: end if;
8659: end if;
8660: l_susp_interim_same_epe := 'N'; --Bug 14059090
8661: end if;

Line 8663: hr_utility.set_location('Interim chc id ' ||g_reinstate_interim_chc_id,60);

8659: end if;
8660: l_susp_interim_same_epe := 'N'; --Bug 14059090
8661: end if;
8662: end if;
8663: hr_utility.set_location('Interim chc id ' ||g_reinstate_interim_chc_id,60);
8664: end if;
8665: /*Ended for Bug 7426609 */
8666: --
8667:

Line 8672: hr_utility.set_location('Inside if cond ',909);

8668: /* Bug 9538592:In a case where epe table has only one record for the plan and interim and suspended enrollments corresponds to same plan and opton,
8669: resinstating the enrollments of the backedout life event, pen_id in epe table is set with the suspended enrollment result of the previous life event.
8670: Set the pen_id to interim enrollment result*/
8671: if(l_bckdt_pen_rec.SSPNDD_FLAG <> 'Y') then
8672: hr_utility.set_location('Inside if cond ',909);
8673: open c_prev_pil;
8674: fetch c_prev_pil into l_prev_pil_id;
8675: close c_prev_pil;
8676: hr_utility.set_location('Prev per_in_ler_id='||l_prev_pil_id,909);

Line 8676: hr_utility.set_location('Prev per_in_ler_id='||l_prev_pil_id,909);

8672: hr_utility.set_location('Inside if cond ',909);
8673: open c_prev_pil;
8674: fetch c_prev_pil into l_prev_pil_id;
8675: close c_prev_pil;
8676: hr_utility.set_location('Prev per_in_ler_id='||l_prev_pil_id,909);
8677: open c_prev_pil_epe_id1(l_prev_pil_id,l_epe_pen_rec.elig_per_elctbl_chc_id);
8678: fetch c_prev_pil_epe_id1 into l_prev_pil_epe_id1;
8679: if(c_prev_pil_epe_id1%found and l_bnft_rec.val = l_prev_pil_epe_id1.bnft_amt) then
8680: hr_utility.set_location('Before updating epe ',909);

Line 8680: hr_utility.set_location('Before updating epe ',909);

8676: hr_utility.set_location('Prev per_in_ler_id='||l_prev_pil_id,909);
8677: open c_prev_pil_epe_id1(l_prev_pil_id,l_epe_pen_rec.elig_per_elctbl_chc_id);
8678: fetch c_prev_pil_epe_id1 into l_prev_pil_epe_id1;
8679: if(c_prev_pil_epe_id1%found and l_bnft_rec.val = l_prev_pil_epe_id1.bnft_amt) then
8680: hr_utility.set_location('Before updating epe ',909);
8681: hr_utility.set_location('prev pen_id '||l_prev_pil_epe_id1.prtt_enrt_rslt_id,909);
8682: ben_ELIG_PER_ELC_CHC_api.update_ELIG_PER_ELC_CHC
8683: (p_validate => FALSE
8684: ,p_elig_per_elctbl_chc_id => l_epe_pen_rec.elig_per_elctbl_chc_id

Line 8681: hr_utility.set_location('prev pen_id '||l_prev_pil_epe_id1.prtt_enrt_rslt_id,909);

8677: open c_prev_pil_epe_id1(l_prev_pil_id,l_epe_pen_rec.elig_per_elctbl_chc_id);
8678: fetch c_prev_pil_epe_id1 into l_prev_pil_epe_id1;
8679: if(c_prev_pil_epe_id1%found and l_bnft_rec.val = l_prev_pil_epe_id1.bnft_amt) then
8680: hr_utility.set_location('Before updating epe ',909);
8681: hr_utility.set_location('prev pen_id '||l_prev_pil_epe_id1.prtt_enrt_rslt_id,909);
8682: ben_ELIG_PER_ELC_CHC_api.update_ELIG_PER_ELC_CHC
8683: (p_validate => FALSE
8684: ,p_elig_per_elctbl_chc_id => l_epe_pen_rec.elig_per_elctbl_chc_id
8685: ,p_prtt_enrt_rslt_id => l_prev_pil_epe_id1.prtt_enrt_rslt_id

Line 8996: hr_utility.set_location('enrt mthd code'||l_pgm_table(l_inn_cnt).enrt_mthd_cd,43333);

8992: Check for explicit or default enrollments from l_enrt_table instead checking the code set at l_pgm_table level.
8993: For few customers Automatic enrollment record is picked up first for reinstatement and enrt_mthd_cd is set to 'A' at the
8994: program level. Becuase of this multi_rows_edit is not called even though default and explicit enrollments exist*/
8995: /*for l_inn_cnt in 1..l_pgm_table.last loop
8996: hr_utility.set_location('enrt mthd code'||l_pgm_table(l_inn_cnt).enrt_mthd_cd,43333);
8997: hr_utility.set_location('pgm_id '||l_pgm_table(l_inn_cnt).pgm_id,43333);
8998: if l_pgm_table(l_inn_cnt).pgm_id = l_pgm_table(l_cnt).pgm_id and
8999: l_pgm_table(l_inn_cnt).enrt_mthd_cd<>'A'
9000: then

Line 8997: hr_utility.set_location('pgm_id '||l_pgm_table(l_inn_cnt).pgm_id,43333);

8993: For few customers Automatic enrollment record is picked up first for reinstatement and enrt_mthd_cd is set to 'A' at the
8994: program level. Becuase of this multi_rows_edit is not called even though default and explicit enrollments exist*/
8995: /*for l_inn_cnt in 1..l_pgm_table.last loop
8996: hr_utility.set_location('enrt mthd code'||l_pgm_table(l_inn_cnt).enrt_mthd_cd,43333);
8997: hr_utility.set_location('pgm_id '||l_pgm_table(l_inn_cnt).pgm_id,43333);
8998: if l_pgm_table(l_inn_cnt).pgm_id = l_pgm_table(l_cnt).pgm_id and
8999: l_pgm_table(l_inn_cnt).enrt_mthd_cd<>'A'
9000: then
9001: l_found_non_automatics := TRUE;

Line 9007: hr_utility.set_location('enrt mthd code'||l_enrt_table(l_inn_cnt).enrt_mthd_cd,43333);

9003: end if;
9004: end loop;*/
9005: /* added for Bug 9045559*/
9006: for l_inn_cnt in 1..l_enrt_table.last loop
9007: hr_utility.set_location('enrt mthd code'||l_enrt_table(l_inn_cnt).enrt_mthd_cd,43333);
9008: hr_utility.set_location('pgm table pgm_id '||l_pgm_table(l_cnt).pgm_id,43333);
9009: hr_utility.set_location('enrt pgm_id '||l_enrt_table(l_inn_cnt).pgm_id,43333);
9010: if l_enrt_table(l_inn_cnt).pgm_id = l_pgm_table(l_cnt).pgm_id and
9011: l_enrt_table(l_inn_cnt).enrt_mthd_cd <> 'A'

Line 9008: hr_utility.set_location('pgm table pgm_id '||l_pgm_table(l_cnt).pgm_id,43333);

9004: end loop;*/
9005: /* added for Bug 9045559*/
9006: for l_inn_cnt in 1..l_enrt_table.last loop
9007: hr_utility.set_location('enrt mthd code'||l_enrt_table(l_inn_cnt).enrt_mthd_cd,43333);
9008: hr_utility.set_location('pgm table pgm_id '||l_pgm_table(l_cnt).pgm_id,43333);
9009: hr_utility.set_location('enrt pgm_id '||l_enrt_table(l_inn_cnt).pgm_id,43333);
9010: if l_enrt_table(l_inn_cnt).pgm_id = l_pgm_table(l_cnt).pgm_id and
9011: l_enrt_table(l_inn_cnt).enrt_mthd_cd <> 'A'
9012: then

Line 9009: hr_utility.set_location('enrt pgm_id '||l_enrt_table(l_inn_cnt).pgm_id,43333);

9005: /* added for Bug 9045559*/
9006: for l_inn_cnt in 1..l_enrt_table.last loop
9007: hr_utility.set_location('enrt mthd code'||l_enrt_table(l_inn_cnt).enrt_mthd_cd,43333);
9008: hr_utility.set_location('pgm table pgm_id '||l_pgm_table(l_cnt).pgm_id,43333);
9009: hr_utility.set_location('enrt pgm_id '||l_enrt_table(l_inn_cnt).pgm_id,43333);
9010: if l_enrt_table(l_inn_cnt).pgm_id = l_pgm_table(l_cnt).pgm_id and
9011: l_enrt_table(l_inn_cnt).enrt_mthd_cd <> 'A'
9012: then
9013: l_found_non_automatics := TRUE;

Line 9022: hr_utility.set_location('Date for multi row edits = ' ||

9018: end if;
9019: --
9020: if l_bckdt_pil_prev_stat_cd<>'STRTD' or
9021: l_found_non_automatics then
9022: hr_utility.set_location('Date for multi row edits = ' ||
9023: l_pgm_table(l_cnt).max_enrt_esd || ' ' || ' pgm = ' ||
9024: l_pgm_table(l_cnt).pgm_id, 333);
9025: ben_prtt_enrt_result_api.multi_rows_edit
9026: (p_person_id => p_person_id,

Line 9045: hr_utility.set_location ('Leaving '||l_proc,10);

9041: p_pl_table := l_pl_table ;
9042: p_enrt_table := l_enrt_table ;
9043: p_max_enrt_esd := l_max_enrt_esd ;
9044: --
9045: hr_utility.set_location ('Leaving '||l_proc,10);
9046: --
9047: end reinstate_prev_enrt_for_popl ;
9048: --
9049: procedure reinstate_post_enrt(

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

9132: and pen_int_bckdt.bkup_tbl_typ_cd like 'BEN_PRTT_ENRT_RSLT%');
9133: --
9134: begin
9135: --
9136: hr_utility.set_location ('Entering '||l_proc,10);
9137: hr_utility.set_location ('p_max_enrt_esd '||p_max_enrt_esd,10);
9138:
9139: /* Bug Bug 10072439 */
9140: open c_chk_web_enrt_exists;

Line 9137: hr_utility.set_location ('p_max_enrt_esd '||p_max_enrt_esd,10);

9133: --
9134: begin
9135: --
9136: hr_utility.set_location ('Entering '||l_proc,10);
9137: hr_utility.set_location ('p_max_enrt_esd '||p_max_enrt_esd,10);
9138:
9139: /* Bug Bug 10072439 */
9140: open c_chk_web_enrt_exists;
9141: fetch c_chk_web_enrt_exists into l_comm_exists;

Line 9143: hr_utility.set_location ('Web Enrollment found ',10);

9139: /* Bug Bug 10072439 */
9140: open c_chk_web_enrt_exists;
9141: fetch c_chk_web_enrt_exists into l_comm_exists;
9142: if(c_chk_web_enrt_exists%found) then
9143: hr_utility.set_location ('Web Enrollment found ',10);
9144: l_comm_exists := 'Y';
9145: else
9146: hr_utility.set_location ('Web Enrollment not found ',10);
9147: l_comm_exists := 'N';

Line 9146: hr_utility.set_location ('Web Enrollment not found ',10);

9142: if(c_chk_web_enrt_exists%found) then
9143: hr_utility.set_location ('Web Enrollment found ',10);
9144: l_comm_exists := 'Y';
9145: else
9146: hr_utility.set_location ('Web Enrollment not found ',10);
9147: l_comm_exists := 'N';
9148: end if;
9149: close c_chk_web_enrt_exists;
9150: /* End of Bug 10072439*/

Line 9213: hr_utility.set_location('enrt mthd code'||p_enrt_table(l_enrt_cnt).enrt_mthd_cd,43333);

9209: --
9210: l_enrt_mthd_cd := p_pgm_table(l_cnt).enrt_mthd_cd;
9211: --
9212: for l_enrt_cnt in 1..p_enrt_table.last loop
9213: hr_utility.set_location('enrt mthd code'||p_enrt_table(l_enrt_cnt).enrt_mthd_cd,43333);
9214: --
9215: if p_enrt_table(l_enrt_cnt).pgm_id = p_pgm_table(l_cnt).pgm_id and
9216: p_enrt_table(l_enrt_cnt).enrt_mthd_cd = 'E' then
9217: l_enrt_mthd_cd := p_enrt_table(l_enrt_cnt).enrt_mthd_cd;

Line 9224: hr_utility.set_location('enrt mthd cd ' || p_pgm_table(l_cnt).enrt_mthd_cd, 310);

9220: end loop;
9221: --
9222: -- end 9575477
9223: --
9224: hr_utility.set_location('enrt mthd cd ' || p_pgm_table(l_cnt).enrt_mthd_cd, 310);
9225: ben_proc_common_enrt_rslt.process_post_enrollment
9226: (p_per_in_ler_id => p_per_in_ler_id,
9227: p_pgm_id => p_pgm_table(l_cnt).pgm_id,
9228: p_pl_id => null,

Line 9247: hr_utility.set_location('Date = ' || p_pl_table(l_cnt).max_enrt_esd, 333);

9243: for l_cnt in 1..p_pl_table.LAST loop
9244: --
9245: -- Invoke post result process
9246: --
9247: hr_utility.set_location('Date = ' || p_pl_table(l_cnt).max_enrt_esd, 333);
9248: hr_utility.set_location('PL = ' || p_pl_table(l_cnt).pl_id, 333);
9249: --
9250: -- Bug 5623259.
9251: --

Line 9248: hr_utility.set_location('PL = ' || p_pl_table(l_cnt).pl_id, 333);

9244: --
9245: -- Invoke post result process
9246: --
9247: hr_utility.set_location('Date = ' || p_pl_table(l_cnt).max_enrt_esd, 333);
9248: hr_utility.set_location('PL = ' || p_pl_table(l_cnt).pl_id, 333);
9249: --
9250: -- Bug 5623259.
9251: --
9252: /*Bug 10072439: Added If..Else condition. If

Line 9299: hr_utility.set_location('Enrt Date = ' ||

9295: for l_cnt in 1..p_enrt_table.LAST loop
9296: --
9297: -- Reinstate the enrollment beneficiary rows.
9298: --
9299: hr_utility.set_location('Enrt Date = ' ||
9300: p_enrt_table(l_cnt).effective_start_date, 333);
9301: hr_utility.set_location('Reinstate the enrollment beneficiary rows',13);
9302: reinstate_pbn_per_pen(
9303: p_person_id => p_person_id

Line 9301: hr_utility.set_location('Reinstate the enrollment beneficiary rows',13);

9297: -- Reinstate the enrollment beneficiary rows.
9298: --
9299: hr_utility.set_location('Enrt Date = ' ||
9300: p_enrt_table(l_cnt).effective_start_date, 333);
9301: hr_utility.set_location('Reinstate the enrollment beneficiary rows',13);
9302: reinstate_pbn_per_pen(
9303: p_person_id => p_person_id
9304: ,p_bckdt_prtt_enrt_rslt_id
9305: => p_enrt_table(l_cnt).bckdt_prtt_enrt_rslt_id

Line 9321: hr_utility.set_location('Reinstating interim enrollment beneficiary rows',13);

9317: if(p_enrt_table(l_cnt).bckdt_sspndd_flag = 'Y') then
9318: for int_bnf in c_interim_enrt(p_enrt_table(l_cnt).prtt_enrt_rslt_id,
9319: p_enrt_table(l_cnt).bckdt_prtt_enrt_rslt_id,
9320: p_bckdt_per_in_ler_id ) loop
9321: hr_utility.set_location('Reinstating interim enrollment beneficiary rows',13);
9322: hr_utility.set_location('int_bnf.prtt_enrt_rslt_id '||int_bnf.prtt_enrt_rslt_id,13);
9323: hr_utility.set_location('bckdt int id '||p_enrt_table(l_cnt).bckdt_RPLCS_SSPNDD_RSLT_ID,13);
9324: reinstate_pbn_per_pen(
9325: p_person_id => p_person_id

Line 9322: hr_utility.set_location('int_bnf.prtt_enrt_rslt_id '||int_bnf.prtt_enrt_rslt_id,13);

9318: for int_bnf in c_interim_enrt(p_enrt_table(l_cnt).prtt_enrt_rslt_id,
9319: p_enrt_table(l_cnt).bckdt_prtt_enrt_rslt_id,
9320: p_bckdt_per_in_ler_id ) loop
9321: hr_utility.set_location('Reinstating interim enrollment beneficiary rows',13);
9322: hr_utility.set_location('int_bnf.prtt_enrt_rslt_id '||int_bnf.prtt_enrt_rslt_id,13);
9323: hr_utility.set_location('bckdt int id '||p_enrt_table(l_cnt).bckdt_RPLCS_SSPNDD_RSLT_ID,13);
9324: reinstate_pbn_per_pen(
9325: p_person_id => p_person_id
9326: ,p_bckdt_prtt_enrt_rslt_id

Line 9323: hr_utility.set_location('bckdt int id '||p_enrt_table(l_cnt).bckdt_RPLCS_SSPNDD_RSLT_ID,13);

9319: p_enrt_table(l_cnt).bckdt_prtt_enrt_rslt_id,
9320: p_bckdt_per_in_ler_id ) loop
9321: hr_utility.set_location('Reinstating interim enrollment beneficiary rows',13);
9322: hr_utility.set_location('int_bnf.prtt_enrt_rslt_id '||int_bnf.prtt_enrt_rslt_id,13);
9323: hr_utility.set_location('bckdt int id '||p_enrt_table(l_cnt).bckdt_RPLCS_SSPNDD_RSLT_ID,13);
9324: reinstate_pbn_per_pen(
9325: p_person_id => p_person_id
9326: ,p_bckdt_prtt_enrt_rslt_id
9327: => p_enrt_table(l_cnt).bckdt_RPLCS_SSPNDD_RSLT_ID

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

9575: l_rate_flex_ovrrd_exists varchar2(30):= 'N';
9576: --
9577: begin
9578: --
9579: hr_utility.set_location ('Entering '||l_proc,10);
9580: -- If any of the backed out enrt rslts were overriden, then update the new
9581: -- rslts with the overriden data.
9582: --
9583: if nvl(p_enrt_table.last, 0) > 0 then

Line 9595: hr_utility.set_location('p_per_in_ler_id '||p_per_in_ler_id,178);

9591: ,p_pl_id => p_enrt_table(i).old_pl_id
9592: ,p_oipl_id => p_enrt_table(i).old_oipl_id
9593: );
9594: --
9595: hr_utility.set_location('p_per_in_ler_id '||p_per_in_ler_id,178);
9596: hr_utility.set_location('p_enrt_table(i).pgm_id '||p_enrt_table(i).pgm_id,178);
9597: hr_utility.set_location('p_enrt_table(i).new_pl_id '||p_enrt_table(i).new_pl_id,178);
9598: hr_utility.set_location('l_pgm_id '||l_pgm_id,178);
9599: hr_utility.set_location('l_pl_id '||l_pl_id,178);

Line 9596: hr_utility.set_location('p_enrt_table(i).pgm_id '||p_enrt_table(i).pgm_id,178);

9592: ,p_oipl_id => p_enrt_table(i).old_oipl_id
9593: );
9594: --
9595: hr_utility.set_location('p_per_in_ler_id '||p_per_in_ler_id,178);
9596: hr_utility.set_location('p_enrt_table(i).pgm_id '||p_enrt_table(i).pgm_id,178);
9597: hr_utility.set_location('p_enrt_table(i).new_pl_id '||p_enrt_table(i).new_pl_id,178);
9598: hr_utility.set_location('l_pgm_id '||l_pgm_id,178);
9599: hr_utility.set_location('l_pl_id '||l_pl_id,178);
9600: --

Line 9597: hr_utility.set_location('p_enrt_table(i).new_pl_id '||p_enrt_table(i).new_pl_id,178);

9593: );
9594: --
9595: hr_utility.set_location('p_per_in_ler_id '||p_per_in_ler_id,178);
9596: hr_utility.set_location('p_enrt_table(i).pgm_id '||p_enrt_table(i).pgm_id,178);
9597: hr_utility.set_location('p_enrt_table(i).new_pl_id '||p_enrt_table(i).new_pl_id,178);
9598: hr_utility.set_location('l_pgm_id '||l_pgm_id,178);
9599: hr_utility.set_location('l_pl_id '||l_pl_id,178);
9600: --
9601: if l_pgm_id <> nvl(p_enrt_table(i).pgm_id,l_pgm_id) or

Line 9598: hr_utility.set_location('l_pgm_id '||l_pgm_id,178);

9594: --
9595: hr_utility.set_location('p_per_in_ler_id '||p_per_in_ler_id,178);
9596: hr_utility.set_location('p_enrt_table(i).pgm_id '||p_enrt_table(i).pgm_id,178);
9597: hr_utility.set_location('p_enrt_table(i).new_pl_id '||p_enrt_table(i).new_pl_id,178);
9598: hr_utility.set_location('l_pgm_id '||l_pgm_id,178);
9599: hr_utility.set_location('l_pl_id '||l_pl_id,178);
9600: --
9601: if l_pgm_id <> nvl(p_enrt_table(i).pgm_id,l_pgm_id) or
9602: l_pl_id <> nvl(p_enrt_table(i).new_pl_id,l_pl_id)

Line 9599: hr_utility.set_location('l_pl_id '||l_pl_id,178);

9595: hr_utility.set_location('p_per_in_ler_id '||p_per_in_ler_id,178);
9596: hr_utility.set_location('p_enrt_table(i).pgm_id '||p_enrt_table(i).pgm_id,178);
9597: hr_utility.set_location('p_enrt_table(i).new_pl_id '||p_enrt_table(i).new_pl_id,178);
9598: hr_utility.set_location('l_pgm_id '||l_pgm_id,178);
9599: hr_utility.set_location('l_pl_id '||l_pl_id,178);
9600: --
9601: if l_pgm_id <> nvl(p_enrt_table(i).pgm_id,l_pgm_id) or
9602: l_pl_id <> nvl(p_enrt_table(i).new_pl_id,l_pl_id)
9603: then

Line 9613: hr_utility.set_location('l_pgm_id '||l_pgm_id,168);

9609: l_pl_id := l_pel.pl_id; -- p_enrt_table(i).new_pl_id ;
9610: l_reinstate_cd := l_pel.reinstate_cd;
9611: l_reinstate_ovrdn_cd := l_pel.reinstate_ovrdn_cd;
9612: --
9613: hr_utility.set_location('l_pgm_id '||l_pgm_id,168);
9614: hr_utility.set_location('l_pl_id '||l_pl_id,168);
9615: --
9616: close c_pel;
9617: --

Line 9614: hr_utility.set_location('l_pl_id '||l_pl_id,168);

9610: l_reinstate_cd := l_pel.reinstate_cd;
9611: l_reinstate_ovrdn_cd := l_pel.reinstate_ovrdn_cd;
9612: --
9613: hr_utility.set_location('l_pgm_id '||l_pgm_id,168);
9614: hr_utility.set_location('l_pl_id '||l_pl_id,168);
9615: --
9616: close c_pel;
9617: --
9618: end if;

Line 9622: --hr_utility.set_location('l_pl_id '||l_pl_id,199);

9618: end if;
9619: --
9620: --Check if the program is a flex credits one.
9621: --
9622: --hr_utility.set_location('l_pl_id '||l_pl_id,199);
9623: --hr_utility.set_location('p_enrt_table(i).new_pl_id '||p_enrt_table(i).new_pl_id,199);
9624: --hr_utility.set_location('p_enrt_table(i).pgm_id '||p_enrt_table(i).pgm_id,199);
9625: --hr_utility.set_location('l_pgm_id '||l_pgm_id,199);
9626: --hr_utility.set_location('p_enrt_table(i).g_sys_date '||p_enrt_table(i).g_sys_date,199);

Line 9623: --hr_utility.set_location('p_enrt_table(i).new_pl_id '||p_enrt_table(i).new_pl_id,199);

9619: --
9620: --Check if the program is a flex credits one.
9621: --
9622: --hr_utility.set_location('l_pl_id '||l_pl_id,199);
9623: --hr_utility.set_location('p_enrt_table(i).new_pl_id '||p_enrt_table(i).new_pl_id,199);
9624: --hr_utility.set_location('p_enrt_table(i).pgm_id '||p_enrt_table(i).pgm_id,199);
9625: --hr_utility.set_location('l_pgm_id '||l_pgm_id,199);
9626: --hr_utility.set_location('p_enrt_table(i).g_sys_date '||p_enrt_table(i).g_sys_date,199);
9627: --

Line 9624: --hr_utility.set_location('p_enrt_table(i).pgm_id '||p_enrt_table(i).pgm_id,199);

9620: --Check if the program is a flex credits one.
9621: --
9622: --hr_utility.set_location('l_pl_id '||l_pl_id,199);
9623: --hr_utility.set_location('p_enrt_table(i).new_pl_id '||p_enrt_table(i).new_pl_id,199);
9624: --hr_utility.set_location('p_enrt_table(i).pgm_id '||p_enrt_table(i).pgm_id,199);
9625: --hr_utility.set_location('l_pgm_id '||l_pgm_id,199);
9626: --hr_utility.set_location('p_enrt_table(i).g_sys_date '||p_enrt_table(i).g_sys_date,199);
9627: --
9628: open c_flx_pgm(p_enrt_table(i).pgm_id,p_enrt_table(i).g_sys_date );

Line 9625: --hr_utility.set_location('l_pgm_id '||l_pgm_id,199);

9621: --
9622: --hr_utility.set_location('l_pl_id '||l_pl_id,199);
9623: --hr_utility.set_location('p_enrt_table(i).new_pl_id '||p_enrt_table(i).new_pl_id,199);
9624: --hr_utility.set_location('p_enrt_table(i).pgm_id '||p_enrt_table(i).pgm_id,199);
9625: --hr_utility.set_location('l_pgm_id '||l_pgm_id,199);
9626: --hr_utility.set_location('p_enrt_table(i).g_sys_date '||p_enrt_table(i).g_sys_date,199);
9627: --
9628: open c_flx_pgm(p_enrt_table(i).pgm_id,p_enrt_table(i).g_sys_date );
9629: fetch c_flx_pgm into l_flex_program_flag ;

Line 9626: --hr_utility.set_location('p_enrt_table(i).g_sys_date '||p_enrt_table(i).g_sys_date,199);

9622: --hr_utility.set_location('l_pl_id '||l_pl_id,199);
9623: --hr_utility.set_location('p_enrt_table(i).new_pl_id '||p_enrt_table(i).new_pl_id,199);
9624: --hr_utility.set_location('p_enrt_table(i).pgm_id '||p_enrt_table(i).pgm_id,199);
9625: --hr_utility.set_location('l_pgm_id '||l_pgm_id,199);
9626: --hr_utility.set_location('p_enrt_table(i).g_sys_date '||p_enrt_table(i).g_sys_date,199);
9627: --
9628: open c_flx_pgm(p_enrt_table(i).pgm_id,p_enrt_table(i).g_sys_date );
9629: fetch c_flx_pgm into l_flex_program_flag ;
9630: close c_flx_pgm ;

Line 9642: hr_utility.set_location('Restoring the overriden result: ' ||

9638: end if;
9639: --
9640: if p_enrt_table(i).bckdt_enrt_ovridn_flag = 'Y' then
9641: --
9642: hr_utility.set_location('Restoring the overriden result: ' ||
9643: p_enrt_table(i).bckdt_prtt_enrt_rslt_id, 72);
9644: -- 9999Why we are not updating the override thru date and
9645: -- and all other information on pen record which can be overriden ?
9646: -- Get the latest object version number as the post enrollment process

Line 9680: hr_utility.set_location('Updating new prv: ' || l_rt_rec.new_prv_id ||

9676: for l_rt_rec in c_ovridn_rt(p_enrt_table(i).bckdt_prtt_enrt_rslt_id
9677: ,p_enrt_table(i).prtt_enrt_rslt_id )
9678: loop
9679: --
9680: hr_utility.set_location('Updating new prv: ' || l_rt_rec.new_prv_id ||
9681: ' with overriden prv_id: ' || l_rt_rec.prtt_rt_val_id, 72);
9682: --
9683: if l_reinstate_cd = 'VALIDATE_RESULT' and
9684: l_reinstate_ovrdn_cd = 'OVERRIDE_IF_NO_CHANGE' then

Line 9706: hr_utility.set_location('l_epe_ecr_differ '||l_epe_ecr_differ,20);

9702: ,p_curr_epe_id => l_elig_per_elctbl_chc_id
9703: ,p_bckdt_epe_id => l_bckdt_epe_id
9704: );
9705: --
9706: hr_utility.set_location('l_epe_ecr_differ '||l_epe_ecr_differ,20);
9707: if l_epe_ecr_differ = 'Y' then
9708: l_override := 'N';
9709: end if;
9710: --

Line 9734: hr_utility.set_location('l_enb_ecr_differ '||l_enb_ecr_differ,20);

9730: ,p_curr_enb_id => l_enrt_bnft_id
9731: ,p_bckdt_enb_id => l_bckdt_enrt_bnft_id
9732: );
9733: --
9734: hr_utility.set_location('l_enb_ecr_differ '||l_enb_ecr_differ,20);
9735: --
9736: if l_enb_ecr_differ = 'Y' then
9737: l_override := 'N';
9738: end if;

Line 9745: hr_utility.set_location(' l_override '||l_override,199);

9741: end if;
9742: --
9743: end if;
9744: --
9745: hr_utility.set_location(' l_override '||l_override,199);
9746: --
9747: if l_override = 'Y' then
9748: --
9749: l_rate_flex_ovrrd_exists := 'Y';

Line 9769: hr_utility.set_location(' l_flex_program_flag '||l_flex_program_flag,199);

9765: --
9766: --Call Override Routines for flex credits
9767: --Bug 4384574 we need to handle the ledger entries also when the rates are
9768: --overriden
9769: hr_utility.set_location(' l_flex_program_flag '||l_flex_program_flag,199);
9770: hr_utility.set_location(' l_flex_prtt_enrt_rslt_id '||l_flex_prtt_enrt_rslt_id,199);
9771: --
9772: if l_flex_program_flag = 'Y' and l_flex_prtt_enrt_rslt_id is not null then
9773: --

Line 9770: hr_utility.set_location(' l_flex_prtt_enrt_rslt_id '||l_flex_prtt_enrt_rslt_id,199);

9766: --Call Override Routines for flex credits
9767: --Bug 4384574 we need to handle the ledger entries also when the rates are
9768: --overriden
9769: hr_utility.set_location(' l_flex_program_flag '||l_flex_program_flag,199);
9770: hr_utility.set_location(' l_flex_prtt_enrt_rslt_id '||l_flex_prtt_enrt_rslt_id,199);
9771: --
9772: if l_flex_program_flag = 'Y' and l_flex_prtt_enrt_rslt_id is not null then
9773: --
9774: open c_abp(l_rt_rec.acty_base_rt_id,p_enrt_table(i).pgm_id,p_enrt_table(i).g_sys_date) ;

Line 9776: hr_utility.set_location(' l_bnft_prvdr_pool_id '||l_bnft_prvdr_pool_id,199);

9772: if l_flex_program_flag = 'Y' and l_flex_prtt_enrt_rslt_id is not null then
9773: --
9774: open c_abp(l_rt_rec.acty_base_rt_id,p_enrt_table(i).pgm_id,p_enrt_table(i).g_sys_date) ;
9775: fetch c_abp into l_bnft_prvdr_pool_id ;
9776: hr_utility.set_location(' l_bnft_prvdr_pool_id '||l_bnft_prvdr_pool_id,199);
9777: --
9778: if c_abp%found then
9779: --
9780: ben_manage_override.override_debit_ledger_entry

Line 9814: hr_utility.set_location('Updating new ecd with overriden ecd_id: ' ||

9810: ,p_enrt_table(i).prtt_enrt_rslt_id
9811: ,p_enrt_table(i).g_sys_date)
9812: loop
9813: --
9814: hr_utility.set_location('Updating new ecd with overriden ecd_id: ' ||
9815: l_dpnt_rec.elig_cvrd_dpnt_id, 72);
9816: --
9817: ben_elig_cvrd_dpnt_api.update_elig_cvrd_dpnt
9818: (p_elig_cvrd_dpnt_id => l_dpnt_rec.new_pdp_id

Line 9840: hr_utility.set_location('p_pgm_table(l_cnt).pgm_id '||p_pgm_table(l_cnt).pgm_id,166);

9836: --
9837: if l_rate_flex_ovrrd_exists = 'Y' and nvl(p_pgm_table.LAST, 0) > 0 then
9838: for l_cnt in 1..p_pgm_table.LAST loop
9839: --
9840: hr_utility.set_location('p_pgm_table(l_cnt).pgm_id '||p_pgm_table(l_cnt).pgm_id,166);
9841: hr_utility.set_location('p_pgm_table(l_cnt).max_enrt_esd '||p_pgm_table(l_cnt).max_enrt_esd,166);
9842: --
9843: l_flex_prtt_enrt_rslt_id:= null;
9844: l_flex_elig_per_elctbl_chc_id:=null;

Line 9841: hr_utility.set_location('p_pgm_table(l_cnt).max_enrt_esd '||p_pgm_table(l_cnt).max_enrt_esd,166);

9837: if l_rate_flex_ovrrd_exists = 'Y' and nvl(p_pgm_table.LAST, 0) > 0 then
9838: for l_cnt in 1..p_pgm_table.LAST loop
9839: --
9840: hr_utility.set_location('p_pgm_table(l_cnt).pgm_id '||p_pgm_table(l_cnt).pgm_id,166);
9841: hr_utility.set_location('p_pgm_table(l_cnt).max_enrt_esd '||p_pgm_table(l_cnt).max_enrt_esd,166);
9842: --
9843: l_flex_prtt_enrt_rslt_id:= null;
9844: l_flex_elig_per_elctbl_chc_id:=null;
9845: l_flex_pgm_id:=null;

Line 9914: hr_utility.set_location ('Leaving '||l_proc,10);

9910: end if;
9911: --
9912: end if;
9913: --
9914: hr_utility.set_location ('Leaving '||l_proc,10);
9915: --
9916: end reinstate_override;
9917: -- ----------------------------------------------------------------------------
9918: -- |------------------------< p_lf_evt_clps_restore_new >-------------------------|

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

10170: l_ele_date date;
10171:
10172: begin
10173: --
10174: hr_utility.set_location ('Entering '||l_proc,10);
10175: hr_utility.set_location('p_bckdt_per_in_ler_id '||p_bckdt_per_in_ler_id,30);
10176: --
10177: -- Remove it after complete test.
10178: --

Line 10175: hr_utility.set_location('p_bckdt_per_in_ler_id '||p_bckdt_per_in_ler_id,30);

10171:
10172: begin
10173: --
10174: hr_utility.set_location ('Entering '||l_proc,10);
10175: hr_utility.set_location('p_bckdt_per_in_ler_id '||p_bckdt_per_in_ler_id,30);
10176: --
10177: -- Remove it after complete test.
10178: --
10179: g_dflt_during_reinstate := 'N';

Line 10191: hr_utility.set_location ('Multiple rate found and no reinstate done',11);

10187: fetch c_multiple_rate into l_dummy;
10188: if c_multiple_rate%found then
10189: close c_multiple_rate;
10190: -- Multiple rate is found and no reinstate
10191: hr_utility.set_location ('Multiple rate found and no reinstate done',11);
10192: return;
10193: end if;
10194: close c_multiple_rate;
10195: end if; --if l_status

Line 10231: --hr_utility.set_location ('l_int_rslts_exist_flag '||l_int_rslts_exist_flag,15);

10227: p_business_group_id => p_business_group_id,
10228: p_effective_date => p_effective_date
10229: ); */
10230: --
10231: --hr_utility.set_location ('l_int_rslts_exist_flag '||l_int_rslts_exist_flag,15);
10232: --
10233: l_invalid_count := 0;
10234: l_invalid_pen_table.delete;
10235: l_invalid_epe_table.delete;

Line 10265: hr_utility.set_location ('l_int_rslts_exist_flag '||l_int_rslts_exist_flag,15);

10261: p_effective_date => p_effective_date,
10262: p_reinstate_cd => r_pel.reinstate_cd
10263: );
10264:
10265: hr_utility.set_location ('l_int_rslts_exist_flag '||l_int_rslts_exist_flag,15);
10266: --
10267: hr_utility.set_location ('r_pel.pgm_id :'||r_pel.pgm_id,20);
10268: hr_utility.set_location ('r_pel.pl_id :'||r_pel.pl_id,20);
10269: hr_utility.set_location ('r_pel.reinstate_cd :'||r_pel.reinstate_cd,20);

Line 10267: hr_utility.set_location ('r_pel.pgm_id :'||r_pel.pgm_id,20);

10263: );
10264:
10265: hr_utility.set_location ('l_int_rslts_exist_flag '||l_int_rslts_exist_flag,15);
10266: --
10267: hr_utility.set_location ('r_pel.pgm_id :'||r_pel.pgm_id,20);
10268: hr_utility.set_location ('r_pel.pl_id :'||r_pel.pl_id,20);
10269: hr_utility.set_location ('r_pel.reinstate_cd :'||r_pel.reinstate_cd,20);
10270: --
10271: if l_int_rslts_exist_flag = 'Y' then

Line 10268: hr_utility.set_location ('r_pel.pl_id :'||r_pel.pl_id,20);

10264:
10265: hr_utility.set_location ('l_int_rslts_exist_flag '||l_int_rslts_exist_flag,15);
10266: --
10267: hr_utility.set_location ('r_pel.pgm_id :'||r_pel.pgm_id,20);
10268: hr_utility.set_location ('r_pel.pl_id :'||r_pel.pl_id,20);
10269: hr_utility.set_location ('r_pel.reinstate_cd :'||r_pel.reinstate_cd,20);
10270: --
10271: if l_int_rslts_exist_flag = 'Y' then
10272: if r_pel.reinstate_cd = 'DONOT_REINSTATE' then

Line 10269: hr_utility.set_location ('r_pel.reinstate_cd :'||r_pel.reinstate_cd,20);

10265: hr_utility.set_location ('l_int_rslts_exist_flag '||l_int_rslts_exist_flag,15);
10266: --
10267: hr_utility.set_location ('r_pel.pgm_id :'||r_pel.pgm_id,20);
10268: hr_utility.set_location ('r_pel.pl_id :'||r_pel.pl_id,20);
10269: hr_utility.set_location ('r_pel.reinstate_cd :'||r_pel.reinstate_cd,20);
10270: --
10271: if l_int_rslts_exist_flag = 'Y' then
10272: if r_pel.reinstate_cd = 'DONOT_REINSTATE' then
10273: --

Line 10274: hr_utility.set_location('reinstate_cd '||r_pel.reinstate_cd,30);

10270: --
10271: if l_int_rslts_exist_flag = 'Y' then
10272: if r_pel.reinstate_cd = 'DONOT_REINSTATE' then
10273: --
10274: hr_utility.set_location('reinstate_cd '||r_pel.reinstate_cd,30);
10275: hr_utility.set_location('Leaving:'|| l_proc, 30);
10276: exit ;
10277: --
10278:

Line 10275: hr_utility.set_location('Leaving:'|| l_proc, 30);

10271: if l_int_rslts_exist_flag = 'Y' then
10272: if r_pel.reinstate_cd = 'DONOT_REINSTATE' then
10273: --
10274: hr_utility.set_location('reinstate_cd '||r_pel.reinstate_cd,30);
10275: hr_utility.set_location('Leaving:'|| l_proc, 30);
10276: exit ;
10277: --
10278:
10279: /* Added for Enhancement Bug :8716679 */

Line 10282: hr_utility.set_location('reinstate_cd '||r_pel.reinstate_cd,30);

10278:
10279: /* Added for Enhancement Bug :8716679 */
10280: elsif r_pel.reinstate_cd = 'VALIDATE_EXPLICIT_ENRT' then
10281:
10282: hr_utility.set_location('reinstate_cd '||r_pel.reinstate_cd,30);
10283: hr_utility.set_location('p_bckdt_per_in_ler_id '||p_bckdt_per_in_ler_id,30);
10284: l_default := 'N';
10285: l_reinstate_def := 'Y';
10286:

Line 10283: hr_utility.set_location('p_bckdt_per_in_ler_id '||p_bckdt_per_in_ler_id,30);

10279: /* Added for Enhancement Bug :8716679 */
10280: elsif r_pel.reinstate_cd = 'VALIDATE_EXPLICIT_ENRT' then
10281:
10282: hr_utility.set_location('reinstate_cd '||r_pel.reinstate_cd,30);
10283: hr_utility.set_location('p_bckdt_per_in_ler_id '||p_bckdt_per_in_ler_id,30);
10284: l_default := 'N';
10285: l_reinstate_def := 'Y';
10286:
10287: /* Get the per_in_ler_id of the Intervening LE*/

Line 10291: hr_utility.set_location('l_int_pil_id '||l_int_pil_id,30);

10287: /* Get the per_in_ler_id of the Intervening LE*/
10288: open c_int_pil_id;
10289: fetch c_int_pil_id into l_int_pil_id;
10290: close c_int_pil_id;
10291: hr_utility.set_location('l_int_pil_id '||l_int_pil_id,30);
10292:
10293: /* Bug 12688164 : If LE is not backed out because of intervening LE, defaults should not be applied*/
10294: if(l_int_pil_id is not NULL) then
10295: /* Get the latest processed per_in_ler_id of the intervening LE's */

Line 10299: hr_utility.set_location('cursor not foind ',30);

10295: /* Get the latest processed per_in_ler_id of the intervening LE's */
10296: open c_future_pil;
10297: fetch c_future_pil into l_prev_pil_id;
10298: if(c_future_pil%notfound) then
10299: hr_utility.set_location('cursor not foind ',30);
10300: l_prev_pil_id := l_int_pil_id;
10301: end if;
10302: close c_future_pil;
10303: hr_utility.set_location('l_prev_pil_id '||l_prev_pil_id,30);

Line 10303: hr_utility.set_location('l_prev_pil_id '||l_prev_pil_id,30);

10299: hr_utility.set_location('cursor not foind ',30);
10300: l_prev_pil_id := l_int_pil_id;
10301: end if;
10302: close c_future_pil;
10303: hr_utility.set_location('l_prev_pil_id '||l_prev_pil_id,30);
10304:
10305:
10306:
10307: if(l_prev_pil_id <> l_int_pil_id) then

Line 10308: hr_utility.set_location('cond 1 ',30);

10304:
10305:
10306:
10307: if(l_prev_pil_id <> l_int_pil_id) then
10308: hr_utility.set_location('cond 1 ',30);
10309: l_default := 'Y';
10310: else
10311: open c_chk_intevent_bckdt(l_int_pil_id);
10312: fetch c_chk_intevent_bckdt into l_dummy;

Line 10315: hr_utility.set_location('cond 2 ',30);

10311: open c_chk_intevent_bckdt(l_int_pil_id);
10312: fetch c_chk_intevent_bckdt into l_dummy;
10313: if(c_chk_intevent_bckdt%notfound) then
10314: close c_chk_intevent_bckdt;
10315: hr_utility.set_location('cond 2 ',30);
10316: l_default := 'Y';
10317: else
10318: close c_chk_intevent_bckdt;
10319: hr_utility.set_location('cond 2 ',30);

Line 10319: hr_utility.set_location('cond 2 ',30);

10315: hr_utility.set_location('cond 2 ',30);
10316: l_default := 'Y';
10317: else
10318: close c_chk_intevent_bckdt;
10319: hr_utility.set_location('cond 2 ',30);
10320: l_default := 'N';
10321: end if;
10322: end if;
10323: else

Line 10338: hr_utility.set_location('l_dummy value '||l_dummy,30);

10334: /* Check explicit elections made for intervening LE*/
10335: open c_chk_exp_inter_pil;
10336: fetch c_chk_exp_inter_pil into l_dummy;
10337: close c_chk_exp_inter_pil;
10338: hr_utility.set_location('l_dummy value '||l_dummy,30);
10339:
10340: open c_ler_id;
10341: fetch c_ler_id into l_ler_id;
10342: close c_ler_id;

Line 10347: hr_utility.set_location('Mode '||l_env_obj.mode_cd,30);

10343:
10344: if(l_dummy = 'Y') then
10345:
10346: ben_env_object.get(l_env_obj);
10347: hr_utility.set_location('Mode '||l_env_obj.mode_cd,30);
10348:
10349: /* Carry Forward the suspended enrollments*/
10350: ben_carry_forward_items.carry_farward_results(
10351: p_person_id => p_person_id

Line 10392: hr_utility.set_location('l_rslt_exist_flag '||l_rslt_exist_flag,140);

10388: ,p_business_group_id => p_business_group_id
10389: ,p_effective_date => p_effective_date
10390: );
10391: --
10392: hr_utility.set_location('l_rslt_exist_flag '||l_rslt_exist_flag,140);
10393: hr_utility.set_location('reinstate_cd '||r_pel.reinstate_cd,50);
10394:
10395: get_backedout_results(
10396: p_person_id => p_person_id

Line 10393: hr_utility.set_location('reinstate_cd '||r_pel.reinstate_cd,50);

10389: ,p_effective_date => p_effective_date
10390: );
10391: --
10392: hr_utility.set_location('l_rslt_exist_flag '||l_rslt_exist_flag,140);
10393: hr_utility.set_location('reinstate_cd '||r_pel.reinstate_cd,50);
10394:
10395: get_backedout_results(
10396: p_person_id => p_person_id
10397: ,p_pgm_id => r_pel.pgm_id

Line 10410: hr_utility.set_location(' Reinstate '||l_bckdt_pen_table(l_bckdt_epe).pgm_id

10406: /* Loop thru the backedout results*/
10407: for l_bckdt_epe in 1..l_bckdt_epe_count loop
10408:
10409: l_bckdt_pilepe_inst_row := l_bckdt_pilepe_table(l_bckdt_epe);
10410: hr_utility.set_location(' Reinstate '||l_bckdt_pen_table(l_bckdt_epe).pgm_id
10411: ||' PLN '||l_bckdt_pen_table(l_bckdt_epe).pl_id||' OIPL '
10412: ||l_bckdt_pen_table(l_bckdt_epe).oipl_id,175);
10413: ben_reinstate_epe_cache.get_pilcobjepe_dets(
10414: p_per_in_ler_id => p_per_in_ler_id

Line 10425: hr_utility.set_location('l_pilepe_inst_row.pgm_id '||l_pilepe_inst_row.pgm_id,117);

10421: --if epe record found in the latest PIL then go ahead and compare the results
10422: --otherwise go to next backedout epe.. but at the same time record the non-backed out
10423: --epe records
10424: if l_pilepe_inst_row.elig_per_elctbl_chc_id is not null then
10425: hr_utility.set_location('l_pilepe_inst_row.pgm_id '||l_pilepe_inst_row.pgm_id,117);
10426: hr_utility.set_location('l_pilepe_inst_row.pl_typ_id '||l_pilepe_inst_row.pl_typ_id,117);
10427: hr_utility.set_location('l_pilepe_inst_row.epe_id '||l_pilepe_inst_row.elig_per_elctbl_chc_id,117);
10428:
10429: /*Added to the resintate if the enrollment is not either carry forwarded or defaulted*/

Line 10426: hr_utility.set_location('l_pilepe_inst_row.pl_typ_id '||l_pilepe_inst_row.pl_typ_id,117);

10422: --otherwise go to next backedout epe.. but at the same time record the non-backed out
10423: --epe records
10424: if l_pilepe_inst_row.elig_per_elctbl_chc_id is not null then
10425: hr_utility.set_location('l_pilepe_inst_row.pgm_id '||l_pilepe_inst_row.pgm_id,117);
10426: hr_utility.set_location('l_pilepe_inst_row.pl_typ_id '||l_pilepe_inst_row.pl_typ_id,117);
10427: hr_utility.set_location('l_pilepe_inst_row.epe_id '||l_pilepe_inst_row.elig_per_elctbl_chc_id,117);
10428:
10429: /*Added to the resintate if the enrollment is not either carry forwarded or defaulted*/
10430: if(g_reinstated_defaults.COUNT > 0

Line 10427: hr_utility.set_location('l_pilepe_inst_row.epe_id '||l_pilepe_inst_row.elig_per_elctbl_chc_id,117);

10423: --epe records
10424: if l_pilepe_inst_row.elig_per_elctbl_chc_id is not null then
10425: hr_utility.set_location('l_pilepe_inst_row.pgm_id '||l_pilepe_inst_row.pgm_id,117);
10426: hr_utility.set_location('l_pilepe_inst_row.pl_typ_id '||l_pilepe_inst_row.pl_typ_id,117);
10427: hr_utility.set_location('l_pilepe_inst_row.epe_id '||l_pilepe_inst_row.elig_per_elctbl_chc_id,117);
10428:
10429: /*Added to the resintate if the enrollment is not either carry forwarded or defaulted*/
10430: if(g_reinstated_defaults.COUNT > 0
10431: and check_pl_typ_defaulted(l_pilepe_inst_row.pl_typ_id,l_pilepe_inst_row.pgm_id) = 'Y' ) then

Line 10432: hr_utility.set_location('Plan Already Defaulted ',117);

10428:
10429: /*Added to the resintate if the enrollment is not either carry forwarded or defaulted*/
10430: if(g_reinstated_defaults.COUNT > 0
10431: and check_pl_typ_defaulted(l_pilepe_inst_row.pl_typ_id,l_pilepe_inst_row.pgm_id) = 'Y' ) then
10432: hr_utility.set_location('Plan Already Defaulted ',117);
10433: hr_utility.set_location('Plan Not Added to Reinstate list ',117);
10434: l_invalid_count := l_invalid_count + 1 ;
10435: l_invalid_epe_table(l_invalid_count) := l_pilepe_inst_row ;
10436: l_invalid_pen_table(l_invalid_count) := l_bckdt_pen_table(l_bckdt_epe);

Line 10433: hr_utility.set_location('Plan Not Added to Reinstate list ',117);

10429: /*Added to the resintate if the enrollment is not either carry forwarded or defaulted*/
10430: if(g_reinstated_defaults.COUNT > 0
10431: and check_pl_typ_defaulted(l_pilepe_inst_row.pl_typ_id,l_pilepe_inst_row.pgm_id) = 'Y' ) then
10432: hr_utility.set_location('Plan Already Defaulted ',117);
10433: hr_utility.set_location('Plan Not Added to Reinstate list ',117);
10434: l_invalid_count := l_invalid_count + 1 ;
10435: l_invalid_epe_table(l_invalid_count) := l_pilepe_inst_row ;
10436: l_invalid_pen_table(l_invalid_count) := l_bckdt_pen_table(l_bckdt_epe);
10437: else

Line 10438: hr_utility.set_location('Plan Added to Reinstate list ',117);

10434: l_invalid_count := l_invalid_count + 1 ;
10435: l_invalid_epe_table(l_invalid_count) := l_pilepe_inst_row ;
10436: l_invalid_pen_table(l_invalid_count) := l_bckdt_pen_table(l_bckdt_epe);
10437: else
10438: hr_utility.set_location('Plan Added to Reinstate list ',117);
10439: l_valid_count := l_valid_count + 1 ;
10440: l_valid_epe_table(l_valid_count) := l_pilepe_inst_row ;
10441: l_valid_pen_table(l_valid_count) := l_bckdt_pen_table(l_bckdt_epe);
10442: end if;

Line 10450: hr_utility.set_location('NO EPE '||l_bckdt_pilepe_inst_row.elig_per_elctbl_chc_id,250);

10446: l_invalid_count := l_invalid_count + 1 ;
10447: l_invalid_epe_table(l_invalid_count) := l_pilepe_inst_row ;
10448: l_invalid_pen_table(l_invalid_count) := l_bckdt_pen_table(l_bckdt_epe);
10449: --
10450: hr_utility.set_location('NO EPE '||l_bckdt_pilepe_inst_row.elig_per_elctbl_chc_id,250);
10451: --
10452: end if ;
10453: --
10454: end loop;

Line 10458: hr_utility.set_location('Calling reinstate_prev_enrt_for_popl '

10454: end loop;
10455:
10456: /* Now call the reinstate logic*/
10457: if l_valid_pen_table.COUNT > 0 and l_valid_epe_table.COUNT > 0 then
10458: hr_utility.set_location('Calling reinstate_prev_enrt_for_popl '
10459: ||r_pel.pgm_id||' PLN '||r_pel.pl_id,300);
10460:
10461: /* Added for Bug 13079111 */
10462: --Bug 13940072 added pgm_id and pl_id check to fetch correct record

Line 10472: hr_utility.set_location('Setting elections made date to old date ',400);

10468: --Bug 13940072 added pgm_id and pl_id check to fetch correct record
10469: open c_popl_rec(p_per_in_ler_id,r_pel.pgm_id,r_pel.pl_id);
10470: fetch c_popl_rec into l_popl_rec;
10471: close c_popl_rec;
10472: hr_utility.set_location('Setting elections made date to old date ',400);
10473: ben_Pil_Elctbl_chc_Popl_api.update_Pil_Elctbl_chc_Popl
10474: (p_validate => p_validate
10475: ,p_pil_elctbl_chc_popl_id => l_popl_rec.PIL_ELCTBL_CHC_POPL_ID
10476: ,p_elcns_made_dt => l_ele_date

Line 10512: hr_utility.set_location(' Doing multirow edit for Defaults ',260);

10508: else
10509: /* Bug 12688164 : If only defaults are applied, then the procedures called from default
10510: enrollment process should be called now as these calls are skipped while creating
10511: the enrollment results for defaults. Added else condition*/
10512: hr_utility.set_location(' Doing multirow edit for Defaults ',260);
10513: ben_proc_common_enrt_rslt.set_elcn_made_or_asnd_dt(
10514: p_per_in_ler_id => p_per_in_ler_id
10515: ,p_pgm_id => r_pel.pgm_id
10516: ,p_pl_id => r_pel.pl_id

Line 10563: hr_utility.set_location(' l_invalid_count '||l_invalid_count,260);

10559: ,p_validate => FALSE
10560: ,p_cls_enrt_flag => FALSE
10561: );
10562: end if;
10563: hr_utility.set_location(' l_invalid_count '||l_invalid_count,260);
10564: hr_utility.set_location(' l_valid_count '||l_valid_count,260);
10565: /* End of enhancement bug 8716679*/
10566:
10567: else

Line 10564: hr_utility.set_location(' l_valid_count '||l_valid_count,260);

10560: ,p_cls_enrt_flag => FALSE
10561: );
10562: end if;
10563: hr_utility.set_location(' l_invalid_count '||l_invalid_count,260);
10564: hr_utility.set_location(' l_valid_count '||l_valid_count,260);
10565: /* End of enhancement bug 8716679*/
10566:
10567: else
10568: --Call the default process for the program or plan not in program

Line 10569: hr_utility.set_location ('Before call to default_comp_obj '||l_proc,40);

10565: /* End of enhancement bug 8716679*/
10566:
10567: else
10568: --Call the default process for the program or plan not in program
10569: hr_utility.set_location ('Before call to default_comp_obj '||l_proc,40);
10570: --
10571: if fnd_global.conc_request_id in (0,-1) then
10572: --
10573: l_batch_flag := FALSE ;

Line 10609: hr_utility.set_location ('After call to default_comp_obj '||l_proc,40);

10605: benutils.write(p_text => fnd_message.get);
10606: --
10607: end if;
10608: --
10609: hr_utility.set_location ('After call to default_comp_obj '||l_proc,40);
10610: --
10611: end if;
10612: else
10613: --Now see other reinstate codes and process accordingly.

Line 10622: hr_utility.set_location('l_rslt_exist_flag '||l_rslt_exist_flag,140);

10618: ,p_business_group_id => p_business_group_id
10619: ,p_effective_date => p_effective_date
10620: );
10621: --
10622: hr_utility.set_location('l_rslt_exist_flag '||l_rslt_exist_flag,140);
10623:
10624: hr_utility.set_location('reinstate_cd '||r_pel.reinstate_cd,50);
10625: --
10626: if r_pel.reinstate_cd = 'DONOT_REINSTATE' then

Line 10624: hr_utility.set_location('reinstate_cd '||r_pel.reinstate_cd,50);

10620: );
10621: --
10622: hr_utility.set_location('l_rslt_exist_flag '||l_rslt_exist_flag,140);
10623:
10624: hr_utility.set_location('reinstate_cd '||r_pel.reinstate_cd,50);
10625: --
10626: if r_pel.reinstate_cd = 'DONOT_REINSTATE' then
10627: --
10628: hr_utility.set_location('Leaving:'|| l_proc, 60);

Line 10628: hr_utility.set_location('Leaving:'|| l_proc, 60);

10624: hr_utility.set_location('reinstate_cd '||r_pel.reinstate_cd,50);
10625: --
10626: if r_pel.reinstate_cd = 'DONOT_REINSTATE' then
10627: --
10628: hr_utility.set_location('Leaving:'|| l_proc, 60);
10629: exit ;
10630: --
10631: elsif NVL(r_pel.reinstate_cd,'VALIDATE_ALL') = 'VALIDATE_ALL' then
10632: ---

Line 10635: hr_utility.set_location('Before call to l_chages_ocrd_flag',70);

10631: elsif NVL(r_pel.reinstate_cd,'VALIDATE_ALL') = 'VALIDATE_ALL' then
10632: ---
10633: --This needs to be changed to validate for each program or plan not in program
10634: --
10635: hr_utility.set_location('Before call to l_chages_ocrd_flag',70);
10636: --
10637: l_chages_ocrd_flag := comp_ori_new_pil_for_popl(
10638: p_person_id => p_person_id
10639: ,p_business_group_id => p_business_group_id

Line 10648: hr_utility.set_location(' l_chages_ocrd_flag '||l_chages_ocrd_flag,80);

10644: ,p_pgm_id => r_pel.pgm_id
10645: ,p_pl_id => r_pel.pl_id
10646: );
10647: --
10648: hr_utility.set_location(' l_chages_ocrd_flag '||l_chages_ocrd_flag,80);
10649: --
10650: if l_chages_ocrd_flag = 'N' then
10651: --
10652: --Now Reinstate all the results

Line 10654: hr_utility.set_location('Before call to get_backedout_results ',90);

10650: if l_chages_ocrd_flag = 'N' then
10651: --
10652: --Now Reinstate all the results
10653: --
10654: hr_utility.set_location('Before call to get_backedout_results ',90);
10655: --
10656: get_backedout_results(
10657: p_person_id => p_person_id
10658: ,p_pgm_id => r_pel.pgm_id

Line 10666: hr_utility.set_location('After call to get_backedout_results ',90);

10662: ,p_pilepe_inst_table => l_bckdt_pilepe_table
10663: ,p_bckdt_pen_table => l_bckdt_pen_table
10664: );
10665: --
10666: hr_utility.set_location('After call to get_backedout_results ',90);
10667: --
10668: l_bckdt_epe_count := l_bckdt_pilepe_table.COUNT;
10669: hr_utility.set_location(' l_bckdt_epe_count '||l_bckdt_epe_count,90);
10670: --

Line 10669: hr_utility.set_location(' l_bckdt_epe_count '||l_bckdt_epe_count,90);

10665: --
10666: hr_utility.set_location('After call to get_backedout_results ',90);
10667: --
10668: l_bckdt_epe_count := l_bckdt_pilepe_table.COUNT;
10669: hr_utility.set_location(' l_bckdt_epe_count '||l_bckdt_epe_count,90);
10670: --
10671: for l_bckdt_epe in 1..l_bckdt_epe_count loop
10672: --
10673: --Get the current per_in_ler info

Line 10677: hr_utility.set_location('Calling ben_reinstate_epe_cache.get_pilcobjepe_dets',100);

10673: --Get the current per_in_ler info
10674: --
10675: l_bckdt_pilepe_inst_row := l_bckdt_pilepe_table(l_bckdt_epe);
10676: --
10677: hr_utility.set_location('Calling ben_reinstate_epe_cache.get_pilcobjepe_dets',100);
10678: hr_utility.set_location('pgm '||l_bckdt_pen_table(l_bckdt_epe).pgm_id,100);
10679: hr_utility.set_location('pln '||l_bckdt_pen_table(l_bckdt_epe).pl_id,100);
10680: hr_utility.set_location('oipl '||l_bckdt_pen_table(l_bckdt_epe).oipl_id,100);
10681: --

Line 10678: hr_utility.set_location('pgm '||l_bckdt_pen_table(l_bckdt_epe).pgm_id,100);

10674: --
10675: l_bckdt_pilepe_inst_row := l_bckdt_pilepe_table(l_bckdt_epe);
10676: --
10677: hr_utility.set_location('Calling ben_reinstate_epe_cache.get_pilcobjepe_dets',100);
10678: hr_utility.set_location('pgm '||l_bckdt_pen_table(l_bckdt_epe).pgm_id,100);
10679: hr_utility.set_location('pln '||l_bckdt_pen_table(l_bckdt_epe).pl_id,100);
10680: hr_utility.set_location('oipl '||l_bckdt_pen_table(l_bckdt_epe).oipl_id,100);
10681: --
10682: ben_reinstate_epe_cache.get_pilcobjepe_dets(

Line 10679: hr_utility.set_location('pln '||l_bckdt_pen_table(l_bckdt_epe).pl_id,100);

10675: l_bckdt_pilepe_inst_row := l_bckdt_pilepe_table(l_bckdt_epe);
10676: --
10677: hr_utility.set_location('Calling ben_reinstate_epe_cache.get_pilcobjepe_dets',100);
10678: hr_utility.set_location('pgm '||l_bckdt_pen_table(l_bckdt_epe).pgm_id,100);
10679: hr_utility.set_location('pln '||l_bckdt_pen_table(l_bckdt_epe).pl_id,100);
10680: hr_utility.set_location('oipl '||l_bckdt_pen_table(l_bckdt_epe).oipl_id,100);
10681: --
10682: ben_reinstate_epe_cache.get_pilcobjepe_dets(
10683: p_per_in_ler_id => p_per_in_ler_id

Line 10680: hr_utility.set_location('oipl '||l_bckdt_pen_table(l_bckdt_epe).oipl_id,100);

10676: --
10677: hr_utility.set_location('Calling ben_reinstate_epe_cache.get_pilcobjepe_dets',100);
10678: hr_utility.set_location('pgm '||l_bckdt_pen_table(l_bckdt_epe).pgm_id,100);
10679: hr_utility.set_location('pln '||l_bckdt_pen_table(l_bckdt_epe).pl_id,100);
10680: hr_utility.set_location('oipl '||l_bckdt_pen_table(l_bckdt_epe).oipl_id,100);
10681: --
10682: ben_reinstate_epe_cache.get_pilcobjepe_dets(
10683: p_per_in_ler_id => p_per_in_ler_id
10684: ,p_pgm_id => l_bckdt_pen_table(l_bckdt_epe).pgm_id

Line 10690: hr_utility.set_location('from l_pilepe_inst_row EPE'||

10686: ,p_oipl_id => l_bckdt_pen_table(l_bckdt_epe).oipl_id
10687: ,p_inst_row => l_pilepe_inst_row
10688: );
10689: --
10690: hr_utility.set_location('from l_pilepe_inst_row EPE'||
10691: l_pilepe_inst_row.elig_per_elctbl_chc_id,110);
10692: --
10693: if l_pilepe_inst_row.elig_per_elctbl_chc_id is not null then
10694: --Lucky Guy found a choice ... You are going be reinstated.

Line 10712: hr_utility.set_location('Valid results '||l_valid_count,120);

10708: end if ;
10709: --
10710: end loop;
10711: --
10712: hr_utility.set_location('Valid results '||l_valid_count,120);
10713: hr_utility.set_location('Invalid results '||l_invalid_count,120);
10714: --
10715: --
10716: else

Line 10713: hr_utility.set_location('Invalid results '||l_invalid_count,120);

10709: --
10710: end loop;
10711: --
10712: hr_utility.set_location('Valid results '||l_valid_count,120);
10713: hr_utility.set_location('Invalid results '||l_invalid_count,120);
10714: --
10715: --
10716: else
10717: --

Line 10718: hr_utility.set_location('Not Reinstating - changes occured ' ,125);

10714: --
10715: --
10716: else
10717: --
10718: hr_utility.set_location('Not Reinstating - changes occured ' ,125);
10719: l_not_reinstate := 2 ;
10720: --
10721: end if;
10722: --

Line 10735: hr_utility.set_location('Got get_backedout_results '||l_bckdt_pilepe_table.COUNT ,130);

10731: ,p_pilepe_inst_table => l_bckdt_pilepe_table
10732: ,p_bckdt_pen_table => l_bckdt_pen_table
10733: );
10734: --
10735: hr_utility.set_location('Got get_backedout_results '||l_bckdt_pilepe_table.COUNT ,130);
10736: --
10737: l_bckdt_epe_count := l_bckdt_pilepe_table.COUNT;
10738: --
10739: if r_pel.reinstate_cd = 'VALIDATE_RESULT_ALL' then

Line 10743: hr_utility.set_location('Entering VALIDATE_RESULT_ALL',140);

10739: if r_pel.reinstate_cd = 'VALIDATE_RESULT_ALL' then
10740: --In this routine compare all old and new Choice data and if it matches then reinstate else no
10741: --return
10742: --
10743: hr_utility.set_location('Entering VALIDATE_RESULT_ALL',140);
10744: --
10745: for l_bckdt_epe in 1..l_bckdt_epe_count loop
10746: --Get the current per_in_ler info
10747: --

Line 10750: hr_utility.set_location(' Calling ben_reinstate_epe_cache.get_pilcobjepe_dets '||l_bckdt_pen_table(l_bckdt_epe).pgm_id

10746: --Get the current per_in_ler info
10747: --
10748: l_bckdt_pilepe_inst_row := l_bckdt_pilepe_table(l_bckdt_epe);
10749: --
10750: hr_utility.set_location(' Calling ben_reinstate_epe_cache.get_pilcobjepe_dets '||l_bckdt_pen_table(l_bckdt_epe).pgm_id
10751: ||' PLN '||l_bckdt_pen_table(l_bckdt_epe).pl_id||' OIPL '
10752: ||l_bckdt_pen_table(l_bckdt_epe).oipl_id,145);
10753: ben_reinstate_epe_cache.get_pilcobjepe_dets(
10754: p_per_in_ler_id => p_per_in_ler_id

Line 10776: hr_utility.set_location(' l_pilepe_inst_row.elig_per_elctbl_chc_id '||l_pilepe_inst_row.elig_per_elctbl_chc_id,150);

10772: ,p_business_group_id => p_business_group_id
10773: ,p_effective_date => p_effective_date
10774: );
10775: --
10776: hr_utility.set_location(' l_pilepe_inst_row.elig_per_elctbl_chc_id '||l_pilepe_inst_row.elig_per_elctbl_chc_id,150);
10777: hr_utility.set_location(' l_chages_ocrd_flag '||l_chages_ocrd_flag,150);
10778: --
10779: if l_chages_ocrd_flag = 'N' then
10780: --Lucky Guy No Changes... You are going be reinstated.

Line 10777: hr_utility.set_location(' l_chages_ocrd_flag '||l_chages_ocrd_flag,150);

10773: ,p_effective_date => p_effective_date
10774: );
10775: --
10776: hr_utility.set_location(' l_pilepe_inst_row.elig_per_elctbl_chc_id '||l_pilepe_inst_row.elig_per_elctbl_chc_id,150);
10777: hr_utility.set_location(' l_chages_ocrd_flag '||l_chages_ocrd_flag,150);
10778: --
10779: if l_chages_ocrd_flag = 'N' then
10780: --Lucky Guy No Changes... You are going be reinstated.
10781: --

Line 10801: hr_utility.set_location('NO EPE '||l_bckdt_pilepe_inst_row.elig_per_elctbl_chc_id,160);

10797: l_invalid_count := l_invalid_count + 1 ;
10798: l_invalid_epe_table(l_invalid_count) := l_pilepe_inst_row ;
10799: l_invalid_pen_table(l_invalid_count) := l_bckdt_pen_table(l_bckdt_epe);
10800: --
10801: hr_utility.set_location('NO EPE '||l_bckdt_pilepe_inst_row.elig_per_elctbl_chc_id,160);
10802: --
10803: end if;
10804: --
10805: end loop;

Line 10807: hr_utility.set_location(' l_invalid_count '||l_invalid_count,160);

10803: end if;
10804: --
10805: end loop;
10806: --
10807: hr_utility.set_location(' l_invalid_count '||l_invalid_count,160);
10808: hr_utility.set_location(' l_valid_count '||l_valid_count,160);
10809: --
10810: elsif r_pel.reinstate_cd = 'VALIDATE_RESULT' or r_pel.reinstate_cd = 'VALIDATE_EXPLICIT_ENRT' then
10811: --If you get a hit for EPE ENB ECR in the NEW PIL then enroll in the new EPE ENB ECR

Line 10808: hr_utility.set_location(' l_valid_count '||l_valid_count,160);

10804: --
10805: end loop;
10806: --
10807: hr_utility.set_location(' l_invalid_count '||l_invalid_count,160);
10808: hr_utility.set_location(' l_valid_count '||l_valid_count,160);
10809: --
10810: elsif r_pel.reinstate_cd = 'VALIDATE_RESULT' or r_pel.reinstate_cd = 'VALIDATE_EXPLICIT_ENRT' then
10811: --If you get a hit for EPE ENB ECR in the NEW PIL then enroll in the new EPE ENB ECR
10812: --

Line 10813: hr_utility.set_location('Entering '||r_pel.reinstate_cd,170);

10809: --
10810: elsif r_pel.reinstate_cd = 'VALIDATE_RESULT' or r_pel.reinstate_cd = 'VALIDATE_EXPLICIT_ENRT' then
10811: --If you get a hit for EPE ENB ECR in the NEW PIL then enroll in the new EPE ENB ECR
10812: --
10813: hr_utility.set_location('Entering '||r_pel.reinstate_cd,170);
10814:
10815: /* Added for Enhancement Bug 8716679*/
10816: if(r_pel.reinstate_cd = 'VALIDATE_EXPLICIT_ENRT') then
10817: if( call_defaults(p_per_in_ler_id,p_bckdt_per_in_ler_id,p_effective_date,p_person_id) = 'Y' ) then

Line 10818: hr_utility.set_location(' Calling defaults second part '||r_pel.reinstate_cd,1999);

10814:
10815: /* Added for Enhancement Bug 8716679*/
10816: if(r_pel.reinstate_cd = 'VALIDATE_EXPLICIT_ENRT') then
10817: if( call_defaults(p_per_in_ler_id,p_bckdt_per_in_ler_id,p_effective_date,p_person_id) = 'Y' ) then
10818: hr_utility.set_location(' Calling defaults second part '||r_pel.reinstate_cd,1999);
10819: g_dflt_during_reinstate := 'Y'; -- Bug 14119948
10820: default_comp_obj
10821: (p_validate => p_validate
10822: ,p_per_in_ler_id => p_per_in_ler_id

Line 10843: hr_utility.set_location(' Calling ben_reinstate_epe_cache.get_pilcobjepe_dets '||l_bckdt_pen_table(l_bckdt_epe).pgm_id

10839: --Get the current per_in_ler info
10840: --
10841: l_bckdt_pilepe_inst_row := l_bckdt_pilepe_table(l_bckdt_epe);
10842: --
10843: hr_utility.set_location(' Calling ben_reinstate_epe_cache.get_pilcobjepe_dets '||l_bckdt_pen_table(l_bckdt_epe).pgm_id
10844: ||' PLN '||l_bckdt_pen_table(l_bckdt_epe).pl_id||' OIPL '
10845: ||l_bckdt_pen_table(l_bckdt_epe).oipl_id,175);
10846: --
10847: ben_reinstate_epe_cache.get_pilcobjepe_dets(

Line 10871: hr_utility.set_location('NO EPE '||l_bckdt_pilepe_inst_row.elig_per_elctbl_chc_id,250);

10867: l_invalid_count := l_invalid_count + 1 ;
10868: l_invalid_epe_table(l_invalid_count) := l_pilepe_inst_row ;
10869: l_invalid_pen_table(l_invalid_count) := l_bckdt_pen_table(l_bckdt_epe);
10870: --
10871: hr_utility.set_location('NO EPE '||l_bckdt_pilepe_inst_row.elig_per_elctbl_chc_id,250);
10872: --
10873: end if ;
10874: --
10875: end loop;

Line 10876: hr_utility.set_location(' l_invalid_count '||l_invalid_count,260);

10872: --
10873: end if ;
10874: --
10875: end loop;
10876: hr_utility.set_location(' l_invalid_count '||l_invalid_count,260);
10877: hr_utility.set_location(' l_valid_count '||l_valid_count,260);
10878: --
10879: end if;
10880: --

Line 10877: hr_utility.set_location(' l_valid_count '||l_valid_count,260);

10873: end if ;
10874: --
10875: end loop;
10876: hr_utility.set_location(' l_invalid_count '||l_invalid_count,260);
10877: hr_utility.set_location(' l_valid_count '||l_valid_count,260);
10878: --
10879: end if;
10880: --
10881: end if; -- Else for VALIDATE_ALL

Line 10897: hr_utility.set_location('PEN'||l_en_dtd_pen_bckdt_pil.bkup_tbl_id,234234);

10893: loop
10894: fetch c_en_dtd_pen_bckdt_pil into l_en_dtd_pen_bckdt_pil;
10895: exit when c_en_dtd_pen_bckdt_pil%NOTFOUND;
10896: --
10897: hr_utility.set_location('PEN'||l_en_dtd_pen_bckdt_pil.bkup_tbl_id,234234);
10898: --
10899: ben_prtt_enrt_result_api.delete_enrollment(
10900: p_validate => false,
10901: p_per_in_ler_id => p_per_in_ler_id,

Line 10921: hr_utility.set_location('Calling reinstate_prev_enrt_for_popl '

10917:
10918: */
10919:
10920: if l_valid_pen_table.COUNT > 0 and l_valid_epe_table.COUNT > 0 then
10921: hr_utility.set_location('Calling reinstate_prev_enrt_for_popl '
10922: ||r_pel.pgm_id||' PLN '||r_pel.pl_id,300);
10923: --
10924: /* Added for Bug 13079111 */
10925: --Bug 13940072 added pgm_id and pl_id check to fetch correct record

Line 10935: hr_utility.set_location('Setting elections made date to old date ',400);

10931: --Bug 13940072 added pgm_id and pl_id check to fetch correct record
10932: open c_popl_rec(p_per_in_ler_id,r_pel.pgm_id,r_pel.pl_id);
10933: fetch c_popl_rec into l_popl_rec;
10934: close c_popl_rec;
10935: hr_utility.set_location('Setting elections made date to old date ',400);
10936: ben_Pil_Elctbl_chc_Popl_api.update_Pil_Elctbl_chc_Popl
10937: (p_validate => p_validate
10938: ,p_pil_elctbl_chc_popl_id => l_popl_rec.PIL_ELCTBL_CHC_POPL_ID
10939: ,p_elcns_made_dt => l_ele_date

Line 10966: hr_utility.set_location('Done reinstate_prev_enrt_for_popl',310);

10962: ,p_enrt_perd_strt_dt => r_pel.enrt_perd_strt_dt
10963: ,p_max_enrt_esd => l_max_enrt_esd_out
10964: );
10965: --
10966: hr_utility.set_location('Done reinstate_prev_enrt_for_popl',310);
10967: --
10968: else
10969: --
10970: hr_utility.set_location('Not Calling reinstate_prev_enrt_for_popl ',310);

Line 10970: hr_utility.set_location('Not Calling reinstate_prev_enrt_for_popl ',310);

10966: hr_utility.set_location('Done reinstate_prev_enrt_for_popl',310);
10967: --
10968: else
10969: --
10970: hr_utility.set_location('Not Calling reinstate_prev_enrt_for_popl ',310);
10971: --
10972: end if;
10973: --
10974: if l_max_enrt_esd_out >= nvl(l_max_enrt_esd,l_max_enrt_esd_out) then

Line 10988: hr_utility.set_location('Reinstate ',610.2);

10984: --Now for the new enrollments, we need to reinstate rates, flex credits and overrides.
10985: --Also we will make the multirow edits for plans not in process and process post enrollment
10986: --
10987: --
10988: hr_utility.set_location('Reinstate ',610.2);
10989: hr_utility.set_location('prev stad cd '|| l_bckdt_pil.prvs_stat_cd ,610.2);
10990: /* Bug 8900007: Fetch the carry forwarded enrollments from the backedout LE. First reinstate is called and
10991: then carry forward logic. After carry forwarding the enrollments, then the action items and certifications
10992: will be restored.*/

Line 10989: hr_utility.set_location('prev stad cd '|| l_bckdt_pil.prvs_stat_cd ,610.2);

10985: --Also we will make the multirow edits for plans not in process and process post enrollment
10986: --
10987: --
10988: hr_utility.set_location('Reinstate ',610.2);
10989: hr_utility.set_location('prev stad cd '|| l_bckdt_pil.prvs_stat_cd ,610.2);
10990: /* Bug 8900007: Fetch the carry forwarded enrollments from the backedout LE. First reinstate is called and
10991: then carry forward logic. After carry forwarding the enrollments, then the action items and certifications
10992: will be restored.*/
10993: if(l_int_rslts_exist_flag = 'N' and l_enrt_table.COUNT is not null and l_enrt_table.COUNT = 0) then

Line 10994: hr_utility.set_location('Populating g_bckdt_sspndd_pen_list',310);

10990: /* Bug 8900007: Fetch the carry forwarded enrollments from the backedout LE. First reinstate is called and
10991: then carry forward logic. After carry forwarding the enrollments, then the action items and certifications
10992: will be restored.*/
10993: if(l_int_rslts_exist_flag = 'N' and l_enrt_table.COUNT is not null and l_enrt_table.COUNT = 0) then
10994: hr_utility.set_location('Populating g_bckdt_sspndd_pen_list',310);
10995:
10996: open g_bckdt_pen_sspnd_rslt(p_bckdt_per_in_ler_id,
10997: p_person_id,
10998: p_effective_date);

Line 11001: hr_utility.set_location('g_bckdt_sspndd_pen_list.count'||g_bckdt_sspndd_pen_list.count,310);

10997: p_person_id,
10998: p_effective_date);
10999: fetch g_bckdt_pen_sspnd_rslt BULK COLLECT into g_bckdt_sspndd_pen_list;
11000: close g_bckdt_pen_sspnd_rslt;
11001: hr_utility.set_location('g_bckdt_sspndd_pen_list.count'||g_bckdt_sspndd_pen_list.count,310);
11002: end if;
11003: /* End Bug 8900007*/
11004:
11005: /* Added for Enhancement Bug :8716679 */

Line 11032: hr_utility.set_location('Entered the cond ',810);

11028: end if;
11029: --
11030: end if;
11031:
11032: hr_utility.set_location('Entered the cond ',810);
11033: end if;
11034: /* End of Enhancement Bug :8716679 */
11035:
11036: /* Bug 9006088: If previous state of the backedout life event is 'PROCD', on reprocessing the

Line 11045: hr_utility.set_location('Calling close_single_enrollment ',609);

11041: and l_reinstate_def = 'Y' ) then
11042:
11043: /*Bug 13711703 */
11044: if( nvl(l_reopen_le_on_reprocess,'N') = 'N') then
11045: hr_utility.set_location('Calling close_single_enrollment ',609);
11046: --
11047: ben_close_enrollment.close_single_enrollment
11048: (p_per_in_ler_id => p_per_in_ler_id
11049: ,p_effective_date => nvl(l_max_enrt_esd,p_effective_date)

Line 11056: hr_utility.set_location('Done close_single_enrollment ',609);

11052: ,p_validate => FALSE
11053: ,p_close_uneai_flag => NULL
11054: ,p_uneai_effective_date => NULL);
11055: --
11056: hr_utility.set_location('Done close_single_enrollment ',609);
11057: end if;
11058: end if;
11059: /*End Bug 9006088 */
11060:

Line 11068: hr_utility.set_location('Calling reinstate_post_enrt ',400);

11064: open c_bckdt_pil ;
11065: fetch c_bckdt_pil into l_bckdt_pil ;
11066: close c_bckdt_pil ;
11067: --
11068: hr_utility.set_location('Calling reinstate_post_enrt ',400);
11069: reinstate_post_enrt(
11070: p_pgm_table => l_pgm_table
11071: ,p_pl_table => l_pl_table
11072: ,p_enrt_table => l_enrt_table

Line 11082: hr_utility.set_location('Done reinstate_post_enrt ',410);

11078: ,p_bckdt_per_in_ler_id => p_bckdt_per_in_ler_id
11079: ,p_cls_enrt_flag => false --999
11080: );
11081: --
11082: hr_utility.set_location('Done reinstate_post_enrt ',410);
11083: --
11084: -- This needs to be handled for new codes
11085: --
11086: hr_utility.set_location('Calling reinstate_override ',500);

Line 11086: hr_utility.set_location('Calling reinstate_override ',500);

11082: hr_utility.set_location('Done reinstate_post_enrt ',410);
11083: --
11084: -- This needs to be handled for new codes
11085: --
11086: hr_utility.set_location('Calling reinstate_override ',500);
11087: --
11088: reinstate_override(
11089: p_pgm_table => l_pgm_table
11090: ,p_pl_table => l_pl_table

Line 11101: hr_utility.set_location('Done reinstate_override ',510);

11097: ,p_bckdt_per_in_ler_id => p_bckdt_per_in_ler_id
11098: ,p_cls_enrt_flag => false --999
11099: );
11100: --
11101: hr_utility.set_location('Done reinstate_override ',510);
11102:
11103: /* Bug 13800755:Restore the old elections made date after reprocessing the LE.If Elections made is not restored to old date, successive
11104: reprocessing of the LE will see drop in Coverage for the coverage code set to 'Elections'*/
11105: open c_popl_rec(p_bckdt_per_in_ler_id,null,null);

Line 11111: hr_utility.set_location('Setting elections made date to old date ',400);

11107: if(c_popl_rec%found) then
11108: l_ele_date := l_popl_rec.elcns_made_dt;
11109: close c_popl_rec;
11110:
11111: hr_utility.set_location('Setting elections made date to old date ',400);
11112: ben_Pil_Elctbl_chc_Popl_api.update_Pil_Elctbl_chc_Popl
11113: (p_validate => p_validate
11114: ,p_pil_elctbl_chc_popl_id => l_popl_rec.PIL_ELCTBL_CHC_POPL_ID
11115: ,p_elcns_made_dt => l_ele_date

Line 11135: hr_utility.set_location('Calling close_single_enrollment ',610);

11131: if l_bckdt_pil.prvs_stat_cd = 'PROCD' and l_reinstate_def = 'N' and ( nvl(l_invalid_pen_table.COUNT,0) = 0 ) then
11132: --
11133: /*Bug 13711703 */
11134: if( nvl(l_reopen_le_on_reprocess,'N') = 'N') then
11135: hr_utility.set_location('Calling close_single_enrollment ',610);
11136: --
11137: ben_close_enrollment.close_single_enrollment
11138: (p_per_in_ler_id => p_per_in_ler_id
11139: ,p_effective_date => nvl(l_max_enrt_esd,p_effective_date)

Line 11146: hr_utility.set_location('Done close_single_enrollment ',610);

11142: ,p_validate => FALSE
11143: ,p_close_uneai_flag => NULL
11144: ,p_uneai_effective_date => NULL);
11145: --
11146: hr_utility.set_location('Done close_single_enrollment ',610);
11147: end if;
11148: --
11149: end if;
11150: --

Line 11153: hr_utility.set_location('Calling Void update_person_life_event' ,700);

11149: end if;
11150: --
11151: --
11152: /*
11153: hr_utility.set_location('Calling Void update_person_life_event' ,700);
11154: --
11155: ben_Person_Life_Event_api.update_person_life_event
11156: (p_per_in_ler_id => p_bckdt_per_in_ler_id
11157: ,p_per_in_ler_stat_cd => 'VOIDD'

Line 11165: hr_utility.set_location('Done update_person_life_event',710);

11161: ,P_STRTD_DT => l_strtd_dt
11162: ,P_VOIDD_DT => l_voidd_dt );
11163: */
11164: --
11165: hr_utility.set_location('Done update_person_life_event',710);
11166: --
11167: /* Added for Enhancement Bug :8716679. Added If..Else condition */
11168: /* Message after reinstating the explicit elections for the Reinstatement code VALIDATE_EXPLICIT_ENRT*/
11169: if(l_reinstate_def = 'Y') then

Line 11256: hr_utility.set_location('Calling void_literature ',800);

11252: end if;
11253:
11254: -- Void the communications created to new per_in ler.
11255: --
11256: hr_utility.set_location('Calling void_literature ',800);
11257: --
11258: void_literature(p_person_id => p_person_id
11259: ,p_business_group_id => p_business_group_id
11260: ,p_effective_date => nvl(l_max_enrt_esd,p_effective_date)

Line 11265: hr_utility.set_location('Done void_literature ',810);

11261: ,p_ler_id => null
11262: ,p_per_in_ler_id => p_per_in_ler_id
11263: );
11264: --
11265: hr_utility.set_location('Done void_literature ',810);
11266: --
11267: end if;
11268: --
11269: --

Line 11270: hr_utility.set_location('Calling Void update_person_life_event' ,700);

11266: --
11267: end if;
11268: --
11269: --
11270: hr_utility.set_location('Calling Void update_person_life_event' ,700);
11271: --
11272: open c_bckdt_pil ;
11273: fetch c_bckdt_pil into l_bckdt_pil ;
11274: close c_bckdt_pil ;

Line 11288: hr_utility.set_location(' Inside l_int_rslts_exist_flag pad_cmnt_to_rsnd_lit '||l_not_reinstate,820);

11284: --
11285: if (l_int_rslts_exist_flag = 'N' or l_def_plus_reinsate_flag = 'Y') and
11286: ( l_enrt_table.COUNT = 0 or l_not_reinstate = 2 ) then
11287: --
11288: hr_utility.set_location(' Inside l_int_rslts_exist_flag pad_cmnt_to_rsnd_lit '||l_not_reinstate,820);
11289: hr_utility.set_location(' l_invalid_count '||l_invalid_count,820);
11290: hr_utility.set_location(' l_int_rslts_exist_flag '||l_int_rslts_exist_flag,820);
11291: --
11292: if l_rslt_exist_flag = 'Y' then

Line 11289: hr_utility.set_location(' l_invalid_count '||l_invalid_count,820);

11285: if (l_int_rslts_exist_flag = 'N' or l_def_plus_reinsate_flag = 'Y') and
11286: ( l_enrt_table.COUNT = 0 or l_not_reinstate = 2 ) then
11287: --
11288: hr_utility.set_location(' Inside l_int_rslts_exist_flag pad_cmnt_to_rsnd_lit '||l_not_reinstate,820);
11289: hr_utility.set_location(' l_invalid_count '||l_invalid_count,820);
11290: hr_utility.set_location(' l_int_rslts_exist_flag '||l_int_rslts_exist_flag,820);
11291: --
11292: if l_rslt_exist_flag = 'Y' then
11293: -- Add comments to new literature sent out

Line 11290: hr_utility.set_location(' l_int_rslts_exist_flag '||l_int_rslts_exist_flag,820);

11286: ( l_enrt_table.COUNT = 0 or l_not_reinstate = 2 ) then
11287: --
11288: hr_utility.set_location(' Inside l_int_rslts_exist_flag pad_cmnt_to_rsnd_lit '||l_not_reinstate,820);
11289: hr_utility.set_location(' l_invalid_count '||l_invalid_count,820);
11290: hr_utility.set_location(' l_int_rslts_exist_flag '||l_int_rslts_exist_flag,820);
11291: --
11292: if l_rslt_exist_flag = 'Y' then
11293: -- Add comments to new literature sent out
11294: -- Comment Ex: Because you have experienced another enrollment, your

Line 11334: hr_utility.set_location('Done calls to pad_cmnt_to_rsnd_lit ',850);

11330: --
11331: --we need to log the enrollments which were not being reinstated into the log file here
11332: --from l_invalid_pen_table table
11333: --
11334: hr_utility.set_location('Done calls to pad_cmnt_to_rsnd_lit ',850);
11335: --
11336: end if;
11337: --
11338: hr_utility.set_location('Completed all PEL records',90);

Line 11338: hr_utility.set_location('Completed all PEL records',90);

11334: hr_utility.set_location('Done calls to pad_cmnt_to_rsnd_lit ',850);
11335: --
11336: end if;
11337: --
11338: hr_utility.set_location('Completed all PEL records',90);
11339: --
11340: hr_utility.set_location('Leaving:'|| l_proc, 10);
11341: --
11342: end p_lf_evt_clps_restore;

Line 11340: hr_utility.set_location('Leaving:'|| l_proc, 10);

11336: end if;
11337: --
11338: hr_utility.set_location('Completed all PEL records',90);
11339: --
11340: hr_utility.set_location('Leaving:'|| l_proc, 10);
11341: --
11342: end p_lf_evt_clps_restore;
11343: -- ----------------------------------------------------------------------------
11344: -- |------------------------< update_ptnl_per_for_ler >-------------------------|

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

11367: l_voidd_dt date;
11368: --
11369: begin
11370: --
11371: hr_utility.set_location('Entering:'|| l_proc, 10);
11372: --
11373: if p_ptnl_ler_for_per_stat_cd = 'MNL' then
11374: --
11375: l_mnl_dt := p_effective_date;

Line 11383: hr_utility.set_location('Voiding '||p_ptnl_ler_for_per_id,10);

11379: open c_ptnl;
11380: fetch c_ptnl into l_ptnl_rec;
11381: if c_ptnl%found then
11382: --
11383: hr_utility.set_location('Voiding '||p_ptnl_ler_for_per_id,10);
11384: --
11385: ben_ptnl_ler_for_per_api.update_ptnl_ler_for_per
11386: (p_validate => false
11387: ,p_ptnl_ler_for_per_id => l_ptnl_rec.ptnl_ler_for_per_id

Line 11401: hr_utility.set_location('Leaving:'|| l_proc, 10);

11397: --
11398: end if;
11399: close c_ptnl;
11400: --
11401: hr_utility.set_location('Leaving:'|| l_proc, 10);
11402: --
11403: end update_ptnl_per_for_ler;
11404: --
11405: procedure p_reinstate_info_to_form (

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

11859: l_enrt_cvg_strt_dt date;
11860: --
11861: begin
11862: --
11863: hr_utility.set_location('Entering ' || l_proc,10);
11864: --
11865: open c_bckdt_pil;
11866: fetch c_bckdt_pil into l_bckdt_pil_prev_stat_cd, l_bckdt_pil_ovn, l_bckdt_lf_evt_ocrd_dt ;
11867: close c_bckdt_pil;

Line 11870: hr_utility.set_location( ' p_bckdt_per_in_ler_id'||p_bckdt_per_in_ler_id,99) ;

11866: fetch c_bckdt_pil into l_bckdt_pil_prev_stat_cd, l_bckdt_pil_ovn, l_bckdt_lf_evt_ocrd_dt ;
11867: close c_bckdt_pil;
11868: l_bckt_csd_per_in_ler_id := p_bckdt_per_in_ler_id ;
11869:
11870: hr_utility.set_location( ' p_bckdt_per_in_ler_id'||p_bckdt_per_in_ler_id,99) ;
11871: hr_utility.set_location( ' l_bckt_csd_per_in_ler_id ' || l_bckt_csd_per_in_ler_id, 99 );
11872:
11873: ben_close_enrollment.reopen_single_life_event
11874: (p_per_in_ler_id => p_bckdt_per_in_ler_id

Line 11871: hr_utility.set_location( ' l_bckt_csd_per_in_ler_id ' || l_bckt_csd_per_in_ler_id, 99 );

11867: close c_bckdt_pil;
11868: l_bckt_csd_per_in_ler_id := p_bckdt_per_in_ler_id ;
11869:
11870: hr_utility.set_location( ' p_bckdt_per_in_ler_id'||p_bckdt_per_in_ler_id,99) ;
11871: hr_utility.set_location( ' l_bckt_csd_per_in_ler_id ' || l_bckt_csd_per_in_ler_id, 99 );
11872:
11873: ben_close_enrollment.reopen_single_life_event
11874: (p_per_in_ler_id => p_bckdt_per_in_ler_id
11875: ,p_person_id => p_person_id

Line 11914: hr_utility.set_location('Inside BCKDT pen loop ' || l_proc,20);

11910: --
11911: -- If the enrollment record is valid for the current
11912: -- effective_date then recreate the enrollment.
11913: --
11914: hr_utility.set_location('Inside BCKDT pen loop ' || l_proc,20);
11915: hr_utility.set_location('prtt rslt id ' || l_bckdt_pen_rec.prtt_enrt_rslt_id,20);
11916: --
11917: -- 9999 modify the if clause to look at effective_end_date
11918: -- Why this condition? Is it to look at only the enrollments

Line 11915: hr_utility.set_location('prtt rslt id ' || l_bckdt_pen_rec.prtt_enrt_rslt_id,20);

11911: -- If the enrollment record is valid for the current
11912: -- effective_date then recreate the enrollment.
11913: --
11914: hr_utility.set_location('Inside BCKDT pen loop ' || l_proc,20);
11915: hr_utility.set_location('prtt rslt id ' || l_bckdt_pen_rec.prtt_enrt_rslt_id,20);
11916: --
11917: -- 9999 modify the if clause to look at effective_end_date
11918: -- Why this condition? Is it to look at only the enrollments
11919: -- which are valid as of benmngle run date? If so then should it

Line 11959: hr_utility.set_location('Date used to reinstate the enrollment = ' || g_sys_date, 333);

11955: l_bckdt_pen_rec.effective_start_date);
11956: --
11957: l_max_enrt_esd := greatest(g_sys_date, nvl(l_max_enrt_esd, hr_api.g_sot));
11958: --
11959: hr_utility.set_location('Date used to reinstate the enrollment = ' || g_sys_date, 333);
11960: if g_sys_date <= l_bckdt_pen_rec.effective_end_date
11961: then
11962: --
11963: -- Get the electable choice data to create enrollment row.

Line 11965: hr_utility.set_location('epe fetch pl ' || l_bckdt_pen_rec.pl_id,30);

11961: then
11962: --
11963: -- Get the electable choice data to create enrollment row.
11964: --
11965: hr_utility.set_location('epe fetch pl ' || l_bckdt_pen_rec.pl_id,30);
11966: hr_utility.set_location('epe fetch pgm ' || l_bckdt_pen_rec.pgm_id,30);
11967: hr_utility.set_location('epe fetch oipl ' || l_bckdt_pen_rec.oipl_id,30);
11968: hr_utility.set_location('epe fetch pil ' || l_bckt_csd_per_in_ler_id,30);
11969: open c_epe_pen(l_bckdt_pen_rec.pl_id,

Line 11966: hr_utility.set_location('epe fetch pgm ' || l_bckdt_pen_rec.pgm_id,30);

11962: --
11963: -- Get the electable choice data to create enrollment row.
11964: --
11965: hr_utility.set_location('epe fetch pl ' || l_bckdt_pen_rec.pl_id,30);
11966: hr_utility.set_location('epe fetch pgm ' || l_bckdt_pen_rec.pgm_id,30);
11967: hr_utility.set_location('epe fetch oipl ' || l_bckdt_pen_rec.oipl_id,30);
11968: hr_utility.set_location('epe fetch pil ' || l_bckt_csd_per_in_ler_id,30);
11969: open c_epe_pen(l_bckdt_pen_rec.pl_id,
11970: l_bckdt_pen_rec.pgm_id,

Line 11967: hr_utility.set_location('epe fetch oipl ' || l_bckdt_pen_rec.oipl_id,30);

11963: -- Get the electable choice data to create enrollment row.
11964: --
11965: hr_utility.set_location('epe fetch pl ' || l_bckdt_pen_rec.pl_id,30);
11966: hr_utility.set_location('epe fetch pgm ' || l_bckdt_pen_rec.pgm_id,30);
11967: hr_utility.set_location('epe fetch oipl ' || l_bckdt_pen_rec.oipl_id,30);
11968: hr_utility.set_location('epe fetch pil ' || l_bckt_csd_per_in_ler_id,30);
11969: open c_epe_pen(l_bckdt_pen_rec.pl_id,
11970: l_bckdt_pen_rec.pgm_id,
11971: l_bckdt_pen_rec.oipl_id,

Line 11968: hr_utility.set_location('epe fetch pil ' || l_bckt_csd_per_in_ler_id,30);

11964: --
11965: hr_utility.set_location('epe fetch pl ' || l_bckdt_pen_rec.pl_id,30);
11966: hr_utility.set_location('epe fetch pgm ' || l_bckdt_pen_rec.pgm_id,30);
11967: hr_utility.set_location('epe fetch oipl ' || l_bckdt_pen_rec.oipl_id,30);
11968: hr_utility.set_location('epe fetch pil ' || l_bckt_csd_per_in_ler_id,30);
11969: open c_epe_pen(l_bckdt_pen_rec.pl_id,
11970: l_bckdt_pen_rec.pgm_id,
11971: l_bckdt_pen_rec.oipl_id,
11972: l_bckt_csd_per_in_ler_id);

Line 11975: hr_utility.set_location('After epe fetch ' || l_proc,30);

11971: l_bckdt_pen_rec.oipl_id,
11972: l_bckt_csd_per_in_ler_id);
11973: fetch c_epe_pen into l_epe_pen_rec;
11974: close c_epe_pen;
11975: hr_utility.set_location('After epe fetch ' || l_proc,30);
11976: hr_utility.set_location('After epe epe ' || l_epe_pen_rec.elig_per_elctbl_chc_id,30);
11977: --
11978: --
11979: l_num_bnft_recs := 0;

Line 11976: hr_utility.set_location('After epe epe ' || l_epe_pen_rec.elig_per_elctbl_chc_id,30);

11972: l_bckt_csd_per_in_ler_id);
11973: fetch c_epe_pen into l_epe_pen_rec;
11974: close c_epe_pen;
11975: hr_utility.set_location('After epe fetch ' || l_proc,30);
11976: hr_utility.set_location('After epe epe ' || l_epe_pen_rec.elig_per_elctbl_chc_id,30);
11977: --
11978: --
11979: l_num_bnft_recs := 0;
11980: l_bnft_entr_val_found := FALSE;

Line 11986: hr_utility.set_location('Inside bnft loop ' || l_proc,40);

11982: --
11983: open c_bnft(l_epe_pen_rec.elig_per_elctbl_chc_id,l_bckdt_pen_rec.bnft_ordr_num );
11984: loop
11985: --
11986: hr_utility.set_location('Inside bnft loop ' || l_proc,40);
11987: -- BUG 3315323
11988: --
11989: fetch c_bnft into l_bnft_rec;
11990: exit when c_bnft%notfound;

Line 12021: hr_utility.set_location(l_proc,50);

12017: l_bnft_rec.val := l_bckdt_pen_rec.BNFT_AMT;
12018: --
12019: end if;
12020: end if;
12021: hr_utility.set_location(l_proc,50);
12022: close c_bnft;
12023: --
12024: for l_count in 1..10 loop
12025: --

Line 12041: hr_utility.set_location('Inside rate loop ' ||l_proc,50);

12037: for l_rec in c_rt(l_epe_pen_rec.elig_per_elctbl_chc_id,
12038: l_bnft_rec.enrt_bnft_id)
12039: loop
12040: --
12041: hr_utility.set_location('Inside rate loop ' ||l_proc,50);
12042: --
12043: -- Get the prtt rate val for this enrollment result.
12044: -- Use to pass to the enrollment process.
12045: --

Line 12049: hr_utility.set_location('enrt_rt_id : dflt_val : val : entr_val' ||

12045: --
12046: -- Bug : 1634870 : If the user not selected the rate before backout
12047: -- then do not pass it to the reinstate process.
12048: --
12049: hr_utility.set_location('enrt_rt_id : dflt_val : val : entr_val' ||
12050: '_at_enrt_flag : acty_base_rt_id : ' , 501);
12051: hr_utility.set_location(l_rec.enrt_rt_id || ' : ' || l_rec.dflt_val || ' : ' || l_rec.val || '
12052: : '
12053: || l_rec.entr_val_at_enrt_flag || ' : ' ||

Line 12051: hr_utility.set_location(l_rec.enrt_rt_id || ' : ' || l_rec.dflt_val || ' : ' || l_rec.val || '

12047: -- then do not pass it to the reinstate process.
12048: --
12049: hr_utility.set_location('enrt_rt_id : dflt_val : val : entr_val' ||
12050: '_at_enrt_flag : acty_base_rt_id : ' , 501);
12051: hr_utility.set_location(l_rec.enrt_rt_id || ' : ' || l_rec.dflt_val || ' : ' || l_rec.val || '
12052: : '
12053: || l_rec.entr_val_at_enrt_flag || ' : ' ||
12054: l_rec.acty_base_rt_id, 501);
12055: --

Line 12063: hr_utility.set_location('prtt_rt_val_id : rt_val : ' ||

12059: fetch c_prv into l_prv_rec;
12060: if c_prv%found then -- l_prv_rec.prtt_rt_val_id is not null then
12061: --
12062: l_count := l_count+1;
12063: hr_utility.set_location('prtt_rt_val_id : rt_val : ' ||
12064: l_prv_rec.prtt_rt_val_id || ' : ' || l_prv_rec.rt_val
12065: || ' : ' || l_prv_rec.acty_base_rt_id , 502);
12066: l_rt_table(l_count).enrt_rt_id := l_rec.enrt_rt_id;
12067: if l_prv_rec.mlt_cd in ('CL','CVG','AP','PRNT','CLANDCVG','APANDCVG','PRNTANDCVG') then

Line 12119: hr_utility.set_location('Calling ben_election_information ' ||l_proc,60);

12115: l_enrt_cvg_strt_dt := l_bckdt_pen_rec.enrt_cvg_strt_dt ;
12116: end if ;
12117: -- 5746429 ends
12118:
12119: hr_utility.set_location('Calling ben_election_information ' ||l_proc,60);
12120: hr_utility.set_location('Calling l_bnft_rec.val ' ||l_bnft_rec.val,60);
12121: hr_utility.set_location('Calling l_epe_pen_rec.prtt_enrt_rslt_id ' ||l_epe_pen_rec.prtt_enrt_rslt_id,60);
12122: hr_utility.set_location('Calling l_bnft_rec.prtt_enrt_rslt_id ' ||l_bnft_rec.prtt_enrt_rslt_id,60);
12123: hr_utility.set_location('Calling l_enrt_cvg_strt_dt ' ||l_enrt_cvg_strt_dt,60);

Line 12120: hr_utility.set_location('Calling l_bnft_rec.val ' ||l_bnft_rec.val,60);

12116: end if ;
12117: -- 5746429 ends
12118:
12119: hr_utility.set_location('Calling ben_election_information ' ||l_proc,60);
12120: hr_utility.set_location('Calling l_bnft_rec.val ' ||l_bnft_rec.val,60);
12121: hr_utility.set_location('Calling l_epe_pen_rec.prtt_enrt_rslt_id ' ||l_epe_pen_rec.prtt_enrt_rslt_id,60);
12122: hr_utility.set_location('Calling l_bnft_rec.prtt_enrt_rslt_id ' ||l_bnft_rec.prtt_enrt_rslt_id,60);
12123: hr_utility.set_location('Calling l_enrt_cvg_strt_dt ' ||l_enrt_cvg_strt_dt,60);
12124:

Line 12121: hr_utility.set_location('Calling l_epe_pen_rec.prtt_enrt_rslt_id ' ||l_epe_pen_rec.prtt_enrt_rslt_id,60);

12117: -- 5746429 ends
12118:
12119: hr_utility.set_location('Calling ben_election_information ' ||l_proc,60);
12120: hr_utility.set_location('Calling l_bnft_rec.val ' ||l_bnft_rec.val,60);
12121: hr_utility.set_location('Calling l_epe_pen_rec.prtt_enrt_rslt_id ' ||l_epe_pen_rec.prtt_enrt_rslt_id,60);
12122: hr_utility.set_location('Calling l_bnft_rec.prtt_enrt_rslt_id ' ||l_bnft_rec.prtt_enrt_rslt_id,60);
12123: hr_utility.set_location('Calling l_enrt_cvg_strt_dt ' ||l_enrt_cvg_strt_dt,60);
12124:
12125: -- since it is the result level backout the result id are nullified so

Line 12122: hr_utility.set_location('Calling l_bnft_rec.prtt_enrt_rslt_id ' ||l_bnft_rec.prtt_enrt_rslt_id,60);

12118:
12119: hr_utility.set_location('Calling ben_election_information ' ||l_proc,60);
12120: hr_utility.set_location('Calling l_bnft_rec.val ' ||l_bnft_rec.val,60);
12121: hr_utility.set_location('Calling l_epe_pen_rec.prtt_enrt_rslt_id ' ||l_epe_pen_rec.prtt_enrt_rslt_id,60);
12122: hr_utility.set_location('Calling l_bnft_rec.prtt_enrt_rslt_id ' ||l_bnft_rec.prtt_enrt_rslt_id,60);
12123: hr_utility.set_location('Calling l_enrt_cvg_strt_dt ' ||l_enrt_cvg_strt_dt,60);
12124:
12125: -- since it is the result level backout the result id are nullified so
12126: -- Election information wont look for the result id to get the old result information

Line 12123: hr_utility.set_location('Calling l_enrt_cvg_strt_dt ' ||l_enrt_cvg_strt_dt,60);

12119: hr_utility.set_location('Calling ben_election_information ' ||l_proc,60);
12120: hr_utility.set_location('Calling l_bnft_rec.val ' ||l_bnft_rec.val,60);
12121: hr_utility.set_location('Calling l_epe_pen_rec.prtt_enrt_rslt_id ' ||l_epe_pen_rec.prtt_enrt_rslt_id,60);
12122: hr_utility.set_location('Calling l_bnft_rec.prtt_enrt_rslt_id ' ||l_bnft_rec.prtt_enrt_rslt_id,60);
12123: hr_utility.set_location('Calling l_enrt_cvg_strt_dt ' ||l_enrt_cvg_strt_dt,60);
12124:
12125: -- since it is the result level backout the result id are nullified so
12126: -- Election information wont look for the result id to get the old result information
12127:

Line 12161: hr_utility.set_location('Suspended Flag ' ||l_bckdt_pen_rec.SSPNDD_FLAG,60);

12157: pen id(from backed out result) record and then determine the interim epe record. Interim record fetched by cursor c_get_epe_id
12158: assign to g_reinstate_interim_chc_id which will be used in bensuenr.pkb to determine the interim*/
12159: g_reinstate_interim_flag := false;
12160: g_reinstate_interim_chc_id := null;
12161: hr_utility.set_location('Suspended Flag ' ||l_bckdt_pen_rec.SSPNDD_FLAG,60);
12162: hr_utility.set_location('Interim Rslt Id ' ||l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID,60);
12163: hr_utility.set_location('P_per_in_ler_id ' ||p_per_in_ler_id,60);
12164: hr_utility.set_location('p_bckdt_per_in_ler_id ' ||p_bckdt_per_in_ler_id,60);
12165: if(l_bckdt_pen_rec.SSPNDD_FLAG = 'Y' and l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID is not NULL) then

Line 12162: hr_utility.set_location('Interim Rslt Id ' ||l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID,60);

12158: assign to g_reinstate_interim_chc_id which will be used in bensuenr.pkb to determine the interim*/
12159: g_reinstate_interim_flag := false;
12160: g_reinstate_interim_chc_id := null;
12161: hr_utility.set_location('Suspended Flag ' ||l_bckdt_pen_rec.SSPNDD_FLAG,60);
12162: hr_utility.set_location('Interim Rslt Id ' ||l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID,60);
12163: hr_utility.set_location('P_per_in_ler_id ' ||p_per_in_ler_id,60);
12164: hr_utility.set_location('p_bckdt_per_in_ler_id ' ||p_bckdt_per_in_ler_id,60);
12165: if(l_bckdt_pen_rec.SSPNDD_FLAG = 'Y' and l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID is not NULL) then
12166: if(l_epe_pen_rec.elctbl_flag = 'N') then

Line 12163: hr_utility.set_location('P_per_in_ler_id ' ||p_per_in_ler_id,60);

12159: g_reinstate_interim_flag := false;
12160: g_reinstate_interim_chc_id := null;
12161: hr_utility.set_location('Suspended Flag ' ||l_bckdt_pen_rec.SSPNDD_FLAG,60);
12162: hr_utility.set_location('Interim Rslt Id ' ||l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID,60);
12163: hr_utility.set_location('P_per_in_ler_id ' ||p_per_in_ler_id,60);
12164: hr_utility.set_location('p_bckdt_per_in_ler_id ' ||p_bckdt_per_in_ler_id,60);
12165: if(l_bckdt_pen_rec.SSPNDD_FLAG = 'Y' and l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID is not NULL) then
12166: if(l_epe_pen_rec.elctbl_flag = 'N') then
12167: open c_get_epe_id(l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID,p_bckdt_per_in_ler_id);

Line 12164: hr_utility.set_location('p_bckdt_per_in_ler_id ' ||p_bckdt_per_in_ler_id,60);

12160: g_reinstate_interim_chc_id := null;
12161: hr_utility.set_location('Suspended Flag ' ||l_bckdt_pen_rec.SSPNDD_FLAG,60);
12162: hr_utility.set_location('Interim Rslt Id ' ||l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID,60);
12163: hr_utility.set_location('P_per_in_ler_id ' ||p_per_in_ler_id,60);
12164: hr_utility.set_location('p_bckdt_per_in_ler_id ' ||p_bckdt_per_in_ler_id,60);
12165: if(l_bckdt_pen_rec.SSPNDD_FLAG = 'Y' and l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID is not NULL) then
12166: if(l_epe_pen_rec.elctbl_flag = 'N') then
12167: open c_get_epe_id(l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID,p_bckdt_per_in_ler_id);
12168: fetch c_get_epe_id into l_interim_epe_id;

Line 12170: hr_utility.set_location('Interim epe id '||l_interim_epe_id,9995);

12166: if(l_epe_pen_rec.elctbl_flag = 'N') then
12167: open c_get_epe_id(l_bckdt_pen_rec.RPLCS_SSPNDD_RSLT_ID,p_bckdt_per_in_ler_id);
12168: fetch c_get_epe_id into l_interim_epe_id;
12169: close c_get_epe_id;
12170: hr_utility.set_location('Interim epe id '||l_interim_epe_id,9995);
12171: g_reinstate_interim_flag := true;
12172: g_reinstate_interim_chc_id := l_interim_epe_id;
12173: end if;
12174: end if;

Line 12365: hr_utility.set_location('prtt_enrt_rslt_id = ' ||

12361: := l_epe_pen_rec.dpnt_cvg_strt_dt_cd;
12362: l_enrt_table(l_enrt_count).dpnt_cvg_strt_dt_rl
12363: := l_epe_pen_rec.dpnt_cvg_strt_dt_rl;
12364: /* Trace messages for the enrollments, uncomment for tracing bugs */
12365: hr_utility.set_location('prtt_enrt_rslt_id = ' ||
12366: l_enrt_table(l_enrt_count).prtt_enrt_rslt_id, 9999);
12367: hr_utility.set_location('bckdt_prtt_enrt_rslt_id = ' ||
12368: l_enrt_table(l_enrt_count).bckdt_prtt_enrt_rslt_id, 9999);
12369: hr_utility.set_location('bckdt_enrt_ovridn_flag = ' ||

Line 12367: hr_utility.set_location('bckdt_prtt_enrt_rslt_id = ' ||

12363: := l_epe_pen_rec.dpnt_cvg_strt_dt_rl;
12364: /* Trace messages for the enrollments, uncomment for tracing bugs */
12365: hr_utility.set_location('prtt_enrt_rslt_id = ' ||
12366: l_enrt_table(l_enrt_count).prtt_enrt_rslt_id, 9999);
12367: hr_utility.set_location('bckdt_prtt_enrt_rslt_id = ' ||
12368: l_enrt_table(l_enrt_count).bckdt_prtt_enrt_rslt_id, 9999);
12369: hr_utility.set_location('bckdt_enrt_ovridn_flag = ' ||
12370: l_enrt_table(l_enrt_count).bckdt_enrt_ovridn_flag, 72);
12371: hr_utility.set_location('bckdt_enrt_cvg_strt_dt = ' ||

Line 12369: hr_utility.set_location('bckdt_enrt_ovridn_flag = ' ||

12365: hr_utility.set_location('prtt_enrt_rslt_id = ' ||
12366: l_enrt_table(l_enrt_count).prtt_enrt_rslt_id, 9999);
12367: hr_utility.set_location('bckdt_prtt_enrt_rslt_id = ' ||
12368: l_enrt_table(l_enrt_count).bckdt_prtt_enrt_rslt_id, 9999);
12369: hr_utility.set_location('bckdt_enrt_ovridn_flag = ' ||
12370: l_enrt_table(l_enrt_count).bckdt_enrt_ovridn_flag, 72);
12371: hr_utility.set_location('bckdt_enrt_cvg_strt_dt = ' ||
12372: l_enrt_table(l_enrt_count).bckdt_enrt_cvg_strt_dt, 72);
12373: hr_utility.set_location('pen_ovn_number = ' ||

Line 12371: hr_utility.set_location('bckdt_enrt_cvg_strt_dt = ' ||

12367: hr_utility.set_location('bckdt_prtt_enrt_rslt_id = ' ||
12368: l_enrt_table(l_enrt_count).bckdt_prtt_enrt_rslt_id, 9999);
12369: hr_utility.set_location('bckdt_enrt_ovridn_flag = ' ||
12370: l_enrt_table(l_enrt_count).bckdt_enrt_ovridn_flag, 72);
12371: hr_utility.set_location('bckdt_enrt_cvg_strt_dt = ' ||
12372: l_enrt_table(l_enrt_count).bckdt_enrt_cvg_strt_dt, 72);
12373: hr_utility.set_location('pen_ovn_number = ' ||
12374: l_enrt_table(l_enrt_count).pen_ovn_number, 9999);
12375: hr_utility.set_location('old_pl_id = ' ||

Line 12373: hr_utility.set_location('pen_ovn_number = ' ||

12369: hr_utility.set_location('bckdt_enrt_ovridn_flag = ' ||
12370: l_enrt_table(l_enrt_count).bckdt_enrt_ovridn_flag, 72);
12371: hr_utility.set_location('bckdt_enrt_cvg_strt_dt = ' ||
12372: l_enrt_table(l_enrt_count).bckdt_enrt_cvg_strt_dt, 72);
12373: hr_utility.set_location('pen_ovn_number = ' ||
12374: l_enrt_table(l_enrt_count).pen_ovn_number, 9999);
12375: hr_utility.set_location('old_pl_id = ' ||
12376: l_enrt_table(l_enrt_count).old_pl_id, 9999);
12377: hr_utility.set_location('new_pl_id = ' ||

Line 12375: hr_utility.set_location('old_pl_id = ' ||

12371: hr_utility.set_location('bckdt_enrt_cvg_strt_dt = ' ||
12372: l_enrt_table(l_enrt_count).bckdt_enrt_cvg_strt_dt, 72);
12373: hr_utility.set_location('pen_ovn_number = ' ||
12374: l_enrt_table(l_enrt_count).pen_ovn_number, 9999);
12375: hr_utility.set_location('old_pl_id = ' ||
12376: l_enrt_table(l_enrt_count).old_pl_id, 9999);
12377: hr_utility.set_location('new_pl_id = ' ||
12378: l_enrt_table(l_enrt_count).new_pl_id, 9999);
12379: hr_utility.set_location('old_oipl_id = ' ||

Line 12377: hr_utility.set_location('new_pl_id = ' ||

12373: hr_utility.set_location('pen_ovn_number = ' ||
12374: l_enrt_table(l_enrt_count).pen_ovn_number, 9999);
12375: hr_utility.set_location('old_pl_id = ' ||
12376: l_enrt_table(l_enrt_count).old_pl_id, 9999);
12377: hr_utility.set_location('new_pl_id = ' ||
12378: l_enrt_table(l_enrt_count).new_pl_id, 9999);
12379: hr_utility.set_location('old_oipl_id = ' ||
12380: l_enrt_table(l_enrt_count).old_oipl_id, 9999);
12381: hr_utility.set_location('new_oipl_id = ' ||

Line 12379: hr_utility.set_location('old_oipl_id = ' ||

12375: hr_utility.set_location('old_pl_id = ' ||
12376: l_enrt_table(l_enrt_count).old_pl_id, 9999);
12377: hr_utility.set_location('new_pl_id = ' ||
12378: l_enrt_table(l_enrt_count).new_pl_id, 9999);
12379: hr_utility.set_location('old_oipl_id = ' ||
12380: l_enrt_table(l_enrt_count).old_oipl_id, 9999);
12381: hr_utility.set_location('new_oipl_id = ' ||
12382: l_enrt_table(l_enrt_count).new_oipl_id, 9999);
12383: hr_utility.set_location('old_pl_typ_id = ' ||

Line 12381: hr_utility.set_location('new_oipl_id = ' ||

12377: hr_utility.set_location('new_pl_id = ' ||
12378: l_enrt_table(l_enrt_count).new_pl_id, 9999);
12379: hr_utility.set_location('old_oipl_id = ' ||
12380: l_enrt_table(l_enrt_count).old_oipl_id, 9999);
12381: hr_utility.set_location('new_oipl_id = ' ||
12382: l_enrt_table(l_enrt_count).new_oipl_id, 9999);
12383: hr_utility.set_location('old_pl_typ_id = ' ||
12384: l_enrt_table(l_enrt_count).old_pl_typ_id, 9999);
12385: hr_utility.set_location('new_pl_typ_id = ' ||

Line 12383: hr_utility.set_location('old_pl_typ_id = ' ||

12379: hr_utility.set_location('old_oipl_id = ' ||
12380: l_enrt_table(l_enrt_count).old_oipl_id, 9999);
12381: hr_utility.set_location('new_oipl_id = ' ||
12382: l_enrt_table(l_enrt_count).new_oipl_id, 9999);
12383: hr_utility.set_location('old_pl_typ_id = ' ||
12384: l_enrt_table(l_enrt_count).old_pl_typ_id, 9999);
12385: hr_utility.set_location('new_pl_typ_id = ' ||
12386: l_enrt_table(l_enrt_count).new_pl_typ_id, 9999);
12387: hr_utility.set_location('pgm_id = ' ||

Line 12385: hr_utility.set_location('new_pl_typ_id = ' ||

12381: hr_utility.set_location('new_oipl_id = ' ||
12382: l_enrt_table(l_enrt_count).new_oipl_id, 9999);
12383: hr_utility.set_location('old_pl_typ_id = ' ||
12384: l_enrt_table(l_enrt_count).old_pl_typ_id, 9999);
12385: hr_utility.set_location('new_pl_typ_id = ' ||
12386: l_enrt_table(l_enrt_count).new_pl_typ_id, 9999);
12387: hr_utility.set_location('pgm_id = ' ||
12388: l_enrt_table(l_enrt_count).pgm_id, 9999);
12389: hr_utility.set_location('elig_per_elctbl_chc_id = ' ||

Line 12387: hr_utility.set_location('pgm_id = ' ||

12383: hr_utility.set_location('old_pl_typ_id = ' ||
12384: l_enrt_table(l_enrt_count).old_pl_typ_id, 9999);
12385: hr_utility.set_location('new_pl_typ_id = ' ||
12386: l_enrt_table(l_enrt_count).new_pl_typ_id, 9999);
12387: hr_utility.set_location('pgm_id = ' ||
12388: l_enrt_table(l_enrt_count).pgm_id, 9999);
12389: hr_utility.set_location('elig_per_elctbl_chc_id = ' ||
12390: l_enrt_table(l_enrt_count).elig_per_elctbl_chc_id, 9999);
12391: /**/

Line 12389: hr_utility.set_location('elig_per_elctbl_chc_id = ' ||

12385: hr_utility.set_location('new_pl_typ_id = ' ||
12386: l_enrt_table(l_enrt_count).new_pl_typ_id, 9999);
12387: hr_utility.set_location('pgm_id = ' ||
12388: l_enrt_table(l_enrt_count).pgm_id, 9999);
12389: hr_utility.set_location('elig_per_elctbl_chc_id = ' ||
12390: l_enrt_table(l_enrt_count).elig_per_elctbl_chc_id, 9999);
12391: /**/
12392: --
12393: end if;

Line 12500: hr_utility.set_location('Date for multi row edits = ' ||

12496: end if;
12497: --
12498: if l_bckdt_pil_prev_stat_cd<>'STRTD' or
12499: l_found_non_automatics then
12500: hr_utility.set_location('Date for multi row edits = ' ||
12501: l_pgm_table(l_cnt).max_enrt_esd || ' ' || ' pgm = ' ||
12502:
12503: l_pgm_table(l_cnt).pgm_id, 333);
12504: ben_prtt_enrt_result_api.multi_rows_edit

Line 12529: hr_utility.set_location('Date for multi row edits = ' ||

12525: -- created.
12526: --
12527: -- Call multi row edits just as miscellanious form calls.
12528: --
12529: hr_utility.set_location('Date for multi row edits = ' ||
12530: l_max_enrt_esd , 333);
12531: ben_prtt_enrt_result_api.multi_rows_edit
12532: (p_person_id => p_person_id,
12533: p_effective_date => l_max_enrt_esd,

Line 12604: hr_utility.set_location('Date = ' || l_pl_table(l_cnt).max_enrt_esd, 333);

12600: for l_cnt in 1..l_pl_table.LAST loop
12601: --
12602: -- Invoke post result process
12603: --
12604: hr_utility.set_location('Date = ' || l_pl_table(l_cnt).max_enrt_esd, 333);
12605: hr_utility.set_location('PL = ' || l_pl_table(l_cnt).pl_id, 333);
12606: --RCHASE - ensure automatics are handled differently than
12607: -- form enrollments by process_post_enrollment
12608: -- Bug 5623259.

Line 12605: hr_utility.set_location('PL = ' || l_pl_table(l_cnt).pl_id, 333);

12601: --
12602: -- Invoke post result process
12603: --
12604: hr_utility.set_location('Date = ' || l_pl_table(l_cnt).max_enrt_esd, 333);
12605: hr_utility.set_location('PL = ' || l_pl_table(l_cnt).pl_id, 333);
12606: --RCHASE - ensure automatics are handled differently than
12607: -- form enrollments by process_post_enrollment
12608: -- Bug 5623259.
12609: --

Line 12647: hr_utility.set_location('Enrt Date = ' ||

12643: for l_cnt in 1..l_enrt_table.LAST loop
12644: --
12645: -- Reinstate the enrollment beneficiary rows.
12646: --
12647: hr_utility.set_location('Enrt Date = ' ||
12648: l_enrt_table(l_cnt).effective_start_date, 333);
12649: hr_utility.set_location('Reinstate the enrollment beneficiary rows',14);
12650: reinstate_pbn_per_pen(
12651: p_person_id => p_person_id

Line 12649: hr_utility.set_location('Reinstate the enrollment beneficiary rows',14);

12645: -- Reinstate the enrollment beneficiary rows.
12646: --
12647: hr_utility.set_location('Enrt Date = ' ||
12648: l_enrt_table(l_cnt).effective_start_date, 333);
12649: hr_utility.set_location('Reinstate the enrollment beneficiary rows',14);
12650: reinstate_pbn_per_pen(
12651: p_person_id => p_person_id
12652: ,p_bckdt_prtt_enrt_rslt_id
12653: => l_enrt_table(l_cnt).bckdt_prtt_enrt_rslt_id

Line 12729: hr_utility.set_location('Restoring the overriden result: ' ||

12725: for i in 1..l_enrt_table.last loop
12726: --
12727: if l_enrt_table(i).bckdt_enrt_ovridn_flag = 'Y' then
12728: --
12729: hr_utility.set_location('Restoring the overriden result: ' ||
12730: l_enrt_table(i).bckdt_prtt_enrt_rslt_id, 72);
12731: --
12732: -- Get the latest object version number as the post enrollment process
12733: -- may have updated the new enrt result.

Line 12759: hr_utility.set_location('Updating new prv: ' || l_rt_rec.new_prv_id ||

12755: for l_rt_rec in c_ovridn_rt(l_enrt_table(i).bckdt_prtt_enrt_rslt_id
12756: ,l_enrt_table(i).prtt_enrt_rslt_id )
12757: loop
12758: --
12759: hr_utility.set_location('Updating new prv: ' || l_rt_rec.new_prv_id ||
12760: ' with overriden prv_id: ' ||
12761: l_rt_rec.prtt_rt_val_id, 72);
12762: --
12763: ben_prtt_rt_val_api.update_prtt_rt_val

Line 12787: hr_utility.set_location('Updating new ecd with overriden ecd_id: ' ||

12783: ,l_enrt_table(i).prtt_enrt_rslt_id
12784: ,l_enrt_table(i).g_sys_date)
12785: loop
12786: --
12787: hr_utility.set_location('Updating new ecd with overriden ecd_id: ' ||
12788: l_dpnt_rec.elig_cvrd_dpnt_id, 72);
12789: --
12790: ben_elig_cvrd_dpnt_api.update_elig_cvrd_dpnt
12791: (p_elig_cvrd_dpnt_id => l_dpnt_rec.new_pdp_id

Line 12829: hr_utility.set_location ('Leaving '||l_proc,10);

12825: end if;
12826: --
12827: --end if;
12828: --
12829: hr_utility.set_location ('Leaving '||l_proc,10);
12830: --
12831: --
12832: end reinstate_the_prev_enrt_rslt;
12833: --

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

12848: ben_elig_per_elctbl_chc
12849: where elig_per_elctbl_chc_id = c_elig_per_elctbl_chc_id;
12850: l_epe_rec c_epe_det%rowtype;
12851: begin
12852: hr_utility.set_location ('Entering '||l_proc,10);
12853: hr_utility.set_location ('p_pl_typ_id '||p_pl_typ_id,10);
12854: hr_utility.set_location ('p_pgm_id '||p_pgm_id,10);
12855: for l_cnt in 1..g_reinstated_defaults.LAST loop
12856: open c_epe_det(g_reinstated_defaults(l_cnt));

Line 12853: hr_utility.set_location ('p_pl_typ_id '||p_pl_typ_id,10);

12849: where elig_per_elctbl_chc_id = c_elig_per_elctbl_chc_id;
12850: l_epe_rec c_epe_det%rowtype;
12851: begin
12852: hr_utility.set_location ('Entering '||l_proc,10);
12853: hr_utility.set_location ('p_pl_typ_id '||p_pl_typ_id,10);
12854: hr_utility.set_location ('p_pgm_id '||p_pgm_id,10);
12855: for l_cnt in 1..g_reinstated_defaults.LAST loop
12856: open c_epe_det(g_reinstated_defaults(l_cnt));
12857: fetch c_epe_det into l_epe_rec;

Line 12854: hr_utility.set_location ('p_pgm_id '||p_pgm_id,10);

12850: l_epe_rec c_epe_det%rowtype;
12851: begin
12852: hr_utility.set_location ('Entering '||l_proc,10);
12853: hr_utility.set_location ('p_pl_typ_id '||p_pl_typ_id,10);
12854: hr_utility.set_location ('p_pgm_id '||p_pgm_id,10);
12855: for l_cnt in 1..g_reinstated_defaults.LAST loop
12856: open c_epe_det(g_reinstated_defaults(l_cnt));
12857: fetch c_epe_det into l_epe_rec;
12858: close c_epe_det;

Line 12862: hr_utility.set_location ('Leaving '||l_proc,11);

12858: close c_epe_det;
12859:
12860: if( nvl(l_epe_rec.pgm_id,-1) = nvl(p_pgm_id,-1) and l_epe_rec.pl_typ_id = p_pl_typ_id) then
12861: l_flag := 'Y' ;
12862: hr_utility.set_location ('Leaving '||l_proc,11);
12863: return l_flag;
12864: exit;
12865: end if;
12866: end loop;

Line 12867: hr_utility.set_location ('Leaving '||l_proc,12);

12863: return l_flag;
12864: exit;
12865: end if;
12866: end loop;
12867: hr_utility.set_location ('Leaving '||l_proc,12);
12868: return l_flag;
12869: end check_pl_typ_defaulted;
12870:
12871: /*Enhancement Bug No: 8716679: Added Function to

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

12938: l_lt_prev_pil number;
12939: l_dummy varchar2(1);
12940:
12941: begin
12942: hr_utility.set_location ('Entering '||l_proc,10);
12943:
12944: open c_int_pil_id;
12945: fetch c_int_pil_id into l_intv_pil_id;
12946: close c_int_pil_id;

Line 12947: hr_utility.set_location ('l_intv_pil_id '||l_intv_pil_id,10);

12943:
12944: open c_int_pil_id;
12945: fetch c_int_pil_id into l_intv_pil_id;
12946: close c_int_pil_id;
12947: hr_utility.set_location ('l_intv_pil_id '||l_intv_pil_id,10);
12948:
12949: open c_bckdt_pil_id;
12950: fetch c_bckdt_pil_id into l_bckdt_pil_id;
12951: close c_bckdt_pil_id;

Line 12954: hr_utility.set_location ('Backedout and reporcessing ',10);

12950: fetch c_bckdt_pil_id into l_bckdt_pil_id;
12951: close c_bckdt_pil_id;
12952:
12953: if(l_bckdt_pil_id is not null) then
12954: hr_utility.set_location ('Backedout and reporcessing ',10);
12955: return 'N';
12956: end if;
12957:
12958: if(l_intv_pil_id is null) then

Line 12959: hr_utility.set_location ('leaving4 '||l_proc,10);

12955: return 'N';
12956: end if;
12957:
12958: if(l_intv_pil_id is null) then
12959: hr_utility.set_location ('leaving4 '||l_proc,10);
12960: return 'N';
12961: else
12962: open c_future_pil;
12963: fetch c_future_pil into l_lt_prev_pil;

Line 12964: hr_utility.set_location ('l_lt_prev_pil '||l_lt_prev_pil,10);

12960: return 'N';
12961: else
12962: open c_future_pil;
12963: fetch c_future_pil into l_lt_prev_pil;
12964: hr_utility.set_location ('l_lt_prev_pil '||l_lt_prev_pil,10);
12965: if(c_future_pil%notfound) then
12966: close c_future_pil;
12967: open c_chk_intevent_bckdt(l_intv_pil_id);
12968: fetch c_chk_intevent_bckdt into l_dummy;

Line 12974: hr_utility.set_location ('leaving2 '||l_proc,10);

12970: close c_chk_intevent_bckdt;
12971: l_flag := 'N';
12972: else
12973: close c_chk_intevent_bckdt;
12974: hr_utility.set_location ('leaving2 '||l_proc,10);
12975: l_flag := 'Y';
12976: end if;
12977: else
12978: close c_future_pil;

Line 12979: hr_utility.set_location ('leaving3 '||l_proc,10);

12975: l_flag := 'Y';
12976: end if;
12977: else
12978: close c_future_pil;
12979: hr_utility.set_location ('leaving3 '||l_proc,10);
12980: l_flag := 'N';
12981: end if;
12982: end if;
12983: hr_utility.set_location ('leaving '||l_proc,10);

Line 12983: hr_utility.set_location ('leaving '||l_proc,10);

12979: hr_utility.set_location ('leaving3 '||l_proc,10);
12980: l_flag := 'N';
12981: end if;
12982: end if;
12983: hr_utility.set_location ('leaving '||l_proc,10);
12984: return l_flag;
12985: end call_defaults;
12986:
12987: end ben_lf_evt_clps_restore;