DBA Data[Home] [Help]

APPS.FARX_C_MCR dependencies on FA_RX_CONC_MESG_PKG

Line 125: fa_rx_conc_mesg_pkg.log(h_mesg_str);

121: /* Validate the arguments passed in. */
122: IF argument1 IS NULL THEN
123: fnd_message.set_name('OFA','FA_MRCL_PARAM_REQUIRED');
124: h_mesg_str := fnd_message.get;
125: fa_rx_conc_mesg_pkg.log(h_mesg_str);
126: raise conc_failure;
127: END IF;
128:
129: -- This argument must exist in the table.

Line 137: fa_rx_conc_mesg_pkg.log(h_mesg_str);

133:
134: IF (h_count = 0) THEN
135: fnd_message.set_name('OFA','FA_MRCL_PARAM_REQUIRED');
136: h_mesg_str := fnd_message.get;
137: fa_rx_conc_mesg_pkg.log(h_mesg_str);
138: raise conc_failure;
139: END IF;
140:
141: /* No data type conversion is necessary. */

Line 164: fa_rx_conc_mesg_pkg.log(SQLERRM);

160: retcode := 2; -- Completed with error.
161: /* A fatal error has occurred, rollback transaction. */
162: ROLLBACK WORK;
163: IF SQLCODE <> 0 THEN
164: fa_rx_conc_mesg_pkg.log(SQLERRM);
165: END IF;
166:
167: END Mass_Change_Review;
168: