Error in billing number range interval.

Hi,
I created a new billing type. I assigned the number range properly. But at the time of billing document generation, system is throwing a message "For object RV_BELEG , number range interval  doesnot exist". I have checked in 'SNRO' against the object type 'RV_BELEG' , the number range interval that I have assigned for the new billing type is existing there. Still the error is coming.
Please suggest what needs to be done.
Thanks & regards,
Rupam.
Edited by: RUPAM KR SEN on Mar 21, 2011 10:46 AM
Edited by: RUPAM KR SEN on Mar 21, 2011 10:47 AM

Hi Samit,
Thanks a lot for your suggetion. There is an user exit but with different program name in our system. Due that user exit the  customizing done by me was not working properly. The exit has been deactivated and now it's working fine.
Thanks & regards,
Rupam.
Edited by: RUPAM KR SEN on Mar 21, 2011 1:56 PM

Similar Messages

  • Re : Maintain number range interval "" for quants

    Hi
        While doing the transfer order i am getting the following error.
    " Maintain number range interval "" for quants "
    How to solve this.
    Thanks
    Anto

    dear sir
    go to Tcode : OMLW click for quants tab, give your warehouse number and maintain the number ranges, for your warehouse.
    Regards
    jrp

  • Billing document( T code:VF01) number range interval error

    Hi Guru,
    While Creating Billing document i.e (VF01) I got an error. But apart from that I already maintain the Number range Interval in FBN1 as well as SNUM. But that number ranges I assigned in Billing document type also. Then also facing the same error.
    So please give me some solution Asap
    Regards,
    Sukdev.

    Dear Neel,
    Please find the Screen shot for VN01
    and please find my Sales document type Number range assignment.
    and please find my billing document type number range assignment.
    Regards,
    Sukdev.

  • Error :number range interval 01 does not exist

    Hi,
      i created a number range object Z_REPORTID in SNRO for autogenerated ids and later used the function module NUMBER_GET_NEXT. After execution i got the following error.
    For object Z_REPORTID, number range interval 01 does not exist
    Message no. NR751
    Diagnosis
    The database table NRIV has the delivery class 'C', i.e. the SAP default settings are only in client 000.
    Procedure
    Create the missing number range interval in customizing
    Please help me to trace this out.
    Thanks,
    Anila

    Hi
    AFter creating the number range interval in SNRO you must TRANSPORT the interval. In the first screen --> Interval --> Transport.
    Did you perform that step?
    If you did that it should work well. Itried the same now and it is working fine.

  • Error: For object RF_BELEG 9000, number range interval 92 does not exist FB

    Hi,
    When I am executing AFAB in test run mode for a particular company code I am getting below mentioned error:
    +For object RF_BELEG 9000, number range interval 92 does not exist FBN1+
        +Message no. NR751+
    +Diagnosis+
        +The database table NRIV has the delivery class 'C', i.e. the SAP default+
        +settings are only in client 000.+
    +Procedure+
        +Create the missing number range interval in customizing.+
        +Transaction code: FBN1+
    When I maintain number range 92 this error goes away. My question is we have no where assigned this number range 92 to any of the Document type then why system is asking to maintain the same?
    Sanjay

    Hi,
    You might be using the number range (say 92 which you've created in GL view & not in ENTRY view).
    Steps:
    Go to Define Document Number Ranges for Entry View OR use T-code FBN1.   Maintain & Assign two Number Ranges say 91 & 92 one for Document Type AF and another for AE for both the non-leading Ledgers say Y1 & Y2 ( Define Document Type for Entry VIew in a ledger). Also assign a number range to
    Document type SX (Closing Posting) apart from the above two Number Ranges (91 & 92)
    Hopefully it works for You............
    Dipti

  • Number range interval doesnot exists - error message while generating numbe

    Hi Experts!,
                      I am getting error as " Number Range interval does not exists" while generating auto number for an custom defined tr cod
    The prg is as followos:
    INCLUDE MZFIRSTPAGETOP                          .    " global Data
    TABLES: ZCHP_CUST_INFO.
    DATA: OKCODE LIKE SY-UCOMM.
    DATA:   CNAME LIKE ZCHP_CUST_INFO-CREATED_BY,
            REQTYP LIKE ZCHP_CUST_INFO-REQUEST_TYPE,
            DESC LIKE ZCHP_CUST_INFO-SHORT_TEXT,
            PRIO_TYPE LIKE ZCHP_CUST_INFO-PRIORITY_TYPE,
            EFFECTIVE_DATE like ZCHP_CUST_INFO-REQUIRED_STR_DAT,
            COMM_TYP like ZCHP_CUST_INFO-MODE_OF_COMM,
            COMM like ZCHP_CUST_INFO-ADDRESS,
            REQ_NUM LIKE ZCHP_CUST_INFO-REQ_NUM.
    *&      Module  STATUS_0100  OUTPUT
          text
    MODULE STATUS_0100 OUTPUT.
      SET PF-STATUS 'FOR1000'.
      SET TITLEBAR '1000'.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    INCLUDE MZFIRSTPAGEO01                          .  " PBO-Modules     *
    INCLUDE MZFIRSTPAGEI01                          .  " PAI-Modules     *
    INCLUDE MZFIRSTPAGEF01                          .  " FORM-Routines   *
    *&      Module  USER_COMMAND_1000  INPUT
          text
    MODULE USER_COMMAND_1000 INPUT.
    CASE SY-UCOMM.
      WHEN 'SUBMIT'.
    CALL FUNCTION 'NUMBER_GET_NEXT'
      EXPORTING
        NR_RANGE_NR                   = ' '
        OBJECT                        = 'ZREFNUM'
      QUANTITY                      = '1'
      SUBOBJECT                     = ' '
      TOYEAR                        = '0000'
      IGNORE_BUFFER                 = ' '
    IMPORTING
      NUMBER                        =
      QUANTITY                      =
      RETURNCODE                    =
    EXCEPTIONS
      INTERVAL_NOT_FOUND            = 1
      NUMBER_RANGE_NOT_INTERN       = 2
      OBJECT_NOT_FOUND              = 3
      QUANTITY_IS_0                 = 4
      QUANTITY_IS_NOT_1             = 5
      INTERVAL_OVERFLOW             = 6
      BUFFER_OVERFLOW               = 7
      OTHERS                        = 8
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
            ZCHP_CUST_INFO-REQ_NUM = REQ_NUM.
            ZCHP_CUST_INFO-CREATED_BY = CNAME.
            ZCHP_CUST_INFO-REQUEST_TYPE = REQTYP.
            ZCHP_CUST_INFO-PRIORITY_TYPE = PRIO_TYPE.
            ZCHP_CUST_INFO-SHORT_TEXT = DESC.
            ZCHP_CUST_INFO-CREATED_ON = EFFECTIVE_DATE.
            ZCHP_CUST_INFO-MODE_OF_COMM = COMM_TYP.
            ZCHP_CUST_INFO-ADDRESS = COMM.
    *ENDIF.
    INSERT ZCHP_CUST_INFO.
    COMMIT WORK.
    WHEN 'RESET'.
           CLEAR: CNAME,REQTYP,PRIO_TYPE,
    DESC,EFFECTIVE_DATE,COMM_TYP,COMM.
      WHEN 'CANCEL'.
            LEAVE PROGRAM.
    ENDCASE.
    ENDMODULE.                 " USER_COMMAND_1000  INPUT
    could any one help me out,.!!!
    Thanks in advance.
    Sunil
    [email protected]

    Hi,
    I suggest you to check the which document type has assigned for biiling document and against that document type , have to ssign the id for number range and check whethere internal assignment or external assignment.
    I hope this will make sense.
    Panneer

  • Error-For object GL_LOCAL GBU1, number range interval  does not exist

    Hello experts
    I attempted to post a JVA cash call in GJ01 and I encountered the following error. It does not state what number range interval is missing and that is my issue. I checked the number range interval for local ranges and it exists, both for years 9999 and 2015.  I have checked the number ranges for each document type to make sure that they exist. I did not receive any conflict in the number ranges assigned to various document types. I had read somewhere that this could be related to non-leading ledgers and I am no FI expert. What could be the problem and how can I resolve this issue?. I am looking for your help and guidance.
    Please see the attached screenshots.
    Thank you.

    Hi Rahul
    Thank you for your response and help. I am actually in DEV and although it says something like transporting the interval and making note of any message, the Transport option is greyed.  So, I just executed tcode GB02 and went straight to Interval --> transport.
    Even after tcode GB02, Interval --> Transport, I received the same error while trying to post a transaction.

  • An error in cash jounal:For object CAJO_DOC2 AAA, number range interval 01

    hi
    whan i am doing an entry in cash journal(in cas receipts) and post when a massege coms here "For object CAJO_DOC2 AAA, number range interval 01 does not exist"
    can anybody help me and solve it.
    thanks

    HI,
    First Method
    Go to TCODE "SNRO"
    Give the Object as "CAJO_DOC2"
    Click on the "Number Ranges"
    Give the Company code
    Click on the Change Intervals.
    Mainatain number range 01 and save.
    Second method
    use path Spro>FA(NEw)>Bank accounting>Business transactions>Cash Journal-->Define Number Range Intervals for Cash Journal Documents
    Or Tcode FBCJC1 to maintain number range intervals.
    An assumption to the above solution is that you have assigned the FI document type with which these documents should get posted with in the following path an dthe number range for that document type is alreday defined.
    Spro>FA(NEw)>Bank accounting>Business transactions>Cash Journal-->Set Up Cash Journal
    With adopting one of the above solutions you will be able to post the transactions.
    Reward points.
    Sarma

  • For object RV_BELEG , number range interval  does not exit

    I am receiving this error when trying to generate billing document type L2 for a newly created company code.
    Exisiting company codes are generating billing documents so obviously this is to do with a company code related definition.
    Any thouhgts ?
    -Mark

    Please check if the error is
    "For object RV_BELEG , number range interval does not exit"
    "For object RV_BELEG , number range interval <b>10</b> does not exit"
    10 used as an example here you may be getting any 2-digit alpha-numeric value in stead of 10.
    Also Check
    If you are using
    Include program : RV60AFZZ
    Routine: USEREXIT_NUMBER_RANGE
    If so then for each plant you have assign a number range for each billing type (L2- here).
    Thanks,
    Ashish

  • Problem in  Number range Interval in VF02

    Hi All,
         I am using Number range USEREXIT for invoice creation- VF01.
    So, while creating invoice, userexit will trigger, as per our logic provided,system generating numbers as expected.- which is working fine.
    Where as, in VF02, transaction , i was trying to release invoice to Accounting,
    system prompts with the below error message.
    Fyi, in my invoice doc type: Number range- interval-19, which has numbers mentioned in the error message below:
    am expecting, that when i release invoice to accounting from VF02 transaction, system triggering number range from invoice doc type,- But I dont understand, why it is triggering number range interval again, for which number is already createed in VF01
    Error Message:
    Incorrect doc.no.: 9003000002. Select document number between 0090000000 and 0094999999
    Can someone, have any inputs??
    Thanks in advance

    Hi,
    You can make use of exit userexit_number_range  inside RV60AFZZ.
    Regards,
    Babul.

  • Billing Number Range problem ( accounting document not generated)

    Hi All,
    I have created some billing types and for them I have assigned some internal number ranges. Now when I create a billing document it is getting saved with the proper number range but no accounting document is getting generated.
    Also when I try to release the invoice I am getting an error which says " *Incorrect doc.no.: 10000009. Select document number between 0090000000 and 0099999999* "
    K I N D L Y     suggest  as U R G E N T.
    Regards,
    Danny.

    Dear,
              Billing Number Range problem ( accounting document not generated) is not an error because when you create billing document then accounting document not generated. Accounting done after posting of that billing document with VFX3 or VF02 T.Code by account department.
               And for second issue you had define number range between 0090000000 and 0099999999 for invoice so thats why it happen.
    Regards,
    Sandip Shaktavat

  • Maintain number range interval 01 for posting change notices

    Hi,
    I am doing transfer posting using movement type 321 (quality to unrestricted) for one material.While posting i am getting error"Maintain number range interval 01 for posting change notices" Message no. L0015
    WM is active for this material and doing this movement for one plant which is newly created in system.Wil you please advice for which document type i had to maintain number range.Please inform SPRO path / Transaction to be used to make required changes.
    Thanks & Regards
    Atharva

    Maintain number range for posting change in tcode  OMLW

  • Object RV_BELEG  number range interval 01 does not exist

    Hi Gurus,
    I need suggestion or solution to solve my problem when creating sales order(standard order) from VA01 transaction.
    Error Descriptio and Message:
    For object RV_BELEG , number range interval 01 does not exist
    Message no. NR751
    Diagnosis
    The database table NRIV has the delivery class 'C', i.e. the SAP default settings are only in client 000.
    Procedure
    Create the missing number range interval in customizing.
    Transaction code:
    Reporducing the error:
    Screen flow: VA01 Intial Screen Input
                          Order Type: SD  'Subs.Dlv.Free of Ch'.
                          Sales Org : 
                          Enter.
                          Next Screen: Click on "Complete Dlv" push butoon.
                          It will take to next screen go with "SAVE" option.
                          Iam getting an incomplete Delivery want to edit.
                          Go with "EDIT" and give Input in "ORDER REASON" drill down option.
                          select any one option and go with arrow symbol in the menu "EDIT NEXT DATA" or F5.
                          Provide Input In "Customer Group" drill down option select any one option from it.
                          Again go with arrow symbol in the menu "EDIT NEXT DATA" or F5.
                          Here iam getting an status "Document is complete".
                          Click on "SAVE" option.
    Here status message error showing: "For object RV_BELEG , number range interval 01 does not exist".
    This is the issue occuring with me while creating Sale Order from VA01.
    help me if any one have know solution or suggestion to solve error.
    Tnks & Rgds
    Bhaskar

    This because of the missing SD Document Number Range.
    You can check this in tcode SNRO for object RV_BELEG.
    Ask your SD Consultant to Change the number range assignment  or create that missing 01 number range number object.
    This will solve your problem,
    Regards
    Karthik D

  • Subject: Number Range interval deleted automatically

    Hi
    At the time of Accounting Document Posting system is giving error message for maintaining number ranges interval for the corresponding Number Ranges (For example: 50, 51, 49, 19) for the fiscal year 2010. But Number range interval has already been maintained in the Tcode FBN1 for the fiscal year 2010.
    After maintaining Number range interval again for the corresponding number range in Tcode FBN1, when we are trying to post accounting document system is again giving one error message that document number (5000000000) is already been used. When we are looking into Tcode FBN1 the current number status is 0.
    So to resolve this problem  we have to provide the Number range status into FBN1 manually (suppose if 10 doc are already existing in the system for number range 50 then we have enter the number range 5000000010 manually in FBN1).
    After Number range status setting in FBN1 System is allowing to post the Accounting Document.
    Along with this one more issue is appearing related to MM posting period. 
    The current posting period in the system is 08/2010 and the initial period in the system is 08/2007. System is automatically going back to the initial posting period 08/2007. After opening the Posting Period with Tcode MMPV we can post the document only.
    Both Issues are appearing repeatedly.
    Plese help
    Thanks..
    BRSR

    Dear If you have already maintained number range for particular period then again for same period and series system should not allow to maintain but as you said above it is allowed so i feel it was not done correctly first time and the given series number could have already been used so when changed the current number in status it's working fine.
    For  MM posting period issue please check transactions MMRV,OMSY,OMWD with your MM consultant
    Cheers
    KK
    Edited by: kiran kumar on Oct 19, 2010 8:32 PM

  • Number Range Interval Deactivated

    Dear Experts,
    Could anybody suggest on this problem as follows:
    While configuring Number range interval to GL Account,  the interval buttons(create) is deactivated and error message showing as
    No. Range is locked by sapuser for maintenace
    Srinivas

    goto SM12 and enter sapuser click enter
    then click on lock entry on memu bar then delete all.
    all lock entry would be deleted.
    Hope this helps,.
    Pls assignpoints as way to say thanks

Maybe you are looking for

  • Automatic row processing updating my primary key

    Hi all! In Apex 3.2, I've got an Interactive report with a DML form on a table. My table has a primary key which use a sequence (trigger based). When I created my forms, I specified that I wanted to use an existing trigger as the source type of the p

  • "Y" Adapter Recomendation?

    Can somebody recommend a good "Y" Adapter for outputting from "one" side of a video card into two monitors? I want to do this so I can output the other side to an HD External Monitor. I have found a few but they all have mixed reviews. Thanks in adva

  • Volume level ZEN NANO PLUS, can it be chang

    I have a new ZEN NANO PLUS that I have bought in Spain. I?ve had this model before and I know that, because of the EU ruling ( **bleep** those bureaucrats! ), the volume level is not as loud as the model you can buy in the US. A few people have sugge

  • Archive, Zip .pdf file

    Hi, Trying to send a large PDF via email so decided to zip it a by selecting 'create archive' the resulting 'zipped' file is pretty much the same size as the original file. The original PDF was 69.5MB the resulting 'zipped' file is 69.2MB No way near

  • Install a customer font

    Hi all, we set the parameter  gs_docparams-dynamic mit abap_true for generating the form, beause we locate some form objects dynamically. Now we need to embed our customer font other licenses (for the dynamic form design). So, we installed the font (