DBA Data[Home] [Help]

APPS.JAI_PO_RA_ARIUD_T1 dependencies on JAI_CONSTANTS

Line 244: lv_action := jai_constants.inserting ;

240: /*
241: || check for action in trigger and pass the same to the procedure
242: */
243: IF INSERTING THEN
244: lv_action := jai_constants.inserting ;
245: ELSIF UPDATING THEN
246: lv_action := jai_constants.updating ;
247: ELSIF DELETING THEN
248: lv_action := jai_constants.deleting ;

Line 246: lv_action := jai_constants.updating ;

242: */
243: IF INSERTING THEN
244: lv_action := jai_constants.inserting ;
245: ELSIF UPDATING THEN
246: lv_action := jai_constants.updating ;
247: ELSIF DELETING THEN
248: lv_action := jai_constants.deleting ;
249: END IF ;
250:

Line 248: lv_action := jai_constants.deleting ;

244: lv_action := jai_constants.inserting ;
245: ELSIF UPDATING THEN
246: lv_action := jai_constants.updating ;
247: ELSIF DELETING THEN
248: lv_action := jai_constants.deleting ;
249: END IF ;
250:
251: IF UPDATING THEN
252:

Line 263: IF lv_return_code <> jai_constants.successful then

259: pv_return_code => lv_return_code ,
260: pv_return_message => lv_return_message
261: );
262:
263: IF lv_return_code <> jai_constants.successful then
264: RAISE le_error;
265: END IF;
266:
267: END IF ;