DBA Data[Home] [Help]

APPS.JAI_AR_GLDIST_TRIGGER_PKG dependencies on JAI_CONSTANTS

Line 50: pv_return_code := jai_constants.successful ;

46:
47: ln_exists NUMBER;
48:
49: BEGIN
50: pv_return_code := jai_constants.successful ;
51: OPEN cur_get_temp_row;
52: FETCH cur_get_temp_row INTO ln_exists;
53: IF cur_get_temp_row%FOUND THEN
54: /*

Line 60: pv_return_code := jai_constants.expected_error ;

56: ||Stop the posting to gl_interface
57: */
58: CLOSE cur_get_temp_row;
59: /* raise_application_error (-20131,'IL Taxes found in JAI_AR_TRX_INS_LINES_T table. Please run the India Local Concurrent Program and then post the record into GL');*/
60: pv_return_code := jai_constants.expected_error ;
61: pv_return_message := 'IL Taxes found in JAI_AR_TRX_INS_LINES_T table. Please run the India Local Concurrent Program and then post the record into GL' ;
62: return ;
63: END IF ;
64: CLOSE cur_get_temp_row;

Line 68: Pv_return_code := jai_constants.unexpected_error;

64: CLOSE cur_get_temp_row;
65: /* Added an exception block by Ramananda for bug#4570303 */
66: EXCEPTION
67: WHEN OTHERS THEN
68: Pv_return_code := jai_constants.unexpected_error;
69: Pv_return_message := 'Encountered an error in JAI_AR_GLDIST_TRIGGER_PKG.BRI_T1 ' || substr(sqlerrm,1,1900);
70: END BRI_T1 ;
71:
72: END JAI_AR_GLDIST_TRIGGER_PKG ;