DBA Data[Home] [Help]

APPS.POR_HISTORY_FEED_PKG dependencies on PO_CORE_S

Line 492: l_total_local_amount := PO_CORE_S.Get_Total (

488: l_object_type := 'R';
489: l_object_id := rec_header.po_release_id;
490: END IF;
491:
492: l_total_local_amount := PO_CORE_S.Get_Total (
493: l_object_type, --H/eader or R/elease
494: l_object_id, --based on object type
495: FALSE);
496: END IF;

Line 1018: l_po_amount := PO_CORE_S.Get_Total (

1014: IF l_base_curr_code = l_local_curr_code THEN
1015:
1016: --Note that the Get_Total API subtracts amounts for canceled lines/
1017: --shipments.
1018: l_po_amount := PO_CORE_S.Get_Total (
1019: l_object_type, --H/eader or R/elease
1020: l_object_id); --based on object type
1021:
1022: ELSE

Line 1026: l_po_amount := PO_CORE_S.Get_Total (

1022: ELSE
1023:
1024: --Note that the Get_Total API subtracts amounts for canceled lines/
1025: --shipments.
1026: l_po_amount := PO_CORE_S.Get_Total (
1027: l_object_type, --H/eader or R/elease
1028: l_object_id, --based on object type
1029: TRUE); --result in base/func currency
1030: END IF;