DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_INTERNAL dependencies on STANDARD

Line 25: ,p_last_standard_process_date in date

21: procedure actual_term_emp_asg_sup
22: (p_assignment_id in number
23: ,p_object_version_number in out nocopy number
24: ,p_actual_termination_date in date
25: ,p_last_standard_process_date in date
26: ,p_assignment_status_type_id in number
27: ,p_effective_start_date out nocopy date
28: ,p_effective_end_date out nocopy date
29: ,p_asg_future_changes_warning out nocopy boolean

Line 50: -- p_last_standard_process_date and p_assignment_status_type_id parameters

46: -- 'actual_termination_emp' business process needs to terminate all
47: -- non-primary assignments and the primary assignment.
48: --
49: -- This business support process assumes the p_actual_termination_date,
50: -- p_last_standard_process_date and p_assignment_status_type_id parameters
51: -- have been correctly validated or derived by the calling logic. For US
52: -- legislation p_last_standard_process_date should always be set to null.
53: -- This will ensure unnecessary logic is not executed.
54: --

Line 52: -- legislation p_last_standard_process_date should always be set to null.

48: --
49: -- This business support process assumes the p_actual_termination_date,
50: -- p_last_standard_process_date and p_assignment_status_type_id parameters
51: -- have been correctly validated or derived by the calling logic. For US
52: -- legislation p_last_standard_process_date should always be set to null.
53: -- This will ensure unnecessary logic is not executed.
54: --
55: -- This business support process updates the assignment, date effectively
56: -- deletes element entries where the corresponding element termination rule

Line 57: -- is actual_termination or last_standard_process, deletes affected

53: -- This will ensure unnecessary logic is not executed.
54: --
55: -- This business support process updates the assignment, date effectively
56: -- deletes element entries where the corresponding element termination rule
57: -- is actual_termination or last_standard_process, deletes affected
58: -- unprocessed run results, deletes affected pay proposals and deletes
59: -- affected assignment link usages.
60: --
61: -- Prerequisites:

Line 69: -- p_last_standard_process_date Yes date

65: -- In Parameters:
66: -- Name Reqd Type Description
67: -- p_assignment_id Yes number
68: -- p_actual_termination_date Yes date
69: -- p_last_standard_process_date Yes date
70: -- p_assignment_status_type_id Yes number
71: --
72: -- Post Success:
73: --

Line 123: ,p_last_standard_process_date in date

119: procedure actual_term_emp_asg_sup
120: (p_assignment_id in number
121: ,p_object_version_number in out nocopy number
122: ,p_actual_termination_date in date
123: ,p_last_standard_process_date in date
124: ,p_assignment_status_type_id in number
125: ,p_effective_start_date out nocopy date
126: ,p_effective_end_date out nocopy date
127: ,p_asg_future_changes_warning out nocopy boolean

Line 190: -- including the relevant standard element entries and assignment budget

186: -- {Start Of Comments}
187: --
188: -- Description:
189: -- This business support process creates a default employee assignment,
190: -- including the relevant standard element entries and assignment budget
191: -- values. This process only contains the common functionality for business
192: -- processes which need to create an initial primary assignment for an
193: -- employee, eg. 'create_employee'.
194: --

Line 248: -- assignment,including the relevant standard element entries and assignment

244: -- {Start Of Comments}
245: --
246: -- Description:
247: -- This business support process creates a default non payrolled worker
248: -- assignment,including the relevant standard element entries and assignment
249: -- budget values. This process only contains the common functionality for
250: -- business processes which need to create an initial primary assignment for
251: -- an employee, eg. 'create_employee'.
252: --

Line 513: -- the relevant standard element entries and assignment budget values. This

509: -- {Start Of Comments}
510: --
511: -- Description:
512: -- This business support process creates a new employee assignment, including
513: -- the relevant standard element entries and assignment budget values. This
514: -- process can be called in one of two situations from other business support
515: -- processes:
516: -- create_default_emp_asg - part of creating a new employee
517: -- create_secondary_emp_asg - create a non-primary employee assignment.

Line 881: -- termination rule is last_standard_process or final_process, deletes

877: -- TERM_ASSIGN on the date after the final process date.
878: --
879: -- This business support process date effectively deletes the assignment,
880: -- date effectively deletes element entries where the corresponding element
881: -- termination rule is last_standard_process or final_process, deletes
882: -- affected unprocessed run results, deletes affected pay proposals and
883: -- deletes affected assignment link usages.
884: --
885: -- Element entries which have a corresponding 'Last Standard Process'

Line 885: -- Element entries which have a corresponding 'Last Standard Process'

881: -- termination rule is last_standard_process or final_process, deletes
882: -- affected unprocessed run results, deletes affected pay proposals and
883: -- deletes affected assignment link usages.
884: --
885: -- Element entries which have a corresponding 'Last Standard Process'
886: -- termination rule will have already been date effectively deleted by the
887: -- 'actual_term_emp_asg_sup' business support process. It is still necessary
888: -- for this procedure to process these element entries because the final
889: -- process date may come before the defaulted last_standard_process date.

Line 889: -- process date may come before the defaulted last_standard_process date.

885: -- Element entries which have a corresponding 'Last Standard Process'
886: -- termination rule will have already been date effectively deleted by the
887: -- 'actual_term_emp_asg_sup' business support process. It is still necessary
888: -- for this procedure to process these element entries because the final
889: -- process date may come before the defaulted last_standard_process date.
890: --
891: -- Prerequisites:
892: -- A valid assignment (p_assignment_id) must exist as of the final process
893: -- date (p_final_process_date).

Line 1569: -- p_last_standard_process_date and p_assignment_status_type_id parameters

1565: -- 'actual_termination_cwk' business process needs to terminate all
1566: -- non-primary assignments and the primary assignment.
1567: --
1568: -- This business support process assumes the p_actual_termination_date,
1569: -- p_last_standard_process_date and p_assignment_status_type_id parameters
1570: -- have been correctly validated or derived by the calling logic. For US
1571: -- legislation p_last_standard_process_date should always be set to null.
1572: -- This will ensure unnecessary logic is not executed.
1573: --

Line 1571: -- legislation p_last_standard_process_date should always be set to null.

1567: --
1568: -- This business support process assumes the p_actual_termination_date,
1569: -- p_last_standard_process_date and p_assignment_status_type_id parameters
1570: -- have been correctly validated or derived by the calling logic. For US
1571: -- legislation p_last_standard_process_date should always be set to null.
1572: -- This will ensure unnecessary logic is not executed.
1573: --
1574: -- This business support process updates the assignment, date effectively
1575: -- deletes element entries where the corresponding element termination rule

Line 1576: -- is actual_termination or last_standard_process, deletes affected

1572: -- This will ensure unnecessary logic is not executed.
1573: --
1574: -- This business support process updates the assignment, date effectively
1575: -- deletes element entries where the corresponding element termination rule
1576: -- is actual_termination or last_standard_process, deletes affected
1577: -- unprocessed run results, deletes affected pay proposals and deletes
1578: -- affected assignment link usages.
1579: --
1580: -- Prerequisites:

Line 1588: -- p_last_standard_process_date Yes date

1584: -- In Parameters:
1585: -- Name Reqd Type Description
1586: -- p_assignment_id Yes number
1587: -- p_actual_termination_date Yes date
1588: -- p_last_standard_process_date Yes date
1589: -- p_assignment_status_type_id Yes number
1590: --
1591: -- Post Success:
1592: --

Line 1639: ,p_last_standard_process_date in date

1635: procedure actual_term_cwk_asg
1636: (p_assignment_id in number
1637: ,p_object_version_number in out nocopy number
1638: ,p_actual_termination_date in date
1639: ,p_last_standard_process_date in date
1640: ,p_assignment_status_type_id in number
1641: ,p_effective_start_date out nocopy date
1642: ,p_effective_end_date out nocopy date
1643: ,p_asg_future_changes_warning out nocopy boolean

Line 1671: -- termination rule is last_standard_process or final_process, deletes

1667: -- TERM_CWK_ASSIGN on the date after the final process date.
1668: --
1669: -- This business support process date effectively deletes the assignment,
1670: -- date effectively deletes element entries where the corresponding element
1671: -- termination rule is last_standard_process or final_process, deletes
1672: -- affected unprocessed run results, deletes affected pay proposals and
1673: -- deletes affected assignment link usages.
1674: --
1675: -- Element entries which have a corresponding 'Last Standard Process'

Line 1675: -- Element entries which have a corresponding 'Last Standard Process'

1671: -- termination rule is last_standard_process or final_process, deletes
1672: -- affected unprocessed run results, deletes affected pay proposals and
1673: -- deletes affected assignment link usages.
1674: --
1675: -- Element entries which have a corresponding 'Last Standard Process'
1676: -- termination rule will have already been date effectively deleted by the
1677: -- 'actual_term_cwk_asg' business support process. It is still necessary
1678: -- for this procedure to process these element entries because the final
1679: -- process date may come before the defaulted last_standard_process date.

Line 1679: -- process date may come before the defaulted last_standard_process date.

1675: -- Element entries which have a corresponding 'Last Standard Process'
1676: -- termination rule will have already been date effectively deleted by the
1677: -- 'actual_term_cwk_asg' business support process. It is still necessary
1678: -- for this procedure to process these element entries because the final
1679: -- process date may come before the defaulted last_standard_process date.
1680: --
1681: -- Prerequisites:
1682: -- A valid assignment (p_assignment_id) must exist as of the final process
1683: -- date (p_final_process_date).