Incorrect current number displayed in OONR

Hi,
For object $$$$  I have maintained the following entries:-
EX     00000001     49999999   flagged
IN     50000000     99999999
When i try to create an object the system generates a correct internal id.
However, the current number in the maintain number range intervals, remains unchanged or it skips several numbers ahead.
Could you please help me with this?
Ally

Hi semvladigo   ,
Thanks for your quick reply. Let me give u an example of the problem  I am facing
While creating object eg. Org unit with id 50000341 the current no displays as 50000365 and remains unchanged even after creatin new objects.  The next object id is created correctly i.e 50000342. If we tried to re-set the current no to  50000342 and create new object 50000343 then current no skips and goes to  50000367 (24 nos ahead).   When i check in the system, there are no objects created upto  50000367  then why is it shown as the curren no??

Similar Messages

  • Iphone 5s incoming call number displays incorrectly.

    Whenever I call my wife's Iphone from work, the number displays incorrectly on her caller ID.  It is always dropping the third number of the area code, so if my work number was 123-456-7890, then when I call her it shows up on her phone as 124-567-890, it doesn't even show a ten digit number.  So far I have noticed that it only happens when I call her from the landlines at my work.  I also have the exact same iphone 5s on the same carrier and the numbers display perfectly fine on my phone so I feel like it's some setting in the phone.  Before switching to an iphone we had her contacts imported from an old Verizon flip phone, not sure if that has anything to do with it.  Has anyone seen or heard of a similar issue?
    Thanks,
    Dan

    By the way I have completely reset all content and settings several times, tried turning off international assist, tried several suggestions I found online dealing with the sim pin, switched to a different phone to have the same thing happen on that phone also.  I have the same exact iphone 5s and carrier and service plan and the numbers appear perfectly on my phone.  I'm so confused why this is happening.

  • Incorrect PDF being displayed periodically in the browser

    I want to start by thanking anyone who could shed light on this problem. 
    We have a web application that dynamically generates PDF files per a user request in a web application.  98% of the time the proper PDF gets opened in the browser correctly, whether it be IE or Firefox.  The other 2% of the time, no matter what url data was requested from, an incorrect PDF is displayed.  This incorrect PDF that gets displayed is one that was requested and opened in a previous request and could still be open in a browser tab.  Once this state is reached all PDFs that are requested do not line up with the requested PDF, meaning they are all incorrect.  Once the browser is refreshed the problem stops happening for another stretch of time. 
    I have read posts that discuss placing a random number in the url to "trick" the browser plugin from thinking it already has the PDF.  We have done that.  In fact this issue appears to not be impacted at all by the url.  For example, when this problem happens I can go to https://appname/one/pdf and get the PDF that was requested and sent back when I went to https://appname/two/pdf.  These are two clearly different urls even without the random number that we placed on the end as a parameter and I still receive the PDF from the second URL. 
    We debugged the server side code and we are 100% sure that we are sending the correct PDF back to the client by streaming the PDF to a file on the server prior to sending it back to the client. 
    One thing I have noticed is that currently we are not specifying the Content-Disposition header when we return the PDF to the browser.  This means that there is no filename being provided to the front end and the plugin.  Is it possible that the Adobe Reader plugin eventually gets confused as to what file to display if there is no specific file name provided for the PDF from the server, with the keyword there being eventually as it is an intermittent problem? 
    We can easily set the Content-Disposition header to be attachment; filename="somename.pdf" but given the intermittent nature of this bug we would like to get some feedback as to if this fix is logical given this issue.  If it is not logical we would appreciate any other information that may help us troubleshoot this issue.  The alternative is to rewrite the document generation code to output HTML, and I really do not want to do that. 
    We are using the Adobe Acrobat 9.4.5.236 add-on to Firefox 10.0.3, Adobe Reader 9.4.0, and Internet Explorer 8.0.6001.18702.  All of these versions are not able to be upgraded, meaning this is the baseline we have to support.  We also operate, still, on Window XP Professional Service Pack 3. 
    One last comment, client side operations by the user are not valid solutions either.  I have already suggested asking the user to uncheck the open in browser option in Adobe Reader but our customer does not find that to be a valid solution.  To date we have not been able to recreate the issue when the PDF is opened in Adobe Reader proper and not the browser. 
    Thanks again for any help and information. 

    In case someone, other than me, stumbles across this post.  The solution I suggested in the opening post did not work.  When a user opens a PDF using the Reader Plug-in in Firefox they still have the potential to see the previous PDF.  The interesting thing is, as it appears right now, that this only occurs when a user closes a Firefox tab that contained the previous PDF and then triggers a different PDF to be opened in Firefox.  What seems to be happening is that the Reader Plug-in ignores the file it is supposed to open and recycles the PDF that was in that tab before it was closed.  Which is funny because the URL of that tab points to the new file that was downloaded into the temp directory but the contents of the tab is still the previous PDF.  Not sure if the plug-in just doesn't clean out the previous contents or what but it clearly is an issue that resides in the Adobe Reader Plug-in for Firefox. 
    I am not sure what we are going to do at the moment but if we find a solution, other than don't open the PDF in Firefox, I will be sure to post it here.  However, for right now there is nothing coming to mind. 

  • Page Number Display

    Hi Gurus,
    How can i print page numbers in standard report ( FAGLL03 ) which is not available now?
    I can use sy-pagno , but where exactly i need to add that , i tested the report by adding the code in end-of-page but i didnt get the output correctly . Can u kindly tell me the solution .
    Waiting for ur reply ....
    Regards
    Srinath

    Hi,
    END-OF-PAGE
    This event occurs if, while processing a list page, the system reaches the lines reserved for the page footer, or if the RESERVE statement triggers a page break. Fill the lines of the page footer in the processing block following the event keyword END-OF-PAGE:
    Syntax
    END-OF-PAGE.
    WRITE: ....
    The system only processes the processing block following END-OF-PAGE if you reserve lines for the footer in the LINE-COUNT option of the REPORT statement.
    Try like this:
    REPORT demo_list_end_of_page LINE-SIZE 40 LINE-COUNT 6(2)
    NO STANDARD PAGE HEADING.
    TOP-OF-PAGE.
    WRITE: 'Page with Header and Footer'.
    ULINE AT /(27).
    END-OF-PAGE.
    ULINE.
    WRITE: /30 'Page', sy-pagno.
    START-OF-SELECTION.
    DO 6 TIMES.
    WRITE / sy-index.
    ENDDO.
    This program consists of three processing blocks. The standard page header is turned off. The page length is set to six lines, where two of them are reserved for the page footer.
    The list consists of three pages of six lines each. Each page is made up of the self-defined two-line page header, of two lines of actual list, and of a two-line page footer. The current page number displayed in the page footer comes from the SY-PAGNO system field.
    Regards,
    Bhaskar
    Edited by: Bhaskar Chikine on Aug 4, 2008 9:00 PM

  • JSpinner Number Display Format

    Hello,
    I am using a JSpinner with a SpinnerNumberModel to display an integer whose range
    is 5000 to 9,999 (incremented by 1). The JSpinner shows the current number as an
    integer with a comma (i.e. 6,300). Is there an easy way to remove the
    comma from the JSpinners display? (i.e 6300).
    Thanks!
    Michelle

    It's quite simple to test
    import javax.swing.*;
    import java.awt.event.*;
    class Spin extends JFrame implements ActionListener
      JSpinner spinner;
      public Spin()
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setLocation(400,300);
        spinner = new JSpinner(new SpinnerNumberModel(5000, 5000, 9999, 100));
        JPanel jp = new JPanel();
        JButton btn = new JButton("Spinner Value");
        btn.addActionListener(this);
        jp.add(spinner);
        jp.add(btn);
        getContentPane().add(jp);
        pack();
      public void actionPerformed(ActionEvent ae)
        JOptionPane.showMessageDialog(this,spinner.getValue());
      public static void main(String[] args) {new Spin().setVisible(true);}
    }

  • How to change Current Number in number range?

    Is there a FM I could use to easily change current number(NRIV-NRLEVEL)? I made a quick try with NUMBER_RANGE_INTERVAL_UPDATE but couldn't make it work, at least not yet.
    An example code would be greatly appreciated.

    Hi,
    You can use the below function moduls
    NUMBER_RANGE_GROUP_UPDATE      NUmber range: Create, change, delete groups with check
    NUMBER_RANGE_INTERVAL_UPDATE   Number range: Create, change, delete number range intervals
    NUMBER_RANGE_UPDATE_CLOSE      Number range: Close number range changes on database
    NUMBER_RANGE_UPDATE_CLOSE_LOC  Saves all number range changes in the database (local)
    NUMBER_RANGE_UPDATE_INIT       Number range: Initialize number ranges and groups (display, maintain)
    NUMBER_RANGE_OBJECT_UPDATE     Number range: Insert or change object
    Regards
    Sudheer

  • Reversal voucher for an invoice paid to the incorrect PO Number

    Hi, We have paid some vouchers to the incorrect PO number.  I thought we could do a reversal voucher against the incorrect voucher, then the PO would be open to apply the correct voucher to it.  It appears the receipt is not backed out.  Has anyone used this function and could guide us in what needs to happen. 

    Hi
    I guess you receive different invoices for both the POs. The process of raising a credit memo is the best way to solve this issue. Did you think about cancelling the Invoice document in MR8M if it is feasible,  here this will affect your stock accounts based upon the current stock position for the said Invoice/PO quanity.
    One more additional check you can have is to use to activate the check box "check doubel invoice"  below Tolerance Group  in the Vendor payment Transactions Accounting view of vendor master. This will help you to restrict the entry of wrong PO attached to the invoice if you have already processed the Invoice (provided you are using the reference field in MIRO by entering the INVOICE number of the PO).
    Regards
    SAM

  • How to medium and small subclasses Taxonomy table are shown on the Portal it? Currently only display subcategories

    How to medium and small subclasses Taxonomy table are shown on the Portal it? Currently only display subcategories

    From within OEM it doesnt look possible. User defined metrics (UDM) can only return number or a string. The alertlog fetch is done via alertlogViewer.pl while being passed a couple of parameters.
    OEM does have a preliminary/rough api available at http://www.oracle.com/technology/products/oem/emx/index.html but I havent seen anyone make use of it yet.
    If you use just a web connection then you will probably run into security issues as a web server can usually only view/access stuff under their htmldoc dir.
    Seems like some non-OEM very custom code is what you seek..

  • Can I use a current number as my online number?

    Hello!
    I'm interested in setting up an online number for my business, and I already have a phone number being used as my work number. If I could switch my current number to the online number, that would be amazing so that I don't have to change my number. Is that possible? Thank you!

    Hi
    I have to same question.
    In Holand there is one company called Priority but that's
    taken over by my isp UPC sadly.... so the're not helping me out i think...
    Pfffff
    Skype -> land line porting??? Possible?

  • How do I delete my current number from showing up on my old iPhone 5?

    So my girlfriend and I both upgraded our iPhone 5 to the our new iPhone 6.  We backed up both phones and transferred everything to the new phones.  I was thinking about selling the phones but I noticed that my current number is still on my old phone and my girlfriends number is still on her old phone.  The number is located when
    I tried researching this but nothing seems to work.  I did the Settings/General/Reset/Erase all settings and content.  I have tried doing it through iTunes.  Its like the phone is ready to be set up as new, and everything is cleared on the phone except our numbers.  We are not signed into iCloud.  I even signed on to my iCloud account on my girlfriends old phone but her number still shows.  Its very frustrating. 
    Bottom line, is I am trying to get rid of our current phone numbers that are still on our old iPhones.  Everything works perfectly on our new iPhone 6.
    EDIT: I just realized that our old iPhones still says Verizon on them.  Do we possibly have to deactivate the phones some how?  If so, how do we do that?

    Yes I was going through the activation process on both phones.  Weird thing is I did the same thing for my daughters old iPhone 4 (which I was going to use as an iPod) and her number cannot be seen.  Her phone doesn't show "Verizon" on it either.
    I thought about keeping my girlfriends old iPhone 5 as a gym iPod  and when I go through the start up process, and using my apple ID, iCloud info, it still shows HER number.
    So I have couple more questions:
    If I decided to keep my girlfriends old iPhone 5, should i transfer in my sim card from my old iPhone 5?
    I might give my old iPhone 5 to my brother.  Should I give it to him without a sim card and let him get his own?
    Why does both phone 5's say Verizon, and my daughters iPhone 4 doesn't?

  • From which table, the current number is taken for a WM TO?

    Dear Experts, 
    Kindly let me know when a transfer order is created in LT01,  how the TO number is  assigned?
    Before assigning a number, from which table it takes the current number?
    regards
    shetty

    Hi,
    r u able to see the current no in LT01 tcode ,if it is means pls let me know the field of that.
    and check with the below tables also,
    LAGP
    LECMOFF
    LEIN
    LINK
    LINP
    LINV
    LL01
    LL02
    thanks,
    sankar m

  • Purchase Requisition number (current number) not seen correctly in OMI2

    Hi All,
    I see purchase requisition number created for the last number in the number range defined for Purchase Req., but i do not see the last number in the "current number" area. What are the possible reason for this ?
    Regards,
    PSS
    Edited by: PSS on May 26, 2011 7:47 PM

    PSS,
    This is not usually considered to be a problem.  Are you using number range buffering?
    https://service.sap.com/sap/support/notes/141497
    Best Regards,
    DB49

  • How to get the name of the currently used display variant

    Dear all,
    I found the user-exit EXIT_SAPLGRAP_001 for programming download authorization.
    With us no standard user is allowd to download data from R/3. With the user-exit it would be possible to allow certain downloads. one problem i solved already.
    For programming the second authorization i need the name of the currently used display variant in RKPEP000. Where can i get the name. I tried user-exits for RKPEP000, but i didn't find the name. I didn't find it in SYST either.
    Thanks and reargs
    Monika

    First you need to enter those names. Right-click the songs (Windows) or go to File>Get Info (All Platforms), then go to the second tab from the left to insert the information.

  • Current Number in Number Range Interval

    What does the current number in the Number range interval signify?
    Is it the next number to be assigned?
    Thanks
    Suzitha

    Hi,
    The current number in Number range names is the latest number which was already assigned.
    Regards,
    Thilak

  • How can I get current Number file name in a cell ?

    I want to write current Number (3.5) file name in a cell.
    It was working in previous version of Number but not with latest one. Thanks.

    Yes, you can click the title bar of any document (the down arrow) to access the current file name:

Maybe you are looking for

  • Has ANYONE heard from apple on the 7.1.6 bug???

    I KNOW there's been a lot of emails sent, but has anyone heard back from apple? I want to know what the **** they're doing about it.. Dual 2.0 G5   Mac OS X (10.4.9)  

  • How can i configure firefox, in a way that is fits in my monitor screen?

    When I'am using firefox, I only see a part of the screen. Every new screen I have to zoom to an size that the screen fits. This happend after a new installation. Is the a way in which I can make the screen fit automaticly?

  • Problem Accessing RSS FEED

    I have an feed of this fomat and i am trying to create a reader in flex. I have used the datagrid to display the contents of the feed like title, link, description. I am using an http request and parsing the result object using e4x api. I am able to

  • Limitting payroll t-code access

    Hi expert, I have a problem for restricting authorization for user for payroll t-code. Apparently, some user is only allowed to ru offcycle payroll. So for example, for t-code "PC00_M34_CALC", user should only be able to run offcycle payroll so on th

  • Glitch with iTunes Volume Adjustment.

    I'm having this tiny glitch with the volume adjustment feature in iTunes. I have certain songs that are too soft, so I turned the volume adjustment on those songs to 100%. I sync those songs to my iPhone 3GS running 5.0.1. However, after those songs