How To Change Default Buyer On Item by Using Item Open Interface (IOI)
How To Change Default Buyer On Item by Using Item Open Interface (IOI)
Oracle Inventory
How to Change Default Buyer on Item by Using Item Open Interface (IOI)
By
Ahmed Bilal
[email protected]
For
www.erpstuff.com
What is Default Buyer on Item Purchasing Tab?
Oracle Purchasing displays the buyer you enter on item Master as the suggested buyer for a requisition.
Step 1
Identify all item which need to be changed (best way is to extract from system by using
following query
Step 2
Save it in Excel Format and Change Buyer name and buyer Id as Desired and save it in CSV
Step 3
Upload in MTL_SYSTEM_ITEMS_INTERFACE by using following control script
LOAD DATA
INFILE 'ITEM_UPDATE.csv'
INSERT
INTO TABLE MTL_SYSTEM_ITEMS_INTERFACE
REPLACE FIELDS TERMINATED BY ','
TRAILING NULLCOLS
(
INVENTORY_ITEM_ID "trim(:INVENTORY_ITEM_ID)",--Inventory Item id
ORGANIZATION_ID "trim(:ORGANIZATION_ID)",--Inventory Organization Id
last_update_date constant '07-APR-08', --Update Date
last_updated_by constant 1318, --By User Name (Select user_name,user_id from fnd_user
where user_name like '%OPER%')
last_update_login constant 0,
created_by constant 1318,
creation_date constant '07-APR-08',
PROCESS_FLAG constant 1, --Should be 1
TRANSACTION_TYPE constant 'UPDATE', --Should be UPDATE for updation in current item
master
SET_PROCESS_ID constant 1, --Should be 1
BUYER_ID "trim (:BUYER_ID)"
)
Step 4
Verify that all data successfully loaded in table
Step 5
By using your assigned inventory responsibility run the following request as per parameters
shown in snap shot
Navigations
Items Æ Import Æ Import Items
Note: - By using above process you Can Update Any Field on Item master