DBA Data[Home] [Help]

APPS.PO_NOTIF_CONTROLS_SV dependencies on PO_MESSAGE_S

Line 27: po_message_s.sql_error('delete_notifs', x_progress, sqlcode);

23: when no_data_found then
24: null; /* It is not an error if there are no notification controls */
25:
26: when others then
27: po_message_s.sql_error('delete_notifs', x_progress, sqlcode);
28: raise ;
29:
30: END delete_notifs;
31:

Line 62: po_message_s.sql_error('val_notif_controls', x_progress, sqlcode);

58:
59: EXCEPTION
60: WHEN OTHERS THEN
61: RETURN (FALSE);
62: po_message_s.sql_error('val_notif_controls', x_progress, sqlcode);
63: RAISE;
64:
65: END val_notif_controls;
66:

Line 108: -- po_message_s.app_error('PO_PO_NFC_DATE_CONTROLS_EXIST');

104:
105: X_valid_date := FALSE;
106:
107: -- Bug 509797
108: -- po_message_s.app_error('PO_PO_NFC_DATE_CONTROLS_EXIST');
109: fnd_message.set_name('PO', 'PO_PO_NFC_DATE_CONTROLS_EXIST');
110: return(X_valid_date);
111:
112: EXCEPTION

Line 114: po_message_s.sql_error('val_date_notif', x_progress, sqlcode);

110: return(X_valid_date);
111:
112: EXCEPTION
113: when others then
114: po_message_s.sql_error('val_date_notif', x_progress, sqlcode);
115: raise;
116:
117: END val_date_notif;
118: