Problem entering Purchase Delivery notes

Hello, when I open the Purchase Delivery Notes form I get this message:
Err:  -2035 - This entry already exists in the following tables (ODBC -2035)  -  Valid Value - Value already exists  [66000-61]
right after it opens. Then I can work but I have problems entering serial numbers, so I guss the problem is related to this message, anyone knows what it means?
Thanks in advance

Hi......
I'm afraid....
This might be the serious issue.
I would suggest you to disconnect addons if any or drop any SP Transnotification if you have.
Still you give problem then just try to upgrade in next PL in test. Still you have problem then last option raise a support ticket to SAP.......
Regards,
Rahul

Similar Messages

  • Report problem of purchase that not make from me

    Report problem of purchase that not make by me

    You can contact iTunes support via this page (these are user-to-user forums) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Adding Purchase Delivery Note with SerialNumbers via DI Server

    I try to add Purchase Delivery Notes via DI Server. It already works for items that do not need serial or batch numbers. But if I try to add a PDN with an item that needs such numbers, I'm getting an error that the line of the item cannot be added without these numbers.
    Then I tried to add SerialNumbers to my request, but I am still getting the same error.
    The xml template for the SerialNumbers part looks like this:
    <SerialNumbers>
    <row>
      <SystemSerialNumber />
      <ManufacturerSerialNumber />
      <InternalSerialNumber />
      <BatchID />
      <ExpiryDate />
      <ManufactureDate />
      <ReceptionDate />
      <WarrantyStart />
      <WarrantyEnd />
      <Location />
      <Notes />
      <BaseLineNumber />
    </row>
    </SerialNumbers>
    Can someone explain me, how to use it?
    What are the mandatory fields?
    What is <BaseLineNumber>? Is it the line number of the item in the purchase delivery note?
    Do I have to include <SystemSerialNumber> or will this number be generated automatically by SBO?

    Hi Nico,
    you should use the SDK Help Center to determine the mandatory fields...
    When creating an incoming document (Purchase Delivery Note) with serial numbers using the DI API I assign the InternalSerialNumber property only and this works.
    The only Mandatory field when creating an outgoing document is SystemSerialNumber which is the unique key for a serial number...
    As a side note, I am still experiencing some strange behaviour trying to use the DI API to create documents using serial numbers.  I am in contact with SAP regarding this but am getting very slow responses...
    Daniel

  • Problem in Creating Delivery Note using DI API

    i am using DI Api with Delphi Language to Create a Sales Delivery Note based on the sales Order.
    But Each time when i add, a new Record gets Created rather than the new Line.
          Document:= IDocuments(FCompany.GetBusinessObject(oDeliveryNotes));
          Document.CardCode         := 'A001'
          Document.Lines.BaseType   := 17;
          Document.Lines.BaseEntry  := 84;
          Document.Lines.BaseLine   := 4;
          Document.Lines.ItemCode := '001A';
          Document.Lines.Quantity := 10;
          Result := FODLN.Add;
    In this case,new rows are added each time in the tables ODLN and RDR1.
    How to avoid this.As this creates a individual Delivery Note for each time i add than to the Order Number.

    HI,
    The problem : Do not specify ItemCode if you specify Base document.
    So
    1st case
    Document:= IDocuments(FCompany.GetBusinessObject(oDeliveryNotes));
    Document.CardCode := 'A001'
    Document.Lines.BaseType := 17;
    Document.Lines.BaseEntry := 84;
    Document.Lines.BaseLine := 4;
    Document.Lines.Quantity := 10;
    Result := FODLN.Add;
    or
    2nd case
    Document:= IDocuments(FCompany.GetBusinessObject(oDeliveryNotes));
    Document.CardCode := 'A001'
    Document.Lines.ItemCode := '001A';
    Document.Lines.Quantity := 10;
    Result := FODLN.Add;
    1st case creates delivery note with only one row with reference to Sales Order
    Take care: BaseLine comes from 0
    2dn case creates delivery note with only one row WITHOUT reference.
    if you have more than one rows, use the
    Document.Lines.Add to enter another row
    Regards,
    J.

  • File registry problem: entered file types not seen via RON but in DB

    Greetings,
    I configured SCM with the new Jdev file extension types to be treated as text for
    merge purposes as suggested in the RC2 release notes.
    I used RON 4.11 to enter 6 or so new file extensions, then hit the OK.
    These extensions are not visable but when attempting to re-enter them, I get
    a SQL dup. key constrain exception.
    Useing SQLplus I find them in i$sdd_file_registry
    The difference between an extention I entered one at a time, vs N at a time is
    the sequence (SEQ column) is larger for the N at a time:
    4294966997 +/-
    vs
    326 for one entered
    VS
    8251 for those setup at SCM installation time
    Will SCM still treat these as text even though I can't see them? The RULE was
    set correctly to be: TXT_FILE
    Thanks for any help here,
    curt

    It's NOT the case of the file system showing the file correctly… It is saved to the requested location… You are just overwriting it with the standard PDF… The supplied paths you defined are the same… Here I have just made a change to your code…
    var myDoc = app.activeDocument; // Just so I can ignore the rest of the code…
    var myPermission =confirm ("Are you sure you're ready to save?","","Save Script Execution")
    if (myPermission){
    var myFileName = prompt ("Enter Filename","");
    if (myFileName){
    var destFolder = Folder.selectDialog('Select which folder to save to Katie:');
    else
    alert ("Save cancelled");
    if (destFolder) {
    /*Save as Illustrator CS4*/
    var IFile = new File(destFolder + '/' + myFileName + '.ai' );   // Now unique           
    var ISave = new IllustratorSaveOptions();
        with (ISave){
            compatibility = Compatibility.ILLUSTRATOR14;
       /*Save as standard PDF*/
        var IPreset = '[Illustrator Default]'
        var pdfSave = new PDFSaveOptions();
        var pdfFile = new File(destFolder + '/' + myFileName + '.pdf' ); // Ditto here
            with (pdfSave){
                 pDFPreset = IPreset;
                 viewAfterSaving = false;
                 compatibility = PDFCompatibility.ACROBAT5;
    /*Save as smallest PDF*/
    var SmallestPDF = '[Smallest File Size]';
    var pdfSaveOpts = new PDFSaveOptions();  
    var pdfFileCompressed = new File(destFolder + '/' + myFileName +'%2e' + 'now_format' + '.pdf' ); // This was just un-string your variable…
        with (pdfSaveOpts){
            compatibility = PDFCompatibility.ACROBAT5;   
            pDFPreset = SmallestPDF;
            viewAfterSaving = false;
    destFolder.execute()
    myDoc.saveAs (IFile, ISave)
    myDoc.saveAs(pdfFile, pdfSave) 
    myDoc.saveAs(pdfFileCompressed, pdfSaveOpts)
    else {
    alert("Save cancelled!") 

  • Delivery Note Number should not repeat again during MIGO

    Hi Friends,
    My client has a requirement to validate the Delivery note filed in the MIGO screen, i.e., the system should allow the user to enter a delivery note number once entered already during goods movement through MIGO. Is there any way that this can be done?
    Regards
    Guru Prasad

    Thanks for the reply Ganesh.
    Explaination of the requirement:
    During goods receipt the user is supposed to enter the delivery challan number of the vendor in the filed "Delivery Note" in MIGO header. If the user by mistake types the same delivery note number again while posting goods reciept for the same vendor in future, the system should throw an error. If there is any user exit or if it can be done through some development kindly suggest the procedure for the same.
    I also checked for the standard system messages, but couldn't find any.
    Rgds
    Guru Prasad

  • Different delivery note in Miro

    Dear all,
    I have three different delivery notes for a PO. I enter this delivery notes in Migo. Now I 'm looking  first delivery note   in Miro ,  I see total quantity that what we enter in Migo. But I want to see what I enter for  this delivery note . How can I see one by one delivery quantity in Miro ? Because I can't check    invoice and delivery .
    Thanks in advance.
    Best regards,

    Hi,
    In MIRO if you enter the PO number system will show all the Deliveries done with respect to PO means if you done deliveries with respect to PO then system will show three line items with quantity & amount on the MIRO screen.
    As you posted 3 deliveries for that PO then in MIRO check there will be 3 line items and also you can find 3 deleivery numbers on the screen.
    In MIRO you can also have a option to post the invoice with respect to Delivery note number. Exact qty and amount will be shown as per delivery note number in MIRO.
    rgds
    Chidanand

  • Delivery note wise planned delivery cost

    Hi Experts,
    Please let us know in MIRO we want to pass planned delivery cost bills delivery note wise.
    But while we choosing delivery note option the option to choose planned delivery cost is vanishing.
    Our main motto to get the planned delivery cost grn wise in MIRO, please suggest how that can be achieved.
    Regards

    hi thanks for reply I have found the solution that delivery note only take cares the value part of the material
    I have to use bill of lading to get the delivery cost at IR
    Is there any way or copy control that whatever is being entered in delivery note at MIGO should be copied to the bill of lading field, with a flexibility user can change if he wants
    rgds

  • Print Settings - AR Delivery Note

    Hi Experts,
    I have a problem with AR Delivery Notes printing automatically when added even when the option under Document/Print settings to print when adding is de-selected for this document.
    Is there any other setting I should look at? This is in SBP 2005A SP01 PL10
    Regards,
    Lebo

    Hi,
    When i go into Admin - System Intitialisation - Print preferences, I have de-selected everything, so 'When Adding Document' - pring Delivery is not selected. But it still prints out 3 copies of the Delivery document.
    Are there any other print settings for documents besides this?

  • Orientation is wrong when delivery note, pick ticket are printed together!

    Hi All,
    I am facing this peculiar problem.
    When delivery notes and pick ticket both are printed at the same time from VL02N, then the pick ticket is being printed in portrait instead of landscape.
    The delivery note should print as portrait and pick ticket should print as landscape.But these when printed together from VL02N transaction, the second one pick list is printed as Portrait rather than Landscape.
    The spool is generating correctly (DELIVERY NOTE as PORTRAIT and PICK LIST as LANDSCAPE) but when passed to printer both are printing in PORTRAIT format.
    The printer settings are same in PRODUCTION as well as QA.In Production system it is working fine but the same settings are there in QA behaving differently.
    The printer model we are using is HP Laserjet 4350.
    Please advice.
    Regards,
    Pratyusha
    Edited by: pratyushasdn on Jul 12, 2010 4:59 PM
    Edited by: pratyushasdn on Jul 13, 2010 7:26 AM

    Dear Pratyusha,
    Kindly chck on the production and quality system version of the form. The landscape/ potrait option is passed on to the smartform and should be independent of the driver program / Tcode. Kindly chck on it again and revert

  • Purchased apps not appearing

    I have an iPad that has several purchased apps (specifically angry birds). I got an iPhone and angry birds is not available for transfer. What can I do?

    There seems to be two problems with purchased apps not appearing. Both separate. For me, all I see is spinning circle until finally the app crashes. Everything else on the store works except the purchased app page. None of the posted solutions work for this type.
    Others seem to be able to fix their problems with either signing out of the store and singing back in while, for some, just a hard reboot works.
    Must be a bug somewhere that Only Apple can fix.

  • Calcuation the BOX qty by the Delivery Note item level .

    Dear all
    I have face a problem in the delivery notes pack function
    for example
    DN =20001 , have 2 item,
    item A , qty = 10 pcs
    Item B,  qty = 20 pcs
    when to do the DN  pack, item A  10 pcs put into 2 box,
    item B , 20 pcs put into 4 box,
    in the DN header , " LIKP-ANZPK " can show the total box qty = 6.
    But I can't found the total  item box in DN item level .
    Because we need print the subtotal box qty in each item level .
    Does anyone have experience to solve this issue ?
    Thanks.

    Check by passing Delivery number (VBELN) and Delivery item (POSNR) to table VEPO and fetch VEMNG (Base Quantity Packed in the Handling Unit Item).

  • Purchasing Groups not defaulting to all new line items

    Hi,
    We are on SRM 4.0. currently, we can only assign a user to one purchasing group.Now my problem is Purchasing Groups not defaulting to all new line items (when changed in default settings).If any one faced this problem help me out.
    regards,
    sobhan

    Sobhan,
    Depending on your material group, the purchaing group will be defaulted. According to the responsibility tab and SPRO Config define objects in the backend system, the purchaing group will default in your basic data of the shopping cart screen.
    Even though in your default settings you will assign a Purchaing group, the purchasing group will be defaulyed on the basis of the above two crietrias mentioned.
    Please assigbn points for usefull answer !!
    Sundeep

  • Purchased Apps not appearing in purchased section!

    My iPad was recently wiped out.  As a result, I need to reload all of my apps from the app store.  When accessing the 'Purchased' section on the app store, my purchased apps do not appear.  The screen is blank.  If you randomly click on the screen, the individual app wll appear on a new screen.  However, I have a large quantity of apps to download, and I will not be able to do that for every app.  Help!

    There seems to be two problems with purchased apps not appearing. Both separate. For me, all I see is spinning circle until finally the app crashes. Everything else on the store works except the purchased app page. None of the posted solutions work for this type.
    Others seem to be able to fix their problems with either signing out of the store and singing back in while, for some, just a hard reboot works.
    Must be a bug somewhere that Only Apple can fix.

  • Purchased apps not appearing in history

    Hi everyone,
    I am  writing you concerning a problem I have encountered with several apps on  the appstore that, despite being bought, persistently refuse to appear  on my list of purchased items. I have tried downloading them with  different devices, even those that belonged to friends of mine, and the problem remained. It was impossible to find  the apps in the purchase history.
    The apps in question are the following:
    - Phantom seeds
    - Juniper's Knot
    - The Raven by Edgar Allan Poe
    - Ghost Trick : phantom detective
    - Ace Attorney : Phoenix Wright Trilogy HD
    - Pictures at an Exhibition -Free Adventure Gamebook
    - London Detective Story - English Version
    The common element amongst all the above apps is that they are free  (some of them do have IAPs however). My problem is that if the apps are  ever removed from the app store, I will have lost access to the content  I have purchased.
    Please feel free to try to download these apps on your idevices and you will see that they do not appear in the purchase history.
    Do you know how this issue can be fixes? The developers have declined responsibility and referred me back to Apple's customer service.
    Thanks in advance for any advice.
    Best,
    P

    There seems to be two problems with purchased apps not appearing. Both separate. For me, all I see is spinning circle until finally the app crashes. Everything else on the store works except the purchased app page. None of the posted solutions work for this type.
    Others seem to be able to fix their problems with either signing out of the store and singing back in while, for some, just a hard reboot works.
    Must be a bug somewhere that Only Apple can fix.

Maybe you are looking for

  • Error when trying to create Delivery

    Hi SAP Gurus When trying to create delivery from Sales order(Va02>Sales document>Delivery),it is taking to Delivery(Vl01n).But there at the initial screen itself it is displaying the error message"Order doesnot exist" Kindly let me know where could b

  • Toshiba 46HL900A won't turn on

    My TV won't turn on completely. The red power light turns from red to green but the TV doesn't turn on? Anyone know why? Thanks

  • Material Price cannot be deterimied

    Hi, Good day to all, I want to do external purchase of some components via a PM order. So I've created a PM order and entered the material in Components tab with Item Category = N (non stock) and entered all the required information for purchasing. B

  • Tax reversal

    Dear friends, When we cancel the material document , Part 1 enteries will reverse automaticaly, How to reveres the VAT and other taxes captured

  • Displaying Chinese Lyrics

    I have a problem on displaying Chinese Lyrics on my iPOD Nano. All chinese turns into strange character. The lyrics can be displayed in iTunes6.0 properly on both windows (xp) and mac mini. I have try convert the mp3 tag to v2.4, but it didn't help.