DBA Data[Home] [Help]

APPS.PAY_US_EMP_DT_TAX_VAL dependencies on PER_ASSIGNMENTS_F

Line 78: per_assignments_f paf

74: pus.state_code
75: FROM pay_us_states pus,
76: pay_us_states pus1,
77: per_addresses pa,
78: per_assignments_f paf
79: WHERE paf.assignment_id = p_assignment_id
80: AND p_session_date BETWEEN paf.effective_start_date
81: AND paf.effective_end_date
82: AND paf.person_id = pa.person_id

Line 100: per_assignments_f paf

96: pay_us_states pus1,
97: pay_us_counties puc,
98: pay_us_counties puc1,
99: per_addresses pa,
100: per_assignments_f paf
101: WHERE paf.assignment_id = p_assignment_id
102: AND p_session_date BETWEEN paf.effective_start_date
103: AND paf.effective_end_date
104: AND paf.person_id = pa.person_id

Line 131: per_assignments_f paf

127: pay_us_counties puc1,
128: pay_us_city_names pucy,
129: pay_us_city_names pucy1,
130: per_addresses pa,
131: per_assignments_f paf
132: WHERE paf.assignment_id = p_assignment_id
133: AND p_session_date BETWEEN paf.effective_start_date
134: AND paf.effective_end_date
135: AND paf.person_id = pa.person_id

Line 283: per_assignments_f paf

279: pay_us_states pus1,
280: hr_locations hl,
281: hr_locations hl1,
282: hr_soft_coding_keyflex hscf,
283: per_assignments_f paf
284: WHERE paf.assignment_id = p_assignment_id
285: AND p_session_date BETWEEN paf.effective_start_date
286: AND paf.effective_end_date
287: AND hscf.soft_coding_keyflex_id = paf.soft_coding_keyflex_id

Line 308: per_assignments_f paf

304: pay_us_counties puc1,
305: hr_locations hl,
306: hr_locations hl1,
307: hr_soft_coding_keyflex hscf,
308: per_assignments_f paf
309: WHERE paf.assignment_id = p_assignment_id
310: AND p_session_date BETWEEN paf.effective_start_date
311: AND paf.effective_end_date
312: AND hscf.soft_coding_keyflex_id = paf.soft_coding_keyflex_id

Line 341: per_assignments_f paf

337: pay_us_city_names pucy1,
338: hr_locations hl,
339: hr_locations hl1,
340: hr_soft_coding_keyflex hscf,
341: per_assignments_f paf
342: WHERE paf.assignment_id = p_assignment_id
343: AND p_session_date BETWEEN paf.effective_start_date
344: AND paf.effective_end_date
345: AND hscf.soft_coding_keyflex_id = paf.soft_coding_keyflex_id

Line 516: from PER_ASSIGNMENTS_F paf

512: l_payroll_installed boolean := FALSE;
513:
514: cursor csr_chk_loc_change is
515: select paf.location_id
516: from PER_ASSIGNMENTS_F paf
517: where paf.assignment_id = p_assignment_id
518: and p_session_date between paf.effective_start_date
519: and paf.effective_end_date;
520:

Line 523: from per_assignments_f paf1

519: and paf.effective_end_date;
520:
521: cursor csr_get_next_locations is
522: select paf1.location_id
523: from per_assignments_f paf1
524: where paf1.assignment_id = p_assignment_id
525: and paf1.effective_start_date > p_effective_end_date
526: order by paf1.effective_start_date;
527:

Line 532: from per_assignments_f paf

528: cursor csr_chk_payroll is
529: /* 11.5.10 changes performance modification. original code
530: commented out below. */
531: select 1
532: from per_assignments_f paf
533: ,pay_payroll_actions ppa
534: ,pay_assignment_actions paa
535: where paf.assignment_id = p_assignment_id
536: and ppa.payroll_id = paf.payroll_id

Line 755: PER_ASSIGNMENTS_F paf

