You are on page 1of 7

MTL_SYSTEM_ITEMS_INTERFACE | Dibyajyoti Koch:A Blog on Orac... https://imdjkoch.wordpress.

com/tag/mtl_system_items_interface/

Dibyajyoti Koch:A Blog on Oracle Application

Sharing my learning from an wonderful journey..

Item Conversion A Technical Note

JUNE 14, 2011 5 COMMENTS (HTTPS://IMDJKOCH.WORDPRESS.COM/2011/06/14/ITEM-


CONVERSION-A-TECHNICAL-NOTE/#COMMENTS)

i
18 Votes

This conversion is done for import items from any source into Oracle Inventory and Oracle Engineering.

Description:

When you import items through the Item Interface, you create new items in your item masterorganization
or assign existing items to additional organizations. You can specify values for all the item a ributes, or
you can specify just a few a ributes and let the remainder default or remain null. Here we are importing
items with template.

Interface Table:

The interface table for Item Import is MTL_SYSTEM_ITEMS_INTERFACE and it contains every
column in the Inventory item master table, MTL_SYSTEM_ITEMS.
The columns in the item interface correspond directly to those in the item master table.
Except for ITEM_NUMBER or SEGMENTn columns, ORGANIZATION_CODE or
ORGANIZATION_ID, DESCRIPTION, PROCESS_FLAG, and TRANSACTION_TYPE, all other
columns are optional, either because they have defaults that can be derived, or because the
corresponding a ributes are optional and may be left null.
If you are importing revision details for your new items, you can use the

1 of 7 12/6/2016 2:08 PM
MTL_SYSTEM_ITEMS_INTERFACE | Dibyajyoti Koch:A Blog on Orac... https://imdjkoch.wordpress.com/tag/mtl_system_items_interface/

MTL_ITEM_REVISIONS_INTERFACE table. This table is used only for revision information, and is
not mandatory.

Required Data:

ITEM_NUMBER or SEGMENTn columns

Every row in the item interface table must identify the item and organization. To identify the item when
importing it, you may specify either the ITEM_NUMBER or SEGMENTn columnsthe Item Interface
generates the INVENTORY_ITEM_ID for you.

ORGANIZATION_ID or ORGANIZATION_CODE

You need to specify either the ORGANIZATION_ID or ORGANIZATION_CODE that identi es the
organization.

DESCRIPTION

When you import a new item, you are also required to specify the DESCRIPTION.

TRANSACTION_TYPE & PROCESS_FLAG

There are two other columns the Item Interface uses to manage processing. They are
TRANSACTION_TYPE, which tells the Item Interface how to handle the row, and PROCESS_FLAG,
which indicates the current status of the row.

Always set the TRANSACTION_TYPE column to CREATE, to create an item record (true when both
importing a new item and assigning an already existing item to another organization). This is the only
value currently supported by the Item Interface. The Item Interface uses the PROCESS_FLAG to indicate
whether processing of the row succeeded or failed. When a row is ready to be processed, give the
PROCESS_FLAG a value of 1 (Pending), so that the Item Interface can pick up the row and process it into
the production tables.

Meaning of PROCESS_FLAG Values:

Code Code Meaning


1 Pending
2 Assign complete
3 Assign/validation failed
4 Validation succeeded; import failed
5 Import in process
7 Import succeeded
Note:

When more than one of these columns has been entered and they con ict, ITEM_NUMBER overrides

2 of 7 12/6/2016 2:08 PM
MTL_SYSTEM_ITEMS_INTERFACE | Dibyajyoti Koch:A Blog on Orac... https://imdjkoch.wordpress.com/tag/mtl_system_items_interface/

SEGMENTn and ORGANIZATION_ID overrides ORGANIZATION_CODE. It is strongly recommended


that you use SEGMENT column instead of ITEM_NUMBER.

For performance purpose, it is advised to batch set of records using set_process_id column and then run
import program for that set_process_id. The item import (IOI) program can be run in parallel if separate
set_process_ids are passed while submi ing.

Derived Data:

Many columns have defaults that the Item Interface uses when you leave that column null in the item
interface table. Please refer Oracle Manufacturing APIs and Open Interfaces Manual for more details.

Validations:

1] Validation for organization code (standard table: ORG_ORGANIZATION_DEFINITIONS)

