Message 131-3 when adding document

I am adding a document to a UDO and I get the Message 131-3 that says I have to set up the numbering series thru the Administration tab first.  The only problem is that this has already been done.  There is a Next number and a Last number set for this document.  Is there something else that has to be set?  I have added documents successfully to this table in the past.
Please help!

Tim,
What version of SAP Business One are you using?  If you are using 2007A, I think there were some issues in earlier PL's.  Please make sure you have downloaded the latest which is PL15 ... again ... if you are using 2007A.
Eddy

Similar Messages

  • Print Document option, not work when adding documents.

    Dear friends.
    I have checked inside SAP BO the checkbox Print Document when AR Invoice is added (Print preferences)   But this action not work because the document not is printed automatically, then the user has to print it manually.
    Thanks for your comments,
    Daniel

    Thanks Rahul,
    That was the way: Option Defaults in the User Definition.
    Best Regards,
    Daniel

  • Error when adding document lines using DIAPI

    Error: "Item no. is missing  [ORDR.ObjType]"
    Hi
    I m getting [mentioned above] error when i try to add more line in rdr1 that is same as existing row, and try to update document object.
    <b>Problem:</b>There is already one row in rdr1 and i have to add a new row using DIAPI.
    Thx

    Hi Pankaj,
    Can you please post your code? If you've got oDoc.Lines.Add in there try to remove it and see if it has the desired effect. If you look at the document in the SBO GUI you'll see that there is already an empty line in the order. I haven't tested it, but try it out.
    Hope it helps,
    Adele

  • Message application freezing when adding new contact from the messages application

    if someone is sending the message with the phone number included in the text, i touch the number and whait till options will pops up, choosing create new contact and ok. then the messages application freezes for a long time... few minutes. have to double press the home button and switch of the message app from the background. So have to start message app again to be able to use it. How to sort this? Its happening more than one year and have changed few phones already.

    Snow Leopard and iCloud compatibility is very limited, and it may be that the phone's OS requires iCloud for the syncing:
    https://discussions.apple.com/docs/DOC-2551
    I would enquire in the iOS forums to find out if there is a way without iCloud now to sync.

  • Getting error message when adding on account payment in Outgoing Payments

    Hi,
    We are getting error message "No Matching records found 'Sales Tax Authorities Type' (OSTT) (ODBC - 2028) [ Message 131 - 183]" when we are trying to add account payment in Outgoing Payments. We are not getting any errors while adding customer payments or vendor payments. Please give us the solution. 
    Version : SAP 2007B SP:00 PL:00
    Thanks,
    Sravan Kumar Pothu

    Hi Jeyakanthan,
    Thanks for your immediate reply.
    Actually in outgoing payments there is no tax code selection available. Just we simply selecting the account on which we are making payment and amount( in payment means we are giving cheque details). When trying to add it is giving above said error. Kindly let me know if you have any solution.
    Thanks,
    Sravan Kumar Pothu

  • Internal error when adding UDF

    Hello,
    I have been getting an error "Internal error (1) occurred Message 131-183" when I try to create a UDF in the Marketing Documents category. Normally I'm able to do this, but the other day I deleted a UDF (a different one than the one I'm adding) that I wanted to clean out of the system and I'm pretty sure that having deleted this UDF is causing me to not be able to add any new UDFs to the Marketing Documents category. The UDF I deleted had never been used and I'm almost positive it never had any data in it. I am able to modify and add to other UDF categories though.
    I need to add these UDFs to the Marketing Documents category hopefully today or tomorrow. If someone has any ideas that would fix this problem, please let me know.
    Thank you,
    Brent McDonell

    Hi,
    The issue reported is mostly known due to SQL 2000 Server row length
    limitation.Please refer to the SAP note number:816387 and run the attached
    query in the corresponding database and check whether the marketing
    document table using the UDF,is exceeding the limits.
    The solution to this problem is to decrease the size of the
    User Defined Fields. Either by decreasing the length or changing
    the definition of "Alpahnumeric" fields to Text, or the last resort
    is to remove the fields.
    All these actions have to be done via the SAP Business One application.
    The change of field type alphanumeric to Text might influence the
    performance.
    Regards,
    Abhinav Banerjee
    SAP Business One Forums Team
    Edited by: Abhinav Banerjee on Nov 22, 2008 2:40 AM

  • Unbalanced Transaction [ Message 131-91 ]

    Dear All Experts,
    Iam getting error Unbalanced Transaction [ Message 131-91 ] when im adding Draft A/R Invoice.
    This A/R Invoice has been made from the Sales Order.
    Regards,

    Hi
    Rounding Method:
    By Currency:
    It means, we can round the document total as manually. For eg., in setting if u select this method, each and every document u can see rounding field Below the Total before Discount, freight and Discount.
    Then u can tag that it an Miscellaneous Expenses account.
    By Document:
    Vice versa. U cannot tag to any account.
    Giri

  • DI API Problem when generating documents with Item with BOM "Template"

    I have a web application we've been using for years, we created an interface to select with child items from the BOM template you want to add, just like in SAP when you add this items in the document lines.
    For some reason through the DI it automatically adds again this items additionally to the ones I selected, is there a way to change this behaviour?
    I checked the Document.Lines.Count property when I add the item and after I add it in SAP and I get the total items that I put in the first place, but in the final document in SAP its completly different

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using SAPbobsCOM;
    namespace SAP_Error_Demo
        class Test
            public static void Execute()
                try
                    Company company = new Company
                                              DbServerType = BoDataServerTypes.dst_MSSQL2005,
                                              Server = ".",
                                              UseTrusted = true,
                                              CompanyDB = "ESHOPS",
                                              UserName = "manager",
                                              Password = "manager"
                    int returnValue = company.Connect();
                    int errCode;
                    string errMsg;
                    if (!returnValue.Equals(0))
                        company.GetLastError(out errCode, out errMsg);
                        MessageBox.Show(string.Format("Connection Error: {0}", errMsg));
                        return;
                    Documents document = (Documents) company.GetBusinessObject(BoObjectTypes.oOrders);
                    document.CardCode = "yuval";
                    document.Series = 2;
                    document.DocDate = DateTime.Now;
                    document.DocDueDate = DateTime.Now.AddMonths(1);
                    document.DocCurrency = "$";
                    Document_Lines lines = document.Lines;
                    lines.ItemCode = "21725";
                    lines.Quantity = 1;
                    lines.UnitPrice = 54.021;
                    lines.Price = 54.021;
                    lines.VatGroup = "V1";
                    returnValue = document.Add();
                    if (!returnValue.Equals(0))
                        company.GetLastError(out errCode, out errMsg);
                        MessageBox.Show(string.Format("An error ocurred when adding document: {0}", errMsg));
                        return;
                    MessageBox.Show("Document was generated successfully");
                    company.Disconnect();
                catch (Exception ex)
                    MessageBox.Show(string.Format("Error: {0}", ex.Message));

  • Period is locked for new data [Message 131-107]

    Hi all,
    One of my client was faced this problem "Period is locked for new data [Message 131-107]" when they do Period-End-Closing for Year 2008 in SAP Business One 2007A Patch 42.
    Can anyone help me?
    Thank you.
    Best regards,
    danny

    Hi Danny,
    Check the link
    Period End Closing
    *Close the thread if issue solved
    Regards
    Jambulingam.P

  • To do any actions with adding document

    Hello all!
    I want to do any actions with adding document (A/P Invoice for example). How I can do it? (If I catch event from Item_pressed (button "Add"), it's don't work allways, becouse adding document may be failure (didn't edit Dates, or serial numbers for example)
    Thanks.

    Ad, hello.
    If I use BeforeAction = False it's doesn't control adding document too. For example:
    If pVal.FormType = 133 And BubbleEvent = True Then
         Select Case pVal.EventType
             Case et_ITEM_PRESSED
             If pVal.Before_Action =False  And  pVal.ItemUID  = "1" Then
                  SBO_Application.MessageBox " !!!!!!!"
             End If
          End Select
    End If
    This code send you message independing of success adding document... But I want send it only after success adding...

  • Alarm or notice when a Document is created

    I need to create an alarm ,message or notice when a document is created. Especially when a Good Receipt PO is created, I need an alarm or message to a specific user in SBO. Any help?

    Hi Hector
    I realise id that means
    SELECT Top 1 T0.DocNum, T0.CardCode, T0.CardName FROM OPDN T0 INNER JOIN OHEM T1 ON T0.OwnerCode = T1.empID WHERE T0.DocStatus ='o'  and T1.empiD ='1'  ORDER BY T0.DocNum Desc
    OHEM .empid is stored in Human resources modules >> considering the empID 1  is owner of the purchase order.
    By the way 
    What do you mean by sole document ? Can you explain what exactly(field)
    you want to see  in the alert ?
    Actually with the yellow arrow you can see the detail of the report  by drill down
    Thank you
    Bishal
    Edited by: BIshal Adhikari on Dec 17, 2008 5:27 PM
    Edited by: BIshal Adhikari on Dec 17, 2008 5:36 PM

  • How to Given the Message when Adding the Marketing Documents

    Hello Experts,
    I have Required only Message for when Adding the Markeing Documents that times
    I want give the message for  " Please Check the Control Account"
    Is IT Possibal  in SAP
    Dixit Patel

    Hello Dixit Patel,
    It is possible but that need SDK coding.
    Thanks,
    Gordon

  • Mail compose window jumps to back when adding address. As soon as I add a single character to the address window of a new mail message, it pops  under all other existing windows. If I have others open...and who doesn't? I have to then close them all.

    So.....deeply....disappointed by Lion...
    It honestly gets in the way of getting things done.
    When was the last time you had an upgrade, in any program or  OS that caused an immediate productivity drop?
    Mail windows, when adding a new address, pop under to become the lowest window in the stack...before you are done composing...
    no extra clicks..just adding ONE character to the actual address bar does it.
    Trying to add files to an online content management system is hard...it's hard because when you attempt to add the file, it disappears from
    the list, so a search must be conducted...oh not a search of your hard drive...no...it has to include ALL FILES and that takes a while, showing
    files totally unrelated to what you need or in whatever that view is, showing everything from movies to documents, to a whole range of other stuff
    that is irrelevant to what is being sought.
    I can get used to the disappearing icon tool bar...but the message threading in Mail is so strangely bad it's hard to describe. So you send out an email,
    and it had 5 points...but that was 3 emails before...A reply comes in addressing those 5 points but saying something like ..."I disagree with point number 4"
    Unless you have total recall the thread shows you only incoming mail and the LAST most recent folded up message you sent. You are forced to go digging
    into sent mail to see what that point you made 8 days eariler actually was...
    I am pleased that I don't have to have Launchpad (honestly the silliest 'feature' I've ever seen on a computer) in the dock and see no point in the juvenile Mission Control (the naming scheme is odd and reminiscent of Junior Spaceman...how ironic that we end America's manned launch capability at the same time as Launch Pad and Mission Control, both throwbacks to the 60's are added to an OS). In any case both are virtually useless tools. One, replacing the mildly useful Spaces and the other just genuinely useless.
    I'm going to give Apple until the second bug fix...but I can tell right now that Snow Leopard was a far more robust OS. The thousands of posts about this may rise to the level of AntennaGate...I hope so...It seems the only way to get Steve (for whom I have now honestly lost respect for the FIRST TIME) to address the issues is to embarrass the company publicly. Lion is a broken system, poorly conceived...and proof that the Apple methodology of no widespread user testing can and does fail. This needs to get fixed. Soon.

    It seems to have something to do with profile manager.
    I get stack traces in the "system messages" logs for the "Server" application, grrrr.
    I'll get that info and attempt to submit a but report tonight.

  • Error when adding a Document

    When i try to add document to PM a error window appears with this msg- There is no copy of Word 2000 or later installed on the server, which is required for this feature. Please contact your Contract Management Administrator.

    Depending upon the PCM version, some versions require Word to be installed on the PCM web server; others do not.  Check your version installation documentation.  Later versions don't require it to be installed on the server, BUT, see next comment, you may still get message.
    Also, when in PCM (user interface) even with Word installed you may still receive this message if your client (user) machine is not configured with the correct ActiveX settings.  Typically, adding your PCM site to "Trusted Sites" in IE resolves this, though sometimes additional changes to the Trusted Site options/settings needs to be modified.

  • Create workflow to email all users added to a sharepoint list when a document is created / modified

    Hello,
    I need to have a list, lets call it List A, that is used as a collection of users which will recieve an email when a document that is added or modified in a different library, Library A.  Essentially I want the workflow to parse all of the users added
    to List A and email them upon the modification or addition of a document to Library A.
    I know how to setup the email but i dont know how to parse the list and create a dataset of all the users so i can set that in the To field of the email.
    thank you,
    Marc

    Hi Marc,
    As I understand, you have a list to store user accounts, and you would like to send email to the user accounts in this list via a workflow associated with another library.
    In my test, I didn't get all values of person or group value of all items in a list which is used to store user accounts.
    I'd recommend you use a SharePoint group to replace the function of the list which store user accounts. Then in the workflow, you could send email to this group and the message will be sent to indivisual members of this group.
    Please refer to the screenshot below to add SharePoint group to email To box:
    Regards,
    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] .
    Rebecca Tu
    TechNet Community Support

Maybe you are looking for

  • Error: 500 internal server error

    Hi everyone, I'm using sharePoint online and I want to add a new button for log out. I added this in my <asp:Content ContentPlaceHolder> <a href="/_layouts/SignOut.aspx">Log out</a> but I got 500 error. why is that? thank you!

  • Can I embed fonts in exported Word docs in 09

    As it says. Can I embed fonts in an exported DOC type document, in Pages 09, or 5.2 for that matter? thanks

  • How to send an email with an attachment of discoverer report

    Hi Alll, My requirement is i should have one concurent program this concurrent program's output will be the discoverer report's output.. and i have to send this report output as an attachment through th email. Please advice me, Thank You.

  • How to make selection-screen block as unvisible?

    hi, in report program there are two selection screen blocks like this. SELECTION-SCREEN BEGIN OF BLOCK b1.      parameters: rb1 as radiobutton group r1 user-command ucomm,               rb2 as radiobutton group r1,               rb3 as radiobutton gr

  • ADF BC - easier change of linked attr name

    Hello JDev team, please make changing of a linked attribute name easier, for example through refactoring. "Linked attr" means that the attribute is a part of a association or a view link. Now it is not possible to change it without changing/deleting