DBA Data[Home] [Help]

APPS.PO_SHIPMENTS_SV6 dependencies on PO_MESSAGE_S

Line 183: po_message_s.app_error('PO_PO_REL_EXCEEDS_QTY');

179: AND pll.source_shipment_id = X_line_location_id
180: AND pll.shipment_type = 'SCHEDULED';
181:
182: if X_scheduled_quantity > X_quantity then
183: po_message_s.app_error('PO_PO_REL_EXCEEDS_QTY');
184: end if;
185:
186: exception
187:

Line 192: po_message_s.sql_error('insert_po_shipment',X_progress,

188: when no_data_found then
189: null;
190:
191: when others then
192: po_message_s.sql_error('insert_po_shipment',X_progress,
193: sqlcode);
194: raise;
195: END;
196:

Line 350: po_message_s.sql_error('PO_SHIPMENTS_SV6.insert_po_shipment', X_progress, sqlcode);

346: );
347:
348: EXCEPTION
349: WHEN OTHERS THEN
350: po_message_s.sql_error('PO_SHIPMENTS_SV6.insert_po_shipment', X_progress, sqlcode);
351: raise;
352: END insert_po_shipment;
353:
354: END PO_SHIPMENTS_SV6;