2] Validation for Item_number (standard table: mtl_system_items_b)

3] Validation for Description

4] Validation for Primary Unit of Measure (standard table: MTL_UNITS_OF_MEASURE)

5] Validation for Template Name (standard table: mtl_item_templates)

6] Validation for Item Type (standard table: FND_COMMON_LOOKUPS)

7] Validation for ENCUMBRANCE_ACCOUNT (standard table: gl_code_combinations)

8] Validation for EXPENSE_ACCOUNT (standard table: gl_code_combinations)

Note: You can add more validation as per your business requirement.

Record Insertion:

Through your custom program you can insert the below columns in the interface table. Again the list is a
sample one; you can add additional columns as your business requirement.

Columns inserted:

ORGANIZATION_ID >Taken from ORG_ORGANIZATION_DEFINITIONS table


ORGANIZATION_CODE >Taken from Staging table
LAST_UPDATE_DATE >sysdate

3 of 7 12/6/2016 2:08 PM
MTL_SYSTEM_ITEMS_INTERFACE | Dibyajyoti Koch:A Blog on Orac... https://imdjkoch.wordpress.com/tag/mtl_system_items_interface/

LAST_UPDATED_BY >fnd_global.user_id
CREATION_DATE >sysdate
CREATED_BY >fnd_global.user_id
LAST_UPDATE_LOGIN >fnd_global.login_id
DESCRIPTION >Taken from Staging table
SEGMENT1 >Taken from Staging table
PRIMARY_UOM_CODE >Taken from Staging table
PRIMARY_UNIT_OF_MEASURE >Taken from MTL_UNITS_OF_MEASURE
ITEM_TYPE >NULL
TEMPLATE_NAME >Taken from Staging table
TEMPLATE_ID >Taken from mtl_item_templates
MIN_MINMAX_QUANTITY >Taken from Staging table
MAX_MINMAX_QUANTITY >Taken from Staging table
LIST_PRICE_PER_UNIT >Taken from Staging table
ITEM_CATALOG_GROUP_ID >Taken from Staging table
SET_PROCESS_ID >1
PROCESS_FLAG >1
TRANSACTION_TYPE >CREATE

Standard Concurrent Program:

After you insert valid data into Interface table, you can go to Items > Import > Import Items and run the
standard concurrent program. Here is the parameter form.

(h ps://imdjkoch. les.wordpress.com/2011/06/item-import-concurrent-program-parameters.jpg)

1] All Organizations:

Yes: Run the interface for all organization codes in the item interface table.
No: Run the interface only for the organization you are currently in. Item interface rows for
organizations other than your current organization are ignored.

4 of 7 12/6/2016 2:08 PM
MTL_SYSTEM_ITEMS_INTERFACE | Dibyajyoti Koch:A Blog on Orac... https://imdjkoch.wordpress.com/tag/mtl_system_items_interface/

2] Validate Items:

Yes: Validate all items and their data residing in the interface table that have not yet been validated. If
items are not validated, they will not be processed into Oracle Inventory.
No: Do not validate items in the interface table.

3] Process Items:

Yes: All qualifying items in the interface table are inserted into Oracle Inventory.
No: Do not insert items into Oracle Inventory.

4] Delete Processed Rows:

Yes: Delete successfully processed items from the item interface tables.
No: Leave all rows in the item interface tables.

5] Process Set:

Enter a number for the set id for the set of rows you want to process. The program picks up the rows
marked with that id in the SET_PROCESS_ID column. If you leave this eld blank, all rows are picked up
for processing regardless of the SET_PROCESS_ID column value.

Working with failed interface rows:

If a row fails validation, the Item Interface sets the PROCESS_FLAG to 3 (Assign/validation failed) and
inserts a row in the interface errors table, MTL_INTERFACE_ERRORS. To identify the error message for
the failed row, the program automatically populates the TRANSACTION_ID column in this table with the
TRANSACTION_ID value from the corresponding item interface table.

The UNIQUE_ID column in MTL_INTERFACE_ERRORS is populated from the sequence


MTL_SYSTEM_ITEMS_INTERFACE_S. Thus, for a given row, the sequence of errors can be determined
by examining UNIQUE_ID for a given TRANSACTION_ID.

