DBA Data[Home] [Help]

APPS.JAI_OPM_GBH_ARIUD_T1 dependencies on JAI_CONSTANTS

Line 224: lv_action := jai_constants.inserting ;

220: /*
221: || check for action in trigger and pass the same to the procedure
222: */
223: IF INSERTING THEN
224: lv_action := jai_constants.inserting ;
225: ELSIF UPDATING THEN
226: lv_action := jai_constants.updating ;
227: ELSIF DELETING THEN
228: lv_action := jai_constants.deleting ;

Line 226: lv_action := jai_constants.updating ;

222: */
223: IF INSERTING THEN
224: lv_action := jai_constants.inserting ;
225: ELSIF UPDATING THEN
226: lv_action := jai_constants.updating ;
227: ELSIF DELETING THEN
228: lv_action := jai_constants.deleting ;
229: END IF ;
230:

Line 228: lv_action := jai_constants.deleting ;

224: lv_action := jai_constants.inserting ;
225: ELSIF UPDATING THEN
226: lv_action := jai_constants.updating ;
227: ELSIF DELETING THEN
228: lv_action := jai_constants.deleting ;
229: END IF ;
230:
231: IF UPDATING THEN
232:

Line 241: IF lv_return_code <> jai_constants.successful then

237: pv_return_code => lv_return_code ,
238: pv_return_message => lv_return_message
239: );
240:
241: IF lv_return_code <> jai_constants.successful then
242: RAISE le_error;
243: END IF;
244:
245: END IF ;