<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 Procurement, Procurement Cycle Time Graph -->
 <REPORTS_ROW>
  <GUID>EEE75CEB4AF26AD8E05362FB09051F8B</GUID><ENABLED>Y</ENABLED>
  <SQL_TEXT>select
x.*
from
(
select * from (
SELECT
ecc_spec_id||&apos;-&apos;||duration_type as ecc_spec_id,
grh_po_header_id,
grh_po_num,
grh_buyer_name,
language,
DOC_AUTHORIZED_USER_IDS,
SECURITY_LEVEL_CODE,
ORG_ID,
duration_type,
to_number(duration) duration

FROM (


select poh.po_header_id                       AS ecc_spec_id,
poh.po_header_id                                                    AS grh_po_header_id,
poh.segment1    grh_po_num,
(SELECT emp.full_name
 FROM   per_all_people_f emp
 WHERE  emp.person_id = poh.agent_id
 AND emp.effective_start_date =(SELECT Max(c.effective_start_date)
                                     FROM   per_all_people_f c
                                     WHERE  emp.person_id = c.person_id)
 AND rownum &lt; 2 )  AS grh_buyer_name,
houtl.language                                                      AS language,
CASE WHEN pdt.SECURITY_LEVEL_CODE=&apos;PUBLIC&apos; OR pdt.SECURITY_LEVEL_CODE=&apos;PURCHASING&apos; THEN
          NULL
     ELSE
          po_pcc_agreements_util_pvt.get_doc_authorized_userIds(&apos;POPA&apos;, poh.TYPE_LOOKUP_CODE, poh.AUTHORIZATION_STATUS,
          poh.org_id,poh.AGENT_ID, poh.PO_HEADER_ID) END as DOC_AUTHORIZED_USER_IDS,
pdt.SECURITY_LEVEL_CODE,
poh.org_id ORG_ID,
(SELECT
 to_number( Avg(to_date(pll.creation_date)-to_date(nvl(prh.approved_date,pll.creation_date))))
 FROM po_requisition_headers_all prh,
      po_requisition_lines_all prl,
      po_line_locations_all pll
 WHERE pll.po_header_id = poh.po_header_id
 AND   prl.line_location_id = pll.line_location_id
 AND   prl.requisition_header_id = prh.requisition_header_id)
           AS time_in_pool,
(SELECT to_number(Avg(to_date(poh.creation_date)- to_date(neg.creation_date)))
 FROM
 pon_auction_headers_all neg,
 po_lines_all pol
 WHERE
 pol.po_header_id = poh.po_header_id
 AND pol.auction_header_id = neg.auction_header_id)
       AS time_in_sourcing,
case when po_dates.po_submit_date is not null and  poh.creation_date is not null then
to_number(to_date(po_dates.po_submit_date)-to_date(poh.creation_date))
else to_number(null) end AS time_in_ord_drafting,
case when po_dates.po_app_date is not null and po_dates.po_submit_date is not null then
to_number(to_date(po_dates.po_app_date)-to_date(po_dates.po_submit_date))
else to_number(null) end AS time_in_ord_approval,
po_pcc_orders_util_pvt.get_fnd_message(&apos;PO_PCC_ORD_TIME_IN_POOL&apos;,&apos;201&apos;,houtl.language) AS time_in_pool_msg,
po_pcc_orders_util_pvt.get_fnd_message(&apos;PO_PCC_ORD_TIME_IN_NEG&apos;,&apos;201&apos;,houtl.language) AS time_in_sourcing_msg,
po_pcc_orders_util_pvt.get_fnd_message(&apos;PO_PCC_ORD_TIME_IN_ORD_DRAFT&apos;,&apos;201&apos;,houtl.language) AS time_in_ord_drafting_msg,
po_pcc_orders_util_pvt.get_fnd_message(&apos;PO_PCC_ORD_TIME_IN_ORD_APP&apos;,&apos;201&apos;,houtl.language) AS time_in_ord_approval_msg
FROM po_headers_all poh,po_doc_style_headers doc_style, PO_DOCUMENT_TYPES_ALL pdt,
hr_all_organization_units_tl houtl,
(
select
po_dates.po_header_id,
(SELECT max(action_date)
FROM po_action_history
WHERE OBJECT_TYPE_CODE =&apos;PO&apos;
AND OBJECT_SUB_TYPE_CODE = &apos;STANDARD&apos;
AND OBJECT_REVISION_NUM = 0
AND ACTION_CODE = &apos;SUBMIT&apos;
AND object_id = po_dates.po_header_id) po_submit_date,
(SELECT max(action_date)
FROM po_action_history
WHERE OBJECT_TYPE_CODE =&apos;PO&apos;
AND OBJECT_SUB_TYPE_CODE = &apos;STANDARD&apos;
AND OBJECT_REVISION_NUM = 0
AND ACTION_CODE = &apos;APPROVE&apos;
AND object_id = po_dates.po_header_id) po_app_date
from po_headers_all po_dates
)  po_dates
WHERE poh.type_lookup_code IN (&apos;STANDARD&apos;)
AND doc_style.style_id = poh.style_id
AND nvl(doc_style.clm_flag,&apos;N&apos;) = &apos;N&apos;
AND pdt.org_id = poh.org_id
AND pdt.DOCUMENT_TYPE_CODE = &apos;PO&apos;
AND pdt.DOCUMENT_SUBTYPE = poh.TYPE_LOOKUP_CODE
and houtl.LANGUAGE IN (&apos;US&apos;)
AND houtl.organization_id (+) = poh.org_id
AND po_dates.po_header_id(+)=poh.po_header_id  AND poh.creation_date &gt;= nvl(to_date(to_char(to_timestamp(&apos;&apos;),&apos;DD-MON-YY HH24.MI.SS&apos;),&apos;DD-MON-YY HH24.MI.SS&apos;),poh.creation_date)  ) grp_poh unpivot ((duration_type,duration) FOR  req_duration IN ((time_in_pool_msg,time_in_pool)AS &apos;1&apos;,
                                                           (time_in_sourcing_msg,time_in_sourcing) AS &apos;2&apos;,
                                                           (time_in_ord_drafting_msg,time_in_ord_drafting) AS &apos;3&apos; ,
                                                            (time_in_ord_approval_msg,time_in_ord_approval ) AS &apos;4&apos;
                                                            ))) pivot(Max(duration_type) AS duration_type FOR LANGUAGE IN (&apos;US&apos; &quot;US&quot;))
) x
where
2=2</SQL_TEXT>
  <REPORT_TRANSLATIONS>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>AR</LANGUAGE>
    <REPORT_NAME>ECC الشراء, الرسم البياني لوقت دورة الشراء</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: po-pcc-orders-prccycletimegraph
