DBA Data[Home] [Help]

APPS.PAY_DB_PAY_SETUP dependencies on HR_UTILITY

Line 3: g_debug boolean := hr_utility.debug_enabled;

1: package body pay_db_pay_setup as
2: /* $Header: pypsetup.pkb 120.0 2005/05/29 07:54:16 appldev noship $ */
3: g_debug boolean := hr_utility.debug_enabled;
4: --
5: -------------------------------- create element -------------------------------
6: /*
7: NAME

Line 85: g_debug := hr_utility.debug_enabled;

81: v_rowid VARCHAR2(240);
82: v_termination_rule_code VARCHAR2(240);
83: --
84: begin
85: g_debug := hr_utility.debug_enabled;
86: --
87: if g_debug then
88: hr_utility.set_location('pay_db_pay_setup.create_element',1);
89: end if;

Line 88: hr_utility.set_location('pay_db_pay_setup.create_element',1);

84: begin
85: g_debug := hr_utility.debug_enabled;
86: --
87: if g_debug then
88: hr_utility.set_location('pay_db_pay_setup.create_element',1);
89: end if;
90: --
91: begin
92: -- Get the session date nb. this is defaulted to todays date

Line 102: hr_utility.set_location('pay_db_pay_setup.create_element',3);

98: when NO_DATA_FOUND then NULL;
99: end;
100: --
101: if g_debug then
102: hr_utility.set_location('pay_db_pay_setup.create_element',3);
103: end if;
104: --
105: -- Added the OR to the below SQL statement to fix an MLS
106: -- Problem related to the comparison of the Meaning with the

Line 147: hr_utility.set_location('pay_db_pay_setup.create_element',4);

143: -- business group for potential defaulting of input and output currency
144: if p_business_group_name is not NULL then
145: --
146: if g_debug then
147: hr_utility.set_location('pay_db_pay_setup.create_element',4);
148: end if;
149: --
150: select business_group_id,
151: currency_code,

Line 167: hr_utility.set_location('pay_db_pay_setup.create_element',5);

163: -- of input and output currency code for startup elements
164: elsif p_legislation_code is not NULL then
165: --
166: if g_debug then
167: hr_utility.set_location('pay_db_pay_setup.create_element',5);
168: end if;
169: --
170: if p_input_currency_code is null or p_output_currency_code is null then
171: --

Line 190: hr_utility.set_location('pay_db_pay_setup.create_element',6);

186: --
187: end if;
188: --
189: if g_debug then
190: hr_utility.set_location('pay_db_pay_setup.create_element',6);
191: end if;
192: --
193: -- Find the classification for the element
194: select ec.classification_id,

Line 242: hr_utility.set_location('pay_db_pay_setup.create_element',7);

238: p_bus_grp_currency_code => v_currency_code);
239:
240: --
241: if g_debug then
242: hr_utility.set_location('pay_db_pay_setup.create_element',7);
243: end if;
244: --
245: -- Create a row in pay_element_types
246:

Line 345: hr_utility.set_location('pay_db_pay_setup.create_element',8);

341: -- Create the application ownership for the element (in startup mode)
342: if v_mode <> 'USER' then
343: --
344: if g_debug then
345: hr_utility.set_location('pay_db_pay_setup.create_element',8);
346: end if;
347: --
348: insert into hr_application_ownerships
349: (KEY_NAME,

Line 360: hr_utility.set_location('pay_db_pay_setup.create_element',9);

356: --
357: end if;
358: --
359: if g_debug then
360: hr_utility.set_location('pay_db_pay_setup.create_element',9);
361: end if;
362: --
363: -- Create a PAY_VALUE and status processing rule if it is a payroll element
364: hr_elements.ins_3p_element_type(v_element_type_id,

Line 438: g_debug := hr_utility.debug_enabled;

434: from fnd_languages l
435: where l.installed_flag in ('I', 'B');
436: --
437: begin
438: g_debug := hr_utility.debug_enabled;
439: --
440: if g_debug then
441: hr_utility.set_location('pay_db_pay_setup.create_input_value',1);
442: hr_utility.trace('p_element_name**********: '||p_element_name);

Line 441: hr_utility.set_location('pay_db_pay_setup.create_input_value',1);

437: begin
438: g_debug := hr_utility.debug_enabled;
439: --
440: if g_debug then
441: hr_utility.set_location('pay_db_pay_setup.create_input_value',1);
442: hr_utility.trace('p_element_name**********: '||p_element_name);
443: end if;
444: --
445: -- Select the sequence number for input value. This can then be passed back

Line 442: hr_utility.trace('p_element_name**********: '||p_element_name);

438: g_debug := hr_utility.debug_enabled;
439: --
440: if g_debug then
441: hr_utility.set_location('pay_db_pay_setup.create_input_value',1);
442: hr_utility.trace('p_element_name**********: '||p_element_name);
443: end if;
444: --
445: -- Select the sequence number for input value. This can then be passed back
446: -- via the function for later use.

Line 452: hr_utility.set_location('pay_db_pay_setup.create_input_value',15);

448: into v_input_value_id
449: from dual;
450: --
451: if g_debug then
452: hr_utility.set_location('pay_db_pay_setup.create_input_value',15);
453: end if;
454: --
455: select l.language_code
456: into v_base_language

Line 461: hr_utility.set_location('pay_db_pay_setup.create_input_value',2);

457: from fnd_languages l
458: where l.installed_flag = 'B';
459: --
460: if g_debug then
461: hr_utility.set_location('pay_db_pay_setup.create_input_value',2);
462: end if;
463: --
464: -- Find the business_group_id for the business group
465: -- Also, take opportunity to select legislation code.

Line 484: hr_utility.set_location('pay_db_pay_setup.create_input_value',3);

480: v_legislation_code := p_legislation_code;
481: --
482: --
483: if g_debug then
484: hr_utility.set_location('pay_db_pay_setup.create_input_value',3);
485: end if;
486: --
487: -- Get warning or error flag
488: -- Bug 2831667 - either code or meaning must be provided

Line 491: hr_utility.set_message(801, 'HR_BAD_WARN_ERROR_ARGUMENT');

487: -- Get warning or error flag
488: -- Bug 2831667 - either code or meaning must be provided
489: --
490: if (p_warning_or_error is not null and p_warn_or_error_code is not null) then
491: hr_utility.set_message(801, 'HR_BAD_WARN_ERROR_ARGUMENT');
492: hr_utility.raise_error;
493: end if;
494: --
495: if p_warning_or_error is not null then

Line 492: hr_utility.raise_error;

488: -- Bug 2831667 - either code or meaning must be provided
489: --
490: if (p_warning_or_error is not null and p_warn_or_error_code is not null) then
491: hr_utility.set_message(801, 'HR_BAD_WARN_ERROR_ARGUMENT');
492: hr_utility.raise_error;
493: end if;
494: --
495: if p_warning_or_error is not null then
496: if g_debug then

Line 497: hr_utility.set_location('pay_db_pay_setup.create_input_value',5);

493: end if;
494: --
495: if p_warning_or_error is not null then
496: if g_debug then
497: hr_utility.set_location('pay_db_pay_setup.create_input_value',5);
498: end if;
499: --
500: select lookup_code
501: into v_warning_or_error

Line 517: hr_utility.set_message(801, 'HR_BAD_UOM_ARGUMENT');

513: --
514: -- Get the uom code: either code or meaning must be provided
515: if (p_uom is null and p_uom_code is null)
516: or (p_uom is not null and p_uom_code is not null) then
517: hr_utility.set_message(801, 'HR_BAD_UOM_ARGUMENT');
518: hr_utility.raise_error;
519: end if;
520: --
521: if p_uom_code is null then

Line 518: hr_utility.raise_error;

514: -- Get the uom code: either code or meaning must be provided
515: if (p_uom is null and p_uom_code is null)
516: or (p_uom is not null and p_uom_code is not null) then
517: hr_utility.set_message(801, 'HR_BAD_UOM_ARGUMENT');
518: hr_utility.raise_error;
519: end if;
520: --
521: if p_uom_code is null then
522: if g_debug then

Line 523: hr_utility.set_location('pay_db_pay_setup.create_input_value',8);

519: end if;
520: --
521: if p_uom_code is null then
522: if g_debug then
523: hr_utility.set_location('pay_db_pay_setup.create_input_value',8);
524: end if;
525: select lookup_code
526: into v_uom
527: from hr_lookups

Line 539: hr_utility.set_message(801, 'HR_BAD_UOM_ARGUMENT');

535: where lookup_code = p_uom_code
536: and lookup_type = 'UNITS';
537: exception
538: when no_data_found then
539: hr_utility.set_message(801, 'HR_BAD_UOM_ARGUMENT');
540: hr_utility.raise_error;
541: end;
542: end if;
543: --

Line 540: hr_utility.raise_error;

536: and lookup_type = 'UNITS';
537: exception
538: when no_data_found then
539: hr_utility.set_message(801, 'HR_BAD_UOM_ARGUMENT');
540: hr_utility.raise_error;
541: end;
542: end if;
543: --
544: begin

Line 555: hr_utility.set_location('pay_db_pay_setup.create_input_value',6);

551: when NO_DATA_FOUND then NULL;
552: end;
553: --
554: if g_debug then
555: hr_utility.set_location('pay_db_pay_setup.create_input_value',6);
556: end if;
557: --
558: -- Store the dates over which time the element type exists
559: if v_business_group_id is not NULL then

Line 579: hr_utility.set_location('pay_db_pay_setup.create_input_value',65);

575: effective_end_date; /* new bug 1576000 */
576: end if;
577:
578: if g_debug then
579: hr_utility.set_location('pay_db_pay_setup.create_input_value',65);
580: hr_utility.trace('p_element_name*******: '||p_element_name);
581: hr_utility.trace('v_business_group_id*******: '||v_business_group_id);
582: hr_utility.trace('v_legislation_code*******: '||v_legislation_code);
583: end if;

