DBA Data[Home] [Help]

APPS.PN_INDEX_HISTORY_LINES_PKG dependencies on APP_EXCEPTION

Line 82: app_exception.raise_exception;

78:
79: check_unq_index_line (l_return_status, x_index_id, x_index_line_id, x_index_date);
80:
81: IF (l_return_status IS NOT NULL) THEN
82: app_exception.raise_exception;
83: END IF;
84:
85: INSERT INTO pn_index_history_lines
86: (index_line_id

Line 210: app_exception.raise_exception;

206:
207: check_unq_index_line (l_return_status, x_index_id, x_index_line_id, x_index_date);
208:
209: IF (l_return_status IS NOT NULL) THEN
210: app_exception.raise_exception;
211: END IF;
212:
213: UPDATE pn_index_history_lines
214: SET last_update_date = x_last_update_date

Line 341: app_exception.raise_exception;

337: ) THEN
338: NULL;
339: ELSE
340: fnd_message.set_name ('FND', 'FORM_RECORD_CHANGED');
341: app_exception.raise_exception;
342: END IF;
343:
344: --PNP_DEBUG_PKG.debug (' PN_INDEX_HISTORY_LINES_PKG.lock_row (-)');
345: END lock_row;