Query Procedure: po_pcc_orders_util_pvt.get_ecc_data_load_info
Security Procedure: PO_PCC_DATASECURITY_PKG_PUB.GetFilterAttributeValuesPO</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>D</LANGUAGE>
    <REPORT_NAME>ECC Beschaffung, Beschaffungszykluszeit - Diagramm</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: po-pcc-orders-prccycletimegraph
Query Procedure: po_pcc_orders_util_pvt.get_ecc_data_load_info
Security Procedure: PO_PCC_DATASECURITY_PKG_PUB.GetFilterAttributeValuesPO</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>E</LANGUAGE>
    <REPORT_NAME>ECC Procurement, Gráfico de Tiempo de Ciclo de Compras</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: po-pcc-orders-prccycletimegraph
Query Procedure: po_pcc_orders_util_pvt.get_ecc_data_load_info
Security Procedure: PO_PCC_DATASECURITY_PKG_PUB.GetFilterAttributeValuesPO</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>F</LANGUAGE>
    <REPORT_NAME>ECC Procurement, Graphique de la durée du cycle d&apos;achat</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: po-pcc-orders-prccycletimegraph
Query Procedure: po_pcc_orders_util_pvt.get_ecc_data_load_info
Security Procedure: PO_PCC_DATASECURITY_PKG_PUB.GetFilterAttributeValuesPO</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>I</LANGUAGE>
    <REPORT_NAME>ECC Procurement, Grafico durata ciclo acquisti</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: po-pcc-orders-prccycletimegraph
Query Procedure: po_pcc_orders_util_pvt.get_ecc_data_load_info
Security Procedure: PO_PCC_DATASECURITY_PKG_PUB.GetFilterAttributeValuesPO</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>JA</LANGUAGE>
    <REPORT_NAME>ECC 調達, 調達サイクル時間グラフ</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: po-pcc-orders-prccycletimegraph
Query Procedure: po_pcc_orders_util_pvt.get_ecc_data_load_info
Security Procedure: PO_PCC_DATASECURITY_PKG_PUB.GetFilterAttributeValuesPO</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>KO</LANGUAGE>
    <REPORT_NAME>ECC 조달, 조달 주기 시간 그래프</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: po-pcc-orders-prccycletimegraph
Query Procedure: po_pcc_orders_util_pvt.get_ecc_data_load_info
Security Procedure: PO_PCC_DATASECURITY_PKG_PUB.GetFilterAttributeValuesPO</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>RU</LANGUAGE>
    <REPORT_NAME>ECC Закупки, Диаграмма длительности цикла закупок</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: po-pcc-orders-prccycletimegraph
Query Procedure: po_pcc_orders_util_pvt.get_ecc_data_load_info
Security Procedure: PO_PCC_DATASECURITY_PKG_PUB.GetFilterAttributeValuesPO</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>S</LANGUAGE>
    <REPORT_NAME>ECC Inköp, Upphandlingscykeltid, diagram</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Description: Diagram över cykeltid för inköp
Dataset Key: po-pcc-orders-prccycletimegraph
Query Procedure: po_pcc_orders_util_pvt.get_ecc_data_load_info
Security Procedure: PO_PCC_DATASECURITY_PKG_PUB.GetFilterAttributeValuesPO</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>TR</LANGUAGE>
    <REPORT_NAME>ECC Tedarik, Tedarik Döngü Süresi Grafiği</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: po-pcc-orders-prccycletimegraph
Query Procedure: po_pcc_orders_util_pvt.get_ecc_data_load_info
Security Procedure: PO_PCC_DATASECURITY_PKG_PUB.GetFilterAttributeValuesPO</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>US</LANGUAGE>
    <REPORT_NAME>ECC Procurement, Procurement Cycle Time Graph</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: po-pcc-orders-prccycletimegraph
Query Procedure: po_pcc_orders_util_pvt.get_ecc_data_load_info
Security Procedure: PO_PCC_DATASECURITY_PKG_PUB.GetFilterAttributeValuesPO</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>ZHS</LANGUAGE>
    <REPORT_NAME>ECC Procurement, 采购周期图表</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: po-pcc-orders-prccycletimegraph
Query Procedure: po_pcc_orders_util_pvt.get_ecc_data_load_info
Security Procedure: PO_PCC_DATASECURITY_PKG_PUB.GetFilterAttributeValuesPO</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>
