DBA Data[Home] [Help]

APPS.PO_LOCATIONS_S dependencies on PO_MESSAGE_S

Line 76: po_message_s.sql_error('get_ship_to_location',X_progress,sqlcode);

72:
73: when no_data_found then
74: return (FALSE);
75: when others then
76: po_message_s.sql_error('get_ship_to_location',X_progress,sqlcode);
77: raise;
78:
79: END get_ship_to_location;
80:

Line 137: po_message_s.sql_error('val_location', x_progress, sqlcode);

133: EXCEPTION
134: WHEN NO_DATA_FOUND THEN
135: RETURN 4; /* Require this Staate in Release Shipment */
136: WHEN OTHERS THEN
137: po_message_s.sql_error('val_location', x_progress, sqlcode);
138: RAISE;
139:
140:
141: END val_location;

Line 185: po_message_s.sql_error('get_loc_attributes',X_progress,sqlcode);

181: when too_many_rows then
182: X_loc_dsp := '';
183: X_org_id := '';
184: when others then
185: po_message_s.sql_error('get_loc_attributes',X_progress,sqlcode);
186: raise;
187: end get_loc_attributes;
188:
189: /*===========================================================================

Line 211: po_message_s.sql_error('get_tax_name',X_progress,sqlcode);

207: exception
208: when no_data_found then
209: null; /* Not an error */
210: when others then
211: po_message_s.sql_error('get_tax_name',X_progress,sqlcode);
212: raise;
213:
214: end get_tax_name;
215:

Line 261: po_message_s.sql_error('get_loc_org', x_progress, sqlcode);

257: when no_data_found then
258: x_org_id := null;
259: x_org_name := null;
260: when others then
261: po_message_s.sql_error('get_loc_org', x_progress, sqlcode);
262: raise;
263:
264: end get_loc_org;
265:

Line 318: po_message_s.sql_error('val_if_inventory_destination', x_progress, sqlcode);

314: END IF;
315:
316: EXCEPTION
317: WHEN OTHERS THEN
318: po_message_s.sql_error('val_if_inventory_destination', x_progress, sqlcode);
319: RAISE;
320:
321: END val_if_inventory_destination;
322:

Line 354: po_message_s.sql_error('get_location_code', x_progress, sqlcode);

350: po_shipments_sv2.get_drop_ship_cust_locations
351: (x_location_id , x_location_code );
352:
353: when others then
354: po_message_s.sql_error('get_location_code', x_progress, sqlcode);
355: raise;
356:
357: end get_location_code;
358:

Line 447: po_message_s.sql_error('val_ship_to_site_in_org', X_progress, sqlcode);

443:
444: when no_data_found then
445: return(FALSE);
446: when others then
447: po_message_s.sql_error('val_ship_to_site_in_org', X_progress, sqlcode);
448: raise;
449:
450:
451: end val_ship_to_site_in_org;

Line 504: po_message_s.sql_error('val_receipt_site_in_org', X_progress, sqlcode);

500:
501: when no_data_found then
502: return(FALSE);
503: when others then
504: po_message_s.sql_error('val_receipt_site_in_org', X_progress, sqlcode);
505: raise;
506:
507:
508: end val_receipt_site_in_org;

Line 979: po_message_s.sql_error('validate_tax_info',X_progress,sqlcode);

975: --
976:
977: EXCEPTION
978: WHEN others THEN
979: po_message_s.sql_error('validate_tax_info',X_progress,sqlcode);
980: raise;
981:
982: END validate_tax_info;
983: