DBA Data[Home] [Help]

APPS.JAI_AR_RCTA_ARIUD_T1 dependencies on APP_EXCEPTION

Line 642: -- In 11i code, the app_exception.raise_exception was displaying the message on the front-end, however on R12, the ARXTWMAI

638:
639: EXCEPTION
640: --
641: -- Bug: 6156051
642: -- In 11i code, the app_exception.raise_exception was displaying the message on the front-end, however on R12, the ARXTWMAI
643: -- form is not showing this kind of message and it reads message stack for any error. Hence to show a message on the front-end
644: -- message stack must be pushed with proper error message which will be read by form's ON-ERROR trigger
645: --
646: WHEN le_error THEN

Line 652: app_exception.raise_exception (

648: fnd_message.set_name ('JA','JAI_GENERIC_MSG');
649: fnd_message.set_token ('MSG_TEXT', lv_return_message);
650: -- End 6156051
651:
652: app_exception.raise_exception (
653: EXCEPTION_TYPE => 'APP' ,
654: EXCEPTION_CODE => -20001 ,
655: EXCEPTION_TEXT => lv_return_message
656: );

Line 663: app_exception.raise_exception (

659: -- BUG 6156051
660: fnd_message.set_name ('JA','JAI_GENERIC_MSG');
661: fnd_message.set_token ('MSG_TEXT', 'Encountered the error in trigger JAI_AR_RCTA_ARIUD_T1' || substr(sqlerrm,1,1900));
662: -- End 6156051
663: app_exception.raise_exception (
664: EXCEPTION_TYPE => 'APP',
665: EXCEPTION_CODE => -20001 ,
666: EXCEPTION_TEXT => 'Encountered the error in trigger JAI_AR_RCTA_ARIUD_T1' || substr(sqlerrm,1,1900)
667: );