DBA Data[Home] [Help]

APPS.ITG_SYNCPOINBOUND_PVT dependencies on STANDARD

Line 206: /* This is a standard PO. */

202:
203: l_lltab.delete;
204: l_qty := p_quantity;
205: IF l_release_id IS NULL THEN
206: /* This is a standard PO. */
207: IF l_qty > 0 THEN
208: /* Positive quantity, this is a RECEIPT against standard POs */
209: OPEN line_loc_csr FOR
210: SELECT line_location_id,

Line 208: /* Positive quantity, this is a RECEIPT against standard POs */

204: l_qty := p_quantity;
205: IF l_release_id IS NULL THEN
206: /* This is a standard PO. */
207: IF l_qty > 0 THEN
208: /* Positive quantity, this is a RECEIPT against standard POs */
209: OPEN line_loc_csr FOR
210: SELECT line_location_id,
211: quantity,
212: quantity_received,

Line 226: /* Negative quantity, this is a RETURN against standard POs.

222: FROM po_line_locations_all
223: WHERE po_line_id = l_rec.po_line_id
224: ORDER BY process_date;
225: ELSE
226: /* Negative quantity, this is a RETURN against standard POs.
227: * The only difference is reverse sort order.
228: */
229: OPEN line_loc_csr FOR
230: SELECT line_location_id,

Line 770: l_doc_subtype := 'STANDARD';

766: END IF;
767:
768: IF l_release_id IS NULL THEN
769: l_doc_type := 'PO';
770: l_doc_subtype := 'STANDARD';
771: ELSE
772: l_doc_type := 'RELEASE';
773: l_doc_subtype := 'BLANKET';
774: END IF;

Line 945: l_doc_subtype := 'STANDARD';

941: WHERE line_location_id = l_lltab(i).line_location_id;
942:
943: IF l_release_id IS NULL THEN
944: l_doc_type := 'PO';
945: l_doc_subtype := 'STANDARD';
946: ELSE
947: l_doc_type := 'RELEASE';
948: l_doc_subtype := 'BLANKET';
949: END IF;