DBA Data[Home] [Help]

APPS.PO_HEADERS_SV1 dependencies on PO_MESSAGE_S

Line 34: po_message_s.app_error ('PO_ALL_CANNOT_RESERVE_RECORD');

30: CLOSE C;
31:
32: EXCEPTION
33: WHEN app_exception.record_lock_exception THEN
34: po_message_s.app_error ('PO_ALL_CANNOT_RESERVE_RECORD');
35:
36: WHEN OTHERS THEN
37: --dbms_output.put_line('In Exception');
38: PO_MESSAGE_S.SQL_ERROR('LOCK_ROW_FOR_STATUS_UPDATE', x_progress, sqlcode);

Line 38: PO_MESSAGE_S.SQL_ERROR('LOCK_ROW_FOR_STATUS_UPDATE', x_progress, sqlcode);

34: po_message_s.app_error ('PO_ALL_CANNOT_RESERVE_RECORD');
35:
36: WHEN OTHERS THEN
37: --dbms_output.put_line('In Exception');
38: PO_MESSAGE_S.SQL_ERROR('LOCK_ROW_FOR_STATUS_UPDATE', x_progress, sqlcode);
39: RAISE;
40: END;
41:
42: /*===========================================================================

Line 57: po_message.set_name('val_po_encumbered', x_progress, sqlcode);

53:
54:
55: EXCEPTION
56: WHEN OTHERS THEN
57: po_message.set_name('val_po_encumbered', x_progress, sqlcode);
58: RAISE;
59:
60: END val_po_encumbered; */
61:

Line 77: po_message_s.sql_error('get_doc_num', x_progress, sqlcode);

73:
74:
75: EXCEPTION
76: WHEN OTHERS THEN
77: po_message_s.sql_error('get_doc_num', x_progress, sqlcode);
78: RAISE;
79:
80: END get_doc_num; */
81:

Line 112: po_message_s.app_error('PO_PO_USE_CANCEL_ON_ENCUMB_PO');

108: /* If the PO is encumbered, it has to be cancelled */
109:
110: if X_encumbered then
111: X_allow_delete := FALSE;
112: po_message_s.app_error('PO_PO_USE_CANCEL_ON_ENCUMB_PO');
113: else
114: X_allow_delete := TRUE;
115: end if;
116:

Line 136: po_message_s.sql_error('val_delete', x_progress, sqlcode);

132:
133: EXCEPTION
134: when others then
135: X_allow_delete := FALSE;
136: po_message_s.sql_error('val_delete', x_progress, sqlcode);
137: raise;
138:
139: END val_delete;
140:

Line 192: po_message_s.sql_error('get_po_encumbered', X_progress, sqlcode);

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

Line 277: po_message_s.sql_error('delete_children', x_progress, sqlcode);

273:
274: EXCEPTION
275:
276: when others then
277: po_message_s.sql_error('delete_children', x_progress, sqlcode);
278: raise;
279:
280: END delete_children;
281:

Line 389: po_message_s.app_error('PO_ALL_RECORDS_NOT_FOUND');

385: end if;
386:
387: EXCEPTION
388: WHEN NO_DATA_FOUND THEN
389: po_message_s.app_error('PO_ALL_RECORDS_NOT_FOUND');
390: RETURN (FALSE);
391: RAISE;
392: when others then
393: po_message_s.sql_error('delete_po', x_progress, sqlcode);

Line 393: po_message_s.sql_error('delete_po', x_progress, sqlcode);

389: po_message_s.app_error('PO_ALL_RECORDS_NOT_FOUND');
390: RETURN (FALSE);
391: RAISE;
392: when others then
393: po_message_s.sql_error('delete_po', x_progress, sqlcode);
394: raise;
395:
396: END delete_po;
397:

Line 446: po_message_s.sql_error('delete_po', x_progress, sqlcode);

442: null;
443:
444: when others then
445:
446: po_message_s.sql_error('delete_po', x_progress, sqlcode);
447: raise;
448:
449: END delete_this_release;
450:

Line 471: po_message_s.sql_error('insert_children', x_progress, sqlcode);

467:
468:
469: EXCEPTION
470: WHEN OTHERS THEN
471: po_message_s.sql_error('insert_children', x_progress, sqlcode);
472: RAISE;
473:
474: END insert_children; */
475: