How to "move" current entry in number range status for trans. req.

For our project we plan an test system(a copy of productive sytem). We do not expect any transport request from productive system).
There we will have some changes(transport requests) in workbench(less) and customizing(most of all) (e.g. Let say the request nr will be REP9000001 REP9000007).
We will release them prior to next copy of productive system copy and reimport them just after system copy.
However next transport on test system I assume will start again with REP9000001 and not REP9000008. Do you know how to “move” current entry in number range. I checked the usual table  ”nriv” but did not find suitable entry
Thank you in advance

Hello,
i think there is no Solution because you must inittialize
your Transportsystem after a hom. Systemcopy. There are
many Steps to do to get a useable System. There is only a
Problem if don't do that work. One of it is Transaction
se06 that changes your Sourcesystem.
Regards
Stefan

Similar Messages

  • How to derive  Current week and Number of Weeks for present quarter.

    Hi,
    Currently we are developing a report on Actuals and Planned sales. We have two different data targets to hold these information.
    CRM team will provide targets for BP monthly in CRM table, from where we are extracting the data into BW and report exection frequency is Daily.
    Report Output format:-
    1)  Target1St Month in the quarter,   Target2nd Month in the quarter, Target3rd Month in the quarter, Target Quarter,  Month To date (Taget for Current month - Sales till today),
    Let us assume we are Q1 and user executing this report on end of March Target1 = Jan, Target2 = Feb, Target 3 = March and Quarter target = Target1 + Target2 + Target 3.
    We can achieve this by offset variables.
    But if users are exectuing this report Apr (Q2) then Target1 = Apr target , target2 and target3 =0
    Becoz we are in Q2 and first month of the quarter. If users are executing this report in May target1 should be Apr target and Target 2 = May target and Target3rd month should be Zero.
    2) We have one keyfigure called as Quarter Phased Target = (Quarter target/ No of weeks in current quarter)* current week; For this we have to get No of weeks in every quarter and Curren week (when the reports get executed).
    Let us assume we are executing this report on 25th jan and target for that month = 122units then Quarter phased target =  [(122 + 0 (For Feb)+ 0 (For Mar) )/ 13] X4
    4 is becoz we are in 4th in that quarter,
    13 is becoz no of weeks in that quarter.
    0 (For Feb) - Becoz we are in Jan only..
    Hence please let me know how to get No of weeks in Current quarter and Current week for every quarter..
    All the helpful answers will be awarded with full points.
    Regards,
    suresh

    hi,
    For the first querry.
    the problem is because u are using calmonth.
    Instead of using cal month use fiscal period.
    When u use fiscal period the data will be shown automatically for the Previous months using offsets.
    u have to take taht in ur transformation and should map it to constant value depending on the fiscal periods of ur compnay?
    march- apr,jan-dec etc.
    for teh second querry there would be some charecteristic which might give data in weeks as well just check that and if availabe u can use it.
    am not too sure abt it.

  • How to move the entries of table BNKAIN between systems

    Hi,
    Is there any way to export the entries of table BNKAIN from one SAP system (development) to another manually? This is the table which is not transported via a transport...even in development system the "transport entries" option is not active. IN SM30 the maintenance view is not created.
    Can you advice how to move the entries somehow manually?
    Thanks for any assistance!
    br,Slawek

    Hi, thanks for reply.
    In fact I checked the table BNKA and the entries there are not helpful for me in the target system.
    We are using there some user exit which is using the table BNKAIN and the following entries are there:
    Client Bank Country Bank Key        Internal bank
    790            CA           IHC6            1
    790            DE           IHC1            1
    790             FI             IHC             1
    790            FR           IHC3            1
    790            GB           IHC4            1
    790            US           IHC5            1
    I checked the properties of that table in SE11 and it is maintainable only with restrictions..thus I need to ask some other basis expert which will help me to inlcude those entries into a transport.
    Anyway thansk for your hints!
    Bye

  • Number range Object for Production order Number range profile.

    Hi ffriends,
       Can anybody tell me how to maintain the <b>Serial Number Range</b> for production order serial no.
       I working on automatic serail no generation for production order.I have one serial no range profile which I am assigning to material in material master  but I don't know the number range object for that profile.
       Or can anybody tell me how we attach serail no profile to a serial no range object.?
           Please it is urgently required..........
    Regards,
    Rajesh Akarte

    hi rajesh
    in the serial number profile there are certain business procedures which will create the serial no ,kindly check whether for your procedure you have assinged whether serial number to be arranged or not
    slecect the serial number profile in sutomization field( which you have specified in Material master) and select the serialization procedure and check whether the <b>PPRL</b> procedure is assinged,also check the serial no usage assigned
    for detailed process have a look here
    <b>http://help.sap.com/saphelp_47x200/helpdata/en/3c/abc38a413911d1893d0000e8323c4f/frameset.htm</b>
    regards
    thyagarajan

  • How to assign numbers in external number range?

    Dear experts,
    Since NUMBER_GET_NEXT can only be used to assign numbers in internal number range, how to assign numbers in external number range?
    So far, I only know the NUMBER_CHECK function module to deal with external number ranges and it only check a number whether it lies in any external number range or not, but it doesn't update any number range status. What I need is a function module like NUMBER_GET_NEXT that supports external number range.
    Thanks in advance.
    Regards,
    Haris
    Edited by: harissahlan on Oct 19, 2011 5:44 AM

    With external number range, there is no updating of the number range objectt. The only thing you need to know is whether the number you wish to assign is allowed according to the external number range. And also check if there isn't already an object/document with the same number in the database.

  • How to find out the Number range object for Incident number

    How to find out the Number range object for Incident number ?
    CCIHT_IAL-IALID
    regards,
    lavanya

    HI, an example.
    data: vl_num type i,
          vl_char(6) type c,
          vl_qty type INRI-QUANTITY,
          vl_rc type INRI-RETURNCODE.
    CALL FUNCTION 'NUMBER_GET_NEXT'
      EXPORTING
        NR_RANGE_NR                   = '01'
        OBJECT                        = 'ZRG0000001'
       QUANTITY                       = '1'
      SUBOBJECT                     = ' '
      TOYEAR                        = '0000'
      IGNORE_BUFFER                 = ' '
    IMPORTING
       NUMBER                        = vl_num
       QUANTITY                      = vl_qty
       RETURNCODE                    = vl_rc
    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.
    vl_char = vl_num.
    write vl_char.
    Regard

  • CC01 how can i choice a specific number range ?

    Dear
    In trx. OS53 i have defined two different internal number range object for change master  record.
    When I create a new change master how can I choice a specific number range ?
    Thanks.

    Hello,
    If my understanding is correct then its internally in the system for the type - Change master and ECR the change number
    object used is AENNR and where in you can assign a common number range group and it will be used for creating change
    numbers of both these types.It's not as like the production order type where you can link a different number ange for each
    order type.
    In the standard SAP  to set of number range (one internal numbe range and one for external will be assigned) exists.so aaume for CC01 you can make use of the internal number range,where during CC01 without any value for the field change number you can proceed.When creating through CC31 you can make use of external number range by giving the change number as the input and you save the data.
    Hope the information is useful
    Regards

  • PO Number range diffrent for diffrent comp code(backend system is same)

    Hi Experts,
    I have a requirement that
    Define PO number range (Diffrent) for diffrent company code
    In our SRM system we have three company codes and currently we have only one "number range"
    now our requirement is to define diffrent no range for individual comp code
    I can difine diffrent no range, but when i am going to define those no range in "Number Range Number for Purchase Orders in Backend System"
    System is not allowing
    Any idea
    Thx
    Jai

    Thanks Padhi:)
    Great Job...I have tested it in development and is working fine..but not sure how effectvely it will work in production system
    as many people talking about some Badi and coding.etc even sap also saying that
    "Unfortunately, I cannot give you a more positive answer about ECS"
    Any comments will be appreciated
    Rgds,
    Jai

  • Number range creation for new service order type

    Hi,
    Could anyone please tell me how can we create service order number range if we have done a new service order type creation, and what should we do: should we create the number range in development and then transport it to the production or we should directly create it in production.
    Thanks and Regards

    HI,
    You just define number range in tcode VN01, but remember that number ranges are not transportable.
    Once you define number ranges in development, do the same in quality & production client.
    Then attach number ranges in document type & transport this config to quality & production
    Please see that before transportating, the number ranges must have been created in quality & production thru VN01.
    Hope this helps you
    Regards
    Dhananjay

  • Number range R4 for object BANF nearly exhausted

    Dear,
    when I use MD15 to convert Planned order to PR, this error message shows up "number range R4 for object BANF nearly exhausted"
    I know the range of PR number is nearly exhausted. but could someone teach me how to check it. I mean use which transaction to check what BANF stands for...
    Best regards
    Meng HM

    >
    Meng HM wrote:
    > Dear,
    >
    > when I use MD15 to convert Planned order to PR, this error message shows up "number range R4 for object BANF nearly exhausted"
    > I know the range of PR number is nearly exhausted. but could someone teach me how to check it. I mean use which transaction to check what BANF stands for...
    >
    > Best regards
    >
    > Meng HM
    Check this path: spro>MM>Consumption based planning>number ranges>define NR for planning run, execute and maintain the interval of planned orders.
    Then apply this internval in OPPQ, under number range button.
    Edited by: Afshad Irani on Aug 30, 2010 10:34 AM

  • Facing problem in Number Range Allocation for Objects in OM

    Hello Friends,
    I have couple of questions in setting number range for Objects OM :
    1) Can we set one single number range for the objects in all planned versions or do we need to set different number ranges for varous planned versions?
    2) If we are already using existing Internal Number Range in $$$$ for Objects in OM, how do we set number range External Number range to use it for forthcoming object creation?
    3) If we set the External Number Range, will the system use the set num range combinedly for all object types or individually for each object type (Ex: If we have an external  num range 100~200, then while creating Org Unit the system may take 100 after that if we try to create another Org Unit the system may take 101 in seqeuence. After creating these two Org Units, if we try create an Position object will the system start allocating the number from 102 or will it again start from 100)
    4) Can we default number ranges for various Object Types Planned version wise? If YES, what feature is used to default this number range?
    Regards
    Tharak

    Hi,
    For 1). Yes you can set number ranges for all plan versions.
    2. You can devide like this.
    IN - 00000001 to 49999999 
    EX - 50000000 to 99999999  - EXT.
    3. In my view it is applicable to all Objects.
    4. Don't know.
    Reward me if helps.
    Thanks,
    vasu.

  • 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

  • Number range buffering for dimension tables (DIM IDs) and InfoObjects (SIDs

    Hi BW Experts,
    How to check whether this number range buffering for dimension tables (DIM IDs) and InfoObjects (SIDs) is Active or not ??
    can you please provide me this technical information where to go and check in the system ?
    Thanks in Advance.

    The Early Watch report lists these because of the large number of rows in the MD/Dim tables.  Keep in mind though, that Number Range buffering will really only help if you continue to generate a large volume of new SIDs or Dim IDs with ongoing loads, e.g.
    If your transactions being loaded to a cube result in several thousand new rows being added a Dim table, then it makes sense to turn on Number Range buffering for that Dim ID.  But if the transaction volume is only cause a few hundred DIM IDs to be added, buffering will not really get you anything.

  • Maintain number range interval "" for inventory document --help!

    Dear all,
       I running the FM - L_INV_DOC_CREATE for creating the physical inventory doc for WM ( warehose management ) level. But i get this error -> Maintain number range interval "" for inventory document. If i try to create it using the t-code  LI01N,everything goes smoothly. Anybody haf any idea how to solve this? thank you.

    1.Did u go into Number ranges for WM?
    Yes
    2.Did u click on assignment & number ranges not on Number range intervals
    Yes
    3.Di du cahnge it to 02 for all?.
    Yes on first warehouse 111 all changed to 02 and on warehouse G02 just on TR and TO changed to 02
    4.Did u select NR intervals? and give the number range?
    Yes
    5.Did u transport the intervals?
    No, as I am working on DEV practice client. Dont need to transport.
    6.Did assign the number rabges to ur Warehouse?
    I assigned No. 2 to warehouse, not number range, can u ellaborate more on number range assignment.
    I created migo for same material with different storage location and material and accounting documents are created. Even the number ranges are working on another warehouse created by colleague, but its not working on my warehouse and as mentioned earlier this is Dev practice client. No need to transport.

  • Maintain Number range group for Internal order

    Hello,
    I have created Internal order type, now, i would like to create/maintain the number range group for this already created order type.
    When i goto Maint Number ranges for orders->click on Group->Maint and again click on group insert... when i mention here the group name and number range for that group and say save the system in accepting but when view all the groups, i do not find this new group created by me.
    How do i view the newly created group, is there any other steps to be followed? please advice.
    regards,
    radhakrishna

    Hi:
    It's a little late for this post but it is still important to record.
    When you try to create a group in KONK transaction, the system doesn't show the new group.
    This is because there are a inconsistences in the old groups.
    You must execute RSSNR0T1 program to solve the problem.
    Greetings
    Marco

Maybe you are looking for

  • Importing Contact Persons through DTW

    Hi, I´am trying to import Contact Persons through DTW. These "Contact Persons" belong to Business Partners that already have "Contact Persons". I want to add new contact persons to these Business Partners. The problem that instead of adding those Con

  • Error in implementing stylesheets

    Hi, I created and activated a stylesheet using the tcode "smartstyles" I then went to the survey cockpit (tcode "survey") and created a new survey. I then created a questionnnaire using "create questionnaire". In the creation of a questionnaire; I am

  • Not good tool for handwritting comments in Adobe Acrobat X pro

    Hi, I have evaluated Adobe Acrobat X pro for adding handwritting comments on my university pdf documents. I normally use Office One Note 2010 to take quite good notes but the official college documents are .pdf format., so it is very useful to be abl

  • Multi-touch unintentional clicks in 10.6.7

    My wife's Multi-touch pad seems to behave as if it is stuck in "click" mode, constantly selecting text and dragging objects so as to make the trackpad completely unusable.     This only started to happen over the past few days, and she cannot remembe

  • ARE entries

    HI IMG - Logistics General - Taxes on goods movement - india - Account determination - specify excise accounts per excise transaction pl let me kno what entries we have to maintain for ARE -1 & ARE 3