Current number in number range

Hi all,
I have created an info record and the number for the same is internally generated (******163). But I find that the current number (******169) in the Define Number range for info records (OMEO) and the number generated are not the same. There are no info records generated after what I have created. What could be the problem?
Thanks in advance
Regards
Mui

Hope you have defined correct interval.
This number jump (instead of 163 system shows 169) because of buffer in the system.
To edit your buffer you can use Transaction code SNRO
Select the required object and modify No of number in buffer;
<b>For Purchase Info Records - INFOSATZ</b>
For more details, refer SAP Note No. 62077
Bye,
Muralidhara

Similar Messages

  • 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 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

  • HELP! InDesign CC got an error: The property is not applicable in the current state." number 30615

    HELP! Was working perfectly now it is giving me this error and doesn't seem to be going past the printing option. Code is below.
    main.scpt
    set posixIdPath to "/Applications/Adobe InDesign CC/Adobe InDesign CC.app"
    do shell script "/Users/cdapice/Desktop/cryptoquip/getquip.sh"
    delay 8
    tell application posixIdPath
    activate
    end tell
    delay 8
    set scripttoRun to ":Users:cdapice:Desktop:cryptoquip:Script.jsx" as alias
    tell application "Adobe InDesign CC"
    do script scripttoRun language javascript
    end tell
    delay 5
    Adobe InDesign CC got an error: The property is not applicable in the current state." number 30615
    Script.jsx
    var myDocument = app.open(File("/Users/cdapice/Desktop/cryptoquip/NewCryptoquip.indt"), true);
    //var myDocument = app.activeDocument;
    var myPage = myDocument.pages.item(0);
    var myTextFrame = myPage.textFrames.add();
    //Place a text file in the text frame.
    //Parameters for TextFrame.place():
    //File as File object,
    //[ShowingOptions as Boolean = False]
    //You'll have to fill in your own file path.
    myTextFrame.place(File("/Users/cdapice/Desktop/cryptoquip/quips.txt"));
    //var myTextFrame = app.selection[0];
    myTextFrame.parentStory.pointSize = 10;
    var brkStory = myTextFrame.parentStory.contents;
    var myPIs = myDocument.pageItems;
    var  destTextFrame = myPIs[6];
    destTextFrame.parentStory.contents = brkStory;
    firstChange();
    myTextFrame.remove();
    app.select(destTextFrame);
    splitStory();
    for (i = 0; i < myPIs.length; i++) {
              if (myPIs[i].appliedObjectStyle.name == "puzzleBox") {
                        var newBoxStyle = myPIs[i].appliedObjectStyle;
                        secondChange(myPIs[i]);
            myPIs[i].applyObjectStyle(newBoxStyle,true);
        if(myPIs[i].appliedObjectStyle.name == "otherBox"){
            var newBoxStyle = myPIs[i].appliedObjectStyle;
            myPIs[i].applyObjectStyle(newBoxStyle,true);
    Date.prototype.getMonthFormatted = function() {
        var month = this.getMonth() + 1;
        var formMonth = month < 10 ? '0' + month : month; // ('' + month) for string result
              return formMonth.toString();
    Date.prototype.getDayFormatted = function() {
        var day = this.getDate();
        var formDay = day < 10 ? '0' + day : day; // ('' + day) for string result
              return formDay.toString();
    var newdate = new Date();
    var laterdate = new Date();
    var dayofweek = newdate.getDay();
    var offsetdays = 0;
    switch(dayofweek) {
        case 2:
            offsetdays = 6;
            break;
        case 3:
            offsetdays = 5;
            break;
        case 4:
            offsetdays = 4;
            break;
        case 5:
            offsetdays = 3;
            break;
    app.epsExportPreferences.appliedFlattenerPreset.convertAllStrokesToOutlines = true;
    app.epsExportPreferences.appliedFlattenerPreset.convertAllTextToOutlines = true;
    app.epsExportPreferences.appliedFlattenerPreset.rasterVectorBalance = 100;
    //app.activeDocument.exportFile(ExportFormat.epsType, newFile, false);
    for (i = 1; i < 7; i++) {
        var curPage = i + "";
        var x = i + (offsetdays - 1);
        laterdate.setMonth(newdate.getMonth());
        laterdate.setDate(newdate.getDate());
        //alert(newdate);
        //alert(x);
        //alert(laterdate);
        laterdate.setDate(newdate.getDate() + x);
        //alert(laterdate);
        var nameDate = laterdate.getMonthFormatted() + laterdate.getDayFormatted() + ".eps"
        //alert(nameDate);
        app.epsExportPreferences.pageRange = curPage;
        var curFile = new File("/Users/cdapice/Desktop/cryptoquip/" + nameDate);
        app.activeDocument.exportFile(ExportFormat.epsType, curFile, false);
    var endDate = laterdate.getMonthFormatted() + laterdate.getDayFormatted();
    var firstDate = new Date();
    firstDate.setDate(newdate.getDate() + offsetdays);
    var startDate = firstDate.getMonthFormatted() + firstDate.getDayFormatted();
    var idFile = "cryptoquip_" + startDate + "_" + endDate + ".indd";
    app.activeDocument.save(new File("/Users/cdapice/Desktop/cryptoquip/" + idFile));
    with (app.activeDocument.printPreferences){
            printer = "Advertising - Creative - Color Xerox";
            copies = 1;
            pageRange = "1-6";
            paperSize = "US Letter";
            paperHeight = "11 in";
            paperWidth = "8.5 in";
            printPageOrientation = PrintPageOrientation.landscape;
            pagePosition = PagePositions.centered;
           scaleHeight = 100;
           scaleWidth = 100;
            scaleMode = ScaleModes.scaleWidthHeight;
            scaleProportional = true;
            pageInformationMarks = true;
            colorOutput = ColorOutputModes.COMPOSITE_CMYK;
    app.activeDocument.print(false);
    for(myCounter = app.documents.length; myCounter > 0; myCounter--){
    app.documents.item(myCounter-1).close(SaveOptions.no);
    function firstChange() {
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
              app.findChangeTextOptions.caseSensitive = false;
        app.findTextPreferences.findWhat = "^t";
              app.changeTextPreferences.changeTo = "";
              myDocument.changeText();
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
         app.findTextPreferences.findWhat = "^p^p";
              app.changeTextPreferences.changeTo = "^p";
              myDocument.changeText();
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
              app.findTextPreferences.findWhat = "^p";
              app.changeTextPreferences.changeTo = "^R";
              myDocument.changeText();
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
    function secondChange(curFrame) {
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
              app.findChangeTextOptions.caseSensitive = false;
        app.findTextPreferences.findWhat = "    ";
              app.changeTextPreferences.changeTo = "|";
              curFrame.changeText();
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
         app.findTextPreferences.findWhat = " ";
              app.changeTextPreferences.changeTo = "";
              curFrame.changeText();
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
              app.findTextPreferences.findWhat = "|";
              app.changeTextPreferences.changeTo = " ";
              curFrame.changeText();
              app.findTextPreferences = NothingEnum.NOTHING;
              app.changeTextPreferences = NothingEnum.NOTHING;
    function splitStory(){
              //Make certain that user interaction (display of dialogs, etc.) is turned on.
              app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll;
              if(app.documents.length != 0){
                        if(app.selection.length != 0){
                                  //Get the first item in the selection.
                                  var mySelection = app.selection[0];
                                  //Process the selection. If text or a text frame is
                                  //selected, do something; otherwise, do nothing.
                                  switch(mySelection.constructor.name){
                                            case "Text":
                                            case "InsertionPoint":
                                            case "Character":
                                            case "Word":
                                            case "Line":
                                            case "TextStyleRange":
                                            case "Paragraph":
                                            case "TextColumn":
                                            case "TextFrame":
                                                      //If the text frame is the only text frame in the story, do nothing.
                                                      if(mySelection.parentStory.textContainers.length > 1){
                                                                //Splitting the story is a two-step process: first, duplicate
                                                                //the text frames, second, delete the original text frames.
                                                                mySplitStory(mySelection.parentStory);
                                                                myRemoveFrames(mySelection.parentStory);
                                                      else{
                                                                alert("Please select a story containing more than one text frame and try again.");
                                                      break;
                                            default:
                                                      alert("Please select some text or a text frame and try again.");
                        else{
                                  alert("Please select some text or a text frame and try again.");
              else{
                        alert("Please open a document and try again.");
    function mySplitStory(myStory){
              var myTextFrame;
              //Duplicate each text frame in the story.
              for(var myCounter = myStory.textContainers.length-1; myCounter >= 0; myCounter --){
                        myTextFrame = myStory.textContainers[myCounter];
                        myTextFrame.duplicate();
    function myRemoveFrames(myStory){
              //Remove each text frame in the story. Iterate backwards to avoid invalid references.
              for(var myCounter = myStory.textContainers.length-1; myCounter >= 0; myCounter --){
                        myStory.textContainers[myCounter].remove();

    Hotfixes are special, out-of-band patches created to fix specific problems, so they are never published to Windows Update.  Often the hotfix gets incorporated into a released patch that is published on Windows Update.  If this hotfix was incorporated
    into a released patch, and you applied that patch to your system, the hotfix would see that its files are older than the latest files on the system and would give you this message.  Because the hotfix is not for general distribution, there is rarely documentation
    saying that it has been superceded.
    Generally there is a file list with a hotfix/patch that gives you the version number of the affected files.  You can go through those files to see that you have the latest files.  The problem is finding the actual patch that updated those files. 
    Without going through lots of patches, it is hard to find which patch made the hotfix obsolete.
    .:|:.:|:. tim

  • How to get a random number in a range?

    as title
    how to get a random number in a range?
    like 2000~3000 thks :)

    int between 10 and 20 with the method Math.random():
    public class Rnd
         // Test
         public static void main(String[] args)
             int start=10, end = 30;
             for (int i = 0; i < 10; i++)
                int n = (int)(start + Math.random() * (end-start));
                System.out.println(n);
    }best regards.

  • Error "number out of range" in pdf sent through mail using smartform outpu

    Hi Experts,
    We have a program which sends mail using smartform output in 'PDF' format. We are able to preview smartform correctely in SAP and mail is also getting sent fine with attachment of form as PDF document. But, when we try to open the document, it gives error saying 'Number out of range'. Also, not all of the windows of smartform are appearing in document and some are coming only half.
    We are not able to find out the reason for this. Any help would be appriciated.

    Hi Soumya,
    Have you got the solution as we are facing the same issue.
    Cheers,
    Bharath

  • Error "number out of range" in pdf sent through mail using smartform output

    Hi Experts,
    We have a program which sends mail using smartform output in 'PDF' format. We are able to preview smartform correctely in SAP and mail is also getting sent fine with attachment of form as PDF document. But, when we try to open the document, it gives error saying 'Number out of range'. Also, not all of the windows of smartform are appearing in document and some are coming only half.
    We are not able to find out the reason for this. Any help would be appriciated.
    Gouri.

    Hello,
    How did you solve this one? We are facing the same problem in ECC6.0.
    Thanks in advance,
    Benjamin de Rijke

  • Doubt about CURRENT LOG SEQUENCE NUMBER

    I just want to know that why the "current log sequence number" is added to the header of each data file ? why oracle needs to do that ? as it is also added to the control file and whenever it needs to know the current log sequence number , it can get it from control file , then why to add this in the header of data files ?

    For Recovery.
    When you are doing a Recovery of a database where the datafiles have been restored from backups but the controlfile has been recreated (thus, the controlfile has no information about log sequence numbers and checkpoint scns), the Recovery must read this information from the datafile headers.
    Say you have 5 datafiles and they have been backed up 6 months ago using ALTER TABLESPACE BEGIN BACKUP commands and, therefore, have different checkpoint SCNs. The checkpoint SCNs could be 1021, 1059, 1085, 1745, 2045.
    How would Oracle know which Log Sequence Numbers are needed ? It knows that a Recovery must start with SCN 1021. But if the information about Log Sequence Numbers is not available in the controlfile (either because it is as of today and the controlfile doesn't store information about 6 months of redo logs OR because the controlfile has been recreated), what is the Log Sequence Number corresponding to that SCN 1021 ?
    That information is available in the datafile header. You will NOT see it in V$DATAFILE or V$DATAFILE_HEADER. You will not see it in a level 1 dump of datafile headers.
    You will see an example here :
    http://web.singnet.com.sg/~hkchital/Incomplete_Recovery_with_BackupControlfile.doc
    Hemant K Chitale
    http://hemantoracledba.blogspot.com

  • Current log sequence number

    i have a small doubt :
    when there is log switch , the current log sequence number is stored in the control file . Is the same current log sequence number stored in the headers of the datafiles??????
    waiting for your answers eargerly.....
    kumaresan.M

    nops i don think so.
    there is no need for doing this, only controlfile needs to know about the current sequence number
    Regards

  • Movement type 317 does not currently support serial number management

    Movement type 317 - support serial number management?
    We are using SAP ECC 6.0. and trying to create a structured material from constituent components with the WM 317. The components are using serial numbers. When we try to post the material document we get an error message:
    u201CMovement type 317 does not currently support Serial number managementu201D
    Movement type 317 does not currently support serial number management
    Message no. IO306
    Diagnosis
    With the help of * under the business operation, the entry in table T156S used here under movement type 317 defines that no serial numbers are supported here.
    System Response
    Termination of the transaction called up.
    Is any new availability which support serial number management in warehouse movement 317?

    Is the scenario relates to Retail ??  Movement Type 317 is used for Creation of a structured material from constituent components (Retail).  Check Note 131969 - Recommendation: Store returns in SAP Retail Release 4.0
    thanks
    G. Lakshmipathi

  • Movement type 124 does not currently support serial number management

    Movement type 124 does not currently support serial number management
    when I post goods return in qa12, the system shows movement type 124 doesn't support serial number.
    Could anyone can tell me where I can set the movement type for serial number?
    John

    Unfortunately it is impossible to post a return delivery from the usage-decision for a material with serial number profile, which is in goods receipt blocked stock. This is is missing functionality
    The possibility in the standard would be the following :
    1. Close the inspection lot. Please do the stock-posting in a way, that    you post to 'GR blocked stock'. Remark : No physical is   done. This is only necessary to achieve, that status SPCO is set.
    2. Post the reutrn delivery with the MM-IM-transaction (e.g. MIGO).
    Please check, if this is possible.

  • Query to find first and last call made by selected number for date range

    Hi,
    query to find first and last call made by selected number for date range
    according to filter:
    mobile_no : 989.....
    call_date_from : 25-april-2013
    call_date_to : 26-april-2013
    Please help

    Hi,
    It sounds like you want a Top-N Query , something like this:
    WITH    got_nums   AS
         SELECT     table_x.*     -- or list columns wanted
         ,     ROW_NUMBER () OVER (ORDER BY  call_date      ) AS a_num
         ,     ROW_NUMBER () OVER (ORDER BY  call_date  DESC) AS d_num
         FROM     table_x
         WHERE     mobile_no     = 989
         AND     call_date     >= DATE '2013-04-25'
         AND     call_date     <  DATE '2013-04-26' + 1
    SELECT  *     -- or list all columns except a_num and d_num
    FROM     got_nums
    WHERE     1     IN (a_num, d_num)
    ;This forum is devoted to the SQL*Plus and iSQL*Plus front ends. This question doesn't have anything to do with any front end, does it? In the future, you'll get better response if you post questions like this in the PL/SQL.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only), and also post the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using (e.g., 11.2.0.2.0).
    See the SQL forum FAQ {message:id=9360002}

  • Random number within TWO ranges

    Is there anyway to select a random number within TWO ranges ? For example, a random number between the range (10 to 50) OR (100 to 200).
    Thank you !

    This is a simple class that produces a number between a range:
    class RandomRange
    static java.util.Random random= new java.util.Random();
    *    Return an int between n1 and n2
    static int getIntBetween(int n1, int n2) // n2 must be greater than n1 or n2-n1 must be positive
    // get random number between 0 and the range(n2 - n1)
    int result= random.nextInt(n2- n1);
    // plus the offset
    result += n1;
    return result;
    // return random.nextInt(n2 - n1) + n1;
    // the result is n2 exclusive, to make it inclusive return (result + 1)
    *    Return a double between d1 and d2
    static double getDoubleBetween(double d1, double d2)
    return random.nextDouble()*(d2 - d1) + d1;
    // d1 and d2 can be any value
    *    Return a float between f1 and f2
    static float getFloatBetween(float f1, float f2)
    // similar
    }----------------------------------

  • Accessing the current SIM card number

    Hi,
    I am trying the get the current sim card number using NSUserDefault with the following codeline :
    NSString *num = [[NSUserDefaults standardUserDefaults] stringForKey:@"SBFormattedPhoneNumber"];
    Now, I need to know if their exist a better way to get the current phone number (SIM number) programatically? Is it allowed to access personal users information considering apple's privacy policy for the end user? I need to authenticate sim card before my app works and for this I need to check at the startup if the number being usedcurrently is already authenticated or not.
    Thanks,
    Obaid

    Is Apple accept following:
    1.  I put the result string in a text box .
    2.  if the user click a send button and then  a dialog appears that warn it will be send to database
    3.  if user still accept , it will be send as a record to remote database.
    Where can I ask such questions in Apple support. Should I wait until apple reject or not . Or is there an official way to ask before the project. Googling is good but it is not saying last decision.
    Thanks
    Ali

  • Getting Current Source Line Number

    I am pulling my already sparse hair out trying to perform the most remedial of tasks: I am trying to trace my code execution to debug it and to log error messages, which is done in C with something like the ubiquitous
    'printf ("%s:%d\n", __FILE__, __LINE__);'
    I can't for the life of me find anything like __FILE__ and __LINE__ in Java.
    How do I determine the current source line number??? I could live without the __FILE__ part if I had to, but the line number is imperative. Where do I get it?
    Thanks,
    Bill Rebey

    "debug" still being a hard work in Java... the oldest Java nightmare :^)))
    you may avoid this problem using labels in your code (the problem you must fill your code with debug stuff - if the code is a big one, you will get crazy about that :^) )
    or you may adopt a tool able to trace your code execution....
    JBuilder do it for you...
    Togheter is another good software available out there
    (unfortunatelly, both of them are really expensive...)
    I don�t remember now about other tools.. (the java has a flag to produce debug output - check in the forum about the debug syntax....)

  • Chartread: Error - icoms - usb_is_usb_portno: port number out of range!

    Hello.  This is the error I get on my iMac Lion using an i1Pro spectrometer and the latest Argyll ICC software.  Chartread is the sub program for reading printed color targets.
    chartread: Error - icoms - usb_is_usb_portno: port number out of range!   
    Q. 1 I can't figure out how to fix this and I have no X-Rite software remaining on my computer. 
    Q. 2 How do I get a list of usb devices (in terminal?) and if I can do that can I assign a new number to that device?
    Regards
    Mark MacKenzie

    Without the KVM the results are the same, except that using the fallback grub entry shows the console but X fails to start
    (EE) intel(0): No kernel modesetting driver detected.
    (II) UnloadModule: "intel"
    (EE) Screen(s) found, but none have a usable configuration.
    The same happens if I load the i915 module
    MODULES=(i915 !vesafb !uvesafb !vboxdrv)
    If I load the i915 and use
    kernel /boot/vmlinuz26 root=/dev/sda2 ro vga=795 i915.modeset=1
    the console still is unusable, but X boots
    And I still see the
    fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    Last edited by noalwin (2009-12-28 12:38:51)

Maybe you are looking for

  • How Stop Pop-Up Window: Allow Fullscreen With Keyboard Controls?

    How can I cause the cessation of the pop-up window that asks me, "Allow fullscreen with keyboard controls?"  In the last month or two (January- February of 2013), this black, semi-transparent pop-up has appeared every time I go to full screen in the

  • What's new in iTunes 9.0.3

    in the what new list for itunes 9.0.3 it says "Sync with iPod nano (5th generation), iPod classic (Fall 2009), and iPod touch (Fall 2009)" what does this mean ?

  • Only starts in safe mode

    I reformatted my hard drive to help solve the problem of it freezing all the time. After I got done installing the OS, I restarted my computer. It went through the normal startup process. Instead of showing the login screen, it just showed a blue scr

  • Attaching a printer to TC?

    Hi i have a wireless home network set up through my internet provider.. a netgear something or other... i have ordered my 2GB Time capsule, due to arrive next week.. id like to attach my printer to the TC but not use its wifi? or should i use the TC'

  • How can I identify and remove duplicate file (audio & photo)

    How can I identify and remove duplicate file (audio & photo)?  I have quite a few libraries created as backup files.