DBA Data[Home] [Help]

APPS.JAI_JAR_TL_ARIUD_T1 dependencies on FND_MESSAGE

Line 317: ||Added the call to fnd_message.set_name and set_token

313: fnd_file.put_line(fnd_file.log, lv_return_message);
314:
315: /*
316: ||Start of Bug 5141293
317: ||Added the call to fnd_message.set_name and set_token
318: */
319: fnd_message.set_name ( application => 'JA',
320: NAME => 'JAI_ERR_DESC'
321: );

Line 319: fnd_message.set_name ( application => 'JA',

315: /*
316: ||Start of Bug 5141293
317: ||Added the call to fnd_message.set_name and set_token
318: */
319: fnd_message.set_name ( application => 'JA',
320: NAME => 'JAI_ERR_DESC'
321: );
322:
323: fnd_message.set_token ( token => 'JAI_ERROR_DESCRIPTION',

Line 323: fnd_message.set_token ( token => 'JAI_ERROR_DESCRIPTION',

319: fnd_message.set_name ( application => 'JA',
320: NAME => 'JAI_ERR_DESC'
321: );
322:
323: fnd_message.set_token ( token => 'JAI_ERROR_DESCRIPTION',
324: value => lv_return_message
325: );
326:
327: app_exception.raise_exception;

Line 335: fnd_message.set_name ( application => 'JA',

331: ||Add the call to fnd_file.put_line as a part of the bug 5104997
332: */
333: fnd_file.put_line(fnd_file.log, 'Encountered the error in trigger JAI_JAR_TL_ARIUD_T1' || substr(sqlerrm,1,1900));
334:
335: fnd_message.set_name ( application => 'JA',
336: NAME => 'JAI_ERR_DESC'
337: );
338:
339: fnd_message.set_token ( token => 'JAI_ERROR_DESCRIPTION',

Line 339: fnd_message.set_token ( token => 'JAI_ERROR_DESCRIPTION',

335: fnd_message.set_name ( application => 'JA',
336: NAME => 'JAI_ERR_DESC'
337: );
338:
339: fnd_message.set_token ( token => 'JAI_ERROR_DESCRIPTION',
340: value => 'Encountered the error in trigger JAI_JAR_TL_ARIUD_T1' || substr(sqlerrm,1,1900)
341: );
342: app_exception.raise_exception;
343: /*