SAP renamed 'Purchase Order Data' tabs but it is not changed in menu bar

In VA01/VA02/VA03  transactions,  SAP has renamed the "Purchase  Order Data" tabs at header and item level to "Order Data" but the Goto > Header   and    Goto > Item    menu paths still have "Purchase Order Data" as the name.  This is inconsistent.  Is there an SAP fix for it?

Try wit this report RSLANG20
Best regards,
Mirek

Similar Messages

  • Additional field in the sales order header Purchase Order Data tab

    Hi,
    I want to add an additional field in the below screen:
    VAO1 > Go to > Header > Purchase Order Data >
    Under Sold to party section i want to add an additional field.
    Is this possible through configuration?
    Please let me know.
    Thanks in advance
    Edited by: Kase on Dec 20, 2011 7:06 AM

    Hi Kase,
    Check this below link it might be helpful for your issue
    sales order - Additional data B
    new fields in sales order
    Regards
    Pradeep

  • Tab Purchase Order Data not visible via CIC

    Hi All,
    I have a problem with displaying the tab Purchase Order Data via the Customer Interaction Centre. If I create an order via CRMD_ORDER then this tab is visible, only not via the CIC.
    In tcode CRMV_SSC we use the folling for other tabs like Partner, Sales, etc.:
    Screenprofiletype TSAL
    Screen Profile: ZRAP
    Tabstrip Panel: HDTSAL
    Programm: SAP_LCRM_TSALES_UI
    With the combination above the tab Purchase Order Data (function code SALES_PURC) is not visible in the dropdownlist with available functioncodes. The system indicates that this functioncode is not available in programm SAP_LCRM_TSALES_UI.
    Questions i have are:
    Is SALES_PURC the correct functioncode for the tab Purchase Order Data?
    How can i make this tab visible via the CIC?
    Regards, Sander

    Hi Michael,
    SAP is designed to send a XML file from a purchase order or any other document type (delivery, sales order, transportation, etc) with very little effort. This means, that SAP delivers already a solution for that which the customer needs to set up.
    To create a PDF file actually requires quite a lot of custom development, specially to comply to the layout the customer requires. This is usually a task that goes from the testing team to the development team back and forth a few times before it is accepted.
    Regards

  • Reference document missing in purchase order data

    Dear Experts,
    When i checked with material document with 105 movement type,i found reference
    103 material document is missing in material document item data in Purchase order
    data tab.in the MSEG table also reference document is not updated.please suggest
    me.
    Thanks in Advance,
    Varun

    madhu varun tirupati wrote:
    Dear Experts,
    >
    > When i checked with material document with 105 movement type,i found reference
    > 103 material document is missing in material document item data in Purchase order
    > data tab.in the MSEG table also reference document is not updated.please suggest
    > me.
    >
    > Thanks in Advance,
    >
    > Varun
    Hi,
    Check whether GR-Based IV is checked in PO Invoice tab, if this is not checked then it wont update MSEG Table. Check it out.
    Thanks

  • Updating Purchase Order data in VBKD table

    Hello,
    We are trying to update Purchase order data in VBKD table for Sales Order at Item level. When sales Order is created, VBKD has a default record with VBELN = 'sales order number' and Item = '00000'. We want to update BSTKD_E field with Purchase order number for VBELN= 'sales order number' and Item = '00010'.
    We wrote our logic in USEREXIT_SAVE_DOCUMENT_PREPARE and USEREXIT_MOVE_FIELDS_TO_VBKD in MV50AFZZ to append new entries in XVBKD with VBELN= 'sales order number' and Item = '00010'. But in this case Sales order is not created with UPDATE TERMINATED message. We are not sure if we can append a new record in XVBKD.
            wa_xvbkd = xvbkd.
            wa_xvbkd-posnr = wa_xvbap-posnr.  "00010
            wa_xvbkd-bstkd_e = vbkd-bstkd.   "PO no
            wa_xvbkd-posex_e = wa_xvbap-posnr. "Purch. order item no
            wa_xvbkd-updkz = C_I.
            APPEND wa_xvbkd TO xvbkd.
            CLEAR wa_xvbkd.
    Please advice the suitable way to have a Purchase Order item level data in Sales Order.
    Thanks
    Rohit

    Hi,
    You can try these FM to update info record.
    ME_DB_UPDATE_INFORECORDS
    ME_UPDATE_INFORECORD
    ME_UPDATE_INFORECORD_COND
    ME_UPDATE_INFORECORD_PD
    Check the sample code on BAPI_PO_CHANGE
    http://www.sap-img.com/abap/sample-abap-code-on-bapi-po-change.htm
    Regards,
    Shiva Kumar

  • Purchase order date posting problems

    Hi all,
    I have done an interface to post purchase/ sales order into sap. ive populated fields correctly into the segments and executed the fm. its posting all the data except the purchase order date in the header. i dont know why its doing dat. the field is populated into the segments and i can see it. but its not getting reflected in the order created .. can somebody help me with this. ive used date segment e1edk03 qualifier 22 field is iddat.
    thanks,
    kishore.

    Hi,
    Im using orders 05.. FM idoc_input_orders
    Create Document header date segment - E1EDK03
    *. I.e. set header level required delivery date
      e1edk03-iddat = c_edi_iddat_002.
      e1edk03-datum = date_required.  "Set the date required
      PERFORM add_segment USING c_segnam_e1edk03 e1edk03.
    Header Level Customer purchase order date
      e1edk03-iddat = c_edi_iddat_022.  " default value 22.
      e1edk03-datum = cust_po_date.
      PERFORM add_segment USING c_segnam_e1edk03 e1edk03.
    Header Level Pricing Date
      e1edk03-iddat = c_edi_iddat_023.
      e1edk03-datum = pricing_date.
      PERFORM add_segment USING c_segnam_e1edk03 e1edk03.
    Wat i could observe from fm idoc_input_orders fm , fm is not posting in the purchase order date for identifier 22.. u can have a look at it if u want.. include LVEDAF5W
    is there any way to post this date plz
    thanks

  • Regarding LSMW -- Purchase Order Data

    Hi Friends,
    I have one requirement i.e purchase order data need to be upload through LSMW via Direct input method.
    =============
    pls find the belwo flat file structure
    old_PO           material            price            qty
    P123              M111                  10               1
    P123              M222                  10                1
    P123              M333                  20               1
    ===============
    Normally if I upload same data into SAP, it will create three purchase orders with different SAP numbers.
    I want if old_PO number is matches with the previous record all the materials should be in single transaction and single Purchase order should be created.
    Can any body help how to resolve this issue. This is very urgent.
    pls explain in detail. I am using LSMW. I don't have no other option.
    =====
    please don't post any junk amswers.
    =====
    Thanks in advance

    Hi Raghunath,
    Don't think that this reply is junk one.I cannot explain you in detail but try like this.
    In the fifth step of LSMW,You can find Global data definitions & Processing times.
    In any of these you can just fetch the values from database with reference to flat file data like..
    select PO from ...where PO = source-PO.
    if sy-subrc EQ 0.
    skip_transaction. Using this function you can skip this record
    endif.
    Award points if useful.
    Thanks,
    Ravee..

  • Change Purchase Order date as per MRP Run

    Hi SAP Gurus,
    My scenario is like that, MRP for a Material is run last Month and Purchase Requisitions are converted into Purchase Order, but there is no Good receipt for this purchase order. So my requirement is that when i run MRP for current Month. It will change the Date of same Purchase Order. Is this thing is possible through any enhancement /standard SAP scenario. Please give me a solution

    Hi
    MRP will not change the Purchase order dates since it is a firmed receipt element.
    You can achieve your requirement like this,
    1. You run MRP for the current month, if the PO delivery dates are not matching with the required date, system will give exceptional message with rescheduling dates.
    2. You can make a custom program to change the PO delivery date as your rescheduling date or whatever logic you want.
    Regards
    Bala

  • Purchase Order Status Tab

    Hell gurus,
    We have a purchase order where all of the line items have been marked for deletion except for one, however the purchase order status tab "Ordered" amount is not being updated.  However, the to be delivered and to be invoiced on the tab are correct as they read 0.
    The status tab is definitely not retaining the entired amount of the original purchase order.  Has anyone encountered this?

    Hi,
    please review the following information in SAP Note No. 456691 as
    copied below:
    18. Question:
    When are the header conditions updated if a purchase order item is
    deleted?
    Answer:
    If a purchase order item is deleted, the item is marked as 'statistical'
    (field EKPO-STAPO = X) and the change is reflected in the header
    conditions.
    However, if for the item the final invoice indicator(EKPO-EREKZ) or the
    inward delivery completed indicator (EKPO-ELIKZ) is set, the item is not
    marked as 'statistical' (EKPO-STAPO is not set) and thus the header
    conditions are not updated.
    I hope this helps you
    BR
    Nadia Orlandi

  • Upload Purchase order text tab using BDC

    Is it possible to upload Purchase order text tab in material master (tcode mm01) using a BDC.
    If so pls tell me how to upload the same, what is the field name of the box.
    Regards,
    Senthil

    u need to use READ_TEXT or SAVE_TEXT or WRITE_TEXT or COMMIT_TEXT to upload text into SAP.

  • Doubt in uploading purchase order data using BDC

    Hi friends,
    how to upload purchase order data.
    1) In both BDC and BAPI which one is preferable?
    2) for suppose if it is through BDC,  how to use? what are the transactions that we can use(SHDB, ME21N,ME21)?
    3) To execute the job in background, is it possible for both call transaction and session method.
    Thanks in advance
    Sreenivas k

    It really depends on the number of records you have. Still for a set of 5,000 records my answer to your questions will be:
    1) In both BDC and BAPI which one is preferable?  - <b>Go with BDC</b>
    2) for suppose if it is through BDC, how to use? what are the transactions that we can use(SHDB, ME21N,ME21)? - <b>Yes, its SHDB for recording, SE38 for abap program and ME21 for PO. Avoid SAP Enjoy transactions for recording as you may end up having problems wiht it.</b>
    3) To execute the job in background, is it possible for both call transaction and session method. - <b>If you use call transaction method then you have to schedule the job to run in background or simply run it through F9 instead of F8. In case of session method you can chose to process the session in background. However  I would suggest you go with BDC Session method for this.</b>
    - Guru
    Reward points for helpful answers

  • Purchase Order date vs Invoice date

    Hi to all.
    In our system we run t-code me21n to create purchase order and later on we run t-code MIRO, MIR7 etc. to post incoming invoice. My question is how do I prevent system from letting end users enter invoice date that has earlier date than purchase order? Let's say purchase order was created on December 3-rd, but end users enter as an "invoice date" in the t-code MIRO December 2-nd and system lets it go through, not even warning message. What I want to accomplish is to create "E" message and not let end-users enter invoice date earlier than purchase order date.
    Help is sincerely appreciated.
    Regards,
    Nazim
    Edited by: Nazim Gasimzade on Dec 4, 2008 3:32 PM
    Edited by: Nazim Gasimzade on Dec 4, 2008 3:35 PM

    Thanks for your reply.
    Our R3 system is designed for government funded organizations. The issue is that government funded organizations are not supposed to have PO entered in the system until they are provided with funds which are quite often get delayed because of all the paper work that has to take place. Suppliers know about it and quite often they supply goods to budget organizations even before PO are in place. Once the budget organization receives the funds that they can spend, they enter PO details and invoice details but it turns out that invoice date is earlier than PO date. At very least we would like to have our system give a "W" message.
    Regards,
    Nazim

  • Purchase Order history tab. DCin line.

    Hi All
    Can you please explain what is the DCIn line on purchase order history tab under the same number as IR-L?
    I assume its related to condition record for delivery costs. Is it so?
    Does DCIn somehow correlates with DCGR?
    How can i re-produce in the test creation of DCIn line?
    Thanks
    Best Regards
    Andrey

    hi
    this is nothing but the LIV of freight cost
    if you are getting this with same number as the IV  then ,you might have posted both freight and GR cost at same time
    in miro u have options at right middle
    >>goods/service items
    >>planned delivery cost
    >>goods/service items+planned delivery cost
    you might have select last option so that you will get same invocie number for both
    if you use 1 or 2  you will get separate numbers

  • Purchase orders dates issue

    Hi All,
    Somehow MRP Pushing the dates to future date i.e to year 2015. Even though the dates changed manually after an MRP run it changing back to year 2015.
    Please advise, how to approach to solve my issue.
    Thanks in advance.
    Quantum.

    I'm not sure what your question is, but MRP will not change automatically a firmed element, e.g. purchase order, or a firmed purchase requisition.
    Could you clarify?

  • Purchase order data base

    I need help.
    I have a database that contains all purchase orders
    I'd like to be able to create a report that shows only the most recent order for each supplier
    ordered by date.  Sounds simple but I have been struggling with this for awhile.
    Thanks

    Create a group on the supplier name
    create a group on the purchase order date - ascending order
    place the output fields you want to see on the report in the footer section of the purchase order date.
    Suppress the purchase order date header, the detail section and the supplier name footer.
    You may need to do a 'top N' group sort to get it to sort by date, as the instructions I'm giving would put it in Supplier order.
    Only the last purchase order data will display on the report.  If you want to include Supplier specific information, such as address, phone or customer number you can place those fields in the Supplier group header.
    This report will pull in all the data but only display the last record for each supplier's last purchase order (assuming they only have one purchase order in a day...if you have more than one in a day you may want to include a purchase order number group and move all the data into that footer).
    If you're going to summarize, say, try to get 'total dollars for month', you'll need to use a 'running total' and specify the dates to be used in the Evaluate section formula.

