Purchae order

Hi...can anyone define the correct meaning of vendor..can a customer also be a vendor..
I am in trasaction me2n for purchase orders. now in that purchase order my material number and the vendor material number is different..whyy is that..that is the difference...and also could anyone tell me how can i fine sales org from a purchase order number.

Tom,
see help.sap.com for definition of vendor how SAP it defines. A customer could be a vendor , buys something from the company reassembles or puts them differently together and resells it to your company.
Your material number is in most of the case different from the vendor material number, because you and your vendor have its own number ranges defined. So you may sell the desk as article 4711 but from your vendor its number 1113. The sales org should be in the header of your purchase order.
Regards,
Juergen

Similar Messages

  • No posting rules exist for account key while doing purchae order.

    Hi SAP Expert,
      I have following problem while doing purchae order.
    No posting rules exist for account key
    Message no. FF714
    Diagnosis
    No posting rules have been defined for the account key in the tax table in table T007B.
    Please give me reply.
    Thanks in advance,
    Yogesh.

    check MM pricing procedure for any condition account key is assigned and for that account key, no GL is configured in OBYC, if it is related to tax condition type OB40.
    regs,
    ramesh b

  • ALV Report in Purchae Order

    Hello Experts,
    Please help me, i am beginner in abap, i want to create ALV Report of Purchase Order, kindly explain me, how to create the same and if it is possible kindly send me the screenshort and oblige,
    thanks
    sujatha

    hello
    This program checks the paths, installation, and Registry keys of the desktop office applications and OCX files used in SAP Desktop Office Integration. Its results are useful to SAP if you report problems using Desktop Office Integration.
    "C:\Archivos de programa\SAP\FrontEnd\SapGui\Testtools\Check_DOI.exe"
    Hernando

  • Price in the purchae order.

    Hi Friends,
    I want to know how price in the purchase order is coming per 2000 pieces.
    Info records is having price per 1 piece.
    If I click on condition records under tab conditions then also I am getting price for condition type PB00 as per piece.
    How can I know from where this per 2000 units is coming.

    Generally the reference comes from Agreement / Info record / Last PO.
    If you are using info record, then check info record.
    If you are creating PO from an agreement, then check agreement.
    And also may be its coming from last PO number.
    Check ME2N, for last purchase order for the same material and vendor.. Check the old purchase order.
    Regards
    Dev

  • Purchae order # on the vendor invoice

    Is there a way to pull the PO # onto the vendor invoice line item during MIRO?

    You will need to use a enhancement (user-exit) to do that. There is no standard function for this.
    Vishal.

  • Which Sales order created a purchase order?

    Dear Experts,
    What would be the table to look at to check which Sales order is  used to create a type of purchase order?
    I know the stock purchase order but not the sales order number that triggered an auto creation of this PO.
    Pls advise. Thanks
    regards
    M Russo

    Hello,
    Ideally purchase order is linked to sales order in cross docking and third party sales scenario.
    In both of above scenario's  sales order is linked to purchase order via purchase requistion.
    If you know the purchase order number, then you can find the respective sales order number in the account assignment tab in purchase order screen.
    You need to open the purchae order with ME23N/ME22N and go to item detail and check the account assignment tab.
    Here you will get the corresponding sales order number.
    BR/
    Tushar

  • Bapi for release purchase order

    Hi Experts
          Is there any BAPI available to release the Purchae Order.
         Pls advise me to do the same.
    regards
    rajaram

    hi,
    check this fm.
    ME_RELEASE_PURCHASE_DOCUMENT.
    WOD1_RELEASE_PURCHASE_ORDER.

  • Workflow Purchase order release

    Hi,
    I want to activate workflow for purchase order released.
    Requirement is when first level releasaed the purchae order, it should mail to second level.
    I have done following settings in the system.
    In the SPRO - Release Procedure PO - Workflow, I have assigend Object type - US, User against release code.
    Done settings in t code SWDD - Workflow builder.
    Now when first level is releasing the PO, system is not triggering the event.
    I do not know weather i have done it correctly or not, But as per my above requirement, what settings should I do in the system in release strategy config and workflow settings.
    Waiting for your reply.
    Thanks,
    Samir Bhatt

    http://www.sap-img.com/workflow/workflow-of-purchase-requisition-release-strategy.htm
    Also Look into saptechnical dot com youll get detailed procedure for Workflow Scenarios.
    Regards,
    Ashok
    Edited by: Ashok Kumar Telikula on Aug 4, 2008 8:28 PM

  • Posting againt asset purchase order

    Hi,
    We are careating purchae order against assest.When u are posting f-48 with same purchase order then get following error
    " Enter value will be exceeded"
    if i given less amount against purchase order amount then simulate document .
    could u give suggestion u are very urgent
    regardsf
    cvs reddy

    Dear CVS,
    Syatem giving u the error because u r exceeding the value of the PO coz u r giving down payment thru F-48. Meaning, u decided to purchase the asset for INR1000, and against that u r giving advance of INR200, then only system will allow you to post the down payment. How can u give down payment more than value of ur asset.
    So during a document entry, put the amount less than the PO amount.
    Regards,
    Ajay Gupte

  • Purchase order smart forms

    i have copied the purchase order smart form and activated it and know i have the function moudule which need to be used in program but i am not shure how to do that can any one tell me how i need to write the coding for simple purchae order and then pass on the data to the smart form so that it displays the output.

    What you do for inserting lines is to select line one of the screen table and then click the insert button.
    Do this for each line in your BDC and then you only have to worry about line one of the table:
    Code:
    Form Add_Item_Line Tables t_Item_Data
                        using pu_program     type Program_Name
                              pu_screen      like sy-dynnr
                              pu_insert_line like sy-ucomm
                              pu_insert_at   like sy-tabix
                              pu_werks       like Zorder_Header-Dwerk.
         Data: t_characteristics type Order_Lines,
               w_Characteristic like Zorder_Line.
         Perform Zbdc_Screen using pu_Program pu_Screen.
         Perform Zbdc_Field  using c_OkCode pu_insert_line.           <----
         Perform Zbdc_Screen using pu_Program pu_Screen.
         Loop at t_Item_Data into w_Characteristic.
            Is this actually part of the item line or is it a
            Characteristic ?
              Translate w_Characteristic-AtNam to Upper Case.
              Case w_Characteristic-AtNam.
                   When 'MATNR'.              " Material
                        Perform Zbdc_Subscript using 'VBAP-MATNR'
                                                     pu_insert_at
                                                     W_Characteristic-AtWrt.
                        Perform Zbdc_Subscript using 'VBAP-WERKS'
    Looking at it from a modification point of view, the aim will be always to bring the line of the table that you're interested in to line one of the table
    so again you only need to handle line one of the screen table. Some of the codes for this are 'POPO' in Purchase order processing, and 'SORT' in CO02:
    Code:
    Now loop round the P/O and delete all of those that we don't want
       Loop at t_ekpo.
          Keep this P/O Line item ?
            MOVE SY-TABIX TO W_POPO.
            PERFORM ZBDC_SCREEN USING 'SAPMV50A'   '0270'.
            PERFORM ZBDC_FIELD  USING 'BDC_OKCODE' '=POPO'.
            PERFORM ZBDC_SCREEN USING 'SAPMV50A'   '0111'.
            PERFORM ZBDC_FIELD  USING 'RV50A-POSNR' W_POPO.
            PERFORM ZBDC_FIELD  USING 'BDC_OKCODE' '/00'.
            Read Table t_vl31_asn with key ebeln = t_ekpo-ebeln
                                           ebelp = t_ekpo-ebelp.
            If sy-subrc <> 0.
             Not found - discard this one.
               PERFORM ZBDC_SCREEN USING 'SAPMV50A'   '0270'.
               PERFORM ZBDC_FIELD  USING 'RV50A-LIPS_SELKZ(01)' 'X'.
            ELSE.
             Change the quantity....
               WRITE T_VL31_ASN-MENGE TO W_MENGE UNIT T_VL31_ASN-LMEIN.
               CONDENSE W_MENGE NO-GAPS.
               PERFORM ZBDC_SCREEN USING 'SAPMV50A' '0270'.
               PERFORM ZBDC_FIELD  USING 'LIPS-LFIMG(01)' W_MENGE.
            EndIf.
       EndLoop.
    Hope this helps.
    Award points if found usefull.
    Cheers,
    Chandra Sekhar.

  • Stock reservation during subcontracting purchase order

    Hi
    We have a below requirement..
    While creating subcontracting purchase order,using Me21 transaction for finished goods,we require Bill of material components stock to be allocated autamatically during ATP check..Can u tell us where exactly we need to do the config..We need similar settings like sales order(When sales order is created stock gets reserved autamatically ...)
    While creating sub contracting order using Me21 transaction,components stock to be be reserved for that order...And if requried we need to unblock the stock for that order and allocate to other order.....
    Regards
    Swetha

    Hello Sheweta,
    This is not possible. When you create purchase orders for sub-contracting part ..sub requirements will be created from MRP for the BOM components for which you can again create purchaing orders and suplly to sub-contractor for making finish part. Once you supply this now this stock will be diaplyed in the sub-contractor bucket (which you can say reserved). if you want you can take out anytime.
    Hope the above calrification will help.
    Regards
    TAJUDDIN

  • Delivery Completed Indicator Not Displaying in Purchase Order Screen

    Hi,
    Here clinet system has 2 document types for service orders. In one type of service order I can see the delivery completed indicator checkbox in purchase order screen & in other type of service order I am not able to see the delivery completed indicator chekbox.
    I have checked the screen layout for both purchase order types & assignement of layout to both order types. In both screen layout types I found that Delivery Completed Indicator Checkbox as Optional Entry. System should display delivery completed indicator in both type of Purchase Order create/change/display screen. Then why it is showing in one type of service order and not in other type of service order.
    Awaiting your reply.
    Regards
    Pradip

    Hi Pradip,
    You check the for your document type which field selectio is assigned in config
    spro-MM-Purchasing-purchase order- define document types
    And then go to
    spro-mm-purchase- purchae order-Define Screen Layout at Document Level
    select the field slection which is assigned to your document type and then go details and then double click the GR/IR and then select it as optional if it is selected as hidden.
    Cheers
    Chris

  • Re-calculate delivery date in Stock transfer order ( STO UB ), V_V2

    Hi, running the transaction v_v2 only Sto (Stock Transfer Order) At item level.
    Scenario:
             Sales order in Plant 2.
             Sto ,  Plant 1 to Plant 2.
             Purchase Order To Vendor in Plant 1.
    When I run V_V2 in Plant 1, the First execute transaction V_V2 is OK, This system availavility check the STO and confirm the delivery date and the quantity.
    Now I change the delivery date in Purchase Order but the transaction V_v2 in plant 1 don´t  make any change in the STOCK TRANSFER ORDER (STO) in the Delivery Date field.
    Why the systen don´t change the delivery date in STO automaticaly, Becuase I can change manualy in ME22N transaction, and the sytem confirm the quantity and  the confirm date.
    Other Example.
    I have good issu the Purchae Order in Plant 1 and execute V_V2, the sytem do not re-calculate the delivery date in STO, Why ?.
    Thanks.

    A solution has not been identified for this issue...query closed.

  • Cannot close production orders

    Hi guys,
    When the user tries to close a production order in CO02 , they get an error which says the the purchase order still exists. but as i see in the purchae order , the delivery completed indicator is set.( one thing I can see is : in the invoice tab of item details final invoice indicator is not set) .Does the final invoice indicator has any effect on closing the production order?Please help me .I'd appreciate your help.
    Thanks
    Cheris T

    Hi
    Prerequisites for setting the CLSD status for production orders are:
    1.The order must have the status Released (REL) or Technically completed (TECO)
    2.The order balance must be 0
    3.There can be no open purchase requisitions, purchase orders or commitments
    4.There can be no future change records from confirmation processes
    There should not be any commitments towards the Purchase orders.No more costs can be posted to the order, that is, confirmations and goods movements are no longer permitted for the order.So please complete GR/IR activities for the Purchase orders.
    Regards
    Ramakrishna

  • Earlier Year PR- PO without FM account assignment

    Hello,
    We are on Ecc 6 Ehp4 and implementing the BCS part of funds management. We are planning to go live on 1st Apr 2015. Now we need to handle the previous year purhcase order and Purchase requesition commitments (POs before Apr 2015).
    As there are no commitment items or fund centers in old purchaes orders or purchase requisition, the solution got through the SDN thread  is :
    To Create Derivation rule to derive dummy commitment items for Old Purchase orders and through FMCN & FMCT assign it to POs
    My issue which field will help me set the rule, as I couldnot find any field for PO or PR...
    Please advise
    Shailesh

    Hi Eli,
    sorry for unclear message..
    My doubt is:
    1. I do not want my commitments for 2014 should consume budget for 2015. Those purchase orders where there is balance commitment, for which I will receive the bills or book the cost in 2015, but it should not consider 2015 budget .
    2. With FMCN code, what will happen? it will add default fund center (the one which I give there) will get added to the Purhcase order and Do I need to budget against that fund center in 2015
    3. I wont need the default commitment item for these commitments?
    4. The default FC which I give for my previous year commitment, how can I handle this in report? I will have to exclude that FC every time when I take the budget report? becuase if I do not exclude my total budget for the year 2015 will show more amount...
    Please advise...
    Shailesh

Maybe you are looking for

  • Payment scheduling error in F110s

    Hi all, I have know idea about the t code F110s how to access the posting. I want schedule the payment when i select all selection and Execute error will be coming No accounts have been selected yet Regards, Seema

  • AirPlay won't recognize printer and print although HPprint app does

    My iPad will not print from AirPlay and shows no printer on my wifi network from AirPlay. However,  I can print from my HPprint app and the app recognizes my printer on my wifi network. Any suggestions to get AirPlay to recognize the printer and prin

  • User credentials check in the webLogic web service server

    Hi, I am having a simple web service deployed in WebLogic server. I need to customize the SOAP header of this webservice to include username, password, session token and session type parameter in the server side code and do further processsing like c

  • FlashPlayer will not install on Vista (HP PC)

    Weeks ago another application identified need for FlashPlayer which I have attempted to install many, many times to no avail. I am the Admin (single user only), ActiveX settings checked time & time again, pop-ups not blocked, IE level set to Medium,

  • Consuming Web Service Without Proxy

    Hi, it is possible to consume a web service in JSP page without using any proxy (deployable or standalone)? Thanks.