DBA Data[Home] [Help]

APPS.PO_DOCUMENT_UPDATE_PVT dependencies on PO_DISTRIBUTIONS

Line 69: := 'PO_DISTRIBUTIONS_REC_TYPE';

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

Line 188: p_po_distribution_id IN PO_DISTRIBUTIONS.po_distribution_id%TYPE

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

Line 202: p_po_distribution_id IN PO_DISTRIBUTIONS.po_distribution_id%TYPE

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

Line 231: p_parent_distribution_id IN PO_DISTRIBUTIONS.po_distribution_id%TYPE,

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

Line 248: p_parent_distribution_id IN PO_DISTRIBUTIONS.po_distribution_id%TYPE,

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