DBA Data[Home] [Help]

APPS.HR_PAY_INTERFACE_PKG dependencies on HR_PAY_INTERFACE_PKG

Line 1: PACKAGE BODY HR_PAY_INTERFACE_PKG AS

1: PACKAGE BODY HR_PAY_INTERFACE_PKG AS
2: /* $Header: pegpipkg.pkb 120.6 2006/01/04 06:24:05 sgelvi noship $ */
3: --
4: -- OAB Benefit view functionality
5: --

Line 33: AND cop1.effective_start_date <= hr_pay_interface_pkg.get_extract_date)

29: AND cop.effective_start_date =
30: (SELECT max(cop1.effective_start_date)
31: FROM ben_oipl_f cop1
32: WHERE cop1.oipl_id = cop.oipl_id
33: AND cop1.effective_start_date <= hr_pay_interface_pkg.get_extract_date)
34: AND opt.effective_start_date =
35: (SELECT max(opt1.effective_start_date)
36: FROM ben_opt_f opt1
37: WHERE opt1.opt_id = opt.opt_id

Line 38: AND opt1.effective_start_date <= hr_pay_interface_pkg.get_extract_date);

34: AND opt.effective_start_date =
35: (SELECT max(opt1.effective_start_date)
36: FROM ben_opt_f opt1
37: WHERE opt1.opt_id = opt.opt_id
38: AND opt1.effective_start_date <= hr_pay_interface_pkg.get_extract_date);
39: BEGIN
40: -- check to see if a P_OIPL_ID exists if not short circuit out returning NULL
41: IF P_OIPL_ID IS NULL THEN
42: RETURN(NULL);

Line 969: = hr_pay_interface_pkg.g_reporting_details_rec_var.business_group_id

965: CURSOR csr_count_same_rep_name IS
966: SELECT 1
967: FROM pay_element_types_f et
968: WHERE et.business_group_id
969: = hr_pay_interface_pkg.g_reporting_details_rec_var.business_group_id
970: AND (NVL(et.legislation_code,-99)
971: = NVL(hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code,-99))
972: AND UPPER(et.reporting_name)
973: = UPPER(hr_pay_interface_pkg.g_reporting_details_rec_var.reporting_name)

Line 971: = NVL(hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code,-99))

967: FROM pay_element_types_f et
968: WHERE et.business_group_id
969: = hr_pay_interface_pkg.g_reporting_details_rec_var.business_group_id
970: AND (NVL(et.legislation_code,-99)
971: = NVL(hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code,-99))
972: AND UPPER(et.reporting_name)
973: = UPPER(hr_pay_interface_pkg.g_reporting_details_rec_var.reporting_name)
974: AND (et.element_type_id
975: <> hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id

Line 973: = UPPER(hr_pay_interface_pkg.g_reporting_details_rec_var.reporting_name)

969: = hr_pay_interface_pkg.g_reporting_details_rec_var.business_group_id
970: AND (NVL(et.legislation_code,-99)
971: = NVL(hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code,-99))
972: AND UPPER(et.reporting_name)
973: = UPPER(hr_pay_interface_pkg.g_reporting_details_rec_var.reporting_name)
974: AND (et.element_type_id
975: <> hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id
976: OR hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id ='')
977: -- Have to ensure the reporting name doesn't exist on date-tracked

Line 975: <> hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id

971: = NVL(hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code,-99))
972: AND UPPER(et.reporting_name)
973: = UPPER(hr_pay_interface_pkg.g_reporting_details_rec_var.reporting_name)
974: AND (et.element_type_id
975: <> hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id
976: OR hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id ='')
977: -- Have to ensure the reporting name doesn't exist on date-tracked
978: -- rows (even though reporting_name isn't datetracked, it still is
979: -- possible to achieve by altering a datetrack row at the same time)

Line 976: OR hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id ='')

