zoukankan      html  css  js  c++  java
  • po line received is canceled(恢复PO被取消的余量)

    1張PO已部分收貨,後來由于某種原因,將部分收貨的PO明行取消,現在要對已收料的這一部分進行退貨處理,要怎麼做才好呢?

    [@more@]DATA COLLECTED
    ===============
    COLLABORATION
    ----------------
    Checked the following details over the OWC:

    - User created a PO for 5 lines
    - Received the lines 1,2,3,4 fully (line 5 is not received)
    - Cancelled lines 2,4 and 5 
    - Now user wants to return the lines 2 and 4

    Explained that this is not possible cause once the line has been cancelled the system will not allow any transactions on the
    lines.
    This is a standard functionality and user is given enough warning while cancelling the lines. User will have to perform miscelaneous issue to return the
    items.

    User asked if there is any datafix that can be done. Since this is cause by the user action DEV/Support cannot provide any datafixes. This is not recom
    mended. The broad guidelines for datafix would be :

    - Update the cancel_flag , cancelled_by and cancel_date as NULL on the po_line_all , po_line_locations_all 
    table for the lines 2 and 4

    1. Undo Cancel Shipment
    .
    update po_line_locations_all
    set cancel_flag = 'N',
    cancel_reason = NULL,
    cancel_date = NULL,
    cancelled_by = NULL,
    closed_code = 'OPEN',
    closed_date = NULL
    where line_location_id = &line_location_id;
    .
    2. Undo Cancel Line
    .
    update po_lines_all
    set cancel_flag = 'N',
    cancel_reason = NULL,
    cancel_date = NULL,
    cancelled_by = NULL,
    closed_code = 'OPEN',
    closed_date = NULL
    where po_line_id = &po_line_id;

    3. Undo Cancel Distribution too similarly

    - Update the quantity_cancelled on the tables po_lines_all, po_line_locations_all , po_distributions_all to 0 for th
    e line 2 and 4
    - Issue commit
    - Return the items received on lines 2 and 4
    - Cancel the lines again so that the PO header amount is also adjusted

    NOTE: 

    -The above has to be created and verified by the customer and authenticated on the TE
    ST instance first.
    - Above is assuming that the full qty has been received on the cancelled lines.

  • 相关阅读:
    hbase2.x错误记录之 disable表卡住
    hbase2.x 错误记录之 procedure is still running
    yarn timelineserver v2 配置
    Linux 系统出现大量的CLOSE_WAIT
    hbase 2.x 异常记录之 hbase shell不能分配内存
    spark 访问 hive,不能获取到数据信息
    hive 由于distcp导致执行sql慢
    Hbase 安装部署
    MooseFS安装部署
    hbase2.x 单节点启动,master挂掉
  • 原文地址:https://www.cnblogs.com/toowang/p/3478773.html
Copyright © 2011-2022 走看看