DBA Data[Home] [Help]

APPS.GMF_MEMO_INTERFACE dependencies on APP_EXCEPTION

Line 233: app_exception.raise_exception;

229: END IF;
230: EXCEPTION
231: WHEN exp_wrong_item THEN
232: fnd_message.set_name('GMF','GL_WRONG_ITEM');
233: app_exception.raise_exception;
234: WHEN affect_inv THEN
235: fnd_message.set_name('GMF','GL_INVENTORY_AFFECT');
236: app_exception.raise_exception;
237: WHEN no_lot_data THEN

Line 236: app_exception.raise_exception;

232: fnd_message.set_name('GMF','GL_WRONG_ITEM');
233: app_exception.raise_exception;
234: WHEN affect_inv THEN
235: fnd_message.set_name('GMF','GL_INVENTORY_AFFECT');
236: app_exception.raise_exception;
237: WHEN no_lot_data THEN
238: fnd_message.set_name('GMF','GL_NO_LOT_DATA');
239: app_exception.raise_exception;
240: WHEN no_qty_data THEN

Line 239: app_exception.raise_exception;

235: fnd_message.set_name('GMF','GL_INVENTORY_AFFECT');
236: app_exception.raise_exception;
237: WHEN no_lot_data THEN
238: fnd_message.set_name('GMF','GL_NO_LOT_DATA');
239: app_exception.raise_exception;
240: WHEN no_qty_data THEN
241: fnd_message.set_name('GMF','GL_NO_QTY_DATA');
242: app_exception.raise_exception;
243: WHEN OTHERS THEN

Line 242: app_exception.raise_exception;

238: fnd_message.set_name('GMF','GL_NO_LOT_DATA');
239: app_exception.raise_exception;
240: WHEN no_qty_data THEN
241: fnd_message.set_name('GMF','GL_NO_QTY_DATA');
242: app_exception.raise_exception;
243: WHEN OTHERS THEN
244: /* REM RAISE_APPLICATION_ERROR(-20101, 'Transaction affects inventory'); */
245: fnd_message.set_name('GMF','GL_TRIGGER_EXCEPTION');
246: /* REM B1033070 Changed substrb to substr, Get first 512 chars and not bytes.

Line 249: app_exception.raise_exception;

245: fnd_message.set_name('GMF','GL_TRIGGER_EXCEPTION');
246: /* REM B1033070 Changed substrb to substr, Get first 512 chars and not bytes.
247: REM fnd_message.set_token('TRIGGER_NAME',substrb('GMF_MEMO_INTERFACE'||SQLERRM,1,512)); */
248: fnd_message.set_token('TRIGGER_NAME',substr('GMF_MEMO_INTERFACE'||SQLERRM,1,512));
249: app_exception.raise_exception;
250: END validate_flexfields;
251: END GMF_MEMO_INTERFACE;