DBA Data[Home] [Help]

APPS.EAM_PM_UTILS SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 13

   * this is a private procedure to be called to update all the pms
   * under the root of the given pm.
   */
  procedure update_all_pm_uncomplete(p_wip_entity_id in number, p_activity_association_id in number);
Line: 21

   * This function returns false if no pm related data should be updated. It returns true
   * otherwise. When it returns true, it populates the return parameters with the right
   * information.
   */
  function check_applicable_pm(p_org_id        in number,
                               p_wip_entity_id in number,
                               p_pm_schedule_id out NOCOPY number,
                               p_resched_point out NOCOPY number) return boolean;
Line: 33

   * This procedure should be called when completing the work order. It will update
   * the related PM rule data if applicable.
   **** This procedure is now obsolete and is no longer called,
   **** thus the body is null.
   */
  procedure update_pm_when_complete(p_org_id        in number,
                                    p_wip_entity_id in number,
                                    p_completion_date in date) is
    x_pm_id number := null;
Line: 47

  end update_pm_when_complete;
Line: 50

   * This procedure should be called when uncompleting the work order. It will update
   * the related PM rule data if applicable.
   */

  procedure update_pm_when_uncomplete(p_org_id        in number,
                                    p_wip_entity_id in number)
  is
	l_is_last_wo boolean;
Line: 65

		select ccr.counter_value_id meter_reading_id
		  from csi_counter_readings ccr,  csi_transactions cct,
		       csi_counter_associations cca, wip_discrete_jobs wdj
		 where ccr.transaction_id = cct.transaction_id
		   and cct.transaction_type_id = 92
		   and cct.source_header_ref_id = wdj.wip_entity_id
		   and wdj.wip_entity_id = p_wip_entity_id
		   and wdj.maintenance_object_type = 3
		   and wdj.maintenance_object_id = cca.source_object_id
		   and cca.source_object_code = 'CP'
		   and cca.counter_id = ccr.counter_id;
Line: 107

        	update eam_pm_last_service
	        set
				last_service_reading=prev_service_reading,
				wip_entity_id=null,
				last_update_date=sysdate,
				last_updated_by=fnd_global.user_id
	        where
				wip_entity_id=p_wip_entity_id
				and prev_service_reading is not null;
Line: 120

	select meaa.activity_association_id into l_activity_association_id
 	from wip_discrete_jobs wdj, mtl_eam_asset_activities meaa
 	where
        wdj.wip_entity_id=p_wip_entity_id and
        wdj.maintenance_object_id=meaa.maintenance_object_id and
        wdj.maintenance_object_type=meaa.maintenance_object_type and
        wdj.primary_item_id=meaa.asset_activity_id;
Line: 131

	update_all_pm_uncomplete(p_wip_entity_id, l_activity_association_id);
Line: 153

	select max(ejct.actual_end_date)
	into l_last_actual_end_date
	from
	eam_job_completion_txns ejct
	where
	transaction_type=1
	and transaction_id in
	(select max(ejct.transaction_id) from
	eam_job_completion_txns ejct,
	wip_discrete_jobs wdj1,
	wip_discrete_jobs wdj2
	where wdj1.wip_entity_id=p_wip_entity_id
	and wdj1.maintenance_object_type = wdj2.maintenance_object_type
	and wdj1.maintenance_object_id = wdj2.maintenance_object_id
        and nvl(wdj1.primary_item_id, -99) = nvl(wdj2.primary_item_id, -99)
        and wdj1.organization_id = wdj2.organization_id
	and ejct.wip_entity_id = wdj2.wip_entity_id
	group by ejct.wip_entity_id);
Line: 179

	select wip_entity_id, transaction_type
	into l_last_wip_entity_id, l_transaction_type
	from eam_job_completion_txns
	where actual_end_date=l_last_actual_end_date
	and transaction_id=
	(select max(transaction_id)
 	from eam_job_completion_txns
 	where wip_entity_id=p_wip_entity_id
	and transaction_type = 1);
Line: 202

  procedure update_all_pm_uncomplete(p_wip_entity_id in number, p_activity_association_id in number) is
  cursor C is
      select sup.child_association_id
        from eam_suppression_relations sup
       where
         sup.parent_association_id = p_activity_association_id;
Line: 221

     select prev_service_start_date, prev_service_end_date,
            prev_scheduled_start_date, prev_scheduled_end_date,
            prev_pm_suggested_start_date, prev_pm_suggested_end_date
	into l_prev_service_start_date, l_prev_service_end_date,
	     l_prev_scheduled_start_date, l_prev_scheduled_end_date,
	     l_prev_pm_suggested_start_date,l_prev_pm_suggested_end_date
	from mtl_eam_asset_activities
	where activity_association_id=p_activity_association_id;
Line: 232

     update mtl_eam_asset_activities
        set last_service_start_date = l_prev_service_start_date,
            last_service_end_date = l_prev_service_end_date,
	    last_scheduled_start_date = l_prev_scheduled_start_date,
	    last_scheduled_end_date = l_prev_scheduled_end_date,
            last_pm_suggested_start_date = l_prev_pm_suggested_start_date,
	    last_pm_suggested_end_date = l_prev_pm_suggested_end_date
      where activity_association_id=p_activity_association_id;
Line: 241

     update mtl_eam_asset_activities
	set prev_service_start_date = null,
	    prev_service_end_date = null,
	    prev_scheduled_start_date = null,
	    prev_scheduled_end_date = null,
	    prev_pm_suggested_start_date = null,
	    prev_pm_suggested_end_date = null,
	    wip_entity_id = p_wip_entity_id
      where activity_association_id=p_activity_association_id;
Line: 257

       update_all_pm_uncomplete(p_wip_entity_id, x_child_aa);
Line: 261

  end update_all_pm_uncomplete;
Line: 265

   * This function returns false if no pm related data should be updated. It returns true
   * otherwise. When it returns true, it populates the return parameters with the right
   * information.
   */
  function check_applicable_pm(p_org_id        in number,
                               p_wip_entity_id in number,
                               p_pm_schedule_id out NOCOPY number,
                               p_resched_point out NOCOPY number) return boolean
  is
    cursor C(p_asset_group_id number,
             p_asset_number varchar2,
             p_asset_activity_id number) is
      select pms.pm_schedule_id
        from eam_pm_schedulings pms,
             mtl_eam_asset_activities eaa
       where pms.activity_association_id = eaa.activity_association_id
         and eaa.organization_id = p_org_id
         and eaa.inventory_item_id = p_asset_group_id
         and eaa.serial_number = p_asset_number
         and eaa.asset_activity_id = p_asset_activity_id
         and nvl(eaa.start_date_active, sysdate-1) < sysdate
         and nvl(eaa.end_date_active, sysdate+1) > sysdate
         and nvl(pms.from_effective_date, sysdate-1) < sysdate
         and nvl(pms.to_effective_date, sysdate+1) > sysdate;
Line: 298

    select pm_schedule_id,
           asset_group_id,
           asset_number,
           primary_item_id,
           rebuild_item_id
      into x_pm_id,
           x_asset_group_id,
           x_asset_number,
           x_asset_activity_id,
           x_rebuild_id
      from wip_discrete_jobs
     where wip_entity_id = p_wip_entity_id;
Line: 329

    select rescheduling_point into x_resched_point
      from eam_pm_schedulings
     where pm_schedule_id = x_pm_id;
Line: 352

      select distinct pm_schedule_id, activity_association_id
        from eam_forecasted_work_orders
       where group_id = p_group_id
         and process_flag = 'Y';
Line: 375

    delete from eam_forecasted_work_orders
    where group_id = p_group_id
    and process_flag = 'Y';
