DBA Data[Home] [Help]

APPS.JAI_AR_CR_ARIUD_T1 dependencies on JAI_CONSTANTS

Line 303: lv_action := jai_constants.inserting ;

299:
300: END IF;
301:
302: IF INSERTING THEN
303: lv_action := jai_constants.inserting ;
304: ELSIF UPDATING THEN
305: lv_action := jai_constants.updating ;
306: ELSIF DELETING THEN
307: lv_action := jai_constants.deleting ;

Line 305: lv_action := jai_constants.updating ;

301:
302: IF INSERTING THEN
303: lv_action := jai_constants.inserting ;
304: ELSIF UPDATING THEN
305: lv_action := jai_constants.updating ;
306: ELSIF DELETING THEN
307: lv_action := jai_constants.deleting ;
308: END IF ;
309:

Line 307: lv_action := jai_constants.deleting ;

303: lv_action := jai_constants.inserting ;
304: ELSIF UPDATING THEN
305: lv_action := jai_constants.updating ;
306: ELSIF DELETING THEN
307: lv_action := jai_constants.deleting ;
308: END IF ;
309:
310: --Commented by Qinglei 10-Nov-2011 for ER: Service Tax on Advance Receipt
311: /*OPEN c_loc_receipt_class;

Line 335: IF lv_return_code <> jai_constants.successful then

331: pv_action => lv_action ,
332: pv_return_code => lv_return_code ,
333: pv_return_message => lv_return_message
334: );
335: IF lv_return_code <> jai_constants.successful then
336: RAISE le_error;
337: END IF;
338: END IF;
339: ELSIF UPDATING THEN

Line 347: IF lv_return_code <> jai_constants.successful then

343: pv_action => lv_action ,
344: pv_return_code => lv_return_code ,
345: pv_return_message => lv_return_message
346: );
347: IF lv_return_code <> jai_constants.successful then
348: RAISE le_error;
349: END IF;
350: END IF;
351: ELSIF DELETING THEN

Line 359: IF lv_return_code <> jai_constants.successful then

355: pv_action => lv_action ,
356: pv_return_code => lv_return_code ,
357: pv_return_message => lv_return_message
358: );
359: IF lv_return_code <> jai_constants.successful then
360: RAISE le_error;
361: END IF;
362: END IF;
363: END IF;