972: AND UPPER(et.reporting_name)
973: = UPPER(hr_pay_interface_pkg.g_reporting_details_rec_var.reporting_name)
974: AND (et.element_type_id
975: <> hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id
976: OR hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id ='')
977: -- Have to ensure the reporting name doesn't exist on date-tracked
978: -- rows (even though reporting_name isn't datetracked, it still is
979: -- possible to achieve by altering a datetrack row at the same time)
980: AND (hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date

Line 980: AND (hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date

976: OR hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id ='')
977: -- Have to ensure the reporting name doesn't exist on date-tracked
978: -- rows (even though reporting_name isn't datetracked, it still is
979: -- possible to achieve by altering a datetrack row at the same time)
980: AND (hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date
981: between et.effective_start_date and et.effective_end_date
982: OR hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date
983: between et.effective_start_date and et.effective_end_date
984: OR (hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date

Line 982: OR hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date

978: -- rows (even though reporting_name isn't datetracked, it still is
979: -- possible to achieve by altering a datetrack row at the same time)
980: AND (hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date
981: between et.effective_start_date and et.effective_end_date
982: OR hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date
983: between et.effective_start_date and et.effective_end_date
984: OR (hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date
985: < et.effective_start_date
986: AND hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date

Line 984: OR (hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date

980: AND (hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date
981: between et.effective_start_date and et.effective_end_date
982: OR hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date
983: between et.effective_start_date and et.effective_end_date
984: OR (hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date
985: < et.effective_start_date
986: AND hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date
987: > et.effective_end_date)
988: );

Line 986: AND hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date

982: OR hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date
983: between et.effective_start_date and et.effective_end_date
984: OR (hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date
985: < et.effective_start_date
986: AND hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date
987: > et.effective_end_date)
988: );
989: --
990: l_dummy VARCHAR2(1);

Line 1007: hr_pay_interface_pkg.g_reporting_details_rec_var.reporting_name

1003: CLOSE csr_count_same_rep_name;
1004: --
1005: -- Clear out the global record structure
1006: --
1007: hr_pay_interface_pkg.g_reporting_details_rec_var.reporting_name
1008: := '';
1009: hr_pay_interface_pkg.g_reporting_details_rec_var.business_group_id
1010: := '';
1011: hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code

Line 1009: hr_pay_interface_pkg.g_reporting_details_rec_var.business_group_id

1005: -- Clear out the global record structure
1006: --
1007: hr_pay_interface_pkg.g_reporting_details_rec_var.reporting_name
1008: := '';
1009: hr_pay_interface_pkg.g_reporting_details_rec_var.business_group_id
1010: := '';
1011: hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code
1012: := '';
1013: hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id

Line 1011: hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code

1007: hr_pay_interface_pkg.g_reporting_details_rec_var.reporting_name
1008: := '';
1009: hr_pay_interface_pkg.g_reporting_details_rec_var.business_group_id
1010: := '';
1011: hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code
1012: := '';
1013: hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id
1014: := '' ;
1015: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date

Line 1013: hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id

1009: hr_pay_interface_pkg.g_reporting_details_rec_var.business_group_id
1010: := '';
1011: hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code
1012: := '';
1013: hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id
1014: := '' ;
1015: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date
1016: := '' ;
1017: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date

Line 1015: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date

1011: hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code
1012: := '';
1013: hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id
1014: := '' ;
1015: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date
1016: := '' ;
1017: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date
1018: := '' ;
1019: --

Line 1017: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date

1013: hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id
1014: := '' ;
1015: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date
1016: := '' ;
1017: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date
1018: := '' ;
1019: --
1020: -- Raise an application error
1021: --

Line 1028: hr_pay_interface_pkg.g_reporting_details_rec_var.reporting_name

1024: ELSE
1025: --
1026: -- Clear out the global record structure
1027: --
1028: hr_pay_interface_pkg.g_reporting_details_rec_var.reporting_name
1029: := '';
1030: hr_pay_interface_pkg.g_reporting_details_rec_var.business_group_id
1031: := '';
1032: hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code

Line 1030: hr_pay_interface_pkg.g_reporting_details_rec_var.business_group_id

1026: -- Clear out the global record structure
1027: --
1028: hr_pay_interface_pkg.g_reporting_details_rec_var.reporting_name
1029: := '';
1030: hr_pay_interface_pkg.g_reporting_details_rec_var.business_group_id
1031: := '';
1032: hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code
1033: := '';
1034: hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id

Line 1032: hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code

1028: hr_pay_interface_pkg.g_reporting_details_rec_var.reporting_name
1029: := '';
1030: hr_pay_interface_pkg.g_reporting_details_rec_var.business_group_id
1031: := '';
1032: hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code
1033: := '';
1034: hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id
1035: := '' ;
1036: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date

Line 1034: hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id

1030: hr_pay_interface_pkg.g_reporting_details_rec_var.business_group_id
1031: := '';
1032: hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code
1033: := '';
1034: hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id
1035: := '' ;
1036: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date
1037: := '' ;
1038: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date

Line 1036: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date

1032: hr_pay_interface_pkg.g_reporting_details_rec_var.legislation_code
1033: := '';
1034: hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id
1035: := '' ;
1036: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date
1037: := '' ;
1038: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date
1039: := '' ;
1040: --

Line 1038: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date

1034: hr_pay_interface_pkg.g_reporting_details_rec_var.element_type_id
1035: := '' ;
1036: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_start_date
1037: := '' ;
1038: hr_pay_interface_pkg.g_reporting_details_rec_var.effective_end_date
1039: := '' ;
1040: --
1041: CLOSE csr_count_same_rep_name;
1042: --

Line 1148: HR_PAY_INTERFACE_PKG.g_personal_payment_method_id;

1144: CURSOR csr_ppm_delete_purge is
1145: select 1
1146: from pay_personal_payment_methods_f
1147: where personal_payment_method_id =
1148: HR_PAY_INTERFACE_PKG.g_personal_payment_method_id;
1149: --
1150: CURSOR csr_ppm_post_fpd IS
1151: SELECT 1
1152: FROM per_periods_of_service pps,

Line 1155: HR_PAY_INTERFACE_PKG.g_ppm_ass_id = paa.assignment_id

1151: SELECT 1
1152: FROM per_periods_of_service pps,
1153: per_all_assignments_f paa
1154: WHERE
1155: HR_PAY_INTERFACE_PKG.g_ppm_ass_id = paa.assignment_id
1156: AND paa.person_id = pps.person_id
1157: AND ( pps.final_process_date IS NOT NULL
1158: OR pps.last_standard_process_date IS NOT NULL)
1159: AND HR_PAY_INTERFACE_PKG.g_ppm_start_date > trunc(SYSDATE);

Line 1159: AND HR_PAY_INTERFACE_PKG.g_ppm_start_date > trunc(SYSDATE);

1155: HR_PAY_INTERFACE_PKG.g_ppm_ass_id = paa.assignment_id
1156: AND paa.person_id = pps.person_id
1157: AND ( pps.final_process_date IS NOT NULL
1158: OR pps.last_standard_process_date IS NOT NULL)
1159: AND HR_PAY_INTERFACE_PKG.g_ppm_start_date > trunc(SYSDATE);
1160: --
1161: l_purge integer := NULL;
1162: l_terminate integer := NULL;
1163: --

Line 1166: if (HR_PAY_INTERFACE_PKG.g_personal_payment_method_id IS NOT NULL) AND

1162: l_terminate integer := NULL;
1163: --
1164: begin
1165: --
1166: if (HR_PAY_INTERFACE_PKG.g_personal_payment_method_id IS NOT NULL) AND
1167: HR_PAY_INTERFACE_PKG.g_ppm_start_date <= trunc(SYSDATE) then
1168: open csr_ppm_post_fpd;
1169: fetch csr_ppm_post_fpd into l_terminate;
1170: close csr_ppm_post_fpd;

Line 1167: HR_PAY_INTERFACE_PKG.g_ppm_start_date <= trunc(SYSDATE) then

1163: --
1164: begin
1165: --
1166: if (HR_PAY_INTERFACE_PKG.g_personal_payment_method_id IS NOT NULL) AND
1167: HR_PAY_INTERFACE_PKG.g_ppm_start_date <= trunc(SYSDATE) then
1168: open csr_ppm_post_fpd;
1169: fetch csr_ppm_post_fpd into l_terminate;
1170: close csr_ppm_post_fpd;
1171: hr_pay_interface_pkg.g_ppm_start_date := NULL;

Line 1171: hr_pay_interface_pkg.g_ppm_start_date := NULL;

1167: HR_PAY_INTERFACE_PKG.g_ppm_start_date <= trunc(SYSDATE) then
1168: open csr_ppm_post_fpd;
1169: fetch csr_ppm_post_fpd into l_terminate;
1170: close csr_ppm_post_fpd;
1171: hr_pay_interface_pkg.g_ppm_start_date := NULL;
1172: hr_pay_interface_pkg.g_ppm_ass_id := NULL;
1173:
1174: if l_terminate is NULL then
1175: open csr_ppm_delete_purge;

Line 1172: hr_pay_interface_pkg.g_ppm_ass_id := NULL;

1168: open csr_ppm_post_fpd;
1169: fetch csr_ppm_post_fpd into l_terminate;
1170: close csr_ppm_post_fpd;
1171: hr_pay_interface_pkg.g_ppm_start_date := NULL;
1172: hr_pay_interface_pkg.g_ppm_ass_id := NULL;
1173:
1174: if l_terminate is NULL then
1175: open csr_ppm_delete_purge;
1176: fetch csr_ppm_delete_purge into l_purge;

Line 1179: HR_PAY_INTERFACE_PKG.g_personal_payment_method_id := NULL;

1175: open csr_ppm_delete_purge;
1176: fetch csr_ppm_delete_purge into l_purge;
1177: close csr_ppm_delete_purge;
1178:
1179: HR_PAY_INTERFACE_PKG.g_personal_payment_method_id := NULL;
1180: if l_purge IS NULL then
1181: hr_utility.set_message (800, 'PER_PRS_PAY_MTD_DISABLE_DEL');
1182: hr_utility.raise_error;
1183: -- else

Line 1184: -- HR_PAY_INTERFACE_PKG.g_personal_payment_method_id := NULL;

1180: if l_purge IS NULL then
1181: hr_utility.set_message (800, 'PER_PRS_PAY_MTD_DISABLE_DEL');
1182: hr_utility.raise_error;
1183: -- else
1184: -- HR_PAY_INTERFACE_PKG.g_personal_payment_method_id := NULL;
1185: end if;
1186: end if;
1187: else
1188: HR_PAY_INTERFACE_PKG.g_personal_payment_method_id := NULL;

Line 1188: HR_PAY_INTERFACE_PKG.g_personal_payment_method_id := NULL;

1184: -- HR_PAY_INTERFACE_PKG.g_personal_payment_method_id := NULL;
1185: end if;
1186: end if;
1187: else
1188: HR_PAY_INTERFACE_PKG.g_personal_payment_method_id := NULL;
1189: end if;
1190: --
1191: end disable_ppm_delete_purge;
1192:

Line 1204: HR_PAY_INTERFACE_PKG.g_cost_allocation_id;

1200: CURSOR csr_asg_cost_delete_purge is
1201: select 1
1202: from pay_cost_allocations_f
1203: where cost_allocation_id =
1204: HR_PAY_INTERFACE_PKG.g_cost_allocation_id;
1205: --
1206: CURSOR csr_asg_cost_post_fpd IS
1207: SELECT 1
1208: FROM per_periods_of_service pps,

Line 1211: HR_PAY_INTERFACE_PKG.g_asg_cost_ass_id = paa.assignment_id

1207: SELECT 1
1208: FROM per_periods_of_service pps,
1209: per_all_assignments_f paa
1210: WHERE
1211: HR_PAY_INTERFACE_PKG.g_asg_cost_ass_id = paa.assignment_id
1212: AND paa.person_id = pps.person_id
1213: AND (pps.final_process_date IS NOT NULL
1214: OR pps.last_standard_process_date IS NOT NULL)
1215: AND HR_PAY_INTERFACE_PKG.g_asg_cost_start_date > trunc(SYSDATE);

Line 1215: AND HR_PAY_INTERFACE_PKG.g_asg_cost_start_date > trunc(SYSDATE);

1211: HR_PAY_INTERFACE_PKG.g_asg_cost_ass_id = paa.assignment_id
1212: AND paa.person_id = pps.person_id
1213: AND (pps.final_process_date IS NOT NULL
1214: OR pps.last_standard_process_date IS NOT NULL)
1215: AND HR_PAY_INTERFACE_PKG.g_asg_cost_start_date > trunc(SYSDATE);
1216: --
1217: l_purge integer := NULL;
1218: l_terminate integer := NULL;
1219: --

Line 1222: if (HR_PAY_INTERFACE_PKG.g_cost_allocation_id IS NOT NULL) AND

1218: l_terminate integer := NULL;
1219: --
1220: begin
1221: --
1222: if (HR_PAY_INTERFACE_PKG.g_cost_allocation_id IS NOT NULL) AND
1223: (HR_PAY_INTERFACE_PKG.g_asg_cost_start_date <= trunc(SYSDATE)) then
1224:
1225: open csr_asg_cost_post_fpd;
1226: fetch csr_asg_cost_post_fpd into l_terminate;

Line 1223: (HR_PAY_INTERFACE_PKG.g_asg_cost_start_date <= trunc(SYSDATE)) then

1219: --
1220: begin
1221: --
1222: if (HR_PAY_INTERFACE_PKG.g_cost_allocation_id IS NOT NULL) AND
1223: (HR_PAY_INTERFACE_PKG.g_asg_cost_start_date <= trunc(SYSDATE)) then
1224:
1225: open csr_asg_cost_post_fpd;
1226: fetch csr_asg_cost_post_fpd into l_terminate;
1227: close csr_asg_cost_post_fpd;

Line 1228: hr_pay_interface_pkg.g_asg_cost_start_date := NULL;

1224:
1225: open csr_asg_cost_post_fpd;
1226: fetch csr_asg_cost_post_fpd into l_terminate;
1227: close csr_asg_cost_post_fpd;
1228: hr_pay_interface_pkg.g_asg_cost_start_date := NULL;
1229: hr_pay_interface_pkg.g_asg_cost_ass_id := NULL;
1230:
1231: if l_terminate is NULL then
1232:

Line 1229: hr_pay_interface_pkg.g_asg_cost_ass_id := NULL;

1225: open csr_asg_cost_post_fpd;
1226: fetch csr_asg_cost_post_fpd into l_terminate;
1227: close csr_asg_cost_post_fpd;
1228: hr_pay_interface_pkg.g_asg_cost_start_date := NULL;
1229: hr_pay_interface_pkg.g_asg_cost_ass_id := NULL;
1230:
1231: if l_terminate is NULL then
1232:
1233: open csr_asg_cost_delete_purge;

Line 1237: HR_PAY_INTERFACE_PKG.g_cost_allocation_id := NULL;

1233: open csr_asg_cost_delete_purge;
1234: fetch csr_asg_cost_delete_purge into l_purge;
1235: close csr_asg_cost_delete_purge;
1236:
1237: HR_PAY_INTERFACE_PKG.g_cost_allocation_id := NULL;
1238: if l_purge IS NULL then
1239: hr_utility.set_message (800, 'PER_ASG_COST_INF_DIS_PRG_DEL');
1240: hr_utility.raise_error;
1241: -- else

Line 1242: -- HR_PAY_INTERFACE_PKG.g_cost_allocation_id := NULL;

1238: if l_purge IS NULL then
1239: hr_utility.set_message (800, 'PER_ASG_COST_INF_DIS_PRG_DEL');
1240: hr_utility.raise_error;
1241: -- else
1242: -- HR_PAY_INTERFACE_PKG.g_cost_allocation_id := NULL;
1243: end if;
1244: end if;
1245: else
1246: HR_PAY_INTERFACE_PKG.g_cost_allocation_id := NULL;

Line 1246: HR_PAY_INTERFACE_PKG.g_cost_allocation_id := NULL;

1242: -- HR_PAY_INTERFACE_PKG.g_cost_allocation_id := NULL;
1243: end if;
1244: end if;
1245: else
1246: HR_PAY_INTERFACE_PKG.g_cost_allocation_id := NULL;
1247: end if;
1248: --
1249: end disable_asg_cost_delete_purge;
1250:

Line 1251: end HR_PAY_INTERFACE_PKG ;

1247: end if;
1248: --
1249: end disable_asg_cost_delete_purge;
1250:
1251: end HR_PAY_INTERFACE_PKG ;