DBA Data[Home] [Help]

APPS.JAI_JRG_23AC1_BRIUD_T1 dependencies on JAI_CONSTANTS

Line 245: lv_action := jai_constants.inserting ;

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

Line 247: lv_action := jai_constants.updating ;

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

Line 249: lv_action := jai_constants.deleting ;

245: lv_action := jai_constants.inserting ;
246: ELSIF UPDATING THEN
247: lv_action := jai_constants.updating ;
248: ELSIF DELETING THEN
249: lv_action := jai_constants.deleting ;
250: END IF ;
251:
252: IF INSERTING THEN
253: /*bug 9122545 - remove the changes done for 6012654. Validations

Line 266: IF lv_return_code <> jai_constants.successful then

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