Line 580: hr_utility.trace('p_element_name*******: '||p_element_name);

576: end if;
577:
578: if g_debug then
579: hr_utility.set_location('pay_db_pay_setup.create_input_value',65);
580: hr_utility.trace('p_element_name*******: '||p_element_name);
581: hr_utility.trace('v_business_group_id*******: '||v_business_group_id);
582: hr_utility.trace('v_legislation_code*******: '||v_legislation_code);
583: end if;
584:

Line 581: hr_utility.trace('v_business_group_id*******: '||v_business_group_id);

577:
578: if g_debug then
579: hr_utility.set_location('pay_db_pay_setup.create_input_value',65);
580: hr_utility.trace('p_element_name*******: '||p_element_name);
581: hr_utility.trace('v_business_group_id*******: '||v_business_group_id);
582: hr_utility.trace('v_legislation_code*******: '||v_legislation_code);
583: end if;
584:
585: select min(et.effective_start_date),

Line 582: hr_utility.trace('v_legislation_code*******: '||v_legislation_code);

578: if g_debug then
579: hr_utility.set_location('pay_db_pay_setup.create_input_value',65);
580: hr_utility.trace('p_element_name*******: '||p_element_name);
581: hr_utility.trace('v_business_group_id*******: '||v_business_group_id);
582: hr_utility.trace('v_legislation_code*******: '||v_legislation_code);
583: end if;
584:
585: select min(et.effective_start_date),
586: max(et.effective_end_date),

