DBA Data[Home] [Help]

APPS.PO_SHIPMENTS_SV2 dependencies on PO_SHIPMENTS_SV2

Line 1: PACKAGE BODY PO_SHIPMENTS_SV2 as

1: PACKAGE BODY PO_SHIPMENTS_SV2 as
2: /* $Header: POXPOS2B.pls 115.8 2002/11/23 02:43:03 sbull ship $*/
3:
4: -- Read the profile option that enables/disables the debug log
5: g_po_pdoi_write_to_file VARCHAR2(1) := NVL(FND_PROFILE.VALUE('PO_PDOI_WRITE_TO_FILE'),'N');

Line 269: X_number_shipments := po_shipments_sv2.get_number_shipments(X_po_line_id,

265:
266: /*
267: ** Get the number of shipments associated with the purchase order line.
268: */
269: X_number_shipments := po_shipments_sv2.get_number_shipments(X_po_line_id,
270: X_shipment_type);
271:
272: IF (g_po_pdoi_write_to_file = 'Y') THEN
273: po_debug.put_line('X_number_shipments = '||X_number_shipments);

Line 292: po_shipments_sv2.get_shipment_status (X_po_line_id,

288:
289: /*
290: ** Get the line_location_id and status of the single shipment.
291: */
292: po_shipments_sv2.get_shipment_status (X_po_line_id,
293: X_shipment_type,
294: X_line_location_id,
295: X_approved_flag,
296: X_encumbered_flag,

Line 313: IF po_shipments_sv2.update_shipment_qty (X_line_location_id,

309: IF ( (X_encumbered_flag = 'N') AND
310: (X_cancelled_flag = 'N') AND
311: (X_closed_code <> 'FINALLY CLOSED') ) THEN
312:
313: IF po_shipments_sv2.update_shipment_qty (X_line_location_id,
314: X_shipment_type,
315: X_line_quantity) THEN
316: RETURN(TRUE);
317: ELSE

Line 375: IF po_shipments_sv2.update_shipment_price (X_po_line_id,

371:
372: IF (g_po_pdoi_write_to_file = 'Y') THEN
373: po_debug.put_line('Before If');
374: END IF;
375: IF po_shipments_sv2.update_shipment_price (X_po_line_id,
376: X_shipment_type,
377: X_unit_price) THEN
378: IF (g_po_pdoi_write_to_file = 'Y') THEN
379: po_debug.put_line('Returned TRUE');

Line 506: END PO_SHIPMENTS_SV2;

502: WHEN OTHERS THEN
503: null;
504: END get_drop_ship_cust_locations;
505:
506: END PO_SHIPMENTS_SV2;