DBA Data[Home] [Help]

APPS.PO_SHIPMENTS_SV4 dependencies on PO_PRICE_DIFFERENTIALS

Line 71: PO_PRICE_DIFFERENTIALS_PKG.del_level_specific_price_diff(

67: x_line_location_id,
68: '', '', '', '', 'Y');
69: --
70: --Delete the Price differentials entity type for the given Shipment
71: PO_PRICE_DIFFERENTIALS_PKG.del_level_specific_price_diff(
72: p_doc_level => PO_CORE_S.g_doc_level_SHIPMENT
73: ,p_doc_level_id => x_line_location_id);
74: --
75:

Line 143: PO_PRICE_DIFFERENTIALS_PKG.del_level_specific_price_diff(

139: x_line_location_id,
140: '', '', '', '', 'Y');
141: --
142: --Delete the Price differentials entity type for the given Shipment
143: PO_PRICE_DIFFERENTIALS_PKG.del_level_specific_price_diff(
144: p_doc_level => PO_CORE_S.g_doc_level_SHIPMENT
145: ,p_doc_level_id => x_line_location_id);
146: --
147: END LOOP;

Line 377: PO_PRICE_DIFFERENTIALS_PKG.del_level_specific_price_diff(

373: x_progress := '020';
374:
375: --
376: --Delete the Price differentials entity type for the given Line
377: PO_PRICE_DIFFERENTIALS_PKG.del_level_specific_price_diff(
378: p_doc_level => PO_CORE_S.g_doc_level_SHIPMENT
379: ,p_doc_level_id => x_line_location_id);
380: --
381:

Line 1089: l_ga_entity_type PO_PRICE_DIFFERENTIALS.entity_type%TYPE := NULL;

1085: l_po_lines_rec PO_LINES_ALL%ROWTYPE;
1086: l_base_unit_price PO_LINES_ALL.base_unit_price%TYPE;
1087: l_from_line_location_id PO_LINES_ALL.from_line_location_id%TYPE := NULL;
1088: l_shipment_type PO_LINE_LOCATIONS_ALL.shipment_type%TYPE := NULL;
1089: l_ga_entity_type PO_PRICE_DIFFERENTIALS.entity_type%TYPE := NULL;
1090: l_ga_entity_id PO_PRICE_DIFFERENTIALS.entity_id%TYPE := NULL;
1091: l_is_source_info_changed BOOLEAN := FALSE;
1092: l_price NUMBER := NULL;
1093: l_min_shipment_num NUMBER := NULL;

Line 1090: l_ga_entity_id PO_PRICE_DIFFERENTIALS.entity_id%TYPE := NULL;

1086: l_base_unit_price PO_LINES_ALL.base_unit_price%TYPE;
1087: l_from_line_location_id PO_LINES_ALL.from_line_location_id%TYPE := NULL;
1088: l_shipment_type PO_LINE_LOCATIONS_ALL.shipment_type%TYPE := NULL;
1089: l_ga_entity_type PO_PRICE_DIFFERENTIALS.entity_type%TYPE := NULL;
1090: l_ga_entity_id PO_PRICE_DIFFERENTIALS.entity_id%TYPE := NULL;
1091: l_is_source_info_changed BOOLEAN := FALSE;
1092: l_price NUMBER := NULL;
1093: l_min_shipment_num NUMBER := NULL;
1094: d_pos NUMBER := 0;

Line 1265: PO_PRICE_DIFFERENTIALS_PVT.delete_price_differentials(

1261: d_pos := 130;
1262: IF (PO_LOG.d_stmt) THEN
1263: PO_LOG.stmt(d_module, 'l_ga_entity_type', l_ga_entity_type); PO_LOG.stmt(d_module, 'l_ga_entity_id', l_ga_entity_id);
1264: END IF;
1265: PO_PRICE_DIFFERENTIALS_PVT.delete_price_differentials(
1266: p_entity_type => 'PO LINE',
1267: p_entity_id => l_po_lines_rec.po_line_id);
1268: d_pos := 140;
1269: -- Copy Price Differentials from GA to Standard PO

Line 1270: PO_PRICE_DIFFERENTIALS_PVT.default_price_differentials(

1266: p_entity_type => 'PO LINE',
1267: p_entity_id => l_po_lines_rec.po_line_id);
1268: d_pos := 140;
1269: -- Copy Price Differentials from GA to Standard PO
1270: PO_PRICE_DIFFERENTIALS_PVT.default_price_differentials(
1271: p_from_entity_type => l_ga_entity_type,
1272: p_from_entity_id => l_ga_entity_id,
1273: p_to_entity_type => 'PO LINE',
1274: p_to_entity_id => l_po_lines_rec.po_line_id);