DBA Data[Home] [Help]

APPS.PO_DOCUMENT_UPDATE_PVT dependencies on PO_DISTRIBUTIONS

Line 70: := 'PO_DISTRIBUTIONS_REC_TYPE';

66: G_ENTITY_TYPE_CHANGES CONSTANT VARCHAR2(30) := 'PO_CHANGES_REC_TYPE';
67: G_ENTITY_TYPE_LINES CONSTANT VARCHAR2(30) := 'PO_LINES_REC_TYPE';
68: G_ENTITY_TYPE_SHIPMENTS CONSTANT VARCHAR2(30) := 'PO_SHIPMENTS_REC_TYPE';
69: G_ENTITY_TYPE_DISTRIBUTIONS CONSTANT VARCHAR2(30)
70: := 'PO_DISTRIBUTIONS_REC_TYPE';
71:
72: -- Use this constant in the change object to indicate that a field should be
73: -- set to NULL.
74: G_NULL_NUM CONSTANT NUMBER := 9.99E125; -- (See FND_API.G_MISS_NUM.)

Line 189: p_po_distribution_id IN PO_DISTRIBUTIONS.po_distribution_id%TYPE

185: -- If none exists, returns NULL.
186: --End of Comments
187: -------------------------------------------------------------------------------
188: FUNCTION get_dist_change (
189: p_po_distribution_id IN PO_DISTRIBUTIONS.po_distribution_id%TYPE
190: ) RETURN NUMBER;
191:
192: -------------------------------------------------------------------------------
193: --Start of Comments

Line 203: p_po_distribution_id IN PO_DISTRIBUTIONS.po_distribution_id%TYPE

199: --End of Comments
200: -------------------------------------------------------------------------------
201: FUNCTION find_dist_change (
202: p_chg IN OUT NOCOPY PO_CHANGES_REC_TYPE,
203: p_po_distribution_id IN PO_DISTRIBUTIONS.po_distribution_id%TYPE
204: ) RETURN NUMBER;
205:
206: -------------------------------------------------------------------------------
207: --Start of Comments

Line 232: p_parent_distribution_id IN PO_DISTRIBUTIONS.po_distribution_id%TYPE,

228: --End of Comments
229: -------------------------------------------------------------------------------
230: FUNCTION get_split_dist_change (
231: p_chg IN PO_CHANGES_REC_TYPE,
232: p_parent_distribution_id IN PO_DISTRIBUTIONS.po_distribution_id%TYPE,
233: p_parent_line_loc_id IN PO_LINE_LOCATIONS.line_location_id%TYPE,
234: p_split_shipment_num IN PO_LINE_LOCATIONS.shipment_num%TYPE
235: ) RETURN NUMBER;
236:

Line 249: p_parent_distribution_id IN PO_DISTRIBUTIONS.po_distribution_id%TYPE,

245: --End of Comments
246: -------------------------------------------------------------------------------
247: FUNCTION find_split_dist_change (
248: p_chg IN OUT NOCOPY PO_CHANGES_REC_TYPE,
249: p_parent_distribution_id IN PO_DISTRIBUTIONS.po_distribution_id%TYPE,
250: p_parent_line_loc_id IN PO_LINE_LOCATIONS.line_location_id%TYPE,
251: p_split_shipment_num IN PO_LINE_LOCATIONS.shipment_num%TYPE
252: ) RETURN NUMBER;
253: