<ROOT>
 <APPS_INITIALIZE_DATA>
  <USER_NAME>ENGINATICS</USER_NAME>
  <RESPONSIBILITY_KEY>SYSTEM_ADMINISTRATOR</RESPONSIBILITY_KEY>
  <APPLICATION_SHORT_NAME>SYSADMIN</APPLICATION_SHORT_NAME>
 </APPS_INITIALIZE_DATA>
<LOVS>
<!-- loader xml for Enginatics Blitz Report lov: HR Operating Unit -->
 <LOVS_ROW>
  <GUID>8E2FF36EDEB979D2E0530100007F1FF2</GUID>
  <LOV_NAME>HR Operating Unit</LOV_NAME>
  <VALIDATE_FROM_LIST>Y</VALIDATE_FROM_LIST>
  <LOV_QUERY>select
hou.name value,
null description
from
hr_operating_units hou
where
sysdate between hou.date_from and nvl(hou.date_to,sysdate) and
(:$flex$.ledger is null or hou.set_of_books_id in (select gl.ledger_id from gl_ledgers gl where xxen_util.contains(:$flex$.ledger,gl.name)=&apos;Y&apos;)) and
hou.organization_id in (select mgoat.organization_id from mo_glob_org_access_tmp mgoat union select fnd_global.org_id from dual where fnd_release.major_version=11)
order by
hou.name</LOV_QUERY>
  <VERSION_COMMENTS>Fixed where clause duplication</VERSION_COMMENTS>
  <LOV_TRANSLATIONS>
   <LOV_TRANSLATIONS_ROW>
    <LANGUAGE>AR</LANGUAGE>
    <DESCRIPTION>وحدة التشغيل مقيدة بالتحكم في الوصول متعدد المنظمات (MOAC)</DESCRIPTION>
   </LOV_TRANSLATIONS_ROW>
   <LOV_TRANSLATIONS_ROW>
    <LANGUAGE>D</LANGUAGE>
    <DESCRIPTION>Bedieneinheit eingeschränkt durch Multi Org Access Control (MOAC)</DESCRIPTION>
   </LOV_TRANSLATIONS_ROW>
   <LOV_TRANSLATIONS_ROW>
    <LANGUAGE>E</LANGUAGE>
    <DESCRIPTION>Unidad operativa restringida por el control de acceso multiorgánico (MOAC)</DESCRIPTION>
   </LOV_TRANSLATIONS_ROW>
   <LOV_TRANSLATIONS_ROW>
    <LANGUAGE>F</LANGUAGE>
    <DESCRIPTION>Unité opérationnelle restreinte par un contrôle d&apos;accès multi-organismes (MOAC)</DESCRIPTION>
   </LOV_TRANSLATIONS_ROW>
   <LOV_TRANSLATIONS_ROW>
    <LANGUAGE>I</LANGUAGE>
    <DESCRIPTION>Unità operativa limitata dal controllo di accesso multiorgano (MOAC)</DESCRIPTION>
   </LOV_TRANSLATIONS_ROW>
   <LOV_TRANSLATIONS_ROW>
    <LANGUAGE>JA</LANGUAGE>
    <DESCRIPTION>多機関アクセス制御(MOAC)で制限された操作ユニット</DESCRIPTION>
   </LOV_TRANSLATIONS_ROW>
   <LOV_TRANSLATIONS_ROW>
    <LANGUAGE>KO</LANGUAGE>
    <DESCRIPTION>다중 조직 액세스 제어 (MOAC)에 의해 제한되는 운영 단위</DESCRIPTION>
   </LOV_TRANSLATIONS_ROW>
   <LOV_TRANSLATIONS_ROW>
    <LANGUAGE>PTB</LANGUAGE>
    <DESCRIPTION>Unidade operacional restrita por controle de acesso multi org (MOAC)</DESCRIPTION>
   </LOV_TRANSLATIONS_ROW>
   <LOV_TRANSLATIONS_ROW>
    <LANGUAGE>RU</LANGUAGE>
    <DESCRIPTION>Операционное устройство, ограниченное мультиорганизованным контролем доступа (MOAC)</DESCRIPTION>
   </LOV_TRANSLATIONS_ROW>
   <LOV_TRANSLATIONS_ROW>
    <LANGUAGE>S</LANGUAGE>
    <DESCRIPTION>Styrenhet begränsad av multi-org access control (MOAC)</DESCRIPTION>
   </LOV_TRANSLATIONS_ROW>
   <LOV_TRANSLATIONS_ROW>
    <LANGUAGE>TR</LANGUAGE>
    <DESCRIPTION>Çoklu kuruluş erişim kontrolü (MOAC) tarafından kısıtlanan işletim birimi</DESCRIPTION>
   </LOV_TRANSLATIONS_ROW>
   <LOV_TRANSLATIONS_ROW>
    <LANGUAGE>US</LANGUAGE>
    <DESCRIPTION>Operating unit restricted by multi org access control (MOAC)</DESCRIPTION>
   </LOV_TRANSLATIONS_ROW>
   <LOV_TRANSLATIONS_ROW>
    <LANGUAGE>ZHS</LANGUAGE>
    <DESCRIPTION>受多机构访问控制（MOAC）限制的操作单元。</DESCRIPTION>
   </LOV_TRANSLATIONS_ROW>
  </LOV_TRANSLATIONS>
 </LOVS_ROW>