Line 602: hr_utility.set_location('pay_db_pay_setup.create_input_value',68);

598: or (et.business_group_id is null and et.legislation_code is null))
599: group by et.legislation_subgroup, et.element_type_id;
600: --
601: if g_debug then
602: hr_utility.set_location('pay_db_pay_setup.create_input_value',68);
603: end if;
604: -- Default the start date to the session date if no date is supplied
605: if p_effective_start_date is not NULL then
606: v_effective_start_date := p_effective_start_date;

Line 635: hr_utility.set_location('pay_db_pay_setup.create_input_value',7);

631: v_effective_end_date := v_element_end_date;
632: end if;
633: --
634: if g_debug then
635: hr_utility.set_location('pay_db_pay_setup.create_input_value',7);
636: end if;
637: --
638: -- Create input value
639: --

Line 770: g_debug := hr_utility.debug_enabled;

766: v_currency_code varchar2(30);
767: v_org_pay_method_usage number;
768: --
769: begin
770: g_debug := hr_utility.debug_enabled;
771: --
772: if g_debug then
773: hr_utility.set_location('pay_db_pay_setup.create_payroll',1);
774: end if;

Line 773: hr_utility.set_location('pay_db_pay_setup.create_payroll',1);

769: begin
770: g_debug := hr_utility.debug_enabled;
771: --
772: if g_debug then
773: hr_utility.set_location('pay_db_pay_setup.create_payroll',1);
774: end if;
775: --
776: -- Select the sequence number for the payroll. This can then be passed back
777: -- via the function for later use.

Line 783: hr_utility.set_location('pay_db_pay_setup.create_payroll',2);

779: into v_payroll_id
780: from sys.dual;
781: --
782: if g_debug then
783: hr_utility.set_location('pay_db_pay_setup.create_payroll',2);
784: end if;
785: --
786: begin
787: -- Get the session date nb. this is defaulted to todays date

Line 815: hr_utility.set_location('pay_db_pay_setup.create_payroll',3);

811: v_effective_end_date := p_effective_end_date;
812: end if;
813: --
814: if g_debug then
815: hr_utility.set_location('pay_db_pay_setup.create_payroll',3);
816: end if;
817: --
818: -- Find the business_group_id for the business group and get the currency of
819: -- business group for potential defaulting of input and output currency

Line 830: hr_utility.set_location('pay_db_pay_setup.create_payroll',4);

826: from per_business_groups bg
827: where name = p_business_group_name;
828: --
829: if g_debug then
830: hr_utility.set_location('pay_db_pay_setup.create_payroll',4);
831: end if;
832: --
833: -- Find the organization_id for the organization. If it is not specified then
834: -- default it to the business group

Line 850: hr_utility.set_location('pay_db_pay_setup.create_payroll',5);

846: --
847: end if;
848: --
849: if g_debug then
850: hr_utility.set_location('pay_db_pay_setup.create_payroll',5);
851: end if;
852: --
853: -- Get the consolidation_set_id for the specified consolidation set
854: select cs.consolidation_set_id

Line 865: hr_utility.set_location('pay_db_pay_setup.create_payroll',6);

861: -- when the payroll is defined. This we only perform
862: -- following select if one is specified.
863: if p_dflt_payment_method is not null then
864: if g_debug then
865: hr_utility.set_location('pay_db_pay_setup.create_payroll',6);
866: end if;
867: select opm.org_payment_method_id
868: into v_dflt_payment_method_id
869: from pay_payment_types ppt,

Line 1141: g_debug := hr_utility.debug_enabled;

1137: v_pay_value_name varchar2(80);
1138: v_legislation_code varchar2(30);
1139: --
1140: begin
1141: g_debug := hr_utility.debug_enabled;
1142: --
1143: if g_debug then
1144: hr_utility.set_location('pay_db_pay_setup.create_element_link',1);
1145: end if;