751:
752: CURSOR csr_check_state is
753: select 1
754: from HR_LOCATIONS hrl,
755: PER_ASSIGNMENTS_F paf
756: where paf.assignment_id = p_assignment_id
757: and hrl.location_id = paf.location_id
758: and exists (select null
759: from PAY_US_STATES pus

Line 767: PER_ASSIGNMENTS_F paf

763: CURSOR csr_check_ovrd_state is
764: select 1
765: from HR_LOCATIONS hrl,
766: HR_SOFT_CODING_KEYFLEX hscf,
767: PER_ASSIGNMENTS_F paf
768: where paf.assignment_id = p_assignment_id
769: and hscf.soft_coding_keyflex_id = paf.soft_coding_keyflex_id
770: and hrl.location_id = hscf.segment18
771: and exists (select null

Line 782: PER_ASSIGNMENTS_F paf

778:
779: CURSOR csr_check_county is
780: select 1
781: from HR_LOCATIONS hrl,
782: PER_ASSIGNMENTS_F paf
783: where paf.assignment_id = p_assignment_id
784: and hrl.location_id = paf.location_id
785: and exists (select null
786: from PAY_US_COUNTIES puc,

Line 801: PER_ASSIGNMENTS_F paf

797: CURSOR csr_check_ovrd_county is
798: select 1
799: from HR_LOCATIONS hrl,
800: HR_SOFT_CODING_KEYFleX hscf,
801: PER_ASSIGNMENTS_F paf
802: where paf.assignment_id = p_assignment_id
803: and hscf.soft_coding_keyflex_id = paf.soft_coding_keyflex_id
804: and hrl.location_id = hscf.segment18
805: and exists (select null

Line 823: PER_ASSIGNMENTS_F paf

819:
820: CURSOR csr_check_city is
821: select 1
822: from HR_LOCATIONS hrl,
823: PER_ASSIGNMENTS_F paf
824: where paf.assignment_id = p_assignment_id
825: and hrl.location_id = paf.location_id
826: and exists (select null
827: from PAY_US_CITY_NAMES puci,

Line 848: PER_ASSIGNMENTS_F paf

844: CURSOR csr_check_ovrd_city is
845: select 1
846: from HR_LOCATIONS hrl,
847: HR_SOFT_CODING_KEYFLEX hscf,
848: PER_ASSIGNMENTS_F paf
849: where paf.assignment_id = p_assignment_id
850: and hscf.soft_coding_keyflex_id = paf.soft_coding_keyflex_id
851: and hrl.location_id = hscf.segment18
852: and exists (select null

Line 1042: PER_ASSIGNMENTS_F paf

1038:
1039: CURSOR csr_check_state is
1040: select 1
1041: from PER_ADDRESSES pa,
1042: PER_ASSIGNMENTS_F paf
1043: where paf.assignment_id = p_assignment_id
1044: and pa.person_id = paf.person_id
1045: and exists (select null
1046: from PAY_US_STATES pus

Line 1056: PER_ASSIGNMENTS_F paf

1052:
1053: CURSOR csr_check_county is
1054: select 1
1055: from PER_ADDRESSES pa,
1056: PER_ASSIGNMENTS_F paf
1057: where paf.assignment_id = p_assignment_id
1058: and pa.person_id = paf.person_id
1059: and exists (select null
1060: from PAY_US_COUNTIES puc,

Line 1077: PER_ASSIGNMENTS_F paf

1073:
1074: CURSOR csr_check_city is
1075: select 1
1076: from PER_ADDRESSES pa,
1077: PER_ASSIGNMENTS_F paf
1078: where paf.assignment_id = p_assignment_id
1079: and pa.person_id = paf.person_id
1080: and exists (select null
1081: from PAY_US_CITY_NAMES puci,

Line 1260: from per_assignments_f paf

1256: /* 11.5.10 changes performance modification. original code
1257: commented out below. */
1258:
1259: select 1
1260: from per_assignments_f paf
1261: ,pay_payroll_actions ppa
1262: ,pay_assignment_actions paa
1263: ,pay_run_results prr
1264: where substr(prr.jurisdiction_code,1,2) = p_state_code

Line 1289: from per_assignments_f paf

1285: CURSOR csr_check_county_purge is
1286: /* 11.5.10 changes performance modification. original code
1287: commented out below. */
1288: select 1
1289: from per_assignments_f paf
1290: ,pay_payroll_actions ppa
1291: ,pay_assignment_actions paa
1292: ,pay_run_results prr
1293: where substr(prr.jurisdiction_code,1,6) = p_state_code || '-'||

Line 1323: from per_assignments_f paf

1319:
1320: /* 11.5.10 changes performance modification. original code
1321: commented out below. */
1322: select 1
1323: from per_assignments_f paf
1324: ,pay_payroll_actions ppa
1325: ,pay_assignment_actions paa
1326: ,pay_run_results prr
1327: where prr.jurisdiction_code = p_state_code || '-'||

Line 1555: from per_assignments_f

1551: cursor csr_get_curr_loc is
1552: select location_id,
1553: effective_start_date,
1554: effective_end_date
1555: from per_assignments_f
1556: where assignment_id = p_assignment_id
1557: and business_group_id + 0 = p_business_group_id
1558: and p_effective_start_date between effective_start_date
1559: and effective_end_date;

Line 1563: from per_assignments_f

1559: and effective_end_date;
1560:
1561: cursor csr_get_future_locations (p_validation_date date)is
1562: select location_id
1563: from per_assignments_f
1564: where assignment_id = p_assignment_id
1565: and business_group_id + 0 = p_business_group_id
1566: and effective_start_date > p_validation_date;
1567:

Line 1635: PER_ASSIGNMENTS_F paf

1631: from PAY_US_CITY_NAMES puci,
1632: PAY_US_COUNTIES puc,
1633: PAY_US_STATES pus,
1634: PER_ADDRESSES pa,
1635: PER_ASSIGNMENTS_F paf
1636: where paf.assignment_id = p_assignment_id
1637: and p_session_date between paf.effective_start_date and
1638: paf.effective_end_date
1639: and pa.person_id = paf.person_id

Line 1712: PER_ASSIGNMENTS_F paf

1708: PAY_US_COUNTIES puc,
1709: PAY_US_STATES pus,
1710: HR_LOCATIONS hrl,
1711: HR_SOFT_CODING_KEYFLEX hscf,
1712: PER_ASSIGNMENTS_F paf
1713: where paf.assignment_id = p_assignment_id
1714: and p_session_date between paf.effective_start_date and
1715: paf.effective_end_date
1716: and hscf.soft_coding_keyflex_id = paf.soft_coding_keyflex_id

Line 2057: PER_ASSIGNMENTS_F paf

2053: /* Override Assignment Data */
2054: cursor csr_get_asgn_locations is
2055: select paf.location_id, hsc.segment18
2056: from HR_SOFT_CODING_KEYFLEX hsc,
2057: PER_ASSIGNMENTS_F paf
2058: where paf.assignment_id = p_assignment_id
2059: and p_session_date between paf.effective_start_date and
2060: paf.effective_end_date
2061: and hsc.soft_coding_keyflex_id = paf.soft_coding_keyflex_id;

Line 2284: PER_ASSIGNMENTS_F paf

2280: from PAY_US_CITY_NAMES puci,
2281: PAY_US_COUNTIES puc,
2282: PAY_US_STATES pus,
2283: PER_ADDRESSES pa,
2284: PER_ASSIGNMENTS_F paf
2285: where paf.assignment_id = p_assignment_id
2286: and p_session_date between paf.effective_start_date and
2287: paf.effective_end_date
2288: and pa.person_id = paf.person_id