Skip to Main Content

MySQL Database

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

OPEN INTERFACE FOR ITEM CATEGORY

3247206Aug 16 2017 — edited Aug 21 2017

Hi All,

     I have tried to update the existing category for an item trough open interface but category is not updating So Please help and give suggestions on this . I am sending my code So please see and give any suggestions need in the query.

INSERT INTO mtl_item_categories_interface

( category_set_id

,category_id

,last_update_date

,ORGANIZATION_CODE

,process_flag

,inventory_item_id

,old_category_id

,transaction_type

,set_process_id

)

VALUES

( 1000000015     -- category_set_id

,1513            -- new category_id

,SYSDATE

,'V1'           -- ORGANIZATION_CODE (should be master_orgaization_id if category set is controlled at master level)

,1               -- always 1

,380989         -- Item name  Note: for performance consideration use inventory_item_id in place of item_number

,2257           -- old category_id

,'UPDATE'

,555            -- set_process_id can be any positive number

);

commit;

This post has been answered by Gaz in Oz on Aug 19 2017
Jump to Answer
Comments
Post Details
Added on Aug 16 2017
2 comments
860 views