Migration of open POs

Hi,
Can any one explain how we can migrate the Open PO in the following scenarios
1)PO has been made in legacy but there is no GR and IR yet
2)PO has been made in legacy and GR has been made in legacy and IR yet to be made
Plz reply with possible accounting entries also along with T codes and movement types in SAP.
Points will be awarede for good replies.
Thanx,
Edu

Hi,
the standard way of migrating open orders is by using a plain text file. OPs with or without GR can be migrated.
Please refer to this documentation for a detailed decription of how to do it:
http://help.sap.com/saphelp_erp60_sp/helpdata/en/63/20d634781a1b7ee10000009b38f83b/frameset.htm
Alicia

Similar Messages

  • Migrating open POs and GR/IR clearing account balance

    Hello gurus,
    I've got the following problem concerning migration of open POs:
    For example: In my source system there is a PO for 10 pcs. of some material. There has been a goods receipt for 5 pcs. (200$ each).
    Now, when I import this order and the corresponding purchase order history into my target system (using LSMW), the target system creates the order, a material document for 5 pcs. and an account document.
    But of course, our FI-team also has to migrate the balance of the 'old' GR/IR clearing account.
    So, the balance in the source system is <> 0 (e.g. 1000$), because the 5 pcs. have been delivered but there has been no invoice receipt yet.
    This balance is imported into the new system and then the open orders are migrated, generating an account document and thus, the balance is 2000$ afterwards.
    This obviously is not correct, so I am sure that I am missing something, just what?
    Thanks
    Alicia

    Hi,
    1. There will be an open PO uploaded for 5 qty and price 200$ each
    2. Opening Balance of Material - 5 qty and corresponding value to Stock A/c - 1000$
    3. Also there will be Vendor Balances uploaded in the system as 1000$ against the invoice. (If the invoice is still expected then chec with FI Users if they can get invoice form vendor)
    if no then do not upload initial stock entry of step2, create a PO of 10 qty and then do GR in system (SAP).

  • Data Migration from 11i to R12 Global - Open POs,lines, receipts & on hand upload, Is it possible to do the onhand qty upload with over riding of all receipts which uploaded against Open PO lines?

    Hi Friends,
    We are in a phase of data migration from 11i to R12 
    I was discussed with client & they wants extraction of all open POs which was generated after 01 Jan 2014 to till date in 11i.
    Condition for open POs is PO qty-received qty=>0
    critical Example for open PO is :PO no: 10 has 4 lines, 3lines full qty has been received & for 1 line partial qty(say 50 out of 100) received.
    in this case he wants in R12 uploading as PO no:10 should entered as open PO with all 4lines & 3 lines complete receipt should be done, for 4th line partial qty i.e 50 should be received.
    the question is if we upload on hand qty first, then open POs & receipts, it will increase the onhand qty in new system(mismatch of on hand qty's 11i to R12) 
    Is it possible to do the onhand qty upload with over riding of all receipts which uploaded against Open PO lines.
    Or Please advice best solution.
    Thanks & Regards
    Giri

    adetoye50 wrote:
    Dear Contacts Journal Support Team,
    FYI, this is a user to user support forum.  You are NOT addressing Apple here.
    Honestly, I doubt anyone is really going to take the time to read the novel you have written.

  • Migration of open GR, IR

    Hi Folks,
    I have to upload open GR and IRs into new system from SAP legacy system. I am new to MM so please let me know how to accomplish this task.
    thanks in advance.

    Hi,
    You will have to extract all your open POs and classify them into cases. I remember, we had 13 cases in total.
    Like GR done IR not done, IR done GR not done, Partial Grs and IRs, GR and IR complete but payment not done and many more.
    Then you will have to define a separate migration strategy for each and then migrate them. I would suggest you to have a session with your business team regarding this.
    We had used a BAPI_PO_CREATE1 and RFC call to read data from legacy and create the PO in the new system.
    Let me know if you have further queris.
    Thanks!
    PM

  • Report for displaying open POs

    Hi frds
    i wants to display the open POs line item and its quantity .anyone give me the logic for this report.
    thanks
    Pari Vendhan.R

    HI frd
    thanks for information ..while puting your logic in report program its not displaying open POs.
    with this msg i hv attached my codings ..pls correct my mistake.
    REPORT  Z_CONSUMABLE_ROL.
    Data : Mat_no like mara-matnr, "Material Number
           Plant1 like ekpo-werks, "Plant
           com_co like mseg-bukrs, "Company Code
           store  like mseg-lgort, "Storage
    SELECTION SCREEN
    SELECTION-SCREEN: BEGIN OF BLOCK 01.
    SELECTION-SCREEN: BEGIN OF BLOCK 02 WITH FRAME TITLE text-001.
    SELECT-OPTIONS MATERIAL FOR mat_no.
    SELECT-OPTIONS Plant    FOR plant1.
    SELECT-OPTIONS COMPANY  FOR COM_CO.
    SELECT-OPTIONS STROAGE  FOR STORE.
    SELECTION-SCREEN: END OF BLOCK 02.
    SELECTION-SCREEN: END OF BLOCK 01.
    DATA DECLARETION FOR INTERNAL TABLE.
    Data : begin of itab occurs 0,
           matnr like mara-matnr, "Material Number
           maktx like makt-maktx, "Material Desc
           meins like mara-meins, "UOM
           minbe like marc-minbe, "ROL
           lgnum like mseg-lgnum, "Warehouse
           ebeln like ekKo-ebeln, "PO Number
           menge like ekpo-menge, "PO Qty
           banfn like eban-banfn, "PR Number
           meng1 like eban-menge, "PR Qty
           mblnr like mseg-mblnr, "PO Number
           ELIKZ like EKPO-ELIKZ,
           end of itab.
    SELECT STATEMENT.
    select a~menge
           a~werks
           a~ELIKZ
           b~banfn
           b~menge
           c~matnr
           c~meins
           d~maktx
           e~minbe
           f~lgnum
           f~mblnr
           f~bukrs
           f~lgort
           h~ebeln
    INTO CORRESPONDING FIELDS OF TABLE ITAB FROM EKPO as a
          inner join EBAN as b on aBANFN = bBANFN
          inner join MARA as c on cMATNR = aMATNR
          inner join MAKT as d on dMATNR = cMATNR
          inner join MARC as e on eMATNR = cMATNR
          inner join MSEG as f on fMATNR = cMATNR
          inner join EKKO as h on hEBELN = aEBELN
    where cmatnr in MATERIAL and awerks in PLANT and f~bukrs in
    COMPANY and f~lgort in STROAGE.
    write :/ 'Material_No' color 4,
          20 'Material_Desc' color 4,
          55 'UOM' color 4,
          65 'ROL' color 4,
          75 'Warehouse' color 4,
          87 'Open Po' color 4,
          115 'PO Qty' color 4,
          125 'PR No.' color 4,
          145 'PR Qty' color 4.
    write : sy-uline.
    if itab-ELIKZ = 'X'.
    loop at itab.
    write : / itab-matnr,
            20 itab-maktx,
            55 itab-meins,
            65 itab-minbe,
            75 itab-lgnum,
            87 itab-ebeln,
            105 itab-menge,
            125 itab-banfn,
            135 itab-menge.
    endloop.
    endif.

  • Migrate all Open Sales Orders From Legacy System (SAP) To SAP System using

    Hi Experts,
                 I've to Migrate all Open Sales Orders From Legacy System (SAP) To SAP System using Business Objects with a new SALES ORDER DOCUMENT NUMBER referencing the older one.
               I'll get all the required data with field in an excel file.
                 Does any standard transaction exist for it ? Or how to go ahead with it ?
    Thanks and regards,
    Jyoti Shankar

    Hi
    If you are checking for CREATE option then Sales Doc Type
    For more Info goto SWO1 transaction -> BUS2032 --> DIsplay --> Execute --> There SELECT the method which you want to perform... There you can fine the MANDATORY parameters also....
    Or in DISPLAY mode PLACE Cursor on the Required Method and CLick the PARAMETERS button on toolbar...
    That will show the MANDATORY parameters...
    Reward if helpful....
    Message was edited by:
            Enter the Dragon

  • Open POs being seen in the report

    There are around 20 open POs in the system from 2006 which have not been goods issued or goods receipts properly due to which the delivery completed indicator cannot be ticked manually. These POs need to be closed so that they are no more vissible in ME80FN report. Please advise.

    Hi,
    You can manually delete the line items in PO through ME22N or you can even set the delivery completed indicator if you are sure that there wont be any further GRN.
    Edited by: Komal Gala on Aug 8, 2008 3:33 PM

  • Open POs for per SOs

    Hi All,
    How can we open POs for per SOs?
    We want open 1 PO concerning all the items in 1 SO..
    So we will try to pack POs seperately for 1 customer.
    Thanks
    Regards
    Siva

    Siva,
    Please remember that a single PO is procured from only one vendor.  It is a rare event when all items in a single SO can be procured from one vendor, and would thereby qualify for inclusion in a single PO..
    You may manually create POs with as many items as you wish.  Once you have determined the materials/qtys you wish to purchase to support a particular SO, just manually enter them all into a single PO.
    Best Regards,
    DB49

  • Report to extract open POs.

    Hi ,
    Is there any standard report to extract open POs in SAP

    Hi Dear,
    You can make use of ME2L,ME2M,ME2N,ME2J.
    In all the above reports enter plant,document type or document date as input field and then execute the report.
    You will see the column Still to be delivered (both for Quantity and Value) thus you can get open PO.
    Alternatively you can make use of Purchase Order history column in above mentioned report.
    Sort the report in ascending order and PO against which no GR is made will be having Purchase Order history blank and those having history will be having special icon.

  • Data migration of open production order

    Hello SAP gurus,
    Please advise me about the steps that should be followed for data migration of open production order from legacy to SAP.
    Regards,
    Anand

    Hello SAP gurus,
    Please advise me about the steps that should be followed for data migration of open production order from legacy to SAP.
    Regards,
    Anand

  • Migration of open orders

    Hi all,
    does anyone ever use an upload program for Open Sales Order I'm in the Data Migration ,we are migarting with in the sap for the change in the currency to USD so i want to migrate the open sales order with sap with the sme schedule line means no change in the schedule line it should have the same confirmed date and quantity after migration to new comp code , reatp should not happen
    Any help wold be very appreciated.

    Hello again,
    unfortunatelly I am getting a little frustrated here. I am trying to import orders from text-files. The import of the headers works fine, but the items are not imported at all.
    I suspect that I got something wrong in my text files, but I do not know, what it is.
    Typical line from headers.txt:
    1234     1     23456     1000 ... (i.e. ID, STYPE, EBELN, BUKRS ...)
    Typical lines from items.txt:
    1234     2     00010     100-430 ... (i.e. ID, STYPE, EBELP, EMATN ...)
    1234     2     00020     100-431 ...
    Any ideas about what I did wrong?
    Thanks
    Alicia

  • Close old open POs of GR and IR quantity differ.

    Hi,
    We are having some open POs of year 2006, 2007. These POs are not archived due to Quantity delivered differs from qty. invoiced.
    Now GR, IR are archived and business wants to close these POs.System is not allowing as there is difference in GR and IR quantity.
    Is there any standard SAP report which will allow to put deletion indicator in such POs.
    Thanks
    Sudhir

    Sudhir,
    Have you tried MR11?  That's precisely what it is supposed to fix: The GR/IR clearing program posts a document that 'fixes' cases of 'quantity delivered' not equal to 'quantity invoiced.'
    If you have done this already, there should be an entry for GR/IR adjustment in your PO history, and all the quantities should add up.
    I haven't tried this in similar circumstances, but I don't think the fact that the GR and IR are archived would prevent you from clearing the difference with MR11.  If you have really cleared this difference, and quantity invoiced = quantity received, I'd suggest having a technical person trace through the program to find the source of the problem.
    - Jeff

  • MM: Open POs with IR but no GR

    Hello MM Gurus,
    May I ask how can I execute two reports showing:
    a) open POs with IR but no GR
    b) open POs with IR and partial GR
    Your prompt response is highly appreciated.
    Thank you very much in advance!
    Best Regards,
    Albert

    hello Kishore,
    thanks for your prompt reply. i've tried following your suggestion. however, i found that the choosing both (REHNUNG and WE101),  the system displays ALL OPEN POs AND POs with OPEN invoices.
    i would need a report that displays ALL OPEN POs WITH INVOICE (Open POs with IR).
    it seems that multiple selection in ME2N only satisfies the condition "AND", and not "WITH".
    any further ideas?
    thanks very much.
    best regards,
    albert

  • How to find all Open POs and PO status

    Hi,
    1. If I open any PO (we are on ECC6.0), on the PO header status Tab, we can see the status as "Fully Invoiced or Partially Invoiced or Not Invoiced" and similarly for delivery too. Is there any table to see get these statuses directly for any given PO?If no, How do I determine the status manually in the report ?
    2. If you get into a PO, follow the menu path Environment-->AC Commitments docs. Choose Funds Management from the Pop-up. This shall generate a report for the document Jounal entries and display the final amounts (final bdgt) there. Is there any table where I can get this amounts for a given PO?
    I want to generate a report for all the Open POs based on the different statuses from point 1 and also where its AC Commitments-FM docs amount is not equal to 0.
    I checked with my MM consultant for this and he couldnt be of help.
    Thanks
    Kiran

    >
    kiran dasari wrote:
    > But how can I figure out from EKBE or PO history?
    >
    > Do I need to compare the quantities from PO & invoices? If yes, what is the case, if there are multiple accounts for a same line item?...will calculation not be very tedious?
    >
    > Is there any direct shot I can hit to get the status for a given PO and given line item which says....Full Invoiced or Partially Invoiced or Not invoiced and similarly where do I go for delivery statuses?
    >
    > Thanks
    > Kiran
    Yes - it is tedious, but that is what we are paid for. You have to look at each line in the PO history table (EKBE), add up the invoices, subtract the returns. There are also some flags mentioned by other posters to determine whether the PO (or PO item) is complete.
    Rob

  • Data migration for open PO & PR

    Hi All,
    How to do the data migration for Open PO & Open PR ?
    Thanks
    pabi

    You can BAPI "BAPI_REQUIREMENT_CREATE" for PR creation from data.
    BAPI_PO_CREATE for PO creation.
    Regards
    Sanjay Kohli

Maybe you are looking for

  • IPhone 4 wi-fi connection disconnects after a few minutes, but used to work just fine.

    I got my iPhone 4 a few months ago. During the first few months, I would come home and connect to the wi-fi in my house with no problems, and it would stay connected until I left the range of the router. Just two days ago, I was starting to have some

  • ICON: Low Resolution

    Hi there, our Podcast http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=334683542 has been published today.I think - the Icon has been generated out of the Podcast, the quality is bad. Where can we add the new 300x300px icon to our iTu

  • "EXIT" in function module

    Hi frnds,   Im creating a function module.. in this i have a sub routine... from the sub-routine at a certain point i want to come out of the fun. module itself completely. will the "EXIT" command suffice.. but i beliv it just terminates the processi

  • "Project Duration" error -- preference does not affect message

    "Project duration: Your project exceeds the maxiumum project duration. To burn your DVD, change the encoder setting in iDVD preferences to Best Quality." but it doesn't matter if it's set to Best Quality or not. i still get the error message and can'

  • N97 Display languages

    Hi ya all experts around. Sorry if this topic been asked b4 but i could not locate so far. Just wondering that when i first purchase this N97 with firmware v11 it display text messages with chinese languages well. But now it just display the squarish