DBA Data[Home] [Help]

APPS.EAM_METR_PROCESSOR dependencies on EAM_INT_UTILS

Line 158: if ( eam_int_utils.has_errors ) then

154: eam_metr_validator.validate(x_rowid, x_interface_id);
155:
156: -- check to see whether the current record errors out or not
157: -- due the validation
158: if ( eam_int_utils.has_errors ) then
159: -- rollback the default, etc.
160: rollback to savepoint eam_meter_reading_start;
161: -- set the error status for the current record
162: update eam_meter_readings_interface

Line 185: fnd_message.set_name('EAM', 'EAM_METINT_DISABLE_ERROR'); eam_int_utils.record_error(x_interface_id,

181: p_meter_reading_date=> l_reading_date);
182:
183:
184: if (l_return_status <> 'S') then
185: fnd_message.set_name('EAM', 'EAM_METINT_DISABLE_ERROR'); eam_int_utils.record_error(x_interface_id,
186: fnd_message.get,
187: FALSE);
188: update eam_meter_readings_interface
189: set process_phase = WIP_CONSTANTS.ML_VALIDATION,

Line 208: eam_int_utils.load_errors('eam_meter_readings_interface');

204: where rowid = x_rowid;
205: end if;
206: end if;
207:
208: eam_int_utils.load_errors('eam_meter_readings_interface');
209: END LOOP;
210: close meter;
211:
212: end process_one_meter_data;