DBA Data[Home] [Help]

APPS.PO_SHIPMENTS_SV2 dependencies on STANDARD

Line 231: shipment type is standard or planned.

227:
228: FUNCTION NAME: val_ship_qty
229:
230: Note: you should only call this routine if your
231: shipment type is standard or planned.
232: This way you prevent a server call.
233: I am checking it in the server side just
234: in case it is called.
235: Issues: Should you be able to update the quantity

Line 257: ** If this is a standard or planned purchase order, continue

253:
254: BEGIN
255:
256: /*
257: ** If this is a standard or planned purchase order, continue
258: ** with checks. Otherwise, we should not update the price.
259: */
260: IF (X_shipment_type = 'STANDARD' OR X_shipment_type = 'PLANNED') THEN
261: null;

Line 260: IF (X_shipment_type = 'STANDARD' OR X_shipment_type = 'PLANNED') THEN

256: /*
257: ** If this is a standard or planned purchase order, continue
258: ** with checks. Otherwise, we should not update the price.
259: */
260: IF (X_shipment_type = 'STANDARD' OR X_shipment_type = 'PLANNED') THEN
261: null;
262: ELSE
263: return(FALSE);
264: END IF;

Line 344: Note: you should only call this routine for standard

340: /*===========================================================================
341:
342: FUNCTION NAME: val_ship_price
343:
344: Note: you should only call this routine for standard
345: and planned purchase orders.
346: ===========================================================================*/
347: FUNCTION val_ship_price
348: (X_po_line_id IN NUMBER,

Line 357: ** If this is a standard or planned purchase order, continue

353:
354: BEGIN
355:
356: /*
357: ** If this is a standard or planned purchase order, continue
358: ** with checks. Otherwise, we should not update the price.
359: */
360: IF (X_shipment_type = 'STANDARD' OR X_shipment_type = 'PLANNED') THEN
361: null;

Line 360: IF (X_shipment_type = 'STANDARD' OR X_shipment_type = 'PLANNED') THEN

356: /*
357: ** If this is a standard or planned purchase order, continue
358: ** with checks. Otherwise, we should not update the price.
359: */
360: IF (X_shipment_type = 'STANDARD' OR X_shipment_type = 'PLANNED') THEN
361: null;
362: IF (g_po_pdoi_write_to_file = 'Y') THEN
363: po_debug.put_line('It is STANDARD or PLANNED');
364: END IF;

Line 363: po_debug.put_line('It is STANDARD or PLANNED');

359: */
360: IF (X_shipment_type = 'STANDARD' OR X_shipment_type = 'PLANNED') THEN
361: null;
362: IF (g_po_pdoi_write_to_file = 'Y') THEN
363: po_debug.put_line('It is STANDARD or PLANNED');
364: END IF;
365: ELSE
366: IF (g_po_pdoi_write_to_file = 'Y') THEN
367: po_debug.put_line('It is not STANDARD or PLANNED');

Line 367: po_debug.put_line('It is not STANDARD or PLANNED');

363: po_debug.put_line('It is STANDARD or PLANNED');
364: END IF;
365: ELSE
366: IF (g_po_pdoi_write_to_file = 'Y') THEN
367: po_debug.put_line('It is not STANDARD or PLANNED');
368: END IF;
369: return(FALSE);
370: END IF;
371:

Line 449: AND shipment_type in ('STANDARD','PLANNED');

445: last_update_login = X_login_id
446: WHERE po_line_id = X_po_line_id
447: AND nvl(cancel_flag,'N') = 'N'
448: AND nvl(closed_code,'OPEN') <> 'FINALLY CLOSED'
449: AND shipment_type in ('STANDARD','PLANNED');
450:
451: RETURN(TRUE);
452:
453: EXCEPTION