Price in orders not updated by DTW

Hi experts,
I'm trying to update price in order lines with DTW 88.0.11
The DTW returns no error but the price is not updated.
During the DTW, I saw in the tab 'Target Data' of the step 5, the row 'price' with the new value.
Is there a good reason for the data not been updated?
Regards,
Francis

Hi Jim,
Thanks for your answer.
I've thought to use your solution if no better one.
But I would have to calculate this price after VAT. It's possible but no simple...
Best Regards,
Francis

Similar Messages

  • BAPI_GOODSMVT_CREATE for production order,not update database

    hi guru,
    i am using BAPI_GOODSMVT_CREATE for production order.When i m testing this BAPI
    at se37 it creates one mat doc no and i m not getting any return messages.Now i m
    writing code for it at se38. but it does not update the database even though i used
    bapi_transaction_commit. here sy-subrc = 0.bt when i m checking MSEG table showing
    that mat doc no does not exists.
    please help me out  asap.
    thanks and regurds,
    manasi

    CHECK THIS CODE
    REPORT ZBAPI_GOODSMVT_CREATE.
    *DECLARING INTERNAL TABLE TO HOLD FILE DATA.
    DATA: BEGIN OF itab OCCURS 0,
              text(200),
          END OF itab.
    *DECLARING INTERNAL TABLE TO PASS FILE DATA.
    TYPES: BEGIN OF tw_goodsmvt,
                pstng_date TYPE budat,
                doc_date TYPE bldat,
                material TYPE matnr,
                plant TYPE werks_d,
                stge_loc TYPE lgort_d,
                move_type TYPE bwart,
    *            entry_qnt TYPE erfmg,
                costcenter TYPE kostl,
            END OF tw_goodsmvt,
            tt_goodsmvt TYPE STANDARD TABLE OF tw_goodsmvt.
    DATA: lt_goodsmvt TYPE tt_goodsmvt,
          lw_goodsmvt TYPE tw_goodsmvt.
    *declaring internal table of bapi structure.
    DATA:s_goodsmvt_header LIKE  bapi2017_gm_head_01,
         lt_goodsmvt_item TYPE STANDARD TABLE OF bapi2017_gm_item_create WITH HEADER LINE,
         lt_return TYPE STANDARD TABLE OF bapiret2 WITH HEADER LINE.
    DATA:str_filename TYPE string,
         gm_code TYPE gm_code,
          v_head_count TYPE i VALUE 0,
          v_prev_count TYPE i VALUE 1,
          v_qnt TYPE string,
          v_dummy.
    *selection screen
    SELECTION-SCREEN BEGIN OF BLOCK bk with frame title text_001.
    PARAMETERS:p_docdat TYPE bldat,
               p_pstdat TYPE budat,
               fname LIKE rlgrap-filename.
    SELECTION-SCREEN END OF BLOCK bk.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR fname.
    *to provide F4 functionality.
      CALL FUNCTION 'F4_FILENAME'
        EXPORTING
          program_name = syst-cprog
        IMPORTING
          file_name    = fname.
    * start of selection
    START-OF-SELECTION.
      str_filename = fname.
      gm_code = '06'.
    * to upload data
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename            = str_filename
          filetype            = 'ASC'
          has_field_separator = 'X'
          read_by_line        = 'X'
        TABLES
          data_tab            = itab.
    *SPLITING DATA TO INTERNAL TABLES.
      LOOP AT itab.
        IF itab+0(1) EQ 'H'.
          v_head_count =  v_head_count + 1.
          IF v_head_count GT v_prev_count.
            PERFORM bapi_upload.
          ENDIF.
          SPLIT itab-text AT ',' INTO v_dummy
                                      lw_goodsmvt-pstng_date
                                      lw_goodsmvt-doc_date.
          s_goodsmvt_header-doc_date   = lw_goodsmvt-doc_date.
          s_goodsmvt_header-pstng_date = lw_goodsmvt-pstng_date.
          v_prev_count = v_head_count.
      ELSEIF itab+0(1) EQ 'L'.
        SPLIT itab-text AT ',' INTO v_dummy
                                    lw_goodsmvt-material
                                    lw_goodsmvt-plant
                                    lw_goodsmvt-stge_loc
                                    lw_goodsmvt-move_type
                                    v_qnt
                                    lw_goodsmvt-costcenter.
    * PASSING DATA TO INTERNAL TABLE TYPE BAPI STRUCTURE.
        lt_goodsmvt_item-material = lw_goodsmvt-material.
        lt_goodsmvt_item-plant    = lw_goodsmvt-plant.
        lt_goodsmvt_item-stge_loc = lw_goodsmvt-stge_loc.
        lt_goodsmvt_item-move_type = lw_goodsmvt-move_type.
        lt_goodsmvt_item-entry_qnt = v_qnt.
        lt_goodsmvt_item-costcenter = lw_goodsmvt-costcenter.
        APPEND lt_goodsmvt_item.
      ENDIF.
      v_prev_count = v_head_count.
      ENDLOOP.
      PERFORM bapi_upload.
    *&      Form  bapi_upload
    form bapi_upload .
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
      EXPORTING
        goodsmvt_header             = s_goodsmvt_header
        goodsmvt_code               = gm_code
    *   TESTRUN                     = ' '
    * IMPORTING
    *   GOODSMVT_HEADRET            =
    *   MATERIALDOCUMENT            =
    *   MATDOCUMENTYEAR             =
      tables
        goodsmvt_item               = lt_goodsmvt_item
    *   GOODSMVT_SERIALNUMBER       =
        return                      = lt_return.
            PERFORM commit_work TABLES lt_return.
            CLEAR : lw_goodsmvt, s_goodsmvt_header.
            REFRESH: lt_goodsmvt[], lt_goodsmvt_item[].
    endform.                    " bapi_upload
    *&      Form  commit_work
    *       text
    *      -->P_LT_RETURN  text
    form commit_work  tables   p_lt_return structure bapiret2.
      IF NOT lt_return[] IS INITIAL.
    *error handling
    loop at lt_return.
    CALL FUNCTION 'FORMAT_MESSAGE'
    EXPORTING
       ID              = lt_return-id
       LANG            = sy-langu
       NO              = lt_return-NUMBER
       V1              = lt_return-message_v1
       V2              = lt_return-message_v2
       V3              = lt_return-message_v3
       V4              = lt_return-message_v4
    IMPORTING
       MSG             = lt_return-MESSAGE
    EXCEPTIONS
       NOT_FOUND       = 1
       OTHERS          = 2.
    WRITE: lt_return-id, lt_return-message, lt_return-message_v1, lt_return-message_v2,
                 lt_return-message_v3, lt_return-message_v4.
          CLEAR lt_return.
        ENDLOOP.
      ELSE.
    * commit work
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    *   EXPORTING
    *     WAIT          =
       IMPORTING
         RETURN        = lt_return.
    WRITE: lt_return-id, lt_return-message, lt_return-message_v1, lt_return-message_v2,
                 lt_return-message_v3, lt_return-message_v4.
          CLEAR lt_return.
    endif.
    endform.                    " commit_work

  • Scheduled finish date for process orders not updating in BW

    We are having problems with the scheduled finish date (GLTRS) for process orders. When the process order is already released, changes done in R/3 on the scheduled finish date will not result to a delta hence data in BW is not updated. Table AFKO, where data is coming from, is always updated with the changes though. 2LIS_04_P_MATNR is used in extracting the data.
    Has anyone experienced the same problem? We are looking for possible ways on how to have a delta whenever there are changes on the process order even after it is already released.
    Any help would be greatly appreciated...

    Hi Donna,
    If I've understood your problem correctly, you can increase the load frequency as Sriee has pointed out.
    If you want latest data frequently and if you are on BI 7.0 then you can look at Real Time Data Acquisition(RDA)
    Regards,
    Tom.

  • Specific order not updated in MI

    Hi,
      I have a PM order for which no update (in description, operation or anything else...) that we do in R/3 PM can reach middleware. It's linked notification updates reach MI with no problem. All other orders update work just fine as well. Only this given order is not updated in MI.
    I thought that it was F.M. MAM30_001_CHANGE that would be called to update it in middleware, but it is not used. What F.M. is used to update order in middeware?
    Is there anybody that could give me a hint about my issue?
    Thanks
    Davy

    This may be due to schedule line category in the sales order ->item level.
    In t.code VA03, enter the sales order number. Then highlight line item and click on schedule lines for items button on the bottom. Find the schedule line category derived for the item under schedule line category column.
    Then go to t.code VOV6. Select the schedule line that you found in the sales order and click on details button. Under transaction flow, you will find Req/Assembly field, which may NOT be checked in your case. If this field is not checked, then the requirement will not be passed to MRP.
    If this is checked and still you dont see the details in MD04, then run report SDRQCR21 in SA38 and check again.
    Regards,

  • GR for Production Order, not updating Stock

    Hi All,
    Issue:
    I am posting a GR for a production order, but the stock qty is not getting updated. I checked in MB51, i find the document being posted, but in MMBE the stock is not updated. In the system, there is 2 settlement profiles, one which allows settlement on material & the other only on G/L or Cost Center. I find this issue only when i create orders which have settlement receivers as G/L or Cost Center, also in MB51 i find that the sloc field is blank, even though it is maintained in the order & the same is seen when i receive via MB31.
    Await your inputs as to where i need to check to resolve this issue.
    Regards,
    Vivek

    Hi Prasobh,
    I believe your pointing in the right direction. My suspicion is on similar lines.
    A brief backdrop:
    Order is created, whose settlement is to be done on a G/L acct, the settlement profile does not allow settlement onto material & hence in the GR tab, the GR non-valuated indicator is ticked. I manually ticked the GR indicator to post GR via MB31.
    In MB51 i find the material document, but what is interesting is, the storage location field is blank, even though the order contains this value, which was later seen during MB31 posting as well.
    But a similar order has been created in the legacy system with the same parameters as above & i find the stock to be updated.
    So i suspect, it is something to do with the account determination, which is not allowing the quantity updation to take place, because of the GR non-valuated tick in the order header.
    Hope i was able to put across the issue to you in a clear way.
    Regards,
    Vivek

  • Configuration data on sales order not update with idoc ORDERS05

    Hi All,
    I'm trying to post Inbound ORDERS05 to create a sales order with configuration data. In particular i'm using the messsage type ORDERS, process code J3AA (identification J_4A_IDOC_INPUT_ORDERS).
    On the IDOC tree, segments E1CUREF,E1CUCFG,E1CUINS,E1CUVAL are correctly valorized.
    It is creating the order but not updating the configuration data, can someone please let me know if there are other fields/Segments that need to be populated in order to get the config updated in the sales order ?
    Thanks
    Piergiorgio

    Hi ,
    I am facing similar issue ( Configuring data in orders idoc )
    Please give  your inputs if your successfully
    Thanks,
    Raghu..

  • Production orders not updated in Live Cache

    Hi All,
    We are currently facing a strange issue. Planned orders created in APO are converted into Production orders in R/3. When they are CIFfed to APO, those prodcution orders are captured in Product view but are not updated in either /SAPAPO/OM16 or Production list (/SAPAPO/PPL1). In these two transactions the production orders are not visible but their respective planned orders are showing up.
    When delta report is executed for Production orders with "Consider Requirements/Receipts" as sub-object, these orders are captured with Error code 501 (Requirement/Receipt for the order exists only in R/3). When pushed to APO, these orders are updated in the Live Cache.
    Can anyone share your thoughts on what could be the root cause for this issue.
    Appreciate your thoughts
    Thanks,
    Sai

    Thanks Vikas and Senthil,
    Its not the issue with all the Production orders. The issue is with only few orders and we are in the process of tracing out the pattern.
    Our Primary concern is that the orders captured in the delta report are visible in Product view even without taking any action in CCR but are missing in OM16. Its only after taking the action those orders are visible in OM16.  I believe the data in the product view is read from Live Cache and the Live Cache contents are displayed in OM16. So, whatever orders visible in Product view have to be displayed in OM16 which is not happening.
    Please let me know if I am missing anything.
    Thanks,
    Sai

  • When Changing the quantity on a product the price displayed is not updating

    Hi all,
    When playing around with products on the front of the site we have noticed that the {totalprice} tag does not update if the quantity is changed, does anyone know why this may be happening or a fix for this issue?
    Thanks,
    Tom

    Hi Tom, On the large or small product layouts this price does not update. It is the total of 1 item. If you view the cart you will see the updated value based on multiple items.
    This is always been part of BC and not something that is broken.
    If you want the price to dynamcially change when you select 2,3,4 items on say the large product layout you will need to create some javascript.
    If you are refering to the cart - make a backup of the changes you have done and restore the cart to default. You will see the correct tags and working functionality. if that works compared to what you have carefull review your changes to find what you change to break the functionality.

  • Status of Prod Order not updated as delta - 2LIS_04_P_COMP

    Hi all,
    We are currently using 2LIS_04_P_COMP to update the data to BI. We have enhanced the DS to include the status of the prod order from table JEST. However it seems that this is not getting updated to BI server whenever prod order change its status. There is a delta queue when I see in tcode LBWQ and then I run the collective update in LBWE and then it will disappear from the queue which is correct. But when I see in RSA7, there is nothing and also I run the infopackage in BI server, it cannot get any data. Anybody has this issue before?
    Many thanks in advance.
    Regards,
    Janet

    The delta will only be captured if the Production Order actually changes. When a change is made to the status of an object in JEST, or JCDS, it doesn't register as a change on the object. Therefore, changes in Production Order status won't invoke a change on the source tables for Production Orders and therefore not get captured on the 2LIS_04_P_COMP or 0PRODORDER_ATTR DataSiources.
    If you need to capture the changes in status for Production Orders, you will have to create a generic DataSource that is sourced by the JEST table and join it with the Production Order in BW.
    Edited by: Dennis Scoville on Sep 17, 2009 8:16 PM

  • Playlist order not updating!

    I have been using my iPod Shuffle for several months to listen to podcasts, among other things. I know how to drag files in the playlist so I know what will play first.
    For some reason now, the playlist shown in iTunes (6.01) is NOT reflected on my iPod. This is driving me NUTS! I have tried restoring my iPod several times. After all files are copied back to the iPod, they play in some other order than the order shown in iTunes.
    I know how it's SUPPOSED to work. As I said, I have been using it to listen to podcasts for several months.
    Could there be a corrupt file on my system? I have had a system freeze. I have run scandisk and updated iTunes. Should I rebuild my library? What would be the easiest way to do that?
    Thanks,
    Tim

    Hi Tim,
    Take a look at this thread which covers this issue and explains how to set the play order:
    http://discussions.info.apple.com/webx?128@@.68bcfa2b
    Also, jmurray is right, podcasts always play first.
    Hope that helps,
    Sara.

  • Valuation Price for Material not updating in ME5J

    Dear All,
    I am getting one problem.
    If PR is created from Project while assigning material to activity it is not getting updated in ME5J.
    For service activities, value of service PR is getting updated in ME5J.
    Table EBKN having Field-NETWR-Netprice which is updating in Service PR but not in the case of Material.
    Table EBAN having Field-PREIS-Valuation price which is updating in for the case of material as well as pervice.
    Our Report for PR ME5J having filed NETWR which is updating in case of service only.
    How to see value of Material also in ME5J?
    It is critical issue and any input will be helpful for me to resolve the issue.
    Thanks & Regards,
    Sukhveer.

    Hi Krishnendu,
    Thanks for the reply ,  FI document is not getting generated.
    What could be the reason for it, as before it was working fine.
    Thanks
    Vivek Varun

  • Sales Order not updated in MD04

    Dear Gurus
    Sales order is not getting updated in MD 04 for few Materials and those materials are not relevant for MRP.
    Kindly help me in this regard
    Thnx
    MK

    This may be due to schedule line category in the sales order ->item level.
    In t.code VA03, enter the sales order number. Then highlight line item and click on schedule lines for items button on the bottom. Find the schedule line category derived for the item under schedule line category column.
    Then go to t.code VOV6. Select the schedule line that you found in the sales order and click on details button. Under transaction flow, you will find Req/Assembly field, which may NOT be checked in your case. If this field is not checked, then the requirement will not be passed to MRP.
    If this is checked and still you dont see the details in MD04, then run report SDRQCR21 in SA38 and check again.
    Regards,

  • Sched Line On Sales Order Not Updated with Network Date

    My client is using Assembly to Order (ETO) where the sales order creates the network and project. The client wants all project date changes reflected on the sales order since many prior custom programs have been developed to read sales order dates.  When the delivery date (network finish date) is moved out on the network (especially once any network activities are released) from the original requested delivery date on the sales order the scheduled line item is always updated correctly and the sales order dates match those on the project.  However, if the date is moved to any earlier date, the sales order scheduled date remains unchanged.  We are not using availability control since this is Engineer to Order.  Is there any configuration we are missing which is causing the sales order dates to not move inward but only outward to match the network? 
    Thanks for any direction you can provide.
    JB

    Thank you for the quick response Amaresh,
    Just for clarification-  the custom programs are only used to read dates from SD line items and feed them out to a portal for customers to see anticipated delivery dates.  They have no impact on date scheduling.  That said...we want to understand if this is normal SAP behavior that the date on the sales order is NOT moved earlier but is moved later when a network is involved or if we are missing some configuration settings.  I think this may be what you are saying but want to be sure we are on the same page.
    Thanks again.  I really appreciate any assistance we may get as we are at a loss.
    Very Best Regards,
    JB

  • Sort Key 0014 (Purchase Order) not updated in Assignment Field

    Hi SDN experts,
    I assigned Sory Key 0014 to one of my vendors, after which I tried to post a PO, GR and eventually the IR.
    However, upon checking the FBL1N report, system does not populate it with the Purchase Order Number.
    Any step I missed out?
    Also, the Purchasing Document number is empty. Shouldn't this be populated by the invoice document? (MIRO)
    Regards

    Hi
    In FBL1N, PO will not be displayed in the Assignment field just by giving Sort Key as Assignment Field. You need to implement BTE 1650 in FIBF and write your code to populate it. The logic why sort key of PO will not populate it , because from Version  4 onwards, R/3 aqllows, single Invoice Verification against Multiple PO. Even in the BTE Implementation, you will be able to populate only the First PO Line Item No only, if you do a single invoice verification against multiple PO of the Vendor.
    Regards
    Sanil Bhandari

  • Price List table not updated

    Hi All,
    I am facing a strange problem like below
    Say I have an item called "A"
    In "Base price" A's value is 100
    In  "sales price" A's value is 150.
    Now in "Period and Volume Discounts" for "A", for "Sales Price" there is following details in "Volume discounts for price list"
    For quantity 50 discount is 10   Special price   90
    For quantity 100 discount is 20  Special price   80
    For quantity 200 discount is 30   Special price  70
    Now if i select * from SPP2;
    it shows these values.
    But if i change the base price for A, or Sales price for A, all values get changed but in SPP2 it is not reflected!
    Regards,
    Sarkar R

    Hi
    have you ticked Automatic check for this item and this price in the special prices (discount for period)?
    Kind regards.
    Agustí

Maybe you are looking for