Purchase order already exists error for change Idoc 860

Hi all
I am getting an error that purchase order number already exists, when i try to post change inbound IDoc 860. How can I fix this issue?
Thanks in advance

This can be b'coz of Check purch.order no is active (A - Check whether the purchase order number already exists) in your sales doc type (TCode VOV8) used for the transaction.
So, if for your business process, one PO number can be mention in more than one sales orders. Then maintain Check purch.order no should mention as <Blank>  - No Check under your sales doc type used for transaction's General Control. Or else use diff. PO Number.
Hope this can assist you.
Thanks & Regards
JP

Similar Messages

  • Document already exist error for our user screen

    Hi All,
               In SAP 2007 PL 13,after Removing record by right click remove ,I am not able to add the document. It gives error "Document no already exist". After diagnosis Of ONNM and NNM1 table ,I got that next no does not increases in NNM1and ONNM Table.
    but this problem came after upgrading from 2005 to 2007.
    it happens for some times.
    I could not find any reason because I had generated Document no by sap object.
    Is it any patch required,I had already run PL 09,10,13
    please help me
    thanks in advance.

    Hi Atun,
    This issue comes if the connectivity is poor.
    Standard procedure.
    Step 1
    open SAP Business one
    check the last added record.
    Note down the number.
    Step 2
    Open SQL server
    open the table ONNM
    Check for the specific number of the object(your user documents)
    Note down the number.
    The number in this table should be (last addded record in SAP business one + 1)
    Generally this error comes when the ONNM table number and SAP business one last added record number is equal.

  • Creating a purchase order in web dynpro for java.........

    hello all,
    i am new to web dynpro for java.i have already done an application
    "Creating a Web Dynpro Application Accessing ABAP Functions" this application
    have good document on sdn.
    this application is working fine .
    Now i got an requiremnt for creating a purchase order in web dynpro for java.
    in normal report when i call  the bapi the parameter are the header, headerx,item, itemx is an internal table.
    CALL FUNCTION 'BAPI_PO_CREATE1'
      EXPORTING
        POHEADER                     = HEADER
        POHEADERX                    = HEADERX
      POADDRVENDOR                 =
      TESTRUN                      =
    IMPORTING
      EXPPURCHASEORDER             =
      EXPHEADER                    =
      EXPPOEXPIMPHEADER            =
    TABLES
       RETURN                       = RETURN
       POITEM                       = ITEM
       POITEMX                      = ITEMX.
    i just want to know how can i fill these internal table in web dynpro
    for java to create an application accessing "Bapi_po_create" .
    Thanks

    Hi Gopal,
    I'm not sure what is your issue, it seems you're not really understanding how the Model structure works in WDP.
    I'll assume few things here, like you know how to Import the Model into the WDP, and you know a little bit about what Java Classes will represent this Model in the Project.
    Try these steps:
    1. Import your Model into the Project;
    2. Open your Component Modeler, create a Data Link between your Model / Component (Or Custom Controller, as you prefer)
      - You can also use the "Apply Template -> Service Controler"
    3. Map the Input of your Model as the Main Node, check the Input Tables (you prob. will have two, POITEM = ITEM - POITEMX = ITEMX)
    4. Also, check the Return box, since this is BAPI return (You can use to display Backend messages)
    Now you have the Model mapped into your Controller, you need to develop the Java function to execute it.
    1. Create a new Input class, like
    BAPI_PO_CREATE1_Input purchaseOrderCreateInput = new BAPI_PO_CREATE1_Input();
    2. Bind your Input Node, in the Controller, with your Input Class;
    wdContext.nodeBAPI_PO_CREATE1().bind(purchaseOrderCreateInput);
    3. Set any Import parameters you need:
    purchaseOrderCreateInput.setEXPPURCHASEORDER(XXXX);
    4. To Add references to the Table, you will perform something like:
    First, you need to know what "Structure" you need to add (POItem Structure) - You have a Java class that represents that Structure..
    POITEM_Element poItemElement = new POITEM_Element();
    poItemElement.setPROPERTY();   /// Set your Properties
    purchaseOrderCreateInput.getPOITEM().add(poItemElement);
    5. Execute your Input,
    purchaseOrderCreateInput .execute();
    Hope it helps,
    Regards,
    Daniel

  • Getting Object already exist error when installing adobe reader

    I'm unable to install any Adobe application programs on my Windows 7 machine.  I tried Adobe Reader XI, Lightroom 5.6, Photoshop CC, etc.  All resulted with "Object Already Exist" error.  I searched on Adobe site for fix, and there was one to delete Crypto file.  However, this resulted with the same error.  How can I install Adobe Reader?

    Your approach is correct in identifying the error.  I used ProcMon from Sysinternals (now Microsoft) and came up with the following events leading up to "Object already exists" error.  The error occurs after opening C:\Users\%account%\AppData\Crypto\RSA\S-1-5-....... file.  If the Crypto directory is missing, MSIEXEC.EXE will create along with RSA subdirectory and file name starting with S-1-5.....  There were five NAME NOT FOUND events, and their sequence is
         Windows Installer Logging item in HKLM\SOFTWARE registry
         C:\Users\%account%\AppData\Local\Temp\MSI7058d.LOG (this file was created at the next step)
         Windows Installer Debug item in HKLM\SOFTWARE registry
         FontSubstitution in HKLM\SOFTWARE registry
         CTF Known Classes item in HKLM|SOFTWARE registry
    I don't know which one causing the error, but my suspicion is the last one. But I don't know how to fix it.  Is there anyone who can give me insight to what is happening and how to fix it?

  • Folder name already exists error when activating feature

    HI,
    I am creating a document library and adding folders to it using elements.xml in VS 2012.
    First time deployment of the item works fine, the folder is created. But further deployment or activation of feature from site features is throwing the error "Folder name already exists".
    Below is the elements.xml of List Instance, which was modified to add the folders.
    <ListInstance Title="TestLibrary" OnQuickLaunch="FALSE" TemplateType="101" FeatureId="Guid" Url="Lists/TestLibrary" Description="TEST Library List Instance">
    <Data>
    <Rows>
    <Row>
    <Field Name="ContentTypeId">0x0120004F994A3C0FF76546A528DA0D4B515898</Field>
    <Field Name="FileLeafRef">Test_One</Field>
    <Field Name="Title">Test_One</Field>
    <Field Name="FSObjType">1</Field>
    </Row>
    <Row>
    <Field Name="ContentTypeId">0x0120004F994A3C0FF76546A528DA0D4B515898</Field>
    <Field Name="FileLeafRef">Test_Two</Field>
    <Field Name="Title">Test_Two</Field>
    <Field Name="FSObjType">1</Field>
    </Row>
    </Rows>
    </Data>
    </ListInstance>
    How to fix this?
    Thanks

    Hi,
    According to your post, my understanding is that you got “Folder name already exists error when activating feature”.
    I had used the following code snippet to create a folder within a document library, it didn’t throw errors when reactive the feature.
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <ListInstance Title="LibTest"
    OnQuickLaunch="TRUE"
    TemplateType="10000"
    Url="Lists/LibTest"
    Description="My Lib Instance">
    </ListInstance>
    <Module Url="Lists/LibTest/Folder1" />
    </Elements>
    http://shareden.blogspot.com/2012/11/creating-feature-with-image-library.html
    Also, when you redeploy the project, it will give you a dialog which would promote to delete the existed list or not.
    If you click the “Resove Automatically”, the visual studio would delete the existed list automatically, and create a new list.
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • I'm getting an 'objects already exist' error when trying to download itunes

    My iPhone 6 wouldn't connect to iTunes since it need to update. So I went to uninstall iTunes and all it's contents. I went to download iTunes again, but when I did I received an 'Object already exists' error. I went to look at more information on the Apple website and I tried everything I could but I keep receiving the error. I uninstalled anything related to Apple on my computer and I went to the Program Files folder on my computer and found nothing related to Apple so I'm pretty sure I deleted all the data already. I really need help with this. I have a Windows 7 computer.

    For "Object already exists" or "Access denied" errors when installing try opening Control Panel > Programs and Features > View installed updates then checking for Security Update for Microsoft Windows (KB2918614). Uninstall if you have it, then reboot and try installing again.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for performance issues.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • EXPDP generates new dmp file and reports "file already exists" error

    Hello everyone,
    Hope you all had a wonderful holiday. I got some problems with datapump expdp 10.2.0.4. It would be appreciated if you could provide some advice. Thanks in advance.
    I newly created a 10.2.0.4 database. The database can startup and be connected via Toad without problem. I can also use impdp to import some data to the new database. But when I'm trying to use expdp to export a schema from the database, I got the following errors:
    expdp parfile=expdp_scott_mfp1.parExport: Release 10.2.0.4.0 - 64bit Production on Monday, 26 December, 2011 22:10:49
    Copyright (c) 2003, 2007, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Data Mining and Real Application Testing options
    ORA-39001: invalid argument value
    ORA-39000: bad dump file specification
    ORA-31641: unable to create dump file "/u02/exports/mfp1/expdp_scott_mfp1_12262011.dmp"
    ORA-27038: created file already exists
    Additional information: 1
    Every time I run the expdp, it just creates the dmp file (expdp_scott_mfp1_12262011.dmp) specified in the parfile under the EXPORT directory and reports "file already exists " error.
    Your advice is highly appreciated.
    Thanks.
    Edited by: 904668 on Dec 27, 2011 8:47 AM

    i thought I found the problem. Used same file name on dump file and log file. How stupid of me. Sorry for bothering. Thanks and happy new year!

  • Table for open Purchase order and pending invoices for vendors

    Hi,
    Are there any table to know open Purchase orders and pending invoices for vendors.
    Quick response will be appreciated.
    Thanks & Regards

    hi,
    Purchase Order:
    S011:(PURCH: Purch. Group Statistics)
    Statistics (SSOUR)
    Version (VRSIO)
    Month (SPMON)
    Day (SPTAG)
    Week (SPWOC)
    Posting Period (SPBUP)
    Purchasing Org (EKORG)
    Purchasing Group (EKGRP)
    Vendor No (LIFNR)
    S012: (PURCHIS: Purchasing Statistics)
    Statistics (SSOUR)
    Version (VRSIO)
    Month (SPMON)
    Day (SPTAG)
    Week (SPWOC)
    Posting Period (SPBUP)
    Purchasing Org (EKORG)
    Purchasing Group (EKGRP)
    Material No (MATNR)
    Plant (WERKS)
    Info Record Category (ESOKZ)
    Material Group (MATKL)
    Info Record (INFNR)
    Country (LAND1)
    EINE: (Purchasing Info Record: Purchasing
    Organization Data)
    Info Record (INFNR)
    Purchasing Org (EKORG)
    Info Record Type (ESOKZ)
    Plant (WEKS)
    EKET: (Delivery Schedules)
    Purchasing Doc (EBELN)
    Item (EBELP)
    Delivery Schedule (ETENR)
    EKPO: (Purchasing Document Item)
    Purchasing Doc (EBELN)
    Item (EBELP)
    EKKN: (Account Assignment in Purchasing
    Document)
    Purchasing Doc (EBELN)
    Item (EBELP)
    Account Assignment (ZEKKN)
    EKKO: (Purchasing Document Header)
    Purchasing Doc (EBELN)
    EORD: (Purchasing Source List)
    Material No (MATNR)
    Plant (WERKS)
    Source List No (ZEORD)
    thx,
    Ganpat

  • Last purchase order and goods receipt for material

    Hello to everyone,
    is there any standard report where I can see the last purchase order and goods receipt for a material?
    Regards

    Hi,
    Latest PO you can get from ME2M, by giving input as material and scope of list as best.
    Latest GR date can be get from MB51, by giving input as Material and movement type as 101.
    Regards,
    Prabu

  • No purchase order item was generated for shipment cost item

    Hi Gurus,
    When I am creating with reference to shipment no & shipment cost type, When I  save the shipment cost, See the logs at the time saving.
    The logs are showing in red :
    No purchase order item was generated for shipment cost item.
    Message no. VY633
    Please enter a valid partner role.
    Message no. ME351
    May I know the reason for showing red logs at the time of saving. (When I check logs, it is showing red colors).
    Please advice if I miss any thing.
    Regards
    Rakesh

    Hi Rakesh,
    Your customising is incomplete. Notes 506605 & 940532 will help you on this.
    regards, david

  • No purchase order history was found for first purchase order

    Hi 
    We are doing the third party sales in system. User created the sales order and the process for the third party. Then he created the PO and due to some reason user has deleted the 1st PO and then created the PO for same material and sales order. Now user wants to create the billing document for the sales order no but system giving the message that u201CNo purchase order history was found for first purchase orderu201D and Message no. ZSD 006.
    Could you please suggest how to solve above issue?
    Thank you for your help.
    Regards
    Kishore Gulhane
    09324086205

    Hi Ashok
    Thank you for your reply ,
    But user has delete the first PO not the sales order. he is trying to create the billing document for same sales order no.
    Please suggest
    Thank you
    Kishore Gulhane

  • Block changes at ME42 (quotation) if purchase ordem already exists

    Hi !
    Is standard way to avoid changes at purchase quotation if this quotation is in one purchase order?
    Thanks.
    Mauricio.

    hi,
    The collective number is used to track and compare all the RFQ's, so that we can choose the best out of all...so it is compulsory to enter it...
    You will only accept the best vendor out of all after the deadline date, you'll accept the best by putting rejection button ticked in all others which are not selected....so tht this vendor will automatically will be flowing into PO for your req...
    This approval is done from the quotation itself...
    You can see the total value, qty and all the parameters as per your req. in it only....
    You can check at both the points, this will be as per your decision....but as the PO is first external doc..so need to put stress on it..
    Hope it helps..
    Regards
    Priyanka.P
    AWARD IF HELPFULL

  • If a purchase requisition already exists for an item then system should give warning message

    Hi Experts,
    Is there any standard configuration for showing the user a warning message if while creating a purchase requisition for an item for which one purchase requisition already exits ??
    kindly help,
    Regards,
    Vishal

    Hi Vishal,
    You can configure the message in SPRO as described below
    In SPRO->MM->Purchasing->Define Attributes of Sys. messages
    Click on the New entries, you can get from F4 the below messages
    You can select from the selection screen.
    Thanks and Regards,
    Sravan

  • Rework purchase order - serial number error message

    We created a sub-contracting purchase order for re-work so we are issuing same material and receiving same material. The corresponding material is serial managed. So we will issue the same serial number and we will recieve the same serial number in this scenario. While doing GR we are getting an error message by saying that we can't receive the same serial number for the given material. If any one come across this scenario please let me know the solution
    Thannks in advance

    Hi
                  This is an issue in ECC5.0. you can not receive the same serial number on rework purchase order if you have already executed a 541 movement on same serial number. You need to change the serial number status to receive it again into system.
    Try to change the serial number status from ESTO to AVLB in IQ02, if system doesn't allow to change the serial number status, you need to switch the serial number profile to a different one which will allow you to change the serial number status in IQ02.
    once you change the serial number status to AVLB, system will allow you to recieve the serial number
    Thanks

  • Purchase order and Account assignement category- Change

    hi.,
    We are trying to receive the Purchase order of High value components into INVENTORY.
    However, most of these Purchase Orders were created with account assignments.
    Because of that, if we receives these PO’s, they will be consumed against the object identified in the account assignment.
    Additionally, some of these have been invoiced already and would need to be backed out from the finance side.
    Question: How can we receive these STO Purchase orders and then make changes through Movement type ( or any other way ) so that the HIgh Value Components that are consumed against that AC assignment can be subsequently moved into Invenotory.
    Also, what are the other options ( FI will not open Previous period) so that the PO's which have been invoiced  can be reversed against that AC assignment.
    Thanks All

    hi Rajesh.,
    As mentioned earlier, these  Purchase orders are STO's which have been already created and we are waiting to do the GR for the same. Items in the STO PO are of  High value which we need to bring into  INVENTORY.
    But, because these STO PO's were created with account assignments, if we do GR now, they will be consumed against the object identified in the account assignment.
    Some of these STO PO's have been invoiced already and  FI has indicated that they could cancel the invoices for those STO PO's in previous posting period.
    Question again : How can we receive these STO Purchase orders and then make changes through Movement type ( or any other way ) so that the HIgh Value Components that are consumed against that AC assignment can be subsequently moved into Inventory and not to a cost Center (202)
    Step (1) Can we cancel the Invoiced items> reverse the GR for invoiced Items>reverse STO for PO ?
    Step (2) Can we reverse the STO for PO for which GR has not been done? then
    Step (3) Change the PO through ME22N, remove the Account assignment category?
    Or how do we correct this situation for
          (1) PO's already invoiced.
          (2) PO for which GR has not been made. How can we receive them into Stock and not Cost center.
    Anticipating a reply
    Thanks
    Sri

Maybe you are looking for

  • XI system down due to file generation in file System

    Hi All, We are facing one issue in our XI Prod system. Messages will get sturck in inbound queue as system is frequently getting stoped due to insufficient space in the FileSystems . This is happening due to generation of files heapdump.phd and javac

  • Faster wi-fi freezes laptop?

    I recently upgraded my internet to fibre broadband, going from roughly 2 Mbps to 25 Mbps. Whenever my MacBook Pro is connected to the new internet it freezes after 30 seconds and won't let me open or close programs. The MacBook is only just over thre

  • Process Instructions not match

    Hi Folks, when i Display the process instruction in a process order using transaction co3 in operation field foun in the PO menu bar and choose the operation that contain the process instruction,it does not match when i looked the same operation usin

  • Airport express as an airtunes only device. Best setting?

    Hello! Just wondering if there are any "best settings" for an airport express that is going to be used strictly for airtunes? I've no close neighbors or other electrical interference sources that are out of my control. I do have a wireless phone that

  • Software update always fails due to "unknown error"

    When I attempt to install software updates on my Macbook Air the process always fails with an error message that says "unable to install due to unexpected error" (or something like that). Any ideas how to fix this problem? I've found some references