<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: INV Organization Code (all) -->
 <LOVS_ROW>
  <GUID>8E2FF36EDEA279D2E0530100007F1FF2</GUID>
  <LOV_NAME>INV Organization Code (all)</LOV_NAME>
  <VALIDATE_FROM_LIST>Y</VALIDATE_FROM_LIST>
  <LOV_QUERY>select
ood.organization_code value,
ood.organization_name||&apos; (&apos;||ftv.territory_short_name||&apos;, &apos;||hla.town_or_city||decode(mp.organization_id,mp.master_organization_id,null,&apos;, &apos;||mp0.organization_code)||&apos;)&apos; description
from
org_organization_definitions ood,
mtl_parameters mp,
mtl_parameters mp0,
hr_all_organization_units haou,
hr_locations_all hla,
fnd_territories_vl ftv
where
ood.organization_id=mp.organization_id and
(:$flex$.operating_unit is null or ood.operating_unit in (select haouv.organization_id from hr_all_organization_units_vl haouv where xxen_util.contains(:$flex$.operating_unit,haouv.name)=&apos;Y&apos;)) and
(:$flex$.ledger is null or ood.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
nvl(ood.disable_date,sysdate)&gt;=sysdate and
mp.master_organization_id=mp0.organization_id and
ood.organization_id=haou.organization_id(+) and
haou.location_id=hla.location_id(+) and
hla.country=ftv.territory_code(+)
order by
ood.organization_code</LOV_QUERY>
  <LOV_TRANSLATIONS>
   <LOV_TRANSLATIONS_ROW>
    <LANGUAGE>US</LANGUAGE>
    <DESCRIPTION>All active inventory organization codes</DESCRIPTION>
   </LOV_TRANSLATIONS_ROW>
  </LOV_TRANSLATIONS>
 </LOVS_ROW>
</LOVS>
<REPORTS>
<!-- loader xml for Enginatics Blitz Report: ECC Inventory Management, Inventory Transaction Management -->
 <REPORTS_ROW>
  <GUID>22F5F8B346418719E06362FB09051151</GUID><ENABLED>Y</ENABLED>
  <SQL_TEXT>select
x.*
from
(
select * from (select x.* ,trn_dfv.*from (
	SELECT  map.ecc_spec_id
      , map.inventory_item_id
      , map.item
      , mstl.description item_description
      , map.revision
      , map.organization_id
      , map.organization_code
      , map.subinventory_code
      , map.locator_id
      , map.locator
      , map.lot_number
      , map.transaction_date
      , map.transaction_quantity
      , map.transaction_uom
      , map.transaction_header_id
      , map.source_code
      , map.source_line_id
      , map.transaction_mode
      , map.last_update_date
      , map.last_updated_by
      , map.request_id
      , map.item_value
      , map.primary_quantity
      , mtt.transaction_type_name transaction_type
      , map.transaction_type_id
      , map.transaction_action_id
      , map.transaction_source_type_id
      , map.transaction_source_id
      , map.shipment_num
      , map.expected_receipt_date
      , map.charge_account_id
      , map.transaction_source_name
      , map.demand_id
      , map.transfer_subinventory
      ,
        (
        SELECT  organization_code
        FROM    mtl_parameters
        WHERE   organization_id = map.transfer_organization
        ) transfer_organization
      , map.process_flag
      , map.error_explanation
      , map.cycle_count_entry_id
      , map.cycle_count_header_id
      , map.cycle_count_header_name
      , map.count_quantity
      , map.count_uom
      , map.count_date
      , map.employee_full_name
      , map.demand_source_name
      , map.demand_source_line_id
      , map.demand_source_type_id
      , map.demand_type
      , map.supply_line
      , map.supply_header
      , map.reservation_quantity
      , map.reservation_uom_code
      , map.requirement_date
      , map.line_item_quantity
      , map.line_item_uom
      , map.object_type
      , map.parent_object_type
      , map.parent_object_id
      , map.start_date_active
      , map.end_date_active
      , map.genealogy_origin
      , map.origin_txn_id
      , map.genealogy_type
      , map.referring_to
      , mstl.language
      , org_tl.name operating_unit
      , map.mti_interface_id
      , map.rcv_interface_transaction_id
      , map.cc_entry_interface_id
      , map.reservation_interface_id
      , map.batch_id
      , map.lot_control_code
      , map.serial_number_control_code
      , map.enable_lot_action
      , map.enable_serial_action
      , CASE
        WHEN    map.lpn_id IS NOT NULL
                THEN
                        (
                        SELECT  license_plate_number
                        FROM    wms_license_plate_numbers
                        WHERE   lpn_id = map.lpn_id
                        )
        END lpn
		, map.lot_transaction_quantity
FROM    inv_ecc_trans_mgmt_map map
      , mtl_system_items_tl mstl
      , mtl_transaction_types_tl mtt
      , org_organization_definitions ogd
      , hr_all_organization_units_tl org_tl
WHERE   map.organization_id = mstl.organization_id
AND     map.inventory_item_id = mstl.inventory_item_id
AND     map.organization_id = ogd.organization_id
AND     ogd.operating_unit = org_tl.organization_id
AND     mstl.language = org_tl.language
AND     map.transaction_type_id = mtt.transaction_type_id
AND     map.transaction_type_id IS NOT NULL
AND     map.organization_id=nvl(&apos;&apos;, map.organization_id)
AND     mstl.language = mtt.language
UNION
SELECT  map.ecc_spec_id
      , map.inventory_item_id
      , map.item
      , mstl.description item_description
      , map.revision
      , map.organization_id
      , map.organization_code
      , map.subinventory_code
      , map.locator_id
      , map.locator
      , map.lot_number
      , map.transaction_date
      , map.transaction_quantity
      , map.transaction_uom
      , map.transaction_header_id
      , map.source_code
      , map.source_line_id
      , map.transaction_mode
      , map.last_update_date
      , map.last_updated_by
      , map.request_id
      , map.item_value
      , map.primary_quantity
      , map.transaction_type transaction_type
      , map.transaction_type_id
      , map.transaction_action_id
      , map.transaction_source_type_id
      , map.transaction_source_id
      , map.shipment_num
      , map.expected_receipt_date
      , map.charge_account_id
      , map.transaction_source_name
      , map.demand_id
      , map.transfer_subinventory
      ,
        (
        SELECT  organization_code
        FROM    mtl_parameters
        WHERE   organization_id = map.transfer_organization
        ) transfer_organization
      , map.process_flag
      , map.error_explanation
      , map.cycle_count_entry_id
      , map.cycle_count_header_id
      , map.cycle_count_header_name
      , map.count_quantity
      , map.count_uom
      , map.count_date
      , map.employee_full_name
      , map.demand_source_name
      , map.demand_source_line_id
      , map.demand_source_type_id
      , map.demand_type
      , map.supply_line
      , map.supply_header
      , map.reservation_quantity
      , map.reservation_uom_code
      , map.requirement_date
      , map.line_item_quantity
      , map.line_item_uom
      , map.object_type
      , map.parent_object_type
      , map.parent_object_id
      , map.start_date_active
      , map.end_date_active
      , map.genealogy_origin
      , map.origin_txn_id
      , map.genealogy_type
      , map.referring_to
      , mstl.language
      , org_tl.name operating_unit
      , map.mti_interface_id
      , map.rcv_interface_transaction_id
      , map.cc_entry_interface_id
      , map.reservation_interface_id
      , map.batch_id
      , map.lot_control_code
      , map.serial_number_control_code
      , map.enable_lot_action
      , map.enable_serial_action
      , CASE
        WHEN    map.lpn_id IS NOT NULL
                THEN
                        (
                        SELECT  license_plate_number
                        FROM    wms_license_plate_numbers
                        WHERE   lpn_id = map.lpn_id
                        )
        END lpn
		, map.lot_transaction_quantity
FROM    inv_ecc_trans_mgmt_map map
      , mtl_system_items_tl mstl
      , org_organization_definitions ogd
      , hr_all_organization_units_tl org_tl
WHERE   map.organization_id = mstl.organization_id
AND     map.inventory_item_id = mstl.inventory_item_id
AND     map.organization_id = ogd.organization_id
AND     ogd.operating_unit = org_tl.organization_id
AND     map.organization_id=nvl(&apos;&apos;, map.organization_id)
AND     mstl.language = org_tl.language
AND     map.transaction_type IS NOT NULL
			union
			SELECT  map.ecc_spec_id
				  , map.inventory_item_id
				  , map.item
				  , mstl.description item_description
				  , map.revision
				  , map.organization_id
				  , map.organization_code
				  , map.subinventory_code
				  , map.locator_id
				  , map.locator
				  , map.lot_number
				  , map.transaction_date
				  , map.transaction_quantity
				  , map.transaction_uom
				  , map.transaction_header_id
				  , map.source_code
				  , map.source_line_id
				  , map.transaction_mode
				  , map.last_update_date
				  , map.last_updated_by
				  , map.request_id
				  , map.item_value
				  , map.primary_quantity
				  , NULL transaction_type
				  , NULL transaction_type_id
				  , map.transaction_action_id
				  , map.transaction_source_type_id
				  , map.transaction_source_id
				  , map.shipment_num
				  , map.expected_receipt_date
				  , map.charge_account_id
				  , map.transaction_source_name
				  , map.demand_id
				  , map.transfer_subinventory
				  ,
					(
					SELECT  organization_code
					FROM    mtl_parameters
					WHERE   organization_id = map.transfer_organization
					) transfer_organization
				  , map.process_flag
				  , map.error_explanation
				  , map.cycle_count_entry_id
				  , map.cycle_count_header_id
				  , map.cycle_count_header_name
				  , map.count_quantity
				  , map.count_uom
				  , map.count_date
				  , map.employee_full_name
				  , map.demand_source_name
				  , map.demand_source_line_id
				  , map.demand_source_type_id
				  , map.demand_type
				  , map.supply_line
				  , map.supply_header
				  , map.reservation_quantity
				  , map.reservation_uom_code
				  , map.requirement_date
				  , map.line_item_quantity
				  , map.line_item_uom
				  , map.object_type
				  , map.parent_object_type
				  , map.parent_object_id
				  , map.start_date_active
				  , map.end_date_active
				  , map.genealogy_origin
				  , map.origin_txn_id
				  , map.genealogy_type
				  , map.referring_to
				  , mstl.language
				  , org_tl.name operating_unit
				  , map.mti_interface_id
				  , map.rcv_interface_transaction_id
				  , map.cc_entry_interface_id
				  , map.reservation_interface_id
				  , map.batch_id
				  , map.lot_control_code
				  , map.serial_number_control_code
				  , map.enable_lot_action
				  , map.enable_serial_action
				   , CASE
							WHEN    map.lpn_id IS NOT NULL
                             THEN
                                (
                                SELECT  license_plate_number
                                FROM    wms_license_plate_numbers
                                WHERE   lpn_id = map.lpn_id
                                )
                            END lpn
				 , map.lot_transaction_quantity
			FROM    inv_ecc_trans_mgmt_map map
				  , mtl_system_items_tl mstl
				  , org_organization_definitions ogd
				  , hr_all_organization_units_tl org_tl
			WHERE   map.organization_id = mstl.organization_id
			AND     map.inventory_item_id = mstl.inventory_item_id
			AND     map.organization_id = ogd.organization_id
			AND     ogd.operating_unit = org_tl.organization_id
			AND     map.organization_id=nvl(&apos;&apos;, map.organization_id)
			AND     mstl.language = org_tl.language
			AND     map.transaction_type_id IS NULL
			AND     map.transaction_type IS NULL) x  ,(select &quot;ROW_ID&quot; &quot;&apos;INV_TRNINTERFACE_ROW_ID&apos;&quot;,&quot;CONTEXT&quot; &quot;&apos;INV_TRNINTERFACE_CONTEXT&apos;&quot;,&quot;CONCATENATED_SEGMENTS&quot; &quot;&apos;INV_TRNINTERFACE_CONCATENATED_SEGMENTS&apos;&quot; from ( select ROWID &quot;ROW_ID&quot;,ATTRIBUTE_CATEGORY &quot;CONTEXT&quot;,NULL &quot;CONCATENATED_SEGMENTS&quot; from MTL_TRANSACTIONS_INTERFACE )) trn_dfv, mtl_transactions_interface mti where 1=1 and mti.rowid = trn_dfv.&quot;&apos;INV_TRNINTERFACE_ROW_ID&apos;&quot;(+)
                                   and x.mti_interface_id = mti.transaction_interface_id(+))
  PIVOT (max(ITEM_DESCRIPTION) as ITEM_DESCRIPTION , max(TRANSACTION_TYPE) as
     TRANSACTION_TYPE , max(OPERATING_UNIT) as
     OPERATING_UNIT 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 إدارة المخازن, Inventory Transaction Management</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: inv-transaction-management
Query Procedure: INV_ECC_TRANS_MGMT_UTIL_PVT.GET_ECC_DATA_LOAD_INFO
Security Procedure: inv_ecc_datasecurity_pkg_pub.GetFilterAttributeValues</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>D</LANGUAGE>
    <REPORT_NAME>ECC Bestandsverwaltung, Inventory Transaction Management</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: inv-transaction-management
Query Procedure: INV_ECC_TRANS_MGMT_UTIL_PVT.GET_ECC_DATA_LOAD_INFO
Security Procedure: inv_ecc_datasecurity_pkg_pub.GetFilterAttributeValues</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>E</LANGUAGE>
    <REPORT_NAME>ECC Inventory Management, Inventory Transaction Management</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: inv-transaction-management
Query Procedure: INV_ECC_TRANS_MGMT_UTIL_PVT.GET_ECC_DATA_LOAD_INFO
Security Procedure: inv_ecc_datasecurity_pkg_pub.GetFilterAttributeValues</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>F</LANGUAGE>
    <REPORT_NAME>ECC Inventory Management, Inventory Transaction Management</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: inv-transaction-management
Query Procedure: INV_ECC_TRANS_MGMT_UTIL_PVT.GET_ECC_DATA_LOAD_INFO
Security Procedure: inv_ecc_datasecurity_pkg_pub.GetFilterAttributeValues</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>I</LANGUAGE>
    <REPORT_NAME>ECC Gestione magazzino, Inventory Transaction Management</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: inv-transaction-management
Query Procedure: INV_ECC_TRANS_MGMT_UTIL_PVT.GET_ECC_DATA_LOAD_INFO
Security Procedure: inv_ecc_datasecurity_pkg_pub.GetFilterAttributeValues</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>JA</LANGUAGE>
    <REPORT_NAME>ECC 在庫管理, Inventory Transaction Management</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: inv-transaction-management
Query Procedure: INV_ECC_TRANS_MGMT_UTIL_PVT.GET_ECC_DATA_LOAD_INFO
Security Procedure: inv_ecc_datasecurity_pkg_pub.GetFilterAttributeValues</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>KO</LANGUAGE>
    <REPORT_NAME>ECC Inventory Management, Inventory Transaction Management</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: inv-transaction-management
Query Procedure: INV_ECC_TRANS_MGMT_UTIL_PVT.GET_ECC_DATA_LOAD_INFO
Security Procedure: inv_ecc_datasecurity_pkg_pub.GetFilterAttributeValues</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>RU</LANGUAGE>
    <REPORT_NAME>ECC Управление запасами, Inventory Transaction Management</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: inv-transaction-management
Query Procedure: INV_ECC_TRANS_MGMT_UTIL_PVT.GET_ECC_DATA_LOAD_INFO
Security Procedure: inv_ecc_datasecurity_pkg_pub.GetFilterAttributeValues</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>S</LANGUAGE>
    <REPORT_NAME>ECC Lagerstyrning, Inventory Transaction Management</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: inv-transaction-management
Query Procedure: INV_ECC_TRANS_MGMT_UTIL_PVT.GET_ECC_DATA_LOAD_INFO
Security Procedure: inv_ecc_datasecurity_pkg_pub.GetFilterAttributeValues</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>TR</LANGUAGE>
    <REPORT_NAME>ECC Envanter Yönetimi, Inventory Transaction Management</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: inv-transaction-management
Query Procedure: INV_ECC_TRANS_MGMT_UTIL_PVT.GET_ECC_DATA_LOAD_INFO
Security Procedure: inv_ecc_datasecurity_pkg_pub.GetFilterAttributeValues</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>US</LANGUAGE>
    <REPORT_NAME>ECC Inventory Management, Inventory Transaction Management</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: inv-transaction-management
Query Procedure: INV_ECC_TRANS_MGMT_UTIL_PVT.GET_ECC_DATA_LOAD_INFO
Security Procedure: inv_ecc_datasecurity_pkg_pub.GetFilterAttributeValues</DESCRIPTION>
   </REPORT_TRANSLATIONS_ROW>
   <REPORT_TRANSLATIONS_ROW>
    <LANGUAGE>ZHS</LANGUAGE>
    <REPORT_NAME>ECC Inventory Management, Inventory Transaction Management</REPORT_NAME>
    <DESCRIPTION>Imported from Enterprise Command Center
Dataset Key: inv-transaction-management
Query Procedure: INV_ECC_TRANS_MGMT_UTIL_PVT.GET_ECC_DATA_LOAD_INFO
Security Procedure: inv_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_ROW>
    <ANCHOR>1=1</ANCHOR>
   </ANCHORS_ROW>
   <ANCHORS_ROW>
    <ANCHOR>2=2</ANCHOR>
   </ANCHORS_ROW>
  </ANCHORS>
  <PARAMETERS>
   <PARAMETERS_ROW>
    <SORT_ORDER>1</SORT_ORDER>
    <DISPLAY_SEQUENCE>10</DISPLAY_SEQUENCE>
    <ANCHOR>2=2</ANCHOR>
    <SQL_TEXT>x.organization_code=:organization_code</SQL_TEXT>
    <PARAMETER_TYPE_DSP>LOV</PARAMETER_TYPE_DSP>
    <LOV_NAME>INV Organization Code (all)</LOV_NAME>
    <LOV_GUID>8E2FF36EDEA279D2E0530100007F1FF2</LOV_GUID>
    <VALIDATE_FROM_LIST_DSP>Y</VALIDATE_FROM_LIST_DSP>
    <LOV_QUERY_DSP>select
ood.organization_code value,
ood.organization_name||&apos; (&apos;||ftv.territory_short_name||&apos;, &apos;||hla.town_or_city||decode(mp.organization_id,mp.master_organization_id,null,&apos;, &apos;||mp0.organization_code)||&apos;)&apos; description
from
org_organization_definitions ood,
mtl_parameters mp,
mtl_parameters mp0,
hr_all_organization_units haou,
hr_locations_all hla,
fnd_territories_vl ftv
where
ood.organization_id=mp.organization_id and
(:$flex$.operating_unit is null or ood.operating_unit in (select haouv.organization_id from hr_all_organization_units_vl haouv where xxen_util.contains(:$flex$.operating_unit,haouv.name)=&apos;Y&apos;)) and
(:$flex$.ledger is null or ood.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
nvl(ood.disable_date,sysdate)&gt;=sysdate and
mp.master_organization_id=mp0.organization_id and
ood.organization_id=haou.organization_id(+) and
haou.location_id=hla.location_id(+) and
hla.country=ftv.territory_code(+)
order by
ood.organization_code</LOV_QUERY_DSP>
    <DEFAULT_VALUE>select mp.organization_code from mtl_parameters mp where mp.organization_id=fnd_profile.value(&apos;MFG_ORGANIZATION_ID&apos;)</DEFAULT_VALUE>
    <PARAMETER_TRANSLATIONS>
     <PARAMETER_TRANSLATIONS_ROW>
      <LANGUAGE>US</LANGUAGE>
      <PARAMETER_NAME>Organization Code</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>
