Incorrect doc.no.: 24. Select document number between 0090000000 and 009999

Hi All,
I created billing doc, it save and gave the number but with error on account determination, i checked the no range corrected it and got the error: Incorrect doc.no.: 24. Select document number between 0090000000 and 0099999999.
Please Help.
Maureen.

I very much hope you've done it in a test system.
It seems that your document was given number 24, according to the number range that existed at that time. Then you went and changed the number range to 900000... and, naturally, number 24 is not within the valid range anymore. So what else did you expect?
If it was (fingers crossed) a test system, just forget about that document and create a new one. Otherwise you'll have to change the range back, then cancel the document 24 (make sure the cancellation does not post to accounting either), then change the range again.

Similar Messages

  • Incorrect doc.no.: select document number between 82139259 and 000000000

    Hi Expert,
    When i try to to Release to Accounting t for a Billing Document (VF02)-->Change Billing Document --> Release to Accounting, It is not creating accounting Document instead it Says the Below Error.Pls Help to resolve this.
    Incorrect doc.no.: select document number between 82139259 and 00000
        Message no. F5151
    Diagnosis
        The document number you specified, "&v1", is not in the ap
        number range. The number range is dependent on the documen
        The exception to this rule is formed by recurring entry do
        must use number range 'X1' and sample documents, which mus
        range 'X2'.
        Possible reasons for this error message are:
        o  You have entered an incorrect document number.
        o  An incorrect document number was transferred to this ap
           during an update from another application (e.g. CO).
    System response
        The document cannot be processed any further.
    System response
        The document cannot be processed any further.
    What to do
        o  Enter a document number that is within the specified number interval.
        o  If this error was caused by an update from another application, check
           the type of number assignment in that application (external or
           internal?) as well as the document number transferred.
    Example
        In the CO settlement profile, a document type with external number
        assignment was entered, whereas an internal document number was
        transferred.
    PLs Help
    Zubair
    Edited by: MhdZubair on Mar 22, 2011 10:42 AM

    Hi,
    Please refer the link :
    Incorrect doc.no.: 2. Select document number between 6300000000 and 6399999
    Regards,
    Pramitha.

  • BD87 - IDOC Inbound - Incorrect doc.no.: &. Select document number between

    Hi to All,
    I have a problem with my IDOC, Incorrect doc.no.: 1137325122. Select document number between 4061000000 and 4061999999
    I checked FBN1 for company code '750' object 2Z  has number range
    No           Year          From                         to
    2Z     9999     4061000000     4061999999
    but in IDOC wrong document number is being generated eventhough in debugging mode 2Z is being used.
    Hoping for your Help
    Thanks,
    Raizen

    Hi,
    Please refer the link :
    Incorrect doc.no.: 2. Select document number between 6300000000 and 6399999
    Regards,
    Pramitha.

  • We have only GL SAP document number. how to find Vendor clearing document by these GL Document number please suggest and suggest Tcode.

    We have only GL SAP document number. how to find Vendor clearing document by these GL Document number please suggest and suggest Tcode.

    Hi Mahesh,
    To display a document, proceed as follows:
    Tcode : FBL1N (Vendor Line Item Display)
    1-Select option's.
    2- List
    Regard's.
    Cem Ates

  • Table to link FI document number, line item and pricing condition type

    Hi,
      I am looking for tables to link the FI document number, line item and PO pricing condition type.
      Appreciate any help on this.
    Thanks.

    For any PO in ME23n in which Goods receipt has happened, you can check in the itemdetails->Po history tab in ME23n.
    Here you will find the material document number. Just click on the material document, it will take you to anpther screen here you will find a button for FI document.
    Click that button for FI document. In PO history istelf you can see the Condition types.
    Hope this helps.

  • Random Number between 10 and 30

    I'm just curious how to generate a random number between 10 and 30. I know I use the Math.Random function, but I'm not certain how to do it when the starting number is >1 (i.e. 1 to 30). Thanks.

    Random Number in an Interval:
    ((int) (randomGeneratedNumber * difference)) + startIndex + 1
    * randomGeneratedNumber - Number >= 0 and <1
    * difference: To generate between 10 and 30, (30 -10 = 20)
    * startIndex: In this example, 10
    * +1: Neccesary adjustment.
    Example:
    ((int)(randomGeneratedNumber * 20)) + 10 + 1
    PD. Int cast it's to generate int numbers, so it's optional.

  • How to Build a VI that generates a random number between 1 and 80 ....Help!!!!

    Build a VI that generates a random number between 1 and 80 
    Divides the random number by a number specified in the front panel.
    If the inputted number is zero, the VI program should turn on a LED in the front-panel to indicate a divide by zero error.
    Solved!
    Go to Solution.

    One quick question Edward, was the answer just in time for your monday morning class.
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • How I get random number between 1 and int number ?

    how can I get random number between 1 and int number
    like between 1 and 10 etc.
    10x

    Use the nextFloat() method of the Random class, this returns a random number between 0.0 and 1.0. To get and integer range from that multiply the return value of that method call by the integer range you need (in this case 10), and add the starting number you want returned in the range (1 in this case). The code below works for numbers 1-10.
    Random r = new Random();
    int x = (int)(r.nextFloat()*10) +1;

  • Select where timestamp between date1 and date 2

    try a lot of variations but still dont work
    this was my last shot, then i come here ask for help
    the field DATAHORAS is timestamp
    data1 and dat2 will come from a form
    To_Date(S.DATAHORAS, 'dd/mm/yyyy hh24:mi:ss')
    Between Cast(To_Date(:data1) As TimeStamp) And Cast(To_Date(:data2) As TimeStamp)
    thanks in advanced

    No. You don't need to. But....
    Edit: I was originally using a stupid example using DUAL which was completely misleading - sorry.
    Originally I used the example below to show that you don't have to do an explicit conversion.
    Things will still work comparing timestamps and dates.
    SQL> select systimestamp, sysdate, sysdate+1
      2  from dual
      3  where systimestamp between sysdate and sysdate + 1;
    SYSTIMESTAMP                        SYSDATE              SYSDATE+1
    09-FEB-10 13.58.35.712017 +00:00    09-FEB-2010 13:58:35 10-FEB-2010 13:58:35But then I added an explain plan to show that implicit conversions were going on:
    1  explain plan for
      2  select systimestamp, sysdate, sysdate+1
      3  from dual
      4* where systimestamp between sysdate and sysdate + 1
    SQL> /
    Explained.
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 4192335797
    | Id  | Operation        | Name              | Rows  | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT |                   |     1 |     1   (0)| 00:00:01 |
    |*  1 |  FILTER          |                   |       |            |          |
    |   2 |   INDEX FULL SCAN| SYS_IOT_TOP_57625 |     1 |     1   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       1 - filter(SYS_EXTRACT_UTC(SYSTIMESTAMP(6))<=SYS_EXTRACT_UTC(SYSDATE@
                  !+1) AND SYS_EXTRACT_UTC(SYSTIMESTAMP(6))>=SYS_EXTRACT_UTC(SYSDATE@!))
    15 rows selected.
    SQL>However, this example is misleading because it's not the same implicit conversion you get with a proper table with a timestamp column:
    SQL> create table t1
      2  (col1 timestamp);
    Table created.
    SQL> ed
    Wrote file afiedt.buf
      1   explain plan
      2   for
      3   select *
      4   from   t1
      5   where col1 between to_date('08-JAN-2010','DD-MON-YYYY')
      6*             and     to_date('09-JAN-2010','DD-MON-YYYY')
    SQL> /
    Explained.
    SQL>
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 3617692013
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |     1 |    13 |     2   (0)| 00:00:01 |
    |*  1 |  TABLE ACCESS FULL| T1   |     1 |    13 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       1 - filter("COL1">=TIMESTAMP' 2010-01-08 00:00:00' AND
                  "COL1"<=TIMESTAMP' 2010-01-09 00:00:00')
    Note
       - dynamic sampling used for this statement
    18 rows selected.
    SQL>Which is really what you want.
    It has an implicit conversion on the date parameters and no implicit conversion on the column which would prevent index usage if there were an index.
    Interestingly if you explicitly convert the dates to a timestamp, then you can get an extra filter predicate comparing the two parameters:
    SQL> explain plan
      2  for
      3  select *
      4  from   t1
      5  where col1 between cast(to_date('08-JAN-2010','DD-MON-YYYY') as timestamp)
      6             and     cast(to_date('09-JAN-2010','DD-MON-YYYY') as timestamp);
    Explained.
    SQL>
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 3332582666
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |     1 |    13 |     2   (0)| 00:00:01 |
    |*  1 |  FILTER            |      |       |       |            |          |
    |*  2 |   TABLE ACCESS FULL| T1   |     1 |    13 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       1 - filter(CAST(TO_DATE(' 2010-01-08 00:00:00', 'syyyy-mm-dd
                  hh24:mi:ss') AS timestamp)<=CAST(TO_DATE(' 2010-01-09 00:00:00',
                  'syyyy-mm-dd hh24:mi:ss') AS timestamp))
       2 - filter("COL1">=CAST(TO_DATE(' 2010-01-08 00:00:00', 'syyyy-mm-dd
                  hh24:mi:ss') AS timestamp) AND "COL1"<=CAST(TO_DATE(' 2010-01-09
                  00:00:00', 'syyyy-mm-dd hh24:mi:ss') AS timestamp))
    Note
    PLAN_TABLE_OUTPUT
       - dynamic sampling used for this statement
    23 rows selected.oracle version 11.1.0.6
    Sorry about the mistakes in previous version of this reply.
    Edited by: DomBrooks on Feb 9, 2010 2:25 PM

  • Random number between .2 and 1

    How do I generate a random number between 0.2 and 1.0

    ... or for - eg for 2 decimal places try this;-
    java.util.Random rand = new java.util.Random();
    int i = 20 + rand.nextInt(80);
    double d=(double)i;
    d /=100;

  • The updated Pages App. Documents sync between ipad and iphone, but only open on ipad. When I try to open docs on iphone, a message comes up saying "Cannot open document."

    My iPad 2 and my iPhone 4S automatically updated my Pages App, which I used all the time. It did sync all my documents between the two devices but it will not allow me to open docs on iPhone, only on iPad.
    That's never happened before. I am just now updating my phone (4S) to iOS 7.0.3. Maybe that will do the trick?

    Thanks very much for the instructions.  I encountered this problem this morning myself and the recommendation fixed the problem immediately.  When things like this happen with iCloud and Pages it makes me wonder if I might be better off using something else, having just recently had to fix the problem that the current Pages can't read documents I created with a much earlier version until they were "upgraded" by an interim version.

  • Why is it no longer possible, since the iPhotos upgrade to 9, to select a number of photos and "hold on to them" when changing to a different left-margin "view"?

    There has been a downgrade since iPhotos was… upgraded.
    Before iPhotos was upgraded to 9, It USED to be that
    IF you chose a photo or a number of photos WITHIN an event
    (ensuring that they were engulfed in yellow or blue),
    and THEN went to the left margin and clicked on Photos
    in order to view the ENTIRE library's photos
    (not just those in that particular event),
    the selfsame photos would REMAIN chosen in the LARGER context.
    That is no longer the case.
    And that was very useful, because
    if you wanted to move a batch of photos within one event
    to within another event, that was the easiest way to do so
    — whereas now, we have to search for and "find" them all over again.
    When I go "back" to Photos, I not only lose the selected images,
    say from March 2009, I end up at a totally different place,
    say in October 2006, and I have to do lots more "work" finding
    the photos again then used to be the case.

    Flag the Photos.
    Switch to Events View
    Select the Target Event
    Events menu -> Add Flagged Photos to Selected Event
    Regards
    TD

  • How do I selectively sync contacts between MacBook and iPhone?

    I see several posts mentioning select groups, etc. in iTunes. But when I enter the "Info" tab in iTunes, the only option (radio button) available is "All contacts;" "Select groups" is greyed out.
    Wait - my MacBook Pro's Addressbook doesn't seem to allow me to create any group to start with. Any pointers?

    This is most likely an OS X Address Book question.

  • Select a score between 70 and 100 Message no. QS260

    When maintaining percentages for Selected Sets in QS51,  not able to maintain quality score 1 for Rejection Code. System is forcing to  maintain a score range of 70 and 100 (message no. QS260). How to maintain quality score 1 for rejection code

    What is a Min & max score mainatined at the client level
    QCC0>basic setting>client level--> Lowest Q score.
    What you have entered here.It must be zero.
    Then at selected set it will allow to enter score 1.
    Regards
    Sujit

  • Incorrect doc.no.: 412000146.Select doc no between 5110000001 & 5150999999

    Hi Friends,
    My Scenario is:
    Sales order
    Delivery
    Billing
    Returns Order
    Credit for returns
    Credit Memo Cancel
    While releasing the credit memo cancel doc to accounting,i am getting the following error.
    Incorrect doc.no.: 412000146. Select document number between 5110000001 and 5150999999
    Message no. F5151
    Diagnosis
    The document number you specified, "&v1", is not in the appropriate number range. The number range is dependent on the document type.
    The exception to this rule is formed by recurring entry documents, which must use number range 'X1' and sample documents, which must use number range 'X2'.
    Possible reasons for this error message are:
    You have entered an incorrect document number.
    An incorrect document number was transferred to this application during an update from another application (e.g. CO).
    System response
    The document cannot be processed any further.
    Procedure
    Enter a document number that is within the specified number interval.
    If this error was caused by an update from another application, check the type of number assignment in that application (external or internal?) as well as the document number transferred.
    Example
    In the CO settlement profile, a document type with external number assignment was entered, whereas an internal document number was transferred.
    with regards
    Azeez.Mohd

    Hello,
    there are 2 number ranges involved. one it the invoice document number range and the other one is the accounting number range
    now in the VOFA, if for the invoice , you have not metnioned any particular accouitng document type , then the systems by default selects the RV document and the number rabnge for this
    there fore it si selecting 5 series as u have mentioned.
    as mentioned above to correct this and get the 4 series , mention the particular FI document type in vofa for the invoice type
    for the current issue , since the cancel credit memo is already generated , it will take only the 5 series
    for this cancel this credit memo,
    change the settings in vofa for document type to have 4 series accouiting doc
    recreate the ccancellation credit memo
    hope this resolves your issue
    Thanks
    akasha

Maybe you are looking for

  • Problem name: APPCRASH, App name: rrservice.​exe version: 4.0.121.0

    Hi there everybody, I need a bit of help. My Thinkpad R61 8918 A19 started to work slowly at begining and now everytime i login it gets stocked so i can't work on it. The error messagge that appears is this one. Problem event name: APPCRASH Applicati

  • View podcast Comments field on iPod?

    I have a lot of podcasts I listen to on my iPod (classic & nano) but it would be really nice if there were a way to view the Comments field because on these particular podcasts, that's where the info about the show is. Otherwise they basically all lo

  • Assets are not showing in assets list AS02/03

    Hello, We have created 4 asset classes, for each asset class we have created 25 assets but when i will see asset masters it is showing only 25 masters from 1st asset class only. Here my question is why system is not showing remain 3 asset class maste

  • Having Panning Issues

    I need to have certain instrument pan hard right or hard left. When I do this the mixer registers that it is done. But the sounds are still in stereo when the come out of the speakers. Any help will be appreciated. Stuart

  • Dvd asset with 3 chapter markers

    hi folks, hope you can help, probably a dumb question, but here goes nothing! i've got a dvd project with one main asset, a fcp movie with 3 chapter markers. i have set the dvd menu to have 4 buttons, i need them to play certain chapters only. ie but