DBA Data[Home] [Help]

APPS.JAI_AP_IDA_BRIUD_T1 dependencies on APP_EXCEPTION

Line 979: APP_EXCEPTION.RAISE_EXCEPTION; /* code ended for bug : 6493858 - Ends here*/

975: FND_MESSAGE.SET_TOKEN('ERROR',SQLERRM);
976: FND_MESSAGE.SET_TOKEN('CALLING_SEQUENCE','Error from Trigger JAI_AP_IDA_BRIUD_T1');
977: FND_MESSAGE.SET_TOKEN('DEBUG_INFO',lv_return_message);
978: END IF;
979: APP_EXCEPTION.RAISE_EXCEPTION; /* code ended for bug : 6493858 - Ends here*/
980:
981: /*Code commented by Nitin Prashar on 4-dec-2007
982: app_exception.raise_s (
983: EXCEPTION_TYPE => 'APP' ,

Line 982: app_exception.raise_s (

978: END IF;
979: APP_EXCEPTION.RAISE_EXCEPTION; /* code ended for bug : 6493858 - Ends here*/
980:
981: /*Code commented by Nitin Prashar on 4-dec-2007
982: app_exception.raise_s (
983: EXCEPTION_TYPE => 'APP' ,
984: EXCEPTION_CODE => -20110 ,
985: EXCEPTION_TEXT => lv_return_message
986: ); Code commenting Ends */

Line 992: APP_EXCEPTION.RAISE_EXCEPTION;

988: /*Bug 9626284 - Stop Validation if Standalone AP Invoice does not have Organization or Location Information*/
989: WHEN l_org_loc_error THEN
990: FND_MESSAGE.SET_NAME('JA' ,'JAI_ORG_NOT_NULL');
991: FND_MESSAGE.SET_TOKEN('CALLING_SEQUENCE','Error from Trigger JAI_AP_IDA_BRIUD_T1');
992: APP_EXCEPTION.RAISE_EXCEPTION;
993:
994: WHEN OTHERS THEN
995: IF (SQLCODE <> -20001) THEN /*code added for bug : 6493858*/
996: FND_MESSAGE.SET_NAME('SQLAP','AP_DEBUG');

Line 1001: APP_EXCEPTION.RAISE_EXCEPTION; /* code ended for bug : 6493858*/

997: FND_MESSAGE.SET_TOKEN('ERROR',SQLERRM);
998: FND_MESSAGE.SET_TOKEN('CALLING_SEQUENCE','Exception from Trigger');
999: FND_MESSAGE.SET_TOKEN('DEBUG_INFO','Encountered the error in trigger JAI_AP_IDA_BRIUD_T1' || substr(sqlerrm,1,1900));
1000: END IF;
1001: APP_EXCEPTION.RAISE_EXCEPTION; /* code ended for bug : 6493858*/
1002:
1003: /*Code commented by Nitin Prashar on 4-dec-2007
1004: app_exception.raise_exception (
1005: EXCEPTION_TYPE => 'APP',

Line 1004: app_exception.raise_exception (

1000: END IF;
1001: APP_EXCEPTION.RAISE_EXCEPTION; /* code ended for bug : 6493858*/
1002:
1003: /*Code commented by Nitin Prashar on 4-dec-2007
1004: app_exception.raise_exception (
1005: EXCEPTION_TYPE => 'APP',
1006: EXCEPTION_CODE => -20110 ,
1007: EXCEPTION_TEXT => 'Encountered the error in trigger JAI_AP_IDA_BRIUD_T1' || substr(sqlerrm,1,1900)
1008: ); Code commenting Ends */