DBA Data[Home] [Help]

APPS.JAI_JRG_OTH_BRIUD_T1 dependencies on JAI_CONSTANTS

Line 102: lv_action := jai_constants.inserting ;

98: /*
99: || check for action in trigger and pass the same to the procedure
100: */
101: IF INSERTING THEN
102: lv_action := jai_constants.inserting ;
103: ELSIF UPDATING THEN
104: lv_action := jai_constants.updating ;
105: ELSIF DELETING THEN
106: lv_action := jai_constants.deleting ;

Line 104: lv_action := jai_constants.updating ;

100: */
101: IF INSERTING THEN
102: lv_action := jai_constants.inserting ;
103: ELSIF UPDATING THEN
104: lv_action := jai_constants.updating ;
105: ELSIF DELETING THEN
106: lv_action := jai_constants.deleting ;
107: END IF ;
108:

Line 106: lv_action := jai_constants.deleting ;

102: lv_action := jai_constants.inserting ;
103: ELSIF UPDATING THEN
104: lv_action := jai_constants.updating ;
105: ELSIF DELETING THEN
106: lv_action := jai_constants.deleting ;
107: END IF ;
108:
109: IF INSERTING THEN
110:

Line 119: IF lv_return_code <> jai_constants.successful then

115: pv_return_code => lv_return_code ,
116: pv_return_message => lv_return_message
117: );
118:
119: IF lv_return_code <> jai_constants.successful then
120: RAISE le_error;
121: END IF;
122:
123: END IF ;