Line: 385

      select scheduled_start_date,
             scheduled_completion_date,
             wip_entity_id,
             action_type,
             created_by,
             creation_date,
             last_update_login,
             last_update_date,
             last_updated_by,
             attribute_category,
             attribute1,
             attribute2,
             attribute3,
             attribute4,
             attribute5,
             attribute6,
             attribute7,
             attribute8,
             attribute9,
             attribute10,
             attribute11,
             attribute12,
             attribute13,
             attribute14,
             attribute15
        from eam_forecasted_work_orders
       where pm_schedule_id = p_pm_id
         and group_id = p_group_id
         and process_flag = 'Y';
Line: 434

    select organization_id,
           inventory_item_id,
           serial_number,
           asset_activity_id,
           owning_department_id,
           activity_cause_code,
           activity_type_code,
           activity_source_code,
           tagging_required_flag,
           shutdown_type_code,
           priority_code
      into l_org_id,
           l_inventory_item_id,
           l_serial_number,
           l_asset_activity_id,
           l_owning_department,
           l_activity_cause,
           l_activity_type,
           l_activity_source,
           l_tagging_required_flag,
           l_shutdown_type_code,
           l_priority_code
      from mtl_eam_asset_activities
     where activity_association_id = p_assoc_id;
Line: 460

      select wip_accounting_class_code, gen_object_id
       into l_class_code, l_maintenance_object_id
       from mtl_serial_numbers
      where current_organization_id = l_org_id
        and inventory_item_id = l_inventory_item_id
        and serial_number = l_serial_number;
Line: 468

     select eam_item_type
	 into l_eam_item_type
       from mtl_system_items
     where organization_id = l_org_id
	 and inventory_item_id = l_inventory_item_id;
Line: 474

     select description
       into l_description
       /* from mtl_system_items_b Commented for bug#4878157 */
       from mtl_system_items_vl /* Added for bug#4878157 */
      where inventory_item_id = l_asset_activity_id
        and organization_id = l_org_id;
Line: 493

         insert into wip_job_schedule_interface(
           group_id,
           last_update_date,
           last_updated_by,
           creation_date,
           created_by,
           last_update_login,
           organization_id,
           load_type,
           first_unit_start_date,
           last_unit_completion_date,
           asset_group_id,
           description,
           routing_reference_id,
           bom_reference_id,
           asset_number,
           primary_item_id,
           pm_schedule_id,
           process_phase,
           process_status,
           owning_department,
           activity_type,
           activity_cause,
           activity_source,
           tagout_required,
           shutdown_type,
           priority,
           plan_maintenance,
           class_code,
           attribute_category,
           attribute1,
           attribute2,
           attribute3,
           attribute4,
           attribute5,
           attribute6,
           attribute7,
           attribute8,
           attribute9,
           attribute10,
           attribute11,
           attribute12,
           attribute13,
           attribute14,
           attribute15,
           maintenance_object_id,
           maintenance_object_type,
           maintenance_object_source
         )values(
           p_group_id,
           sysdate,
           recinfo.last_updated_by,
           sysdate,
           recinfo.created_by,
           recinfo.last_update_login,
           l_org_id,
           7,
           recinfo.scheduled_start_date,
           recinfo.scheduled_completion_date,
           l_inventory_item_id,
           l_description,
           l_asset_activity_id,
           l_asset_activity_id,
           l_serial_number,
           l_asset_activity_id,
           p_pm_id,
           2,
           1,
           l_owning_department,
           l_activity_type,
           l_activity_cause,
           l_activity_source,
           l_tagging_required_flag,
           l_shutdown_type_code,
           to_number(l_priority_code),
           'Y',
           l_class_code,
           recinfo.attribute_category,
           recinfo.attribute1,
           recinfo.attribute2,
           recinfo.attribute3,
           recinfo.attribute4,
           recinfo.attribute5,
           recinfo.attribute6,
           recinfo.attribute7,
           recinfo.attribute8,
           recinfo.attribute9,
           recinfo.attribute10,
           recinfo.attribute11,
           recinfo.attribute12,
           recinfo.attribute13,
           recinfo.attribute14,
           recinfo.attribute15,
           l_maintenance_object_id,
           1,
           1
         );