Line 1144: hr_utility.set_location('pay_db_pay_setup.create_element_link',1);

1140: begin
1141: g_debug := hr_utility.debug_enabled;
1142: --
1143: if g_debug then
1144: hr_utility.set_location('pay_db_pay_setup.create_element_link',1);
1145: end if;
1146: --
1147: -- Get business group id. Select the sequence number for the element link.
1148: -- This can then be passed back via the function for later use.

Line 1159: hr_utility.set_location('pay_db_pay_setup.create_element_link',2);

1155: from per_business_groups bg
1156: where name = p_business_group_name;
1157: --
1158: if g_debug then
1159: hr_utility.set_location('pay_db_pay_setup.create_element_link',2);
1160: end if;
1161: --
1162: -- Get look up name for 'PAY VALUE'
1163: v_pay_value_name := hr_input_values.get_pay_value_name(v_legislation_code);

Line 1166: hr_utility.set_location('pay_db_pay_setup.create_element_link',3);

1162: -- Get look up name for 'PAY VALUE'
1163: v_pay_value_name := hr_input_values.get_pay_value_name(v_legislation_code);
1164: --
1165: if g_debug then
1166: hr_utility.set_location('pay_db_pay_setup.create_element_link',3);
1167: end if;
1168: --
1169: begin
1170: -- Get the session date nb. this is defaulted to todays date

Line 1198: hr_utility.set_location('pay_db_pay_setup.create_element_link',4);

1194: v_effective_end_date := p_effective_end_date;
1195: end if;
1196: --
1197: if g_debug then
1198: hr_utility.set_location('pay_db_pay_setup.create_element_link',4);
1199: end if;
1200: --
1201: -- Get information from element for defaulting
1202: select max(et.effective_end_date),

Line 1227: hr_utility.set_location('pay_db_pay_setup.create_element_link',5);

1223: et.qualifying_age, et.qualifying_length_of_service,
1224: et.qualifying_units;
1225: --
1226: if g_debug then
1227: hr_utility.set_location('pay_db_pay_setup.create_element_link',5);
1228: end if;
1229: --
1230: -- Find Job if it is specified
1231: if p_job_name is not NULL then

Line 1244: hr_utility.set_location('pay_db_pay_setup.create_element_link',6);

1240: --
1241: end if;
1242: --
1243: if g_debug then
1244: hr_utility.set_location('pay_db_pay_setup.create_element_link',6);
1245: end if;
1246: --
1247: -- Find Position if it is specified
1248: if p_position_name is not NULL then

Line 1261: hr_utility.set_location('pay_db_pay_setup.create_element_link',7);

1257: --
1258: end if;
1259: --
1260: if g_debug then
1261: hr_utility.set_location('pay_db_pay_setup.create_element_link',7);
1262: end if;
1263: --
1264: -- Find Grade if it is specified
1265: if p_grade_name is not NULL then

Line 1278: hr_utility.set_location('pay_db_pay_setup.create_element_link',8);

1274: --
1275: end if;
1276: --
1277: if g_debug then
1278: hr_utility.set_location('pay_db_pay_setup.create_element_link',8);
1279: end if;
1280: --
1281: -- Find People Group if it is specified
1282: if p_people_group_name is not NULL then

Line 1295: hr_utility.set_location('pay_db_pay_setup.create_element_link',9);

1291: --
1292: end if;
1293: --
1294: if g_debug then
1295: hr_utility.set_location('pay_db_pay_setup.create_element_link',9);
1296: end if;
1297: --
1298: -- Find Organization if it is specified
1299: if p_organization_name is not NULL then

Line 1312: hr_utility.set_location('pay_db_pay_setup.create_element_link',10);

1308: --
1309: end if;
1310: --
1311: if g_debug then
1312: hr_utility.set_location('pay_db_pay_setup.create_element_link',10);
1313: end if;
1314: --
1315: -- Find Payroll if it is specified
1316: if p_payroll_name is not NULL then

Line 1585: g_debug := hr_utility.debug_enabled;

1581: l_prim_ele pay_element_types_f.element_type_id%type;
1582: l_mode varchar2(30);
1583: --
1584: begin
1585: g_debug := hr_utility.debug_enabled;
1586: --
1587: if g_debug then
1588: hr_utility.set_location('pay_db_pay_setup.create_balance_type',1);
1589: end if;

Line 1588: hr_utility.set_location('pay_db_pay_setup.create_balance_type',1);

1584: begin
1585: g_debug := hr_utility.debug_enabled;
1586: --
1587: if g_debug then
1588: hr_utility.set_location('pay_db_pay_setup.create_balance_type',1);
1589: end if;
1590: --
1591: -- Find the business_group_id for the business group and get the currency of
1592: -- business group for potential defaulting of balance currency

Line 1597: hr_utility.set_location('pay_db_pay_setup.create_balance_type',2);

