Line item net price not updated in overview screen net price&line item

Hi ,
We have down payment order with 10 line items
In orders with billing plan, the sales line item net price, if we entered manual condition price (ZPNP) ,gets updated in item condition net value. But it does not simultaneously gets updated at once in 1) Sales order overview screen net value 2) Billing plan header 3)Sales order overview screen line item condition  net value. Updation at these three places happens only after clicked on header conditions.
However, in case of the last item in the sales order, the updation happens simultaneously in all the 3 places i.e. 1)    item condition net value. 2) Sales order overview screen net value 3) Billing plan header 4) Sales order overview screen line item condition net value.
This is also true for the order with only single line item. We are faced a information popup message every time we change the item net price u201CItem 000100(100 is last line item number in sales order) exists already; the entry ignored u201C. This happens in case of all line items except the last line item. Also this does not happen in case where there is a single line item in order.
Our requirement: The moment the net price of an item is change manually, it should get updated at all the 4 places mentioned above like it does in case of the last line item.
Kindly help me to fix this problem.
Regards,
Adikesav

Hi,
Can u elaborate ur query ?
By this FM you cannot create a SO . Use FM --> BAPI_SALESORDER_CREATEFROMDAT2
Regards,
MAdhukar Shetty

Similar Messages

  • PO item change is not updated after Delivery completion

    Dear All,
    PO item change is not updated in the PO at the completion of the delivery.for a particular line item. In our QA system, its updated but client is facing an issue with the production system. Pls check the attached screen which I got from QA. There is no such log in the production system. Kindly help me to have a solution for this.
    Regards
    Sujith

    Hi Dev,
    After we post the GR for a PO line item, PO history is updated (line) and at the same time that particular change log is available under PO line item. But in production system, said log is not updated after GR is completed fully.
    Rgs
    Sujith

  • Incoterms on Item level is not updated on STO.

    Issue: they have created a STO with wrog incoterm, now the issue is that the Incoterms on PO--> Item level is not updated if Incoterms on Header level is changed. I suggested them to change incoterm on item level manually, but user is saying the problem is that SAP doesn't change automatically Incoterms on item level if Incoterms on Header level are changed??
    What user is saying..Is this correct? or any thoughts/solution to fix this issue?
    Can anyone suggest me on this?
    Thanks & Regards
    Suresh Babu

    HI,
    Try this link
    How Incoterms gets defaulted for STO
    Regards
    KK

  • ME31K Net Price not Update

    Dear All,
    In a service contract ME31K net price(ESLL- NETWR) of service not updated.its shown zero value in gray field on every time.
    We are using standard procedure for service contract :MS0000".and also i have check PRS condition but it doesn't work.
    I have also read many thought relelated to same issue but not getting proper answer.
    Please help on priority basis.
    Thanks & Regards,
    Dishant Mistry

    Dear Dishant,
    Just a clarification, are you sure that you are talking about ESLL- NETWR, since usually we maintain price for service contracts in ESLL-TBTWR (Service level), so that automatically it calculates the net value for the respective service and updates in ESLL- NETWR.
    Note: Once you maintain the value in ESLL-TBTWR, the program would some up all the service value for the item and displays in EKPO-NETPR.
    Please find the below screenshots for your reference.
    Please let me know, if you require any clarification.
    Thanks & Regards,
    Narayana N

  • BAPI_ACC_DOCUMENT_POST line item text SGTXT not updating

    Hi,
    We have copied following LSMW for opening balance upload from ECC 5  to ECC 6.
    When we upload through LSMW (BAPI_ACC_DOCUMENT_POST ) which is used for uploading opening balances of G/L accounts field Long Text (Tech Name: ITEM_TEXT) not updating.
    Form Vendor and Customer Opening balances LSMWs  Long Text (Tech Name: ITEM_TEXT) field of G/L line item is not updating. According to my observation data field  SGTXT of BSEG table. not getting updated through this LSMW. I have tried same transaction through  T Code F-02 and it is updating field SGTXT of BSEG  table. As per confirmation from business same LSMWs  are working fine in ECC 5.
    Jigar

    hi experts,
    no body faced this situation?
    Any suggestions ?
    kindly give me any inputs
    thanks & regards,
    Raghul
    Edited by: Raghul Gandhi on Aug 11, 2009 11:32 AM
    Edited by: Raghul Gandhi on Aug 11, 2009 12:56 PM

  • XVBAP has the new line item but does not update Sales Order

    Hi
    I need to update the sales order with a new line item when the line item has a base unit of measure as the sales unit. I need to then convert the base unit to sales unit with a whole figure and the rest can be in the base unit.
    I am able to see the update in the xvbap but the line item doesn't get updated.
    I am puting this code in a perform within
    MV45AFZB  within   Form  USEREXIT_CHECK_VBAP
    But I guess I am doing something wrong can someone please take a look at it and tell me what is wrong with the coding.
    *&  Include       ZSD_CREATE_NEW_LINE_ITEM              *
    *&      Form  create_new_line_item
          text
    -->  p1        text
    <--  p2        text
    FORM CREATE_NEW_LINE_ITEM .
      CONSTANTS: C_MEINH LIKE MARM-MEINH VALUE 'CSE'.
    Variables Used
      DATA: WS_WMENG LIKE VBEP-WMENG.
      DATA: INPUT  LIKE VBAP-KWMENG,
            WS_EA  LIKE VBAP-KWMENG,
            WS_CSE LIKE VBAP-KWMENG.
      DATA: WS_MVKE_VRKME LIKE MVKE-VRKME.
    Internal Tables and Structures
      DATA: WS_XVBAP LIKE XVBAP.
    DATA:
    it_vbap  LIKE vbap OCCURS 0 WITH HEADER LINE,
    it_vbep  LIKE vbep OCCURS 0 WITH HEADER LINE,
    it_xvbap LIKE vbapvb OCCURS 0 WITH HEADER LINE.
      DATA: BEGIN OF WS_MARM,
              MEINH LIKE MARM-MEINH,
              UMREZ LIKE MARM-UMREZ,
              UMREN LIKE MARM-UMREN,
            END OF WS_MARM.
      CLEAR WS_MVKE_VRKME.
      SELECT SINGLE VRKME INTO WS_MVKE_VRKME
        FROM MVKE
        WHERE MATNR EQ XVBAP-MATNR
        AND   VKORG EQ XVBAK-VKORG
        AND   VTWEG EQ XVBAK-VTWEG.
      IF VBAP-VRKME <> WS_MVKE_VRKME.
       LOOP AT XVBAP.
          SELECT SINGLE MEINH UMREZ UMREN
            FROM MARM
            INTO WS_MARM
            WHERE MATNR = VBAP-MATNR
            AND   MEINH = WS_MVKE_VRKME.
          IF XVBAP-MEINS <> WS_MVKE_VRKME.
            IF NOT XVBAP-KWMENG = 0.
              WS_WMENG = XVBAP-KWMENG / WS_MARM-UMREZ.
              IF WS_WMENG > 1.
    This means that the line item needs to be split into CSE & EA
                  INPUT  = XVBAP-KWMENG.
                  WS_EA  = INPUT / WS_MARM-UMREZ.
                  WS_CSE = WS_EA.
                  WS_EA  = WS_CSE * WS_MARM-UMREZ.
                  WS_EA  = INPUT - WS_EA.
    Now we have the qty. split into EA & CSE. Now to
    assign it to xvbap
                  XVBAP-KWMENG = WS_EA.
                  XVBAP-VRKME  = WS_MVKE_VRKME.
              READ TABLE XVBAP WITH KEY POSNR = XVBAP-POSNR.
                MODIFY XVBAP INDEX SY-TABIX.
                  WS_XVBAP = XVBAP.
                  WS_XVBAP-KWMENG = WS_CSE.
                MOVE-CORRESPONDING WS_XVBAP TO XVBAP.
                INSERT XVBAP INDEX SY-TABIX.
              ENDIF.
            ENDIF.
          ENDIF.
      ENDIF.     " IF xvbap-vrkme 'EA'.
    ENDFORM.    " create_new_line_item

    Hi Clark,
    Pls check the Include MV45AFZZ instead of the one which you are using . Here in this include MV45AFZZ you can have access to the Header and Line items data .
    Here in this include
          FORM USEREXIT_SAVE_DOCUMENT                                   *
          This userexit can be used to save data in additional tables   *
          when a document is saved.                                     *
          If field T180-TRTYP contents 'H', the document will be        *
          created, else it will be changed.                             *
          This form is called at from form BELEG_SICHERN, before COMMIT *
    form userexit_save_document.
    Endform.
    Either you can write the code you want to update the XVABP table here or you can use the form .
          FORM USEREXIT_MOVE_FIELD_TO_VBAP                              *
          This userexit can be used to move some fields into the sales  *
          dokument item workaerea VBAP                                  *
          SVBAP-TABIX = 0:  Create item                                 *
          SVBAP-TABIX > 0:  Change item                                 *
          This form is called at the end of form VBAP_FUELLEN.          *
    form userexit_move_field_to_vbap.
    endform.
    This are the 2 performs in this include where you can do you code and it will defnitely solve your problem.
    Good Luck to you . Let me know if your problem get solved.
    Thanks & Regards,
    Naidu.

  • Net Price not Updating Using BAPI : BAPI_CONTRACT_CREATE

    Dear Experts,
    I am facing an issue while creating CONTRACT using the bapi: BAPI_CONTRACT_CREATE. I am creating the Contract based on data from my excel sheet. And we are maintaining the INFO RECORDS for the same materials.
    In the excel sheet we are providing the NetPrice (NETPR) and creating the Contract. My issue is " instead of taking the Net Price from the excel it is taking the Net Price from Info Records". For Example, if for a Particular material the Net Price in our excel file is 125, after bapi execution, the net price is updating as 100 instead of 125 in Contract Creation( ME31k-ME33K). In the Info Records we are maintaining this net price(100) for that material.
    Thanks in Advance for your response.
    Regards,
    Prasad

    you can use BAPI_CONTRACT_CREATEFROMDATA
    * Create Contract Order Number [BAPI_CONTRACT_CREATEFROMDATA]
      CALL FUNCTION 'BAPI_CONTRACT_CREATEFROMDATA'
           EXPORTING
             contract_header_in      = header
             convert                 = 'X'
           IMPORTING
             salesdocument           = v_order
           TABLES
             return                  = t_return
             contract_items_in       = itab_item
             contract_items_inx      = itemx
             contract_partners       = t_partners
             contract_conditions_in  = t_conds
             contract_conditions_inx = t_condsx
             contract_data_in        = t_contract
             contract_text           = t_texts.

  • Invoice correction request (net value not updating)

    Hi guys,
    I have a problem when creating an Invoice correction request (RK).
    When I change the Target quantity in the item (L2N), the Net value is not updated. So I have to go to Conditions and Carry out new pricing.
    Any idea to fix this.
    Best regards,
    Eduardo

    Hi Eduardo
    Check the copy control  VTFA , what is the pricing type it is being used and what is the quantity field maintained  -ve or +ve or kept blank .
    Even Go to item data->conditions tab and click on analysis you will know the problem why it is not changing the gross price
    Regards
    Srinath

  • FMCN - Open Item upload Commitment not updated in case of Service Entry

    Hi All,
    I am trying to use FMCN to update commitment and fund centers in open PO's and GR's, however where there is material PO's it updating perfectly but if there is Service PO then it is not updating in GR/IR account with non budgeted commitment Item.
    Here in this client what they have done whenever they create the service entry sheet same time GR (MIGO) entry will get generated and then user can do the MIRO for the same.
    Please help me to update the same with Non Budgeted commitment.
    Regards,
    Alok

    Hi
    check this table also
    ESLB Service Type Header of Standard Service Catalog
    ESLH Service Package Header Data
    ESLP Service Item
    ESLL Lines of Service Package
    i thing this only link between  purchase table like Po table  and service PO table
    so we can link service po logic for service Po
    Regards
    kailas ugale

  • Last Evaluated Price not updating

    Hi,
    I have a very wierd issue which I have never seen before as explained below. The system is 8.82 PL 6.
    Problem: The Last Evaluated price (LEP) is not updating on Item Master Data (IMD) under certain conditions.
    Explanations:
    1. All items have a valuation method of FIFO
    2. For a particular item let us call it 101381, if I open the IMD, select LEP, the price shows up as 516.80
    3. There are definitely Goods Receipts for this item with a lower price than 516.80
    4. I run the 'Inventory Valuation Simulation Report' with blank From-Item and To-Item, i.e. for all items, calc. method as moving average, Posting date blank and WHs checked off
    5. There are thousands of items in our IMD but obviously, the report that comes up just shows the first item on our IMD 100000, and if we want to see 101381, we need to click the green right arrow 1381 times. So instead of scrolling over, I simply click OK to close this report, assuming that the LEP for 101381 has been updated
    6. I once again open the IMD for 101381 and choose LEP. Strangely, the LEP price still shows as 516.80!
    7. Then I run the report for a block of Items say from 101380 to 101390, keeping all other criteria the same as before
    8. This time, I click the green arrow 10 times to scroll from 101380 to 101390 and then clck OK to close the report.
    9. Now if I open the Item 101381 and check the LEP, it has been updated to 510.78!!!
    10. The same thing happens, i.e. the LEP gets updated if I simply select just 1 item i.e. FROM 101381 TO 101381.
    Why does the LEP not get updated automatically when all Items are taken at once? There is no way the users are going to click the green right arrow 20000 times just to refresh the LEP on all 20000 items. I am not sure if this is a bug in this PL?
    I have tested this extensively and any positive suggestions will be greatly appreciated.
    Thanks,
    Ajay Audich

    Hi,
    Please refer SAP note:
    1952446 - Inventory audit report updates item's last evaluated
    price
    Thanks & Regards,
    Nagarajan

  • Items on desktop not updating

    The items on my desktop are not updating. For example, if i save a word file to the desktop, it will not appear on the desktop unless i restart. I can see it through the finder though. Any suggestions?

    Try trashing the Desktop preference file and then log out/in.
    The file is here:
    /Users/you/Library/Preferences/com.apple.Desktop.plist
    If that doesn't work, try downloading OnyX and use it to clear out your user cache files.

  • Net Value not updated

    Hi,
    I have created a pricing procedure with a few tax conditions but somehow while using this procedure in the Sales order I see that the net value of the order is not getting updated.
    I am able to add value for the tax conditions but the net value isnt getting updated.
    Please advise.

    Net value = Total before taxes
    So, when you add new tax conditions or change values in the tax condition record the Net value will not change but Tax values and the Invoice totals (Gross value) will change.
    Hope this helps, if not, provide us more details in order to understand your problem better.
    Thanks.

  • Std price not updating

    Hi,
    When I am doing cost/mark/relaese for a material. The planned price in the mat master is being updated. But, the std price remains the same. Please help.
    Regards,
    Umesh

    Hi Umesh...,
    Check where Posting period/fiscal year for your company code. if posting period/fiscal year is not same as the costing run then you can't update the std price.
    To check it go to T.cod CK24 give the period and fiscal year the Click Mark allowance then you will directed to "Price update:organisational measure screen"
    check whethere any error is there against your company code if so then click on your company code and then select corresponding costing variant and costing verions in the popup scren and same.
    error mark will go. now you can update price for material.
    regards.

  • Balance sheet items profit center not updated

    In ECC 6- in 3KEI- we have given profit center derivation for balance sheet items through business area-
    Though derivation rule is given it is not updating profit center at the time of posting to balance sheet items
    it has worked perfectly in 4.7EE-
    How to update profit center for balance sheet items in ECC6
    Thanks in advance
    joseph

    Hi Joseph,
    Please go through the link. It is cristol clear document for your requirement.
    http://help.sap.com/bp_bblibrary/500/Documentation/J08_BPP_05_EN_KO.doc
    Regards,
    Satish Muvva.

  • Valuation Type Price not updating in the PR

    We are using two valuation types for a material.
    Valuation type(New)in Material master has some price value in it Ex: 50 dollars per unit and Valuation type (Expense) is with Zero value.
    While creating a Purchase Requisition,default valuation type(New) gets updated and if we change the valuation type to (Expense) in the PR,there is no change in the Price.Actually the price should be Zero as defined in Material Master.
    Why the price is not updating ????
    Apperciating ur immediate response.

    Hi,
    During PR creation, Valuation Price is to be maintained derogatorily and generally it gets defaulted from Material Master.
    Once the Valuation Type "NEW" is getting defaulted in PR then it is copying the price from this and after changing the valuation type it doesn't change the Price since the valuation price obligation has already been fulfilled.
    So if you will stop defaulting the Valuation Type "NEW" for the material then it will ask Valuation type in PR and then it will pick up the price for that Valuation type.
    Default Valuation Type is maintained in OMWC
    Go to OMWC, there click on "Global Categories", here position cursor on the Valuation category (Maintained for Material Master) and click on "Change" button, here check have you entered any Valuation type "NEW" in field "Default: val.type ext.procure."

Maybe you are looking for