DBA Data[Home] [Help]

APPS.JAI_PO_V_ARIUD_T1 dependencies on JAI_CONSTANTS

Line 395: lv_action := jai_constants.inserting ;

391: /*
392: || check for action in trigger and pass the same to the procedure
393: */
394: IF INSERTING THEN
395: lv_action := jai_constants.inserting ;
396: ELSIF UPDATING THEN
397: lv_action := jai_constants.updating ;
398: ELSIF DELETING THEN
399: lv_action := jai_constants.deleting ;

Line 397: lv_action := jai_constants.updating ;

393: */
394: IF INSERTING THEN
395: lv_action := jai_constants.inserting ;
396: ELSIF UPDATING THEN
397: lv_action := jai_constants.updating ;
398: ELSIF DELETING THEN
399: lv_action := jai_constants.deleting ;
400: END IF ;
401:

Line 399: lv_action := jai_constants.deleting ;

395: lv_action := jai_constants.inserting ;
396: ELSIF UPDATING THEN
397: lv_action := jai_constants.updating ;
398: ELSIF DELETING THEN
399: lv_action := jai_constants.deleting ;
400: END IF ;
401:
402: IF UPDATING THEN
403:

Line 414: IF lv_return_code <> jai_constants.successful then

410: pv_return_code => lv_return_code ,
411: pv_return_message => lv_return_message
412: );
413:
414: IF lv_return_code <> jai_constants.successful then
415: RAISE le_error;
416: END IF;
417:
418: END IF ;