DBA Data[Home] [Help]

APPS.FARX_C_RR dependencies on FA_RX_CONC_MESG_PKG

Line 123: fa_rx_conc_mesg_pkg.log(h_mesg_str);

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

Line 135: fa_rx_conc_mesg_pkg.log(h_mesg_str);

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

Line 162: fa_rx_conc_mesg_pkg.log(SQLERRM);

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