DBA Data[Home] [Help]

APPS.JAI_JOM_ST_BRIUD_T1 dependencies on JAI_CONSTANTS

Line 123: lv_action := jai_constants.inserting ;

119: /*
120: || check for action in trigger and pass the same to the procedure
121: */
122: IF INSERTING THEN
123: lv_action := jai_constants.inserting ;
124: ELSIF UPDATING THEN
125: lv_action := jai_constants.updating ;
126: ELSIF DELETING THEN
127: lv_action := jai_constants.deleting ;

Line 125: lv_action := jai_constants.updating ;

121: */
122: IF INSERTING THEN
123: lv_action := jai_constants.inserting ;
124: ELSIF UPDATING THEN
125: lv_action := jai_constants.updating ;
126: ELSIF DELETING THEN
127: lv_action := jai_constants.deleting ;
128: END IF ;
129:

Line 127: lv_action := jai_constants.deleting ;

123: lv_action := jai_constants.inserting ;
124: ELSIF UPDATING THEN
125: lv_action := jai_constants.updating ;
126: ELSIF DELETING THEN
127: lv_action := jai_constants.deleting ;
128: END IF ;
129:
130: IF UPDATING THEN
131:

Line 142: IF lv_return_code <> jai_constants.successful then

138: pv_return_code => lv_return_code ,
139: pv_return_message => lv_return_message
140: );
141:
142: IF lv_return_code <> jai_constants.successful then
143: RAISE le_error;
144: END IF;
145:
146: END IF ;