API Procedure to inactive Items in oracle apps
--API to update the item status. /**** STEP 1) Insert data into pending interface table ****/ insert into mtl_pending_item_status (inventory_item_id, organization_id, status_code, effective_date, implemented_date, pending_flag, last_update_date, last_updated_by, creation_date, created_by) values( 6760202, -- Item Segment 114, -- Organization Id 'Inactive', -- status sysdate, sysdate, ...
Comments
Post a Comment