You should resolve errors in the sequence that they were found by the interface, that is, in increasingorder
of UNIQUE_ID for any TRANSACTION_ID.

Resubmitting an Errored Row:

During Item Interface processing, rows can error out either due to validation (indicated by
PROCESS_FLAG = 3 in MTL_SYSTEM_ITEMS_INTERFACE and the corresponding error in
MTL_INTERFACE_ERRORS) or due to an Oracle Error.

When an Oracle Error is encountered, the processing is stopped and everything is rolled back to the
previous save point. This could be at PROCESS_FLAG = 1, 2, 3, or 4.

5 of 7 12/6/2016 2:08 PM
MTL_SYSTEM_ITEMS_INTERFACE | Dibyajyoti Koch:A Blog on Orac... https://imdjkoch.wordpress.com/tag/mtl_system_items_interface/

When you encounter rows errored out due to validations, you must rst x the row corresponding to the
error with the appropriate value. Then reset PROCESS_FLAG = 1, INVENTORY_ITEM_ID = null, and
TRANSACTION_ID = null. Then resubmit the row for reprocessing.

Useful Query:

1 Select
2 SEGMENT1,
3 DESCRIPTION,
4 PROCESS_FLAG,
5 SET_PROCESS_ID,
6 INVENTORY_ITEM_ID,
7 ORGANIZATION_ID,
8 ORGANIZATION_CODE,
9 CREATION_DATE,
10 ITEM_TYPE,
11 UNIT_OF_ISSUE,
12 TEMPLATE_ID,
13 TEMPLATE_NAME,
14 EXPENSE_ACCOUNT,
15 ENCUMBRANCE_ACCOUNT,
16 PRIMARY_UOM_CODE,
17 PRIMARY_UNIT_OF_MEASURE,
18 MIN_MINMAX_QUANTITY,
19 MAX_MINMAX_QUANTITY,
20 TAX_CODE,
21 REQUEST_ID
22 from
23 MTL_SYSTEM_ITEMS_INTERFACE
24 order by CREATION_DATE;
25 ----------------------------
26 Select
27 ORGANIZATION_ID,
28 UNIQUE_ID,
29 REQUEST_ID ,
30 TABLE_NAME ,
31 COLUMN_NAME,
32 ERROR_MESSAGE
33 CREATION_DATE,
34 MESSAGE_TYPE
35 from
36 MTL_INTERFACE_ERRORS
37 order by CREATION_DATE;

Useful Metalink Note:

6 of 7 12/6/2016 2:08 PM
MTL_SYSTEM_ITEMS_INTERFACE | Dibyajyoti Koch:A Blog on Orac... https://imdjkoch.wordpress.com/tag/mtl_system_items_interface/

1. FAQ for Item Import [ID 109628.1]


2. Error in Validating MTL_SYSTEM_ITEMS_INTERFACE [ID 1057175.6]
3. A Guideline to IOI Error Messages and Solutions [ID 52746.1]
4. How to Import Item Costs Using the Item Open Interface (IOI) [ID 191376.1]
5. Item Import Performance Tips [ID 66496.1]
6. INCOIN: Basic Steps for Researching Failed Item Imports [ID 552683.1]
7. Troubleshooting Guide for INV_IOI_MASTER_CHILD Errors in Item Import [ID 429924.1]
8. How To Prepare to Run Parallel Runs of the Item Import Interface INCOIN [ID 842767.1]
9. Item Import Gives Error: The Default Primary Unit of Measure Is Invalid [ID 789927.1]
10. Understanding Item Import and Debugging Problems with Item Import [ID 268968.1]
11. How to create a Category Set and Assign Items to Categories [ID 423551.1]
12. Item API Or Concurrent Manager, Which One Is Best For Item Creation? [ID 760498.1]

FILED UNDER ORACLE INVENTORY TAGGED WITH CONVERSION, FAQ FOR ITEM
IMPORT, INTERFACES, ITEM CONVERSION, ITEM IMPORT, MTL_INTERFACE_ERRORS,
MTL_SYSTEM_ITEMS_INTERFACE, ORACLE INVENTORY, PROCESS_FLAG

Create a free website or blog at WordPress.com.

7 of 7 12/6/2016 2:08 PM

You might also like