DBA Data[Home] [Help]

APPS.JAI_AR_RCTA_ARIUD_T1 dependencies on APP_EXCEPTION

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

1016:
1017: EXCEPTION
1018: --
1019: -- Bug: 6156051
1020: -- In 11i code, the app_exception.raise_exception was displaying the message on the front-end, however on R12, the ARXTWMAI
1021: -- 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
1022: -- message stack must be pushed with proper error message which will be read by form's ON-ERROR trigger
1023: --
1024: WHEN le_error THEN

Line 1030: app_exception.raise_exception (

1026: fnd_message.set_name ('JA','JAI_GENERIC_MSG');
1027: fnd_message.set_token ('MSG_TEXT', lv_return_message);
1028: -- End 6156051
1029:
1030: app_exception.raise_exception (
1031: EXCEPTION_TYPE => 'APP' ,
1032: EXCEPTION_CODE => -20001 ,
1033: EXCEPTION_TEXT => lv_return_message
1034: );

Line 1041: app_exception.raise_exception (

1037: -- BUG 6156051
1038: fnd_message.set_name ('JA','JAI_GENERIC_MSG');
1039: fnd_message.set_token ('MSG_TEXT', 'Encountered the error in trigger JAI_AR_RCTA_ARIUD_T1' || substr(sqlerrm,1,1900));
1040: -- End 6156051
1041: app_exception.raise_exception (
1042: EXCEPTION_TYPE => 'APP',
1043: EXCEPTION_CODE => -20001 ,
1044: EXCEPTION_TEXT => 'Encountered the error in trigger JAI_AR_RCTA_ARIUD_T1' || substr(sqlerrm,1,1900)
1045: );