DBA Data[Home] [Help]

APPS.EAM_METERREADING_VALIDATE_PVT dependencies on EAM_METERS_UTIL

Line 167: all meters associated with asset number. Then Eam_Meters_Util.is_meter_reading_mandatory

163: END IF;
164:
165: /*
166: Before processing the meter readings we will query eam_asset_meters table to get list of
167: all meters associated with asset number. Then Eam_Meters_Util.is_meter_reading_mandatory
168: (wip_entity_id, meter_id) is called to identify the list of meters, which are mandatory for
169: work order completion. Then the input table of meters will be scanned to check if mandatory
170: meter readings are entered. If some reading is not entered then throw error
171: */

Line 196: is_meter_mandatory := Eam_Meters_Util.is_meter_reading_mandatory(

192: FOR I IN counter_id_tbl.FIRST..counter_id_tbl.LAST LOOP
193: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN
194: EAM_ERROR_MESSAGE_PVT.Write_Debug('Id of Meters' || I || 'associated: ' || counter_id_tbl(I));
195: END IF;
196: is_meter_mandatory := Eam_Meters_Util.is_meter_reading_mandatory(
197: p_wip_entity_id => p_wip_entity_id ,
198: p_meter_id => counter_id_tbl(I)
199: );
200: