Define the default series of monthly invoice in document numbering first

Hi , ALL,
When AR Monthly Invoice  is started, the message is displayed.
" define the default series of monthly invoice in document numbering first - 80061-6 ."
I checked the Document Numbering-Setup , Of course, it defines it.
And also checked the Series-Setup. It's OK , I think.
Could you tell me,  What should I check ?
Best regards,
Takahiro

Hi Takahiro........
Welcome to SAP Business One Forum.........
Please try this. Go to Administration> System Initialization> Document Numbering.
Open the AR Invoice Series and when you set any of the series default it asks for certain options.
Are you aware about that Options?
Please select right one and then try to add.
Else select for all users and then try.....
Regards,
Rahul

Similar Messages

  • How to obtain the default serie for a document

    Hi,
        Anybody know how can obtain the default serie for a document throw a query??
    I can`t see the relation between the ONNM and the NNM1 tables because the 'dfltseries' field of the ONNM not corresponding with the 'Series' field of the NNM1.
    For example for an A/P Invoice
    Thanks!!

    Hi Mariano,
    According to the SDK Help file, you need to query the NNM2 table
    Series Default
    Table name: NNM2
    ObjectCode     UserSign     Series     DocSubType
    So, the query to retrieve the A/P default series for the manager user would be:
    SELECT T0.Series FROM [dbo].[nnm2] T0 WHERE T0.ObjectCode='13' AND T0.UserSign = 1
    From the SDK you can replace the T0.UserSign = 1 for T0.UserSign = oCompany.UserSignature to retrieve the default series for the current user...
    Regards,
    Vítor Vieira

  • How can I Get the default series of my UDO Document  ?

    Hi all
    I have create a new UDO (Type=Document,  ManageSeries = Yes) 
    Is there a way to get the default series of my UDO ?
    NB: I have tried the following code sample (SDK help) but it didn't work:
    Example
    [Visual Basic] The following is a VB.NET sample that retrieves the default series of a specified document type.
    Dim oCmpSrv As SAPbobsCOM.CompanyService
    Dim oSeriesService As SAPbobsCOM.SeriesService
    Dim oSeries As Series
    Dim oDocumentTypeParams As DocumentTypeParams
    'get company service
    oCmpSrv = oCompany.GetCompanyService
    'get series service
    oSeriesService = oCmpSrv.GetBusinessService(ServiceTypes.SeriesService)
    'get new series
    oSeries = oSeriesService.GetDataInterface(SeriesServiceDataInterfaces.ssdiSeries)
    'get DocumentTypeParams for filling the document type
    oDocumentTypeParams = oSeriesService.GetDataInterface(SeriesServiceDataInterfaces.ssdiDocumentTypeParams)
    'set the document type (e.g. A/R Invoice=13)
    oDocumentTypeParams.Document = "MyUDO_Code"
    'get the default series of the SaleOrder documentset the document type
    oSeries = oSeriesService.GetDefaultSeries(oDocumentTypeParams)
    'print the default series name
    Debug.WriteLine(oSeries.Name)
    'print the first number of the series
    Debug.WriteLine(oSeries.InitialNumber)
    Regards

    Hi all
    My problem is resolved
    I have find the field "DfltSeries" On the table "ONNM"
    Thanks for all

  • How can I pre-define the default selection in a SelectOneChoice?

    How can I pre-define the default selection in a SelectOneChoice?
    (1) Here's my JSF-code:
    <af:selectOneChoice label="#{res['usercreate.input.sex']}"
    value="#{bindings.Sex.inputValue}"
    binding="#{SelectListBean.sexlist}"
    readOnly="false" autoSubmit="false">
    <af:selectItem label="#{res['data.sex.women']}" value="1"/>
    <af:selectItem label="#{res['data.sex.man']}" value="2"/>
    </af:selectOneChoice>
    (2): manged bean: to set the default value to be the first in the list, my managed bean as follows:
    import oracle.adf.view.faces.component.core.input.CoreSelectOneChoice;
    public class MBSListBean {
    private CoreSelectOneChoice sexlist;
    public MBSListBean() {
    public void setSexlist(CoreSelectOneChoice sexlist) {
    this.sexlist = sexlist;
    this.sexlist.setValue(1);
    public CoreSelectOneChoice getSexlist() {
    return sexlist;
    (3) when i launch the page, it often gives me such warnings:
    WARNUNG: Could not find selected item matching value "1" in CoreSelectOneChoice[UIXEditableFacesBeanImpl, id=_id7]
    how to solve the problem ?
    Thanks,
    wzzdx

    You could also set the default on your entity or viewobject, in the properties of your attribute.

  • How to get the last series of an invoice- DebitMemo

    Hi,
    I need help to know how I can get the last series number of an Invoice with documentsubType = bod_DebitMemo. I can get the las series number of Invoices with the following code:
    private int getSeries(string documento)
                SAPbobsCOM.CompanyService oCompServ;
                SAPbobsCOM.SeriesService oSeriersService;
                SeriesCollection oSeriesCollection;
                Series oSeries;
                DocumentTypeParams oDocumentTypeParamas;
                int elAnterior = 0;
                try
                    //Get company service
                    oCompServ = vCmp.GetCompanyService();
                    //Get series service
                    oSeriersService = (SAPbobsCOM.SeriesService)oCompServ.GetBusinessService(ServiceTypes.SeriesService);
                    //Get series collection
                    oSeriesCollection = (SAPbobsCOM.SeriesCollection)oSeriersService.GetDataInterface(SeriesServiceDataInterfaces.ssdiSeriesCollection);
                    //Get document type params
                    oDocumentTypeParamas = (SAPbobsCOM.DocumentTypeParams)oSeriersService.GetDataInterface(SeriesServiceDataInterfaces.ssdiDocumentTypeParams);
                    //Set document type
                    oDocumentTypeParamas.Document = documento;
                    /*if (documento.Equals("13"))
                        oDocumentTypeParamas.DocumentSubType = "bod_DebitMemo";
                    //Get series collection
                    oSeriesCollection = oSeriersService.GetDocumentSeries(oDocumentTypeParamas);
                    oSeries = oSeriesCollection.Item(0);
                    elAnterior = oSeries.NextNumber;
                catch (Exception e)
                    MessageBox.Show("Se presento un error: " + e.Message);
                return elAnterior;
    And I try to use the DocumentSubType property of DocumentTypeParamas but it seems to be invalid,
    I'll appreciate if you can help me....
    Thanks.....

    Hi,
         Use describe statment.
    data: lv_line type i.
        Describe table itab lines lv_line.
        read table itab into wa_itab index lv_line.
    regards,
    Santosh Thorat

  • How to define the default activity for an unbounded task flow?

    In the new "Fusion Developer’s Guide for Oracle Application Development Framework 11g Release 1" documentation at the bottom of page 14-3 it states "An unbounded task flow .... contains a default activity, an activity designated as the first to run in the unbounded task flow, because an unbounded task flow does not have a single point of entry."
    What I can't find is how to define the default activity in an unbounded task flow and where this is recorded? Can we set this via the task flow diagrammer, and which configuration file is it stored?
    I note the first time I run the application with an unbounded task flow a dialog asks me which of the activities in the adfc-config.xml file to make the default, but I can't find where this is recorded.
    Anybody have any ideas?
    Thanks,
    CM.

    Chris,
    In fact this information is nothing that belongs into the taskflow meta data because unbounded taskflow have more than one entry point and there is no notion of default. Its a tools setting (JDeveloper) we had before
    Frank
    Message was edited by:
    Frank Nimphius

  • What defines the default font?

    What defines the default font used in an applet besides the font.properties file? I'm running an applet on two NT systems with identical font.properties files but the applets use two different fonts. Is there an OS setting in NT that would override the default in Java?

    To my best of knowledge, it's completely contained in the font.properties file. At least for jdk118. You can always create and define other fonts in your font.properties file even going to the extent of removing the ones you don't like probably but I haven't done that. I have added new fonts to the font.properties file and then set what ever component you are using to this new font. So to create a new font to use on a button and add the button to a panel.
    p1 = new JPanel();
    Font bf = new Font("comic",Font.BOLD,16);          
    JButton bj = new JButton(label);
    bj.setFont(bf);
    bj.addActionListener(this);
    p1.add(bj);
    Note that in my font.properties file I added the following line:
    comic.0=Comic Sans MS, ANSI_CHARSET
    joberoni

  • How do you set the default magnification for Acrobat.  All documents that I open enlarge to 174% and are too big.

    How do you set the default magnification for Acrobat.  All documents that I open enlarge to 174% and are too big.  I see how to change the size after the document is open by going to File/properties/initial view and saving this setting.  I want all documents to open at 100% when they are first opened.  Can I set this as a default view?

    Hey Kris,
    You might go to Edit> Preferences> Zoom
    Do this without opening any particular PDF so that it applies to the program itself and not just one document.
    Try this and then let me know.
    Regards,
    Anubha

  • Detect what the default edit form is for a document library and list using jquery

    Hi,
    So what I have done is with some jquery made it that when a files are dragged and dropped into a document library and there is a required field such as "Metadata" the EditForm.aspx opens up for the user to fill in the required column. I am building
    the url up from what I have found in SharePoints DragDrop.js file. This is all working perfectly I just need to find a way to dynamically find what the default edit form is for that document library as I have just hardcoded like this...
    g_currentControl.strSiteUrl + "/" + this.ListName + "/Forms/EditForm.aspx?ID=" + id
    So I need a way to figure out what the default edit form is instead of hard coding like this in case someone creates a custom_editform.aspx or something for one of the lists.
    Thanks

    You can get it by hitting this REST end point via JQuery:
    http://weburl/_api/Web/Lists(guid'YOURLISTGUID')/Forms
    Chris Givens CEO, Architecting Connected Systems
    Blog Twitter

  • Making iWork the default apps for opening Microsoft Office documents

    Is there a way to make Pages, Numbers and Keynote the default apps for opening Microsoft Office documents, such that if I double-click a Word document it launches Pages and opens, etc.? I know I can do it by double-clicking the Office document and dragging it to the appropriate iWork app in the dock, but it would be nice to have it happen by default. That way I can put Office in my rearview mirror!

    Fantastic - worked exactly as advertized. Thank you both!! Office is now a distant memory (except when I have to save in MS formats to send files to the unfortunate masses).
    Best regards,
    John McMahon

  • How do I set the default window size when I open a Numbers 3.0 document

    How do I set the default window size when I open a Numbers 3.0 document?
    When I open an existing document it always open too small, I resize it but next time I open it it's small again! Please help! I used to be able to resize them then they stayed that size until I resized it no matter how many times I opened and closed it before upgrading to 3.0!!!!

    This document can help you set the print settings for any type of printing. Not just for photos as the title suggests. You should not have to keep setting it every time.
    Printer settings
    007OHMSS
    I was a support engineer for HP.
    If the advice resolved the situation, please mark it as a solution. Thank you.

  • HOW to define the default language in the portal

    Normally the portal take the language of the internet explorer for user.
    I want to define a default language for all portal users in our portal, so that every user get the same default language.
    Can anyone tell me how to do this?
    We are on EP6 SP2.
    Thanks Sybille

    Hi Olivier,
    thank you for the response.
    I added
    request.mandatorylanguage=de
    request.mandatorycountry=de
    to
    request.defaultlanguage=de
    request.defaultcountry=de
    Now, I get the default language german, but when I want to changed the portal language over personalize to English, the result is nevertheless the german language.
    Can you help me again? Where can I get a documentation about this?
    I want a default language: German. Also when the Internet Explorer has a different language. But when the user select manual one of the permitted languages (English and German) over the personalize button, the language should change to the selected language. Is it possible?
    Bye Sybille

  • How to define the default thumbnail, appearing after exporting a video in Premiere Pro?

    Hi community,
    When I export a video in Premiere Pro, the default thumbnail (appearing in windows file explorer for example) is never the best.
    At my job, I need to create a lot of video that I publish through a CMS. Every time, i need to reset the preview thumbnail of the video because the default one is not accurate.
    How to define which frame of my video will be used as a preview thumbnail after the video is exported?

    This is not something you can control with PP.

  • REG : Logic to define the default purchaser in Purchase org

    Hi SRM Gurus,
    Need your help and suggestion in one issue.
    In Standard system default Operational purchaser information responsible for processing shopping cart is not available.
    The requirement is to determine the Default Operational Purchaser, as in standard SRM system Auto PO's will be created using RFC user, which means that, there is no buyers who has the ownership of the POs' and its changes. Hence this scenario is used to assign the ownership of the Auto PO's, since we are not using sourcing cockpit, so all POs' will be Auto PO's.
    We dont have the Sourcing Cockpit scenario, so we thought of two possibilities :
    1. By marking the lead buyer as the head of the organization ( A check box at the basic data tab at user level).
              Or
    2. By maintaining a custom attribute at the buyer user level (Through SM30 view T77OMATTR).
    Now I need suggestion from you all as if we use the first option the workload distribution would be high as each and every PO from a particular Pgrp would land into a buyers inbox and it wont be good as per the business perspective.
    Please suggest me the solution for this issue.
    Thanks,
    Aakash Awasthi.

    Hello,
    Aakash Awasthi wrote:
    Yes I got that, but I wanted to know ,if I would select the default purchaser By marking the lead buyer as the head of the organization ( A check box at the basic data tab at user level).
    Is there any way to retrieve it via code or any BADI... as I will get the default purch grp from the badi BBP_PGRP_FIND... but not the purchaser.
    Create a specific attribute to manage this.
    Then, check user's attributes with user context lo_user_context = /sapsrm/cl_pdo_factory_user=>get_buffered_user_context( )
    Aakash Awasthi wrote:
    Also we want a way to change the default purchaser once we populate it in the custom field...as we have a req that requistioner can change the default purchaser at the item level to reduce the work load.
    This is a CUF, so change its value... Do not understand your problem.
    Regards.
    Laurent.

  • Is it possible to change the default PDF file name from 'LabVIEW Document.pdf'?

    My application uses the 'Automatically print front panel every time VI completes execution' functionality to print front panels.  When I have my printer set to 'Adobe PDF', a dialog pops up and the default file name is 'LabVIEW Document.pdf'.  Is there a way to programatically set the name to something other than 'LabVIEW Document.pdf'?
    I've already found a solution that manipulates the Windows registry, and I'm looking for another option.
    Brent

    Do a search, as this question has come up before. The solution centered on not using the Adobe PDF printer driver but one that is intelligent.

Maybe you are looking for

  • IPod touch 4G causes windows 7 to blue screen when connecting to iTunes

    Wife bought me a new iPod Touch 4G for Christmas. A few days ago it started to cause my Windows 7 (64bit) to blue screen randomly while connected or sometimes when I first connected it.  Did a Windows re-install and crashes Windows each time I connec

  • Printing a PDF Booklet problem

    Hello, I have a PDF that I would like to print. When I go to my print options, in the lower left I can select "PDF Booklet." I select that option and it looks as though the pages are being compiled. But after a few moments, I get this warning: The ac

  • Short table name in SELECT statement

    Does Oracle support anything like the following sintax: SELECT * FROM TABLE1 AS T1 Thanks in advance

  • Dimension table design Data modeling question

    Hi Experts, Sorry if I am putting my question in a wrong forum and please suggest an appropriate forum. need your opinion on the existing design of our 10 years old datawarehouse. There is one dimension table with structure like following Dimension T

  • ThinkPad USB Keyboard with TrackPoint (55Y9053)

    hi. I've installed my keyboard on a brand new XP system, using what's supposed to be a 1.09 driver, but the driver version under hardware properties keeps showing 1.0.0.0, and I'm not getting any special thinkpad options for the keyboard. It seems to