DBA Data[Home] [Help]

APPS.JAI_JAR_TL_ARIUD_T1 dependencies on FND_MESSAGE

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

273: fnd_file.put_line(fnd_file.log, lv_return_message);
274:
275: /*
276: ||Start of Bug 5141293
277: ||Added the call to fnd_message.set_name and set_token
278: */
279: fnd_message.set_name ( application => 'JA',
280: NAME => 'JAI_ERR_DESC'
281: );

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

275: /*
276: ||Start of Bug 5141293
277: ||Added the call to fnd_message.set_name and set_token
278: */
279: fnd_message.set_name ( application => 'JA',
280: NAME => 'JAI_ERR_DESC'
281: );
282:
283: fnd_message.set_token ( token => 'JAI_ERROR_DESCRIPTION',

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

279: fnd_message.set_name ( application => 'JA',
280: NAME => 'JAI_ERR_DESC'
281: );
282:
283: fnd_message.set_token ( token => 'JAI_ERROR_DESCRIPTION',
284: value => lv_return_message
285: );
286:
287: app_exception.raise_exception;

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

291: ||Add the call to fnd_file.put_line as a part of the bug 5104997
292: */
293: fnd_file.put_line(fnd_file.log, 'Encountered the error in trigger JAI_JAR_TL_ARIUD_T1' || substr(sqlerrm,1,1900));
294:
295: fnd_message.set_name ( application => 'JA',
296: NAME => 'JAI_ERR_DESC'
297: );
298:
299: fnd_message.set_token ( token => 'JAI_ERROR_DESCRIPTION',

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

295: fnd_message.set_name ( application => 'JA',
296: NAME => 'JAI_ERR_DESC'
297: );
298:
299: fnd_message.set_token ( token => 'JAI_ERROR_DESCRIPTION',
300: value => 'Encountered the error in trigger JAI_JAR_TL_ARIUD_T1' || substr(sqlerrm,1,1900)
301: );
302: app_exception.raise_exception;
303: /*