Line: 592

         insert into wip_job_schedule_interface(
           group_id,
           last_update_date,
           last_updated_by,
           creation_date,
           created_by,
           last_update_login,
           organization_id,
           load_type,
           first_unit_start_date,
           last_unit_completion_date,
           rebuild_item_id,
           description,
           routing_reference_id,
           bom_reference_id,
           rebuild_serial_number,
           primary_item_id,
           pm_schedule_id,
           process_phase,
           process_status,
           owning_department,
           activity_type,
           activity_cause,
           activity_source,
           tagout_required,
           shutdown_type,
           priority,
           plan_maintenance,
           class_code,
           attribute_category,
           attribute1,
           attribute2,
           attribute3,
           attribute4,
           attribute5,
           attribute6,
           attribute7,
           attribute8,
           attribute9,
           attribute10,
           attribute11,
           attribute12,
           attribute13,
           attribute14,
           attribute15,
           manual_rebuild_flag,
           maintenance_object_id,
           maintenance_object_type,
           maintenance_object_source
         )values(
           p_group_id,
           sysdate,
           recinfo.last_updated_by,
           sysdate,
           recinfo.created_by,
           recinfo.last_update_login,
           l_org_id,
           7,
           recinfo.scheduled_start_date,
           recinfo.scheduled_completion_date,
           l_inventory_item_id,
           l_description,
           l_asset_activity_id,
           l_asset_activity_id,
           l_serial_number,
           l_asset_activity_id,
           p_pm_id,
           2,
           1,
           l_owning_department,
           l_activity_type,
           l_activity_cause,
           l_activity_source,
           l_tagging_required_flag,
           l_shutdown_type_code,
           to_number(l_priority_code),
           'Y',
           l_class_code,
           recinfo.attribute_category,
           recinfo.attribute1,
           recinfo.attribute2,
           recinfo.attribute3,
           recinfo.attribute4,
           recinfo.attribute5,
           recinfo.attribute6,
           recinfo.attribute7,
           recinfo.attribute8,
           recinfo.attribute9,
           recinfo.attribute10,
           recinfo.attribute11,
           recinfo.attribute12,
           recinfo.attribute13,
           recinfo.attribute14,
           recinfo.attribute15,
           'Y',
           nvl(l_maintenance_object_id, l_inventory_item_id),
           decode(l_maintenance_object_id, null, 2, 1),
           1
         );
Line: 695

         insert into wip_job_schedule_interface(
           group_id,
           last_update_date,
           last_updated_by,
           creation_date,
           created_by,
           last_update_login,
           organization_id,
           load_type,
           wip_entity_id,
           first_unit_start_date,
           last_unit_completion_date,
           process_phase,
           process_status,
           maintenance_object_id,
           maintenance_object_type,
           maintenance_object_source
         )values(
           p_group_id,
           sysdate,
           recinfo.last_updated_by,
           sysdate,
           recinfo.created_by,
           recinfo.last_update_login,
           l_org_id,
           8,
           recinfo.wip_entity_id,
           recinfo.scheduled_start_date,
           recinfo.scheduled_completion_date,
           2,
           1,
           nvl(l_maintenance_object_id, l_inventory_item_id),
           decode(l_maintenance_object_id, null, 2, 1),
           1
         );
Line: 732

         insert into wip_job_schedule_interface(
           group_id,
           last_update_date,
           last_updated_by,
           creation_date,
           created_by,
           last_update_login,
           organization_id,
           load_type,
           wip_entity_id,
           status_type,
           process_phase,
           process_status,
           maintenance_object_id,
           maintenance_object_type,
           maintenance_object_source
         )values(
           p_group_id,
           sysdate,
           recinfo.last_updated_by,
           sysdate,
           recinfo.created_by,
           recinfo.last_update_login,
           l_org_id,
           8,
           recinfo.wip_entity_id,
           7,
           2,
           1,
           nvl(l_maintenance_object_id, l_inventory_item_id),
           decode(l_maintenance_object_id, null, 2, 1),
           1
         );