</LOVS>
<REPORTS>
<!-- loader xml for Enginatics Blitz Report: ECC Project Manufacturing Genealogy & Trace, Work Order Components -->
 <REPORTS_ROW>
  <GUID>EEE75CEB4AD76AD8E05362FB09051F8B</GUID><ENABLED>Y</ENABLED>
  <SQL_TEXT>select
x.*
from
(
SELECT * FROM (
          WITH pjm_projects AS (
            SELECT DISTINCT project_id FROM pjm_project_parameters
          )
          SELECT /*+ merge(pjm_projects) cardinality(pjm_projects 1) index(mmt MTL_MATERIAL_TRANSACTIONS_N2)
                       leading(pjm_projects pp wdj we hou mp pt wo bso wro bd mmt mut msn)
                       use_nl(pjm_projects pp wdj we hou mp pt wo bso wro bd mmt mut msn) */
            &apos;PJM_GNT_WOCOMP&apos; || &apos;-&apos; || pp.project_id
                               || &apos;-&apos; || NVL(TO_CHAR(pt.task_id), &apos;NO_TASK&apos;)
                               || &apos;-&apos; || we.wip_entity_id
                               || &apos;-&apos; || wdj.organization_id
                               || &apos;-&apos; || wo.operation_seq_num
                               || &apos;-&apos; || wro.inventory_item_id
                               || &apos;-&apos; || NVL(TO_CHAR(mmt.transaction_id), &apos;NO_TXN&apos;)
                               || &apos;-&apos; || NVL(TO_CHAR(msn.gen_object_id), &apos;NO_SERIAL&apos;)     AS ecc_spec_id,
            pp.org_id,
            pp.project_id,
            pt.task_id,
            wdj.wip_entity_id                                                                 AS job_id,
            we.wip_entity_name                                                                AS job_name,
            wdj.organization_id                                                               AS inv_org_id,
            mp.organization_code                                                              AS inv_org_code,
            hou.name                                                                          AS inv_org,
            wo.operation_seq_num,
            bso.operation_code,
            NVL2(bso.operation_code,
                 wo.operation_seq_num || &apos; - &apos; || bso.operation_code, wo.operation_seq_num) AS operation,
            bd.department_code,
            wro.inventory_item_id                                                             AS item_id,
            msi.concatenated_segments                                                         AS item_number,
            msit.description                                                                  AS item_description,
            msi.primary_uom_code,
            msi.serial_number_control_code,
            flv.meaning                                                                       AS supply_type,
            wro.supply_subinventory                                                           AS supply_subinventory,
            DECODE(mp.project_reference_enabled, 1,
                   NVL2(mil.inventory_location_id,
                        mil.segment1 || &apos;.&apos; || mil.segment2 || &apos;.&apos; || mil.segment3 || &apos;.&apos; || pp_loc.segment1 || &apos;.&apos; || pt_loc.task_number,
                        NULL),
                   mil.concatenated_segments)                                                 AS supply_locator,
            wro.quantity_per_assembly,
            wro.required_quantity                                                             AS quantity_required,
            wro.quantity_issued                                                               AS quantity_issued,
            wro.required_quantity - wro.quantity_issued                                       AS quantity_open,
            wro.comments,
            msn.serial_number,
            mmt.locator_id                                                                    AS txn_locator_id,
            CASE
              WHEN wro.quantity_issued &lt; wro.required_quantity THEN
                &apos;FALSE&apos;
              ELSE
                &apos;TRUE&apos;
            END                                                                               AS quantity_flag,
            hou.language
          FROM pa_projects_all pp,
               pa_tasks pt,
               pa_projects_all pp_loc,
               pa_tasks pt_loc,
               wip_entities we,
               wip_discrete_jobs wdj,
               wip_operations wo,
               wip_requirement_operations wro,
               bom_standard_operations bso,
               bom_departments bd,
               mtl_system_items_kfv msi,
               mtl_system_items_tl msit,
               mtl_item_locations_kfv mil,
               mtl_material_transactions mmt,
               mtl_unit_transactions mut,
               mtl_serial_numbers msn,
               mtl_parameters mp,
               hr_all_organization_units_tl hou,
               fnd_lookup_values flv,
               pjm_projects
          WHERE pp.start_date &gt;= NVL(TO_DATE(&apos;2021/12/12&apos;, &apos;YYYY/MM/DD&apos;), pp.start_date)
            AND pp.project_type &lt;&gt; &apos;AWARD_PROJECT&apos;
            AND pp.template_flag = &apos;N&apos;
            AND pp.project_id = pjm_projects.project_id
            AND pp.project_id = wdj.project_id
            AND pt.project_id (+) = wdj.project_id
            AND pt.task_id (+) = wdj.task_id
            AND we.organization_id = wdj.organization_id
            AND we.wip_entity_id = wdj.wip_entity_id
            AND wo.organization_id = wdj.organization_id
            AND wo.wip_entity_id = wdj.wip_entity_id
            AND wro.organization_id = wo.organization_id
            AND wro.wip_entity_id = wo.wip_entity_id
            AND wro.operation_seq_num = wo.operation_seq_num
            AND bso.organization_id (+) = wo.organization_id
            AND bso.standard_operation_id (+) = wo.standard_operation_id
            AND bd.department_id (+) = wro.department_id
            AND msi.organization_id = wro.organization_id
            AND msi.inventory_item_id = wro.inventory_item_id
            AND msit.organization_id = msi.organization_id
            AND msit.inventory_item_id = msi.inventory_item_id
            AND mil.organization_id (+) = wro.organization_id
            AND mil.inventory_location_id (+) = wro.supply_locator_id
            AND pp_loc.project_id (+) = mil.project_id
            AND pt_loc.project_id (+) = mil.project_id
            AND pt_loc.task_id (+) = mil.task_id
            AND mmt.organization_id (+) = wro.organization_id
            AND mmt.inventory_item_id (+) = wro.inventory_item_id
            AND mmt.transaction_source_id (+) = wro.wip_entity_id
            AND mmt.operation_seq_num (+) = wro.operation_seq_num
            AND mmt.transaction_source_type_id (+) = 5
            AND mmt.transaction_action_id (+) = 1
            AND mut.transaction_id (+) = mmt.transaction_id
            AND msn.inventory_item_id (+) = mut.inventory_item_id
            AND msn.serial_number (+) = mut.serial_number
            AND mp.organization_id = wdj.organization_id
            AND hou.organization_id = wdj.organization_id
            AND flv.view_application_id = 700
            AND flv.lookup_type = &apos;WIP_SUPPLY&apos;
            AND flv.lookup_code = wro.wip_supply_type
            AND msit.language = hou.language
            AND flv.language = hou.language
            AND hou.language IN (&apos;US&apos;)) PIVOT (
          MAX(inv_org) AS inv_org,
          MAX(item_description) AS item_description,
          MAX(supply_type) AS supply_type FOR language IN (&apos;US&apos; &quot;US&quot;))
) x
where
2=2</SQL_TEXT>
  <REPORT_TRANSLATIONS>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>US</LANGUAGE>
    <REPORT_NAME>ECC Project Manufacturing Genealogy &amp; Trace, Work Order Components</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Description: Project Manufacturing Genealogy &amp; Trace Work Order Components
