zoukankan      html  css  js  c++  java
  • Item Import: What Does "Sync" Items Do? (Doc ID 417887.1)

    In this Document

      Goal
      Solution

     

    APPLIES TO:

    Oracle Item Master - Version 11.5.10.0 to 11.5.10.0 [Release 11.5]
    Information in this document applies to any platform.
    EXECUTABLE:INCOIN - Import Items
    This document includes all versions of Oracle EBS 11i and R12 and later



    GOAL

    What does the "Sync items" option for item import do?

    When running the Import Items program, the last parameter has a prompt "Create or Update Items"
    1 is create, 2 is update, 3 is "Sync Items". What does option 3 mean?

    SOLUTION

    You can use the 'SYNC' transaction type to create the item, if the item does not exist, OR update the item, if the item exists.

    Example
    Created the item . since it did not exist
    insert into mtl_system_items_interface
    (process_flag, set_process_id, transaction_type,organization_id,segment1, description,template_name)
    values
    (1,1,'SYNC',204,'sync_item', 'Testing through the interface','Finished Good');

    Update the Transactable flag since the item already existed .

    insert into mtl_system_items_interface
    (process_flag, set_process_id, transaction_type,organization_id,segment1,description,MTL_TRANSACTIONS_ENABLED_FLAG)
    values
    (1,1,'SYNC',204,'sync_item', 'Testing through the interface ','N');

    NOTE:  In Oracle Inventory, Item import does not process records with
           transaction type 'SYNC' when import is run with null process set.

           When using SYNC, always populate the process set in the Import Items parameters.

           This issue is fixed in incoin.opp 120.1

  • 相关阅读:
    循环神经网络(三)-RNN进阶
    卷积神经网络CNN【1】-简介
    tensorflow基础【5】-tensorboard
    强化学习8-时序差分控制离线算法Q-Learning
    POJ 1979 Red and Black 四方向棋盘搜索
    POJ 2386 Lake Counting 八方向棋盘搜索
    Problem A: Assembly Required K路归并
    POJ 2051 Argus 优先队列
    优先队列---使用
    Problem B: Bulbs
  • 原文地址:https://www.cnblogs.com/quanweiru/p/4133553.html
Copyright © 2011-2022 走看看