DBA Data[Home] [Help]

APPS.JAI_AP_ILA_ARIUD_T1 dependencies on JAI_CONSTANTS

Line 458: lv_action := jai_constants.inserting ;

454: /*
455: || check for action in trigger and pass the same to the procedure
456: */
457: IF INSERTING THEN
458: lv_action := jai_constants.inserting ;
459: ELSIF UPDATING THEN
460: lv_action := jai_constants.updating ;
461: ELSIF DELETING THEN
462: lv_action := jai_constants.deleting ;

Line 460: lv_action := jai_constants.updating ;

456: */
457: IF INSERTING THEN
458: lv_action := jai_constants.inserting ;
459: ELSIF UPDATING THEN
460: lv_action := jai_constants.updating ;
461: ELSIF DELETING THEN
462: lv_action := jai_constants.deleting ;
463: END IF ;
464:

Line 462: lv_action := jai_constants.deleting ;

458: lv_action := jai_constants.inserting ;
459: ELSIF UPDATING THEN
460: lv_action := jai_constants.updating ;
461: ELSIF DELETING THEN
462: lv_action := jai_constants.deleting ;
463: END IF ;
464:
465: IF INSERTING THEN
466: -- Modified by Jason Liu for retroactive price on 2008/01/07

Line 478: IF lv_return_code <> jai_constants.successful then

474: pv_return_code => lv_return_code ,
475: pv_return_message => lv_return_message
476: );
477:
478: IF lv_return_code <> jai_constants.successful then
479: RAISE le_error;
480: END IF;
481:
482: END IF ;

Line 517: IF (lv_return_code <> jai_constants.successful)

513: , pv_action => lv_action
514: , pv_return_code => lv_return_code
515: , pv_return_message => lv_return_message
516: );
517: IF (lv_return_code <> jai_constants.successful)
518: THEN
519: RAISE le_error;
520: END IF;
521: END IF;

Line 540: IF (lv_return_code <> jai_constants.successful)

536: , pv_action => lv_action
537: , pv_return_code => lv_return_code
538: , pv_return_message => lv_return_message
539: );
540: IF (lv_return_code <> jai_constants.successful)
541: THEN
542: RAISE le_error;
543: END IF; -- (lv_return_code <> jai_constants.successful)
544: END IF; -- (:NEW.line_type_lookup_code IN ('ITEM' , 'ACCRUAL' , 'RETROITEM')

Line 543: END IF; -- (lv_return_code <> jai_constants.successful)

539: );
540: IF (lv_return_code <> jai_constants.successful)
541: THEN
542: RAISE le_error;
543: END IF; -- (lv_return_code <> jai_constants.successful)
544: END IF; -- (:NEW.line_type_lookup_code IN ('ITEM' , 'ACCRUAL' , 'RETROITEM')
545: ----------------------------------------------------------------------
546: END IF; -- (INSERTING)
547: ----------------------------------------------------------------------------