Creating number ranges in PRD

Good afternoon,
I understand it is advisable to create number ranges in each client.  When using SNRO in PRD we have to open the client via SE06 and SCC4.  We do not like having to open PRD client.  Is it possible to create number ranges in PRD without having to open client? 
Regards,
Steve

Hi,
Every team will have firefighter ID for such purposes.  Before logging to the user ID, you will be asked to maintain the reason for login.  So, all the changes made through firefighter ID is tracked.  So, check with your basis team to provide access for maintaining number ranges under this ID.
Regards,
P Gomatheeswaran

Similar Messages

  • Not able to created Number Ranges for Asset Classes in AS08

    Dear Friends,
    I am not able create Number Ranges for Asset Classes in AS08.
    It is giving me an error message as company code does not exist.
    When I Check Consistency under path SPRO -> Financial Accounting -> Asset Accounting -> Preparing for Production Startup -> Check Consistency -> Overview Report: Company Codes. I am getting the following
    RSOL  Reliance Sealink One PLtd                                            
    CoCode no. alloc.    NKTR                                                
    Fiscal Year Variant  V3   Apr.- March, 4 special periods                 
    Start 2nd half month 00                                                  
    Transfer date        31.03.2006                                          
    Chart of dep.        TOLL Chart of Depreciation - For Highway Projects   
    Net worth tax        01   Book depreciation as per Compinies Act 1956    
    Enter net book value                                                     
    Status company code  2                                                   
    Current fiscal year  2007                                                
    Doc. type dep. pstng AF   Dep. postings                                  
    > Number range &1 in co.code &2 for doc.type &3 must be defined as internal
    Calc.insur.value                                                         
    Input tax exempt         
    If you see the above first two line you will find the difference is that Company code RSOL in the first line and NKTR company code in the second line.
    Actually CoCode no. alloc. has been wrongly copied as NKTR while copying CoCode it should be RSOL and not NKTR.
    I think because of this wrong allocation it is giving me an error in AS08. Also it is not showing me CoCode in drop down list in AS08.
    Please help me to resolve the problem.
    Thanks
    Rahul Jain

    Look in TC OAOB if the company code is assigned to a chart of depreciation

  • How to create number ranges with "OK60" transaction or any other.

    Hello,
    I need to create a new number range to asigne to a document type , using transaction OK60 ( the error says this transaction).
    but I only can display with this transaction, and I would like to update.
    Is there any other transaction to do this , or is there any way to do this with this transaction OK60?
    Thank you very much.
    Kind regards
    Olga

    Hi,
    OK60 indeed is used for creating number ranges for FI/CO earmarked funds transactions. You should press on 'Pencil' button and create an interval. If for some reasons, you cannot do this via this transaction, try using SNRO transaction, with IRW_BELEG parameter. If this also fails, then apply to BASIS team to check your authorizations.
    Regards,
    Eli

  • Create Number range

    I have to create a number range for OM ids . OM ids will be assigned to organistion units .  OM ids will be unique and cannot be assigned to more then one org units . Please tell me the steps to create Number range which should start with 10000 till 99999.
    Waiting for reply.

    Thanks Guys
      I had already done what 'Jatra Riwayanto ' suggested now . It is better if before getting the next number via FM 'NUMBER_GET_NEXT' we should lock the number range object using FM 'NUMBER_RANGE_ENQUEUE' and after getting the number unlocks the number range ob ject using FM 'NUMBER_RANGE_DEQUEUE'  .
    <b>Sample code</b>
    CALL FUNCTION 'NUMBER_RANGE_ENQUEUE'
    EXPORTING
    object = 'ZPOMID'
    EXCEPTIONS
    foreign_lock = 1
    object_not_found = 2
    system_failure = 3
    OTHERS = 4.
    IF sy-subrc = 0.
    CALL FUNCTION 'NUMBER_GET_NEXT'
    EXPORTING
    nr_range_nr = '01'
    object = 'ZPOMID'
    IMPORTING
    number = NEXT_NUMBER
    quantity = quant
    returncode = code
    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.
    CALL FUNCTION 'NUMBER_RANGE_DEQUEUE'
    EXPORTING
    object = 'ZPOMID'
    EXCEPTIONS
    object_not_found = 1
    OTHERS = 2.
    ENDIF.
    Thanks Buddies , full points awarded.

  • Create Number Ranges for Budgeting

    Hello Experts,
                            Can you please tell me what is the significance of "Create Number Ranges for Budgeting" in Customizing view of PS->Costs->Budget. ? Also, where does it impact ?
    Please help.
    Regards ,
    Ankur
    Edited by: ankur_sau on Feb 17, 2012 7:11 AM

    Hi,
    It refers that you can define your own number for budget documents which will be created on aloocation, supplement, transfer, release etc.. for the project.
    Plus for all types of budget transactions like allocation, supplement, transfer, release etc. range defined in 01 will be used.
    External number is not possible in this case.
    Impact is budget documents will be created with the defined number range in this step.
    Regards,
    Harsh.

  • How to create Number Range

    Hi All Sap Experts
    Please tell me How to create Number Range
    I tried with the Transaction Code " SNRO "
    But Im getting The following error
    Dialog box title : " Buffering Methods ".
    Message in the Dialog box is :
       -Numbers may be lost!
       -Do not use for Financial accounting Documents!!
    ?. Do you want set this Buffering method?
    And another error is :
    Dialog box title : " Transport number range intervals "
    Message in the Dialog box is :
         The number range intervals are not included in automatic customizing changes.
         Transport all changes made within range interval maintenance must be  
         triggered manually.
         In the initial screen for range interval maintenance function
    <b>      Interval</b>              -->      <b>Transport</b>
         Please note the information that you get when transporting intervals.
    So please tell me the solution for this error.
    Thank you
    Basu
    Another is

    hi,
    Create number range object using OYSN.
    Then call the following function modules.
    FORM get_next_id CHANGING p_discrep.
      DATA: last_id LIKE zrecaudit-discrep,
            quant   LIKE inri-quantity,    "dummy
            code    LIKE inri-returncode.  "returncode
      CALL FUNCTION 'NUMBER_RANGE_ENQUEUE'
           EXPORTING
                object           = 'ZRECAUDIT'
           EXCEPTIONS
                foreign_lock     = 1
                object_not_found = 2
                system_failure   = 3
                OTHERS           = 4.
      IF sy-subrc = 0.
        CALL FUNCTION 'NUMBER_GET_NEXT'
             EXPORTING
                  nr_range_nr             = '01'
                  object                  = 'ZRECAUDIT'
             IMPORTING
                  number                  = last_id
                  quantity                = quant
                  returncode              = code
             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.
        CALL FUNCTION 'NUMBER_RANGE_DEQUEUE'
             EXPORTING
                  object           = 'ZRECAUDIT'
             EXCEPTIONS
                  object_not_found = 1
                  OTHERS           = 2.
      ENDIF.
    ENDFORM.                    " get_next_id
    <u><i><b>refer the links</b></i></u>
    http://www.sap-img.com/ge003.htm
    http://www.sap-basis-abap.com/sapmm009.htm
    http://www.erpgenie.com/abap/code/abap33.htm
    http://www.kabai.com/abaps/z26.htm
    Rgds
    Anversha

  • How to create number range for custom object

    Hi all,
    I want to create number range for custom object or custom tables
    Thanks
    Hemalatha

    Hi,
       Thanks, I am able to create a number range for custom object through SNRO tcode.
    Thanks
    Hemalatha

  • Change / Create number range interval

    Hi All,
    I have an issue with number ranges.
    I am working on a global roleout and and have an issue where in DEV client my PM orders are assigned to number range 5000000 - 5999999 but from QAS to PRD this number range has been used for something else. Infact all available number ranges are taken!!!!!! Poor management I know.
    How do I or can I create a new number range interval for example 20000000 - 29999999. If I can do this I can the reasigne the PM orders to this new range.
    Thanks in advance
    Stuart

    hi
    what you can do is either change the internal number range ,for example if the existing no range is from 500-1000 then you can change the ending number range say from 1000 to 9999 and assign to the particular order type
    or create an new number range for the order type and assign to the respective order
    regards
    thyagarajan

  • Create number range and assign new product id

    hi,
    can anyone tell me the steps to create the number range and assign it to the product id..
    and replace existing product id to the new one through program or.. is there any standard program is available to change the product id
    thanks
    dinesh

    Hi Dinesh,
    Agree with Arden, I think there is no number range feature for product IDs. You can have your own number range object and intervals with custom solution on UI to create product IDs sequentially.
    I am not sure but have a look at the TCode: COMC_MATERIALID_ALL which may be doing what you need.
    You cannot change the product ID once created I think.
    You can change the category assignment of the products through the report : COM_PRODUCT_RECATEGORISATION
    Check enhancement spot : CRM_PRODIL_EXIT which has got some methods for CREATE and MODIFY Products.
    Hope this will be useful.
    Regards,
    Naresh

  • How To create number range for custom BO

    Dear All,
    I have created a Custom Business Object and i have created its alternative key.. I want an Internal number range to be used against that alternative key.
    How do i achieve this functionality?
    Regards,
    Dhruvin

    Hi Dhruvin,
    Find the below discussion where I answered to generate number.
    Does anyone have sample code to auto generate Alternate key/ID field data
    in this example number will start from 1, you can enter your own starting number.
    If it help you or  have any doubt, let me know.
    regard
    Sunil

  • Issues creating number range interval with BI transports?

    Hi,
    We got BI 7.0 systems in our landscape.
    In developement system,our BI developer created transport with 4 infocubes.
    Now, when i tried to import the transport into QA system,it is failing with the following error:
    Dimension ZHR_C15P:Number range object BID0001388 created
    Dimension ZHR_C15P :Error when creating interval for number range object BID0001388
    Appreciate your help.
    Regards
    Ram

    Hello ,
              You can  run the program RSDG_AFTER_IMPORT_FOR_CORR to correct  when you get after import error .
    Regards,
    karthik.

  • Unable to create number range in AS08

    Hello everyone.
    We have a strange situation in transaction AS08 when we try to define a new number range:
    - we define a new number range which is not part of any other defined number range, confirm the entry and save it
    - system says that the changes were saved
    - when we exit the AS08 transaction and enter it again, the number range is not there
    - we checked NRIV table, the entry is not saved there either
    - company code is maintained in AO11
    We also tried creating a number range interval which is not a part of any other interval (included in NRIV table), but that didnt help. Also, the problem exists both for internal and external number ranges.
    Can anyone give some advice on what should we look up or maybe someone had similar situation and found the way to solve it?
    Thanks in advance!
    Marko

    This appears to be a bug.
    You need to enter the Number Range and save without pressing Enter.
    If you press Enter and then save you will get a message saying that the data was saved but table NRIV will not be updated.
    Pat

  • Create number range for Service Entry Sheet (SES)

    I would like it is possible to configure the number range for Service Entry Sheet (SES) or it is fixed in the system? Besides, for my current configuration, the number only appear when SES is done but no reversal number if I reversed the SES, is this a correct setting? Or is there any way I can set the number for reversal document?

    Hello,
    Check below SAP link.
    http://help.sap.com/saphelp_40b/helpdata/fr/77/e12c7dd435d1118b3f0060b03ca329/content.htm
    Hope it will help. Revert back if anyfurther question/s.
    Regards,
    Anup

  • Steps to create a Number Range.

    Can anyone please send me the steps to create a Number Range..Thanks in Advance

    Hi,
    1) Goto Tcode SNRO
    2) select ur concerned OBJECT there.
    3) Click on Number Ranges Push Button.
    4) then click on Display Interval Button over there.
    *****************************************************Other code
    Create number range object using OYSN.
    Then call the following function modules.
    FORM get_next_id CHANGING p_discrep.
      DATA: last_id LIKE zrecaudit-discrep,
            quant   LIKE inri-quantity,    "dummy
            code    LIKE inri-returncode.  "returncode
      CALL FUNCTION 'NUMBER_RANGE_ENQUEUE'
           EXPORTING
                object           = 'ZRECAUDIT'
           EXCEPTIONS
                foreign_lock     = 1
                object_not_found = 2
                system_failure   = 3
                OTHERS           = 4.
      IF sy-subrc = 0.
        CALL FUNCTION 'NUMBER_GET_NEXT'
             EXPORTING
                  nr_range_nr             = '01'
                  object                  = 'ZRECAUDIT'
             IMPORTING
                  number                  = last_id
                  quantity                = quant
                  returncode              = code
             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.
        CALL FUNCTION 'NUMBER_RANGE_DEQUEUE'
             EXPORTING
                  object           = 'ZRECAUDIT'
             EXCEPTIONS
                  object_not_found = 1
                  OTHERS           = 2.
      ENDIF.
    ENDFORM.                    " get_next_id
    Don't forget to reward if useful..

  • Error when creating a Number Range

    When I use transaction ZNRO to create a number range, I get an error message:
    "Invalid call sequence for interfaces when recording changes".
    All I did was enter the text and a domain for the numbers.   There was an earlier error regarding buffering.  It said that I should not use buffering for accounting documents.   I am not using this for accounting documents and do not care if numbers get skipped.  So I continue through that error. 
    But after that, the "Invalid call sequence . . ." error pops up.
    I searched this forum generally, and with portions of the error text, and do not find any discussion of problems creating number ranges.
    The number range I'm created is very simple.  I just need "one up" numbers for a custom database used to store custom schedule information.
    I'm at release 4.6c.

    Here is the error message and text.
    I have no idea what it means by "interfaces".
    When at release 3.1i, I had no trouble creating number ranges.
    <b>Message no. TK 425
    Diagnosis
    The function you selected uses interfaces to record changes made to your objects in requests and tasks.
    Before you save the changes, a check needs to be carried out to establish whether the objects may be changed. This check must be performed before you begin to make changes.
    System Response
    The function terminates.
    Procedure
    The function you have used must correct the two Transport Organizer interfaces required. Contact your system administrator.</b>

Maybe you are looking for

  • How does Business content work with BI 7 and R/3 4.6 as backend?

    Dear Bwers, We have BI 7.0 with source system as R/3 4.6. I have the following questions: 1. I want to know how to install new BI 7.0 datastructures from business content when the datasources from R/3 are in the old version? 2. Is Business Content up

  • Business area not defaulted for tax line item

    Hello Friends, I am posting Customer invoice, when I simulate the invoice that time Output tax is automatically calculating the tax. My problem is, in the Output tax line item business area is required field which is appearing in display mode. T code

  • Maximum  message size problem

    Hello, I'm trying to send a message of 30MB and the log reports: "552 5.2.3 sorry, that message size exceeds the maximum " After configuring sourceblocklimit and blocklimit in channels parameters the message still apears. I have compiled :/opt/SUNWms

  • Attachment without multipart

    Hi, Can anybody tell me if it is possible to send a mail with javamail without using MultiPart? thanks

  • Auto Cropping with video images problem (CS6)

    I'm working with 6 video clips to create a compilation.  All are mp4s.  When 2of them are dropped (or dragged) form the source panel into the timeline, for some reason the video on them is zoomed in, or cropped, to like 30% of the original.  When I v