Regards Purchase Order and Internal Part number

Hi..
How to find a PO is deletd?
how to find a EMATN ....in one po is deleted?
How to find a PO or PR for an Production order...

using the LOEKZ Field you can find the PO deleted.

Similar Messages

  • Last Purchase Order and FI-Document Number of an Vendor

    Hi,
    i need for an Vendor the last purchase Order and FI-Document Number.
    For purchase Order i read EKKO sort this and get the last one.
    For FI-Document Number i read BSIK and BSAK sort this and get last one.
    Question: is there any faster way (CLASS, FM or TABLE) to get what i need??
    Thanks.
    Regards, Dieter

    HI Dieter,
    You can use transaction code ME2L , where you can list of PO issued a particular vendor. List list shows Po no. indecending order. You can double click select the latest PO and through PO history you can get the FI Document no.
    I hope this ansers you query.
    Regards
    Harish

  • Purchase order and FI Document Number - R/3 extractor

    Hello Experts -  I have a question on the BW extractors on the R/3 side. Are there any standard extractors out there where I can get Purchase Order information and related FI document number information. In case if I have to create one what tables do I need to reference to create generic extractor. Thanks for your help.
    Regards,
    Venu.

    Hi Venu,
    This could be better done on a standard FI extractor by enhancing it with purchase order information.
    Atleast, this is the way we did in our scenario.
    Have 0FI_GL_4 enhanced with data from EKKO, EKPO tables, with required feilds. This enhancement may not be quite detailed.
    Also if you are interested in a complete gen extr. then the above two tables along with BSEG should do.
    Naveen.A

  • Need of Tables names that link Purchase Order and the Confirmation Number

    Hi All,
    Can any one help me please regarding EBP tables. I am new to EBP so not aware of data flow in the EBP data dictionary.
      Please can anyone explain the tables which link the Purchase order number and the Confirmation(Goods Receipt).
    Please do the needful.
    Thanks in advance.

    Hi,
      You can query the tables BBP_PDHGP and BBP_PDIGP to get teh refernce doc no for PO and then use FM BBP_PD_CONF_GETDETAIL to get the details fo a particular confirmation.ALso you can search confirmations by "Reference Document", use BBP_PD_CONF_GETLIST, with parameter I_REF_DOC_NO, and then use BBP_PD_CONF_GETDETAIL for the found confirmations.
    HTH.
    BR,
    Disha.
    PLs reward points for helpful answers

  • Purchase order and its item number

    Hi everybody,
    I have a problem in my selection screen: I want that when I choose purchase order the item number is selected (like in MIGO) but It doesn't works.
    SELECTION-SCREEN:BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS :
                  p_cmd TYPE ekBE-ebeln MATCHCODE OBJECT MEKK  MEMORY ID BES,
                  p_poste TYPE ekbe-ebelp MEMORY ID BSP
    SELECTION-SCREEN :  END OF BLOCK b1.
    Any ideas please.
    Thank you

    Hi
    check in the data sour ce level whether the data is available or not
    regards
    hari

  • Need help abt Purchase order and material document number

    1)Is there any releation ship between Purchse order number and material document number?
    2) I found aBAPI to get the goods receipt details. That is BAPI_GOODSMVT_GETDETAIL. But it is excepting Material document number and material document year as input parameters.Is there any BAPI to get goods receipt details by using purchase order number?

    hi kiran
    check this thraed. this gives you relatinship between Purchse order number and material document number
    Retrieving Accounting Document number based on PO numbers
    BAPI to get goods receipt details by using purchase order number is
    BAPI_GOODSMVT_CREATE
    thanks
    Sachin

  • Link between Customer Purchase Order and Accounting Document Number

    Hello all,
    is there a table in SAP that contains the purchase order number of the customer and the Accounting Document Number (belnr)?
    thanks in advance
    Anne

    Do this:
    SELECT awtyp awkey
      FROM bkpf
      INTO CORRESPONDING FIELDS OF bkpf
      WHERE bukrs = bsis-bukrs
        AND belnr = bsis-belnr
        AND gjahr = bsis-gjahr.
    ENDSELECT.
    This should give you SD billing document information.
    Rob

  • Regarding purchase order and cfolder

    Hi Gurus,
    if u go to me23n transaction, there is one tab additional, if u click on that tab, u will see one more tab cfolder activation.
    now i want to activate this functionality.
    now go to spro>>>material management>>>>>purchasing>>>>>define link to external documents
    here u can define cfolder link
    the different parameters we have to define are as follows;
    internet address, cfolder system alias.
    i am defining these paramets but it is giving me error.
    my question is , can anyone tell me what i have to put in these two fields.
    Thanks
    Amit

    Hi Amit,
    We can not maintain the full URL of cFolders in path specified by u.
    Solution for this is U maintain the alias for cFolders URL in tcode  sicf.
    For this select  default host and then external aliases tab.
    U will be in maintain ext aliases screen.
    Then Select create icon (extreme left)( create new ext alises ).
    Then select Trg element tab.
    browse to this path     /default_host/sap/bc/bsp/sap/cfx_rfc_ui
    and enter name for this external alias    for ex:-  /epnetweaver100
    so ur URL will be like this  ex:- http://epnetweaver.lntinfotech.com:8001/epnetweaver100
    U maintain this url in path specified by u.
    While saving it may give warning message.U ignore that and save.
    U can now have cFolders link from ur sales order.
    Regards
    Abhijit.

  • Please send me fm regarding to get purchase order and change purchase order

    Hi,
    Please send me fm regarding to get purchase order and change purchase order .
    Regards,
    Gurprit Bhatia

    Hi,
    Function module to get the purchase order details:
    BAPI_PO_GETDETAIL.
    data: po_items type table of bapiekpo with header line.
    parameters: p_ebeln type ekko-ebeln.
    call function 'BAPI_PO_GETDETAIL'
      exporting
        purchaseorder                    = p_ebeln
      ITEMS                            = 'X'
      ACCOUNT_ASSIGNMENT               = ' '
      SCHEDULES                        = ' '
      HISTORY                          = ' '
      ITEM_TEXTS                       = ' '
      HEADER_TEXTS                     = ' '
      SERVICES                         = ' '
      CONFIRMATIONS                    = ' '
      SERVICE_TEXTS                    = ' '
      EXTENSIONS                       = ' '
    IMPORTING
      PO_HEADER                        =
      PO_ADDRESS                       =
    tables
      PO_HEADER_TEXTS                  =
       po_items                         = po_items
      PO_ITEM_ACCOUNT_ASSIGNMENT       =
      PO_ITEM_SCHEDULES                =
      PO_ITEM_CONFIRMATIONS            =
      PO_ITEM_TEXTS                    =
      PO_ITEM_HISTORY                  =
      PO_ITEM_HISTORY_TOTALS           =
      PO_ITEM_LIMITS                   =
      PO_ITEM_CONTRACT_LIMITS          =
      PO_ITEM_SERVICES                 =
      PO_ITEM_SRV_ACCASS_VALUES        =
      RETURN                           =
      PO_SERVICES_TEXTS                =
      EXTENSIONOUT                     =
    check sy-subrc  = 0.
    loop at po_items.
      write:/ po_items.
    endloop.
    Check this program too:
    RFFMFG_INV_CANC_ALL for BAPi_PO_GET_DETAIL.
    Hope it helps you.
    Regards,
    Anjali

  • Purchase Order and Purchase Request

    Hi Gurus,
    do you know how can I get a Purchase Request Number for an item in Purchase Order?
    I cannot find it in any BI Content Data Source...
    Regards,
    Dorota

    In R/3 tr: /nme23n- display purchase order
    It will show the last Purchase Order that you displayed.
    On the Purchase order on the top left corner, click on purchase order, and click "other purchase order".
    the pop up asks you to enter either purchase order or purchase order number
    enter the purchase request number for which you want to see the purchase order and hit ok and vice versa..
    go to status tab and double click on purchase order
    you will get the corrsponding purchase order for the purchase request..
    and if you chose purchase order on the pop up you can get the purchase request number
    For the data source:
    2lis_02_itm, 2lis_02_scl
    http://help.sap.com/saphelp_sm32/helpdata/en/8d/bc383fe58d5900e10000000a114084/content.htm
    Both of them together can address your requirement.

  • Purchase order and goods receipt

    Hello to everyone,
    is there any way to view only the last purchase order and the last goods receipt for several materials?
    Regards

    Last PO Number for Several materials can be viewed using T code ME2M & Last GRN Number for Several materials can be viewed using T code MB51.
    Regards
    Bhavesh Mistry

  • To Find MIGO, MIRO No of a Purchase Order and List Of Vendors ?

    Hi Experts,
    Required your inputs on the Following, Please Guide.
    1) My End user has created a Purchase order, and he has done G.R and followed invoice also. And he doesnt remember the G.R Number and Invoice Number, for that Purchase Order.
    a) How and where to find GR Number and Invoice Number for that Purchase Order ?
    b) Please sugest is there any transaction to find the GR Number and Invoice Number ?
    c) How to Find the Open Purchase orders? Is there any transaction to look Over Open Purchase Orders ?
    2) My Enduser has Created Vendors with respect to different Company Code.
    a) Is there any Standard report to find the List of Vendors with respect to Company Code ?
    Please advice with your Valuable inputs.
    Best Regards
    Javeed

    Hi,
    Go to transaction code ME23N and then at item level click on tab called u2018Purchase order historyu2019 for the particular item. You can see both GR & Invoice doc. No.
    Transaction ME2L to see the open PO.In the selection screen of this T code please select Scope of List u2013 ALV AND Selection Parameters u2013 WE101 . Then execute. You will get open Pos.
    Regards,
    Manish

  • HOW WE FIND OUT OPEN PURCHASE ORDER AND CLOSED PURCHASE IN THE TABLE?

    HI,
    PLZZ HELP ME.
    what are fields names for open purchase order and closed purchase order
    thanks

    Hi param,
    Go to mseg table, pass the purchase order number and purchase order item. if the mseg-menge = ekpo-menge for the corresponding purchase order then consider the purchase order is close, else it is still open. even check if the entries are not there for corresponding purchase order in mseg table then also it is open.
    select mblnr zeile matnr menge from mseg into it_mseg where ebeln = it_ekko-ebeln
    and    ebelp = it_ekpo-ebeln.
    if sy-subrc <> 0.
    then consider the purchase order is open.
    This is the first case.
    even u can consider like this
    if sy-subrc = 0.
    if it_ekpo-menge > it_mseg-menge.
    then also the purchase order is open.
    Regards,
    Santosh Kumar M.
    Award points if it is useful.

  • Purchase orders and sales documents

    hi what r the transaction codes for purchase orders and sales documents.

    Hi Mohan,
    ME2C  Purchase Orders by Material Group
    ME2J  Purchase Orders for Project
    ME2L  Purchase Orders by Vendor
    ME2M  Purchase Orders by Material
    ME2N  Purchase Orders by PO Number
    ME2W  Purchase Orders for Supplying Plant
    VA03  Ccreate Sales Order
    VA03  Change Sales Order
    VA03  Display Sales Order
    Regards,
      ok

  • Purchase Order Modification: External Document Number already assigned

    Hello,
    We're running Extended Classic Scenario in a SRM 4.0 implementation.
    The problem is the following: When the user modifies a purchase order (this purchase order is already replicated to the backend), sometimes (not always), the next error occurs:
    "Purchase Order XXXXXXXXXX: PO header data still faulty "
    "Purchase Order XXXXXXXXXX: External document number XXXXXXXXX already    assigned"
    The system does not provide additional info (RZ20 give us the same message, no ST22 dumps...
    We think it could be some kind of error in the standard BAPI BAPI_PO_CHANGE.
    We've revised the SAP OSS but didn´t find anything....
    Some idea?
    Regards and Thanks in advance!!!

    Hi
    <u>Any other rrors / dumps noticved in system using RZ20 and ST22 transactions ?</u>
    <b>Have you seen this helpful pointers and link ?</b>
    <u>The related SAP OSS notes are as under :</u>
    <b>"Purchase Order item 00010 still contains faulty account assignment items"</b>
    <b>Note 1000184 - Account assignment error when document transfer to back end</b>
    Note 966323 - Service Item: Not able to create PO in ERP backend
    "Purchase Order item 00010 still contains faulty account assignment items"
    Re: How to create a PO in R/3 from a local Bid Invitation in classic scenario ?
    Re: From local Bid invitation PO is not generated in backend
    <b>Do let me know.</b>
    Regards
    - Atul

Maybe you are looking for

  • 30G video iPod won't show on desktop or in iTunes

    Powerbook G4, 10.4.8, iTunes 7.0.1 30G Video iPod, connected by USB cable -- oh so frustrated! Big trip coming up and can't put any of my audible books on my iPod! This seems to have started after I upgraded iTunes to 7.0, is this source of my proble

  • How to adjust wrong posting sales return a/c in FIFO method

    Hi, My customer is running 2005A PL23. They are using FIFO costing method and Inventory is posted based on "Item Group". They had pointed Sales Credit in Item Group\Accounting tab to Return Inwards GL accounts rather than back to Inventory account. A

  • Is it possible to order a macbook air with a swiss keyboard in the US shop?

    is it possible to order a macbook air with a french swiss keyboard in the US shop?

  • Boris Title 3D Loads extremely slowly

    My Boris Title 3D plug takes about 20 seconds to load...literally. I'm running FCP 5.1.4 on a Quad G5 with 3GB RAM. I haven't seen this behavior on other computers. Is anyone else having this problem, and do you know of a solution? Thanks. Macbook Pr

  • Sap hr version ECC 5&6

    hi all, can some one let me know the difference between the versions of SAP 4.7,ECC5&6..its really bothering to say that no one answers this question except the fact that everyone tells me that this is a upgraded version thats it...? Im planning to t