1593: -- RET 07-OCT-2002 - also get the leg for the bg
1594: if p_business_group_name is not NULL then
1595: --
1596: if g_debug then
1597: hr_utility.set_location('pay_db_pay_setup.create_balance_type',2);
1598: end if;
1599: --
1600: select business_group_id,
1601: currency_code,

Line 1615: hr_utility.set_location('pay_db_pay_setup.create_balance_type',3);

1611: -- of input and output currency code for startup elements
1612: elsif p_legislation_code is not NULL then
1613: --
1614: if g_debug then
1615: hr_utility.set_location('pay_db_pay_setup.create_balance_type',3);
1616: end if;
1617: --
1618: if p_currency_code is null then
1619: --

Line 1632: hr_utility.set_location('pay_db_pay_setup.create_balance_type',4);

1628: --
1629: end if;
1630: --
1631: if g_debug then
1632: hr_utility.set_location('pay_db_pay_setup.create_balance_type',4);
1633: end if;
1634: --
1635: -- Get the uom code
1636: if p_uom_code is null then

Line 1652: hr_utility.set_location('pay_db_pay_setup.create_balance_type',5);

1648: end if;
1649: end if;
1650: --
1651: if g_debug then
1652: hr_utility.set_location('pay_db_pay_setup.create_balance_type',5);
1653: end if;
1654: --
1655: -- Check the category
1656: --

Line 1662: hr_utility.set_message(801, 'PAY_34262_CAT_EFF_DATE_NULL');

1658: if P_effective_date is null then
1659: --
1660: -- a date must be passed through if entering a category
1661: --
1662: hr_utility.set_message(801, 'PAY_34262_CAT_EFF_DATE_NULL');
1663: hr_utility.raise_error;
1664: end if;
1665: --
1666: if p_bc_leg_code is not null then

Line 1663: hr_utility.raise_error;

1659: --
1660: -- a date must be passed through if entering a category
1661: --
1662: hr_utility.set_message(801, 'PAY_34262_CAT_EFF_DATE_NULL');
1663: hr_utility.raise_error;
1664: end if;
1665: --
1666: if p_bc_leg_code is not null then
1667: --

Line 1675: hr_utility.set_message(801,'PAY_34263_CAT_NOT_EXIST');

1671: --
1672: -- error category does not exist
1673: --
1674: close get_cat_id;
1675: hr_utility.set_message(801,'PAY_34263_CAT_NOT_EXIST');
1676: hr_utility.raise_error;
1677: else
1678: close get_cat_id;
1679: end if;

Line 1676: hr_utility.raise_error;

1672: -- error category does not exist
1673: --
1674: close get_cat_id;
1675: hr_utility.set_message(801,'PAY_34263_CAT_NOT_EXIST');
1676: hr_utility.raise_error;
1677: else
1678: close get_cat_id;
1679: end if;
1680: --

Line 1690: hr_utility.set_message(801,'PAY_34264_INV_BG_LEG');

1686: fetch get_bg_leg into v_leg_code;
1687: if get_bg_leg%notfound then
1688: --
1689: close get_bg_leg;
1690: hr_utility.set_message(801,'PAY_34264_INV_BG_LEG');
1691: hr_utility.raise_error;
1692: else
1693: close get_bg_leg;
1694: end if;

Line 1691: hr_utility.raise_error;

1687: if get_bg_leg%notfound then
1688: --
1689: close get_bg_leg;
1690: hr_utility.set_message(801,'PAY_34264_INV_BG_LEG');
1691: hr_utility.raise_error;
1692: else
1693: close get_bg_leg;
1694: end if;
1695: else -- p_business_group_id is null

Line 1703: hr_utility.set_message(801,'PAY_34265_INV_LEG');

1699: if p_bc_leg_code <> v_leg_code then
1700: --
1701: -- leg codes not same, cannot be compatible.
1702: --
1703: hr_utility.set_message(801,'PAY_34265_INV_LEG');
1704: hr_utility.raise_error;
1705: end if;
1706: else -- p_bc_leg_code is null - unusual to have generic category, but possible
1707: -- check that not a user category

Line 1704: hr_utility.raise_error;

1700: --
1701: -- leg codes not same, cannot be compatible.
1702: --
1703: hr_utility.set_message(801,'PAY_34265_INV_LEG');
1704: hr_utility.raise_error;
1705: end if;
1706: else -- p_bc_leg_code is null - unusual to have generic category, but possible
1707: -- check that not a user category
1708: open get_cat_id(p_balance_category, p_bc_leg_code, p_effective_date);

Line 1715: hr_utility.set_message(801,'PAY_34266_CAT_NOT_EXIST_G');

1711: --
1712: -- error category does not exist
1713: --
1714: close get_cat_id;
1715: hr_utility.set_message(801,'PAY_34266_CAT_NOT_EXIST_G');
1716: hr_utility.raise_error;
1717: else
1718: close get_cat_id;
1719: end if;

Line 1716: hr_utility.raise_error;

1712: -- error category does not exist
1713: --
1714: close get_cat_id;
1715: hr_utility.set_message(801,'PAY_34266_CAT_NOT_EXIST_G');
1716: hr_utility.raise_error;
1717: else
1718: close get_cat_id;
1719: end if;
1720: --

