DBA Data[Home] [Help]

APPS.RCV_HXT_GRP dependencies on HR_GENERAL

Line 644: , NVL (pol.start_date, HR_GENERAL.start_of_time)

640: , pol.unit_price
641: , pol.matching_basis
642: , pol.purchase_basis
643: , pol.order_type_lookup_code
644: , NVL (pol.start_date, HR_GENERAL.start_of_time)
645: , NVL (pol.expiration_date, HR_GENERAL.end_of_time)
646: , pol.job_id
647: , poll.line_location_id
648: , NVL (poll.approved_flag, 'N')

Line 645: , NVL (pol.expiration_date, HR_GENERAL.end_of_time)

641: , pol.matching_basis
642: , pol.purchase_basis
643: , pol.order_type_lookup_code
644: , NVL (pol.start_date, HR_GENERAL.start_of_time)
645: , NVL (pol.expiration_date, HR_GENERAL.end_of_time)
646: , pol.job_id
647: , poll.line_location_id
648: , NVL (poll.approved_flag, 'N')
649: , NVL (poll.cancel_flag, 'N')

Line 1688: p_attributes.detail_date_to = HR_GENERAL.end_of_time ) THEN

1684: -- and we set the parameters so it only counts SUBMITTED blocks
1685: -- So we only count an old block if it is SUBMITTED and active
1686: IF p_attributes.old_block = 'N' OR
1687: ( p_attributes.timecard_approval_status = 'SUBMITTED' AND
1688: p_attributes.detail_date_to = HR_GENERAL.end_of_time ) THEN
1689: -- assumption is that this entry exists in the cache
1690: -- be careful if moving this block of code
1691: g_po_line_cache(p_attributes.po_line_id).timecard_amount := get_po_line(p_attributes.po_line_id).timecard_amount + p_attributes.po_billable_amount;
1692: g_po_line_cache(p_attributes.po_line_id).time_attribute_id := NVL(get_po_line(p_attributes.po_line_id).time_attribute_id, p_attributes.time_attribute_id);

Line 4341: IF l_blocks(blk_idx).date_to <> HR_GENERAL.end_of_time THEN

4337: l_attributes_rec.resource_id := l_blocks(blk_idx).resource_id;
4338: l_attributes_rec.old_block := 'N';
4339:
4340: -- emulate the deleted attribute
4341: IF l_blocks(blk_idx).date_to <> HR_GENERAL.end_of_time THEN
4342: l_attributes_rec.detail_deleted := 'Y';
4343: ELSE
4344: l_attributes_rec.detail_deleted := 'N';
4345: END IF;