Dataset Key: pjm-gnt-wocomponents
Query Procedure: PJM_ECC_GNT_PVT.GET_ECC_DATA_LOAD_INFO
Security Procedure: PJM_ECC_DATASECURITY_PKG_PUB.GetFilterAttributeValues</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
  </REPORT_TRANSLATIONS>
  <CATEGORY_ASSIGNMENTS>
   <CATEGORY_ASSIGNMENTS_ROW>
    <CATEGORY>Enterprise Command Center</CATEGORY>
   </CATEGORY_ASSIGNMENTS_ROW>
  </CATEGORY_ASSIGNMENTS>
  <ANCHORS>
  </ANCHORS>
  <PARAMETERS>
   <PARAMETERS_ROW>
    <SORT_ORDER>1</SORT_ORDER>
    <DISPLAY_SEQUENCE>10</DISPLAY_SEQUENCE>
    <ANCHOR>2=2</ANCHOR>
    <SQL_TEXT>x.org_id in (select haouv.organization_id from hr_all_organization_units_vl haouv where haouv.name=:operating_unit)</SQL_TEXT>
    <PARAMETER_TYPE_DSP>LOV</PARAMETER_TYPE_DSP>
    <LOV_NAME>HR Operating Unit</LOV_NAME>
    <LOV_GUID>8E2FF36EDEB979D2E0530100007F1FF2</LOV_GUID>
    <VALIDATE_FROM_LIST_DSP>Y</VALIDATE_FROM_LIST_DSP>
    <LOV_QUERY_DSP>select
