DBA Data[Home] [Help]

APPS.JAI_JAP_TY_ARIUD_T1 dependencies on JAI_CONSTANTS

Line 75: lv_action := jai_constants.inserting ;

71: /*
72: || check for action in trigger and pass the same to the procedure
73: */
74: IF INSERTING THEN
75: lv_action := jai_constants.inserting ;
76: ELSIF UPDATING THEN
77: lv_action := jai_constants.updating ;
78: ELSIF DELETING THEN
79: lv_action := jai_constants.deleting ;

Line 77: lv_action := jai_constants.updating ;

73: */
74: IF INSERTING THEN
75: lv_action := jai_constants.inserting ;
76: ELSIF UPDATING THEN
77: lv_action := jai_constants.updating ;
78: ELSIF DELETING THEN
79: lv_action := jai_constants.deleting ;
80: END IF ;
81:

Line 79: lv_action := jai_constants.deleting ;

75: lv_action := jai_constants.inserting ;
76: ELSIF UPDATING THEN
77: lv_action := jai_constants.updating ;
78: ELSIF DELETING THEN
79: lv_action := jai_constants.deleting ;
80: END IF ;
81:
82: IF INSERTING THEN
83:

Line 92: IF lv_return_code <> jai_constants.successful then

88: pv_return_code => lv_return_code ,
89: pv_return_message => lv_return_message
90: );
91:
92: IF lv_return_code <> jai_constants.successful then
93: RAISE le_error;
94: END IF;
95:
96: END IF ;