Maybe you are looking for

  • Delete Remain Open Quantity in PO Item

    Hi SAP community, My Order quantity in PO item is 100, and User have GR 90. Left with 10 units to be good receipt. Now user what to cancel the 10 unit, so that they can close this PO how can the user cancel the 10 unit remain open in po ?

  • Office 2013 Pro Plus Activation not taking ?

    Hello All. I'm having issues with the license I received from my CTO.  It's a legit license from Microsoft (Downloaded straight from the site). But the activation goes nutty no matter what I do. Details: Windows 7 Pro 64-Bit Office Pro Plus 32-Bit Pr

  • Windows 8 - Resetting InDesign preferences

    Hi I'm used to resetting InDesign (another CS products) using Shift+Ctrl+Alt. However, having recently changed to Windows 8, this doesn't seem to work. I can still reset the preferences manually and clear the recently used items list manually but not

  • 'Hint Movies' automator action problem

    Hi there, I've been trying to come up with a workflow to hint some movies - but I can't get Automator to run the action properly. I want it to grab a bunch of MP4 files, hint them, and save them somewhere. Here's my workflow: Ask for Finder Items * -

  • Oracle express and jdbc

    can i use oracle 10g express edition and jdbc connector to connect to it through java. i read on the comparison list that 10g express doesn't support java..what does it mean??