hou.name value,
null description
from
hr_operating_units hou
where
sysdate between hou.date_from and nvl(hou.date_to,sysdate) and
(:$flex$.ledger is null or hou.set_of_books_id in (select gl.ledger_id from gl_ledgers gl where xxen_util.contains(:$flex$.ledger,gl.name)=&apos;Y&apos;)) and
hou.organization_id in (select mgoat.organization_id from mo_glob_org_access_tmp mgoat union select fnd_global.org_id from dual where fnd_release.major_version=11)
order by
hou.name</LOV_QUERY_DSP>
    <DEFAULT_VALUE>select haouv.name from hr_all_organization_units_vl haouv where haouv.organization_id=nvl((select mgoat.organization_id from mo_glob_org_access_tmp mgoat where mgoat.organization_id=nvl(fnd_profile.value(&apos;DEFAULT_ORG_ID&apos;),mgoat.organization_id) and rownum=1),fnd_global.org_id)</DEFAULT_VALUE>
    <PARAMETER_TRANSLATIONS>
     <PARAMETER_TRANSLATIONS_ROW>
      <LANGUAGE>US</LANGUAGE>
      <PARAMETER_NAME>Operating Unit</PARAMETER_NAME>
     </PARAMETER_TRANSLATIONS_ROW>
    </PARAMETER_TRANSLATIONS>
   </PARAMETERS_ROW>
  </PARAMETERS>
  <TEMPLATES>
  </TEMPLATES>
  <DEFAULT_TEMPLATES>
  </DEFAULT_TEMPLATES>
  <UPLOAD_COLUMNS>
  </UPLOAD_COLUMNS>
  <UPLOAD_PARAMETERS>
  </UPLOAD_PARAMETERS>
  <UPLOAD_SQLS>
  </UPLOAD_SQLS>
 </REPORTS_ROW>
</REPORTS>
</ROOT>
