DBA Data[Home] [Help]

APPS.HR_ELEMENT_LINKS dependencies on PAY_COST_ALLOCATION_KEYFLEX

Line 600: This procedure will update the pay_cost_allocation_keyflex table with

596: /*
597: NAME
598: ins_costing_segments
599: DESCRIPTION
600: This procedure will update the pay_cost_allocation_keyflex table with
601: the concatenated costing keyflexes. It should always be called when
602: a new costed, fixed or distributed element link is created and also
603: when one of these fields have been updated.
604: */

Line 617: update pay_cost_allocation_keyflex

613: -- We only need to do the updating if there is a costing keyflex there.
614: --
615: if p_cost_allocation_keyflex_id is not null then
616: --
617: update pay_cost_allocation_keyflex
618: set concatenated_segments = p_displayed_cost_keyflex
619: where cost_allocation_keyflex_id = p_cost_allocation_keyflex_id
620: and concatenated_segments is null;
621: --

Line 626: update pay_cost_allocation_keyflex

622: end if;
623: --
624: if p_balancing_keyflex_id is not null then
625: --
626: update pay_cost_allocation_keyflex
627: set concatenated_segments = p_displayed_balancing_keyflex
628: where cost_allocation_keyflex_id = p_balancing_keyflex_id
629: and concatenated_segments is null;
630: --