Line 1725: hr_utility.set_message(801,'PAY_34267_INV_CAT_LEG ');

1721: -- Error if the cat bg is not null, as user categories cannot be created, so
1722: -- this is a hacked category.
1723: --
1724: if l_cat_bg is not null then
1725: hr_utility.set_message(801,'PAY_34267_INV_CAT_LEG ');
1726: hr_utility.raise_error;
1727: end if;
1728: end if;
1729: end if;

Line 1726: hr_utility.raise_error;

1722: -- this is a hacked category.
1723: --
1724: if l_cat_bg is not null then
1725: hr_utility.set_message(801,'PAY_34267_INV_CAT_LEG ');
1726: hr_utility.raise_error;
1727: end if;
1728: end if;
1729: end if;
1730: --

Line 1764: hr_utility.set_message(801,'PAY_34268_BASE_BAL_NOT_EXIST');

1760: fetch get_base_balance into l_bt_id, l_bbt_id;
1761: if get_base_balance%notfound then
1762: --
1763: close get_base_balance;
1764: hr_utility.set_message(801,'PAY_34268_BASE_BAL_NOT_EXIST');
1765: hr_utility.raise_error;
1766: else
1767: close get_base_balance;
1768: if l_bbt_id is not null then

Line 1765: hr_utility.raise_error;

1761: if get_base_balance%notfound then
1762: --
1763: close get_base_balance;
1764: hr_utility.set_message(801,'PAY_34268_BASE_BAL_NOT_EXIST');
1765: hr_utility.raise_error;
1766: else
1767: close get_base_balance;
1768: if l_bbt_id is not null then
1769: --

Line 1773: hr_utility.set_message(801,'PAY_34269_INV_BASE_BAL');

1769: --
1770: -- raise error as this balance has itself a base balance, so cannot be used
1771: -- as a base balance.
1772: --
1773: hr_utility.set_message(801,'PAY_34269_INV_BASE_BAL');
1774: hr_utility.raise_error;
1775: end if;
1776: end if;
1777: end if;

Line 1774: hr_utility.raise_error;

1770: -- raise error as this balance has itself a base balance, so cannot be used
1771: -- as a base balance.
1772: --
1773: hr_utility.set_message(801,'PAY_34269_INV_BASE_BAL');
1774: hr_utility.raise_error;
1775: end if;
1776: end if;
1777: end if;
1778: --

Line 1787: hr_utility.set_message(801,'PAY_34270_PRIM_NULL_EFF_DATE');

