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 368: PO_PRICE_DIFFERENTIALS_PKG.del_level_specific_price_diff(

364: x_progress := '020';
365:
366: --
367: --Delete the Price differentials entity type for the given Line
368: PO_PRICE_DIFFERENTIALS_PKG.del_level_specific_price_diff(
369: p_doc_level => PO_CORE_S.g_doc_level_SHIPMENT
370: ,p_doc_level_id => x_line_location_id);
371: --
372:

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

1065: l_po_lines_rec PO_LINES_ALL%ROWTYPE;
1066: l_base_unit_price PO_LINES_ALL.base_unit_price%TYPE;
1067: l_from_line_location_id PO_LINES_ALL.from_line_location_id%TYPE := NULL;
1068: l_shipment_type PO_LINE_LOCATIONS_ALL.shipment_type%TYPE := NULL;
1069: l_ga_entity_type PO_PRICE_DIFFERENTIALS.entity_type%TYPE := NULL;
1070: l_ga_entity_id PO_PRICE_DIFFERENTIALS.entity_id%TYPE := NULL;
1071: l_is_source_info_changed BOOLEAN := FALSE;
1072: l_price NUMBER := NULL;
1073: l_min_shipment_num NUMBER := NULL;

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

1066: l_base_unit_price PO_LINES_ALL.base_unit_price%TYPE;
1067: l_from_line_location_id PO_LINES_ALL.from_line_location_id%TYPE := NULL;
1068: l_shipment_type PO_LINE_LOCATIONS_ALL.shipment_type%TYPE := NULL;
1069: l_ga_entity_type PO_PRICE_DIFFERENTIALS.entity_type%TYPE := NULL;
1070: l_ga_entity_id PO_PRICE_DIFFERENTIALS.entity_id%TYPE := NULL;
1071: l_is_source_info_changed BOOLEAN := FALSE;
1072: l_price NUMBER := NULL;
1073: l_min_shipment_num NUMBER := NULL;
1074: d_pos NUMBER := 0;

Line 1245: PO_PRICE_DIFFERENTIALS_PVT.delete_price_differentials(

1241: d_pos := 130;
1242: IF (PO_LOG.d_stmt) THEN
1243: 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);
1244: END IF;
1245: PO_PRICE_DIFFERENTIALS_PVT.delete_price_differentials(
1246: p_entity_type => 'PO LINE',
1247: p_entity_id => l_po_lines_rec.po_line_id);
1248: d_pos := 140;
1249: -- Copy Price Differentials from GA to Standard PO

Line 1250: PO_PRICE_DIFFERENTIALS_PVT.default_price_differentials(

1246: p_entity_type => 'PO LINE',
1247: p_entity_id => l_po_lines_rec.po_line_id);
1248: d_pos := 140;
1249: -- Copy Price Differentials from GA to Standard PO
1250: PO_PRICE_DIFFERENTIALS_PVT.default_price_differentials(
1251: p_from_entity_type => l_ga_entity_type,
1252: p_from_entity_id => l_ga_entity_id,
1253: p_to_entity_type => 'PO LINE',
1254: p_to_entity_id => l_po_lines_rec.po_line_id);