1783: if p_effective_date is null then
1784: --
1785: -- a date must be passed in if a primary balance is to be inserted.
1786: --
1787: hr_utility.set_message(801,'PAY_34270_PRIM_NULL_EFF_DATE');
1788: hr_utility.raise_error;
1789: end if;
1790: --
1791: open get_primary_iv(p_primary_element_name

Line 1788: hr_utility.raise_error;

1784: --
1785: -- a date must be passed in if a primary balance is to be inserted.
1786: --
1787: hr_utility.set_message(801,'PAY_34270_PRIM_NULL_EFF_DATE');
1788: hr_utility.raise_error;
1789: end if;
1790: --
1791: open get_primary_iv(p_primary_element_name
1792: ,p_primary_iv_name

Line 1802: hr_utility.set_message(801,'PAY_34271_INV_PRIM_BAL');

1798: fetch get_primary_iv into l_prim_iv, l_prim_ele;
1799: if get_primary_iv%notfound then
1800: --
1801: close get_primary_iv;
1802: hr_utility.set_message(801,'PAY_34271_INV_PRIM_BAL');
1803: hr_utility.raise_error;
1804: else
1805: close get_primary_iv;
1806: end if;

Line 1803: hr_utility.raise_error;

1799: if get_primary_iv%notfound then
1800: --
1801: close get_primary_iv;
1802: hr_utility.set_message(801,'PAY_34271_INV_PRIM_BAL');
1803: hr_utility.raise_error;
1804: else
1805: close get_primary_iv;
1806: end if;
1807: end if;

Line 1902: g_debug := hr_utility.debug_enabled;

1898: v_startup_mode varchar2(30);
1899: v_session_date date;
1900: --
1901: begin
1902: g_debug := hr_utility.debug_enabled;
1903: --
1904: if g_debug then
1905: hr_utility.set_location('pay_db_pay_setup.create_balance_classification',1);
1906: end if;

Line 1905: hr_utility.set_location('pay_db_pay_setup.create_balance_classification',1);

1901: begin
1902: g_debug := hr_utility.debug_enabled;
1903: --
1904: if g_debug then
1905: hr_utility.set_location('pay_db_pay_setup.create_balance_classification',1);
1906: end if;
1907: --
1908: begin
1909: -- Get the session date nb. this is defaulted to todays date

Line 1924: hr_utility.set_location('pay_db_pay_setup.create_balance_classification',99);

1920: v_session_date := v_todays_date;
1921: end if;
1922: --
1923: if g_debug then
1924: hr_utility.set_location('pay_db_pay_setup.create_balance_classification',99);
1925: end if;
1926: --
1927: -- Get sequence for
1928: select pay_balance_classifications_s.nextval

Line 1933: hr_utility.set_location('pay_db_pay_setup.create_balance_classification',2);

1929: into v_balance_classification_id
1930: from sys.dual;
1931: --
1932: if g_debug then
1933: hr_utility.set_location('pay_db_pay_setup.create_balance_classification',2);
1934: end if;
1935: --
1936: -- Get business group id
1937: if p_business_group_name is not NULL then

Line 1961: hr_utility.set_location('pay_db_pay_setup.create_balance_classification',3);

1957: --
1958: end if;
1959: --
1960: if g_debug then
1961: hr_utility.set_location('pay_db_pay_setup.create_balance_classification',3);
1962: end if;
1963: --
1964: -- Convert Add or Subtract to a number
1965: select fnd_number.canonical_to_number(lookup_code)

Line 1972: hr_utility.set_location('pay_db_pay_setup.create_balance_classification',4);

1968: where lookup_type = 'ADD_SUBTRACT'
1969: and upper(meaning) = upper(p_scale);
1970: --
1971: if g_debug then
1972: hr_utility.set_location('pay_db_pay_setup.create_balance_classification',4);
1973: end if;
1974: --
1975: -- Get balance information
1976: select bt.balance_type_id,

Line 1988: hr_utility.set_location('pay_db_pay_setup.create_balance_classification',5);

1984: and nvl(bt.legislation_code,nvl(p_legislation_code,'-1'))
1985: = nvl(p_legislation_code,'-1');
1986: --
1987: if g_debug then
1988: hr_utility.set_location('pay_db_pay_setup.create_balance_classification',5);
1989: end if;
1990: --
1991: -- Find the classification for the balance NB. only primary classifications
1992: -- are allowed

Line 2029: hr_utility.set_location('pay_db_pay_setup.create_balance_classification',7);

2025: -1,
2026: v_todays_date);
2027: --
2028: if g_debug then
2029: hr_utility.set_location('pay_db_pay_setup.create_balance_classification',7);
2030: end if;
2031: --
2032: -- CREATE BALANCE FEEDS
2033: hr_balances.ins_balance_feed('INS_PRIMARY_BAL_CLASS',

Line 2107: g_debug := hr_utility.debug_enabled;

2103: v_dfb_legislation_subgroup pay_defined_balances.legislation_subgroup%type;
2104: v_dfb_business_group_id pay_defined_balances.business_group_id%type;
2105: --
2106: begin
2107: g_debug := hr_utility.debug_enabled;
2108: --
2109: if g_debug then
2110: hr_utility.set_location('pay_db_pay_setup.create_defined_balance',1);
2111: end if;

Line 2110: hr_utility.set_location('pay_db_pay_setup.create_defined_balance',1);

2106: begin
2107: g_debug := hr_utility.debug_enabled;
2108: --
2109: if g_debug then
2110: hr_utility.set_location('pay_db_pay_setup.create_defined_balance',1);
2111: end if;
2112: --
2113: -- Get business group id
2114: if p_business_group_name is not NULL then

Line 2130: hr_utility.set_location('pay_db_pay_setup.create_defined_balance',2);

2126: --
2127: end if;
2128: --
2129: if g_debug then
2130: hr_utility.set_location('pay_db_pay_setup.create_defined_balance',2);
2131: hr_utility.trace('p_balance_dimension****: '||p_balance_dimension);
2132: hr_utility.trace('v_legislation_code****: '||v_legislation_code);
2133: end if;
2134: --

Line 2131: hr_utility.trace('p_balance_dimension****: '||p_balance_dimension);

2127: end if;
2128: --
2129: if g_debug then
2130: hr_utility.set_location('pay_db_pay_setup.create_defined_balance',2);
2131: hr_utility.trace('p_balance_dimension****: '||p_balance_dimension);
2132: hr_utility.trace('v_legislation_code****: '||v_legislation_code);
2133: end if;
2134: --
2135: -- Get balance dimension making sure that it is for the correct legislation

Line 2132: hr_utility.trace('v_legislation_code****: '||v_legislation_code);

2128: --
2129: if g_debug then
2130: hr_utility.set_location('pay_db_pay_setup.create_defined_balance',2);
2131: hr_utility.trace('p_balance_dimension****: '||p_balance_dimension);
2132: hr_utility.trace('v_legislation_code****: '||v_legislation_code);
2133: end if;
2134: --
2135: -- Get balance dimension making sure that it is for the correct legislation
2136: select bd.balance_dimension_id

Line 2149: hr_utility.set_location('pay_db_pay_setup.create_defined_balance',3.5);

2145: --
2146: -- attempt to get the default value from category and dimensions
2147: --
2148: if g_debug then
2149: hr_utility.set_location('pay_db_pay_setup.create_defined_balance',3.5);
2150: end if;
2151: if p_effective_date is null then
2152: -- default the date from fnd_sessions, as a last resort use sysdate
2153: --

Line 2235: hr_utility.set_location('pay_db_pay_setup.create_defined_balance', 7);

2231: v_dfb_legislation_subgroup := v_bt_legislation_subgroup;
2232: end if;
2233: --
2234: if g_debug then
2235: hr_utility.set_location('pay_db_pay_setup.create_defined_balance', 7);
2236: end if;
2237: --
2238: -- A mutating table error will occur on pay_defined_balances if a defined
2239: -- balance is inserted here, while the old version of trigger

Line 2293: hr_utility.set_location('pay_db_pay_setup.create_defined_balance', 8);

2289: -- defaults table.
2290: --
2291: if v_bt_balance_category_id is not null then
2292: if g_debug then
2293: hr_utility.set_location('pay_db_pay_setup.create_defined_balance', 8);
2294: end if;
2295: --
2296: -- get the defined_balance_id just created.
2297: --

Line 2309: hr_utility.set_location('pay_db_pay_setup.create_defined_balance', 10);

2305: and nvl(legislation_code,nvl(v_dfb_legislation_code,'-1'))
2306: = nvl(v_dfb_legislation_code,'-1');
2307: --
2308: if g_debug then
2309: hr_utility.set_location('pay_db_pay_setup.create_defined_balance', 10);
2310: hr_utility.trace('l_defined_balance_id: '||to_char(l_defined_balance_id));
2311: end if;
2312: --
2313: -- see if any default attributes can be inserted.

Line 2310: hr_utility.trace('l_defined_balance_id: '||to_char(l_defined_balance_id));

2306: = nvl(v_dfb_legislation_code,'-1');
2307: --
2308: if g_debug then
2309: hr_utility.set_location('pay_db_pay_setup.create_defined_balance', 10);
2310: hr_utility.trace('l_defined_balance_id: '||to_char(l_defined_balance_id));
2311: end if;
2312: --
2313: -- see if any default attributes can be inserted.
2314: --

Line 2325: hr_utility.set_location('Leaving pay_db_pay_setup.create_defined_balance', 14);

2321: ,p_effective_date => l_eff_date
2322: );
2323: end if;
2324: if g_debug then
2325: hr_utility.set_location('Leaving pay_db_pay_setup.create_defined_balance', 14);
2326: end if;
2327: end create_defined_balance;
2328: --
2329: ------------------------ insert_customize_restriction ------------------------

Line 2361: g_debug := hr_utility.debug_enabled;

2357: v_rowid rowid;
2358:
2359: --
2360: begin
2361: g_debug := hr_utility.debug_enabled;
2362: --
2363: if g_debug then
2364: hr_utility.set_location('insert_customize_restriction',1);
2365: end if;

Line 2364: hr_utility.set_location('insert_customize_restriction',1);

2360: begin
2361: g_debug := hr_utility.debug_enabled;
2362: --
2363: if g_debug then
2364: hr_utility.set_location('insert_customize_restriction',1);
2365: end if;
2366: --
2367: -- Check that name is not already in use
2368: --

Line 2381: hr_utility.set_location('insert_customize_restriction',2);

2377: when NO_DATA_FOUND then NULL;
2378: end;
2379:
2380: if g_debug then
2381: hr_utility.set_location('insert_customize_restriction',2);
2382: end if;
2383: --
2384: if v_name_already_exists = 'Y' then
2385: hr_utility.set_message(801,'HR_6030_CUST_UNIQUE_NAME');

Line 2385: hr_utility.set_message(801,'HR_6030_CUST_UNIQUE_NAME');

2381: hr_utility.set_location('insert_customize_restriction',2);
2382: end if;
2383: --
2384: if v_name_already_exists = 'Y' then
2385: hr_utility.set_message(801,'HR_6030_CUST_UNIQUE_NAME');
2386: hr_utility.raise_error;
2387: end if;
2388: --
2389: if g_debug then

Line 2386: hr_utility.raise_error;

2382: end if;
2383: --
2384: if v_name_already_exists = 'Y' then
2385: hr_utility.set_message(801,'HR_6030_CUST_UNIQUE_NAME');
2386: hr_utility.raise_error;
2387: end if;
2388: --
2389: if g_debug then
2390: hr_utility.set_location('insert_customize_restriction',3);

Line 2390: hr_utility.set_location('insert_customize_restriction',3);

2386: hr_utility.raise_error;
2387: end if;
2388: --
2389: if g_debug then
2390: hr_utility.set_location('insert_customize_restriction',3);
2391: end if;
2392: --
2393:
2394: -- Select the application id for the form

Line 2408: hr_utility.set_location('insert_customize_restriction',5);

2404: where prp.form_name = f.form_name
2405: and prp.application_id = f.application_id);
2406: --
2407: if g_debug then
2408: hr_utility.set_location('insert_customize_restriction',5);
2409: end if;
2410: --
2411: -- Create a row in pay_customized_restrictions and pay_custom_restrictions_tl
2412: --

Line 2437: hr_utility.set_location('insert_customize_restriction',6);

2433:
2434:
2435: --
2436: if g_debug then
2437: hr_utility.set_location('insert_customize_restriction',6);
2438: end if;
2439: --
2440:
2441: return v_customized_restriction_id;