How to see sequence numbers

before iTunes 10, i could see a sequence number when viewing in a song list.  Is there a way to see a sequence number now?

Hi there,
There is no standrd table that will display all the serial num that are sold in a given time.
You can write an ABAP query / report for this. In the report, you can code in such a way that if you give the validity dates, it should give all the deliveries that are created within that period & serial num of serialized products in those deliveries. This is because serial num are assigned only of the item that is serialized. Non-serialized items willnot have serial num.
For this, you will have to 1st extract all the entries in LIKP for a specific sales org / plant / shipping point within that period. Then you will have to extract LIPS values of those deliveries. Then you will have to pick up only serialized items from the list.
Ask you ABAPer to check if it is possible to develop this kind of a query / report.
Regards,
Sivanand

Similar Messages

  • How to read sequence numbers from RTP packets

    hi everyone.
    i want to know how to read sequence numbers of RTP packets. I will need that to reconstruct my stream from packet losses.
    URGENT Help needed!!

    The StreamTokenizer parses all numbers into only one type of value, a double. If you know that all the numeric values in the file will be integers, you could just cast the nval double field to an int and the toString() method will format it correctly.
    If you want to have different tokens and value types for different kinds of numbers, you will have to sub-class StreamTokenizer and add these capabilities yourself. You can add the type constant TT_INT, and provide an int field named ival. The toString() method would then format the value in the correct manner.
    If, on the other hand, you are actually looking for the exact text that was parsed, you could add code that collects the characters as they are parsed for any token type into the sval field in the nextToken() method, just like it already does when the token is a TT_WORD. In this manner sval is always valid for any token type.
    I hope you find this of some help.

  • How to see serial numbers which have been sold

    Hi,
    I want to see serial numbers which has been sold.
    How to see that.
    Regards
    Gaurav Jain

    Hi there,
    There is no standrd table that will display all the serial num that are sold in a given time.
    You can write an ABAP query / report for this. In the report, you can code in such a way that if you give the validity dates, it should give all the deliveries that are created within that period & serial num of serialized products in those deliveries. This is because serial num are assigned only of the item that is serialized. Non-serialized items willnot have serial num.
    For this, you will have to 1st extract all the entries in LIKP for a specific sales org / plant / shipping point within that period. Then you will have to extract LIPS values of those deliveries. Then you will have to pick up only serialized items from the list.
    Ask you ABAPer to check if it is possible to develop this kind of a query / report.
    Regards,
    Sivanand

  • How to see my numbers documents on my mac

    Hi,
    I have purchased the numbers programme on my mac and also found the app for ipad. I can see my documents from my ipad to iphone but cant see them on my mac. The details on the programme / app say it is possible. I have icloud and down loaded mountain lion. Please please help!

    Be sure that in System Preferences>iCloud you have "Documents & Data" turned on.

  • How to generate random sequence numbers

    Hello experts
    Iu2019m writing a custom program and pulling data from VBAK & VBAP. As per requirement I also need to generate a sequence number randomly and finally store all data in text file and upload at server. The hiccup is I donu2019t know how to generate sequence numbers. Can somebody please show me how I can accomplish it?
    Thanks a lot in advance

    Find the below code,
      data: lv_range type datatype-char0128.
      call function 'RANDOM_C'
        exporting
          len_min   = 20
          len_max   = 20
          char_min  = 1
          char_max  = 20
        importing
          rnd_value = lv_range.
    LV_RANGE param will have a random value..
    If you need number you can use the FM "RANDOM_I4"
    Thanks,
    Prathap

  • How To See Numbers In Arabic Instead Of Indian Format

    I want to see numbers in Arabic format not in Indian format when i log on the Arabic Interface .
    I have EBS (12.0.6) installed on Linux centos , I have implement the below Oracle Metalink Note to solve this issue
    How To See Numbers In Arabic Instead Of Indian Format [ID 785243.1]
    I installed all the patched mentioned in the note (Apply forms version 10.1.2.2.0 with the forms patch 7488328 , Apply patch 7207440:R12.TXK.A , Apply patch 7601624 - NEW PROFILE OPTION: FORMS DIGIT SUBSTITUTION)
    These patches add the Profile option (FORMS DIGIT SUBSTITUTION) , but when i try to used it has no effect at all .
    So kindly if you have any idea about this issue please help me.
    Regards
    Fadi Lafi

    Hi,
    These patches add the Profile option (FORMS DIGIT SUBSTITUTION) , but when i try to used it has no effect at all .At what level you have set this profile option?
    So kindly if you have any idea about this issue please help me.Have you bounced the application services after setting this profile option? If not, please do so, login again and see if it works.
    Thanks,
    Hussein

  • How to enable automatic sequence numbering for intercompnay invoice?

    How can the sequence for "PA Internal Invoice" be automated.?

    Hi
    You may navigate to Projects Implementation Options, and go to the tab - Internal Billing.
    There you may find the field - Invoice Numbering. You can select Automatic or Manual.
    Per your requirement enter - Automatic, and go on entering the starting number to use for internal invoices.
    Dina

  • How do I see the numbers I texted on my verizon?

    I have a prepaid iPhone plan. Im the only number on the account, and the acct owner. I need to see the numbers I texted/ texted me at certain times and when I go to usage the number fields are left blank? Thank you so much for your time and God bless:)

        xoangelheartxo,
    Keeping a tab on numbers you've contacted or numbers that have contacted you is often times very useful. So, we want to make that happen. At your convenience, I'd recommend contacting our prepaid department directly at 888-294-6804. While prepaid won't be able to verbally provide you with your request due to privacy policy, prepaid can definitely come up with a course of action to suit your needs.
    Evan_VZW
    Please follow us on twitter @VZWSupport

  • Finding missed sequence numbers and rows from a fact table

    Finding missed sequence numbers and rows from a fact table
    Hi
    I am working on an OLAP date cube with the following schema:
    As you can see there is a fact transaction with two dimensions called cardNumber and Sequence. Card dimension contains about three million card numbers. 
    Sequence dimension contains a sequence number from 0 to 255. Fact transaction contains about 400 million transactions of those cards.
    Each transaction has a sequence number in 0 to 255 ranges. If sequence number of transactions of a card reaches to 255 the next transaction would get 0 as a sequence number.
    For example if a card has 1000 transactions then sequence numbers are as follows;
    Transaction 1 to transaction 256 with sequences from 0 to 255
    Transaction 257 to transaction 512 with sequences from 0 to 255
    Transaction 513 to transaction 768 with sequences from 0 to 255
    Transaction 769 to transaction 1000 with sequences from 0 to 231
    The problem is that:
    Sometimes there are several missed transactions. For example instead of sequence from 0 to 255, sequences are from 0 to 150 and then from 160 to 255. Here 10 transactions have been missed.
    How can I find all missed transactions of all cards with a MDX QUERY?
    I really appreciate for helps

    Thank you Liao
    I need to find missed numbers, In this scenario I want the query to tell the missed numbers are: 151,152,153,154,155,156,157,158,159
    Relative transactions are also missed, so I think it is impossible to get them by your MDX query
    Suppose this:
    date
    time
    sequence
    20140701
    23:22:00
    149
    20140701
    23:44:00
    150
    20140702
    8:30:00
    160
    20140702
    9:30:00
    161
    20140702
    11:30:00
    162
    20140702
    11:45:00
    163
    As you can see the sequence number of the last transaction at the 20140701 is 150
    We expecting that the first transaction of the next day should be 151 but it is 160. Those 10 transactions are totally missed and we just need to
    find missed sequence numbers

  • Sequence numbers - with no gaps!

    I seek some advice from anyone with first hand experience in this area.
    My need is simple; generate a new ID number for every order for use as the primary key.
    Obviously this simple exercise could be a bottleneck as volumes ramp up, so I was pleased to find the Oracle feature to generate such numbers (efficiently presumably). However, upon closer reading it was apparent that aborted transactions would result in the loss of the number allocated to to that order if another transaction had obtained the next sequence number already (as one would want it to, rather than serializing transactions).
    I don't want to have gaps in the sequence as the system needs a high degree of auditability. I am thinking of utilising the Autonomous Transaction feature to write the newly acquired sequence number to the order file with a flag indicating that the record is incomplete, and that record is to be skipped by normal system applications (but available to audit reports which will interpret the reason correctly), then returning to the far more extensive main transaction which updates many tables.
    The other alternative is to control sequence numbers within the application itself, or try to get the sequence number as the very last step before writing the new order record, but this probably won't guarantee gapless reliability either. The ID itself has no significance, and it doesn't matter if an ID was used out of strict date/time sequence, so I really don't want to execute these updates serially.
    So, my question is this:
    a) do most people use the builtin sequence number feature?
    b) if so, is there a standard technique for avoiding or accounting for gaps?
    c) if the application must take over this task, should the counter for the last used ID be in a single row table to minimise bottlenecks caused by the thisrecord being locked? There will be several such counters for different aspects of the application, and i thought of having each in its own row in a small table, but I'm concerned about the whole table getting locked and freezing out otherwise-unrelated updates.
    Thanks for any advice you may have.
    CS

    user8821725 wrote:
    I seek some advice from anyone with first hand experience in this area.
    My need is simple; generate a new ID number for every order for use as the primary key.
    Obviously this simple exercise could be a bottleneck as volumes ramp up, so I was pleased to find the Oracle feature to generate such numbers (efficiently presumably). However, upon closer reading it was apparent that aborted transactions would result in the loss of the number allocated to to that order if another transaction had obtained the next sequence number already (as one would want it to, rather than serializing transactions).
    I don't want to have gaps in the sequence as the system needs a high degree of auditability. One of the very very few reasons for me to have a requirement for "gapless" sequences is if you have a kind of checking mechanism outside of the database that is implemented using this gapless number. I had such a requirement once, when exchanging files with another bank where we had to ensure that each file was transferred correctly and in the right order. Your "high degree of auditability" might be a similiar requirement. Just remember as long as you are still inside the database you can use other mechanisms to increase auditability.
    I am thinking of utilising the Autonomous Transaction feature to write the newly acquired sequence number to the order file with a flag indicating that the record is incomplete, and that record is to be skipped by normal system applications (but available to audit reports which will interpret the reason correctly), then returning to the far more extensive main transaction which updates many tables.Hm. I don't see why you want to use Autonomous Transactions for this. It might be useful to lessen locking conflicts , depending how your future sequence mechanism will be built.
    >
    The other alternative is to control sequence numbers within the application itself, or try to get the sequence number as the very last step before writing the new order record, but this probably won't guarantee gapless reliability either. The ID itself has no significance, and it doesn't matter if an ID was used out of strict date/time sequence, so I really don't want to execute these updates serially.I would go for generating the sequence as the very last step. It needs to be set to NOCACHE of cause. This will garantee that the sequence fetched from mySeq.nextval is gapless. The problem is then in your application. Your application must be built in a way that it ensures to use this sequence, or at least to create a noticable alert when this generated sequence can't be used anymore. In essence this means. Each unhandled (database) error that happens after you fetched the next sequence value must be raised in a way that informs all relevant people about this error.
    Example: It might be that you use the sequence to write an order file. What happens if halfway through writing the file your disk runs out of space? This can be such an issue where a sequenced value will be lost. Your organisation must take care of those things.
    >
    So, my question is this:
    a) do most people use the builtin sequence number feature?Yes. But for some tasks a sequence is not the best way, for example if you want a numbering for each item of your order. This "sequence" needs to restart with every new order.
    b) if so, is there a standard technique for avoiding or accounting for gaps?NOCACHE => Avoids gaps during generation
    Database Trigger => Tries to use the sequence as late as possible
    c) if the application must take over this task, should the counter for the last used ID be in a single row table to minimise bottlenecks caused by the thisrecord being locked? There will be several such counters for different aspects of the application, and i thought of having each in its own row in a small table, but I'm concerned about the whole table getting locked and freezing out otherwise-unrelated updates.This is a possibility and the issues you describe are why we avoid such a solution in general. Autonomous transactions help to reduce the locking conflict, but they increase the chance that you produce gaps.
    >
    Thanks for any advice you may have.
    CSOracle can guarantee to produce gapless sequences. But it can't guarantee that your application uses such a sequence in a gapless way.

  • Recycled Sequence Numbers

    Hi,
    We have a requirement of generating sequence numbers for a table and we need to recycle them if some of them is deleted.
    For example the following tabe Employee(Id,name)
    ID NAME
    1 XXX
    2 YYY
    3 ZZZ
    4 AAA
    The ID filed should have the next sequence number generated. When I call getnextID now, it should return 5
    ID NAME
    1 XXX
    2 YYY
    3 ZZZ
    4 AAA
    5 BBB
    Now Let us assume I delete 3. The contents of the table aare
    ID NAME
    1 XXX
    2 YYY
    4 AAA
    5 BBB
    Now when getNextID, 3 should be returned.
    How to achieve this in a best performing way in Oracle? Are there any patterns around it? Please note this should run in a multi user environment.
    Thanks,
    Rama

    I think the answers were based on the fact that you call it incorrectly sequence.
    Your ConnectivityID is more as a resource that could be recycled. I see some similarities to the GSM telecom market where a resource(i.e. a phone number or a SIM card no) can be recycled when is not active anymore (under certain conditions however).
    Personally I would generate a table of resources having the resource number (ConnectivityID) and resource status.
    To simplify it, suppose that you have column status with 2 possible values, 0=available, 1=not available.
    When you want to allocate the resource number(ConnectivityId) you will set the status to 1.
    When the record is deleted then status will be updated back to 0.
    Recycling a ConnectivityID will mean searching in the table for the lowest number having status=0.
    Of course you don't expect this to be as fast as a sequence but I think this is a different requirement, IMO.
    Regards
    Al

  • Multiple volumes with sequence numbers

    Hello
    i see a strange behaviour for some volumes. For instance - i have an external hard drive connected via Firewire 800, where my Time Machine is located.
    If i look into the volumes folder i do see several folders with a red button on it named Time Machine, Time Machine 1, Time Machine 2, Time Machine 3. Only Time Machine 4 is displayed as an alias and contains the actual files. All others are empty. The same observation applies to my idisk. It seems that every day my Mac creates a new folder or a new alias. I have now 81 folders!
    The behaviour observed does not seem to hurt and the folders can be deleted, but in some applications (for instance Arperture) all these drive are shown as import folders, which is nasty if you have 81 idisks presented.
    It seems to me that it all relates to external hard drives. All local volumes have never shown these crazy sequence numbers
    The question is now why the systems behaves like this and how it can be avoided.
    Help is mostly appreciated. Thanks

    Thanks, Andreas for the explanation, which are helpful to get rid of those unwanted items.
    However the external firewire drive is always connected to the Mac pro - it is not a mobile device - it's purely for having the Time Machine on an external storage.
    And how should i avoid the behaviour with the idisk. The storage is a remote external device, where the connection is built through the Internet.
    Any additional ideas ?
    Thanks
    Michael

  • Tethering and Controlling the Shooting Sequence Numbers

    This may be a bit much - but I have to ask.
    I'm just getting started with Aperture, but one of my reasons for switching from Lightroom was the Tethering abilities of Aperture.
    My question is very simple, when shooting tethered where/how can I control the image sequence numbers? The sequence number on my EOS 5D is controlled by the folder it's writing too, and the EOS software lets you specify a starting number- however ...
    Aperture is not using the EOS Utility to do the tethering, or is it?
    Anyway- if someone can tell me how to control my sequence starting point while shooting tethered, that'd be cool --
    thanks-

    When I upload photos to My Photo Steam the sequence of the photos is altered.  So any shots taken in 'burst' mode will not appear in order - usually the middle shots of the burst sequence are moved to either the beginiing or the end of the seqence.  (so, for example, when reviewing a sequence in My Photo Stream - you see a basketball player take a shot before he dribbles towards the basket...)
    I wonder, why you are seeing more than one photo of a burst of photos in the PhotoStream at all. According to the "Photo Stream FAQ" only the final selected photo of a burst will upload to the Photo Stream, see:
    http://support.apple.com/kb/HT4486
    Are all of the photos taken with burst mode or image stabilization on my iPhone 5s saved to My Photo Stream?
    No. Only the final photos that you select when using burst mode, and only the final composite image shot with image stabilization are added to My Photo Stream.

  • HOW DO I GET NUMBERS TO DO WHAT I WANT?

    HELP PLEASE:
    I  FIND NUMBERS  CONFUSING.  THE OLD WORKS SPREADSHEETS WERE SO MUCH EASIER/SIMPLER.
    I CAN’T SEEM TO GET THE FORMULAS & FUNCTIONS ENTERED CORRECTLY.
    I DON’T KNOW WHAT THEY MEAN “PRESERVE ROW” OR “PRESERVE COLUMN”.. SO DON’T KNOW IF I NEED TO CHECK
    ONE OF THEM OR NOT…AMONG OTHER THINGS.
    I’M TRYING TO MAKE A SPREADSHEET FOR TWO INVESTMENT ACCTS.
    ONE HAS A LARGE NUMBER OF STOCKS IN IT.
    THE SECOND HAS ONLY A FEW STOCKS BUT THEY ARE THE SAME STOCKS WHICH ARE IN THE FIRST ACCT. AS WELL.
    THAT MEANS MOST OF THE CELLS IN COLUMNS F & G (BELOW) WILL BE EMPTY.
    FOR THE PURPOSE OF MY EXAMPLE:
    “A ACCT“  WILL SHOW ONLY 4 STOCKS  & “B ACCT” WILL HAVE ONLY 2 STOCKS. I THINK THAT’S ENOUGH FOR YOU
    TO SEE WHAT I’M ATTEMPTING TO DO.
    LETS SAY THE COLUMN HEADINGS ARE:
      A                 B                          C                D                  E                             F                 G                           H
    SYM       DESCRIPTION       A ACCT#SH     CLOSE    A ACCT TTL VALUE     B ACCT#SH   B ACCT TTL VALUE   ACCTS A&B TTL
    I WANT TO MULTIPLY ACROSS EACH ROW      THE # SH    TIMES    THE CLOSE  — TWICE
    COL C  TIMES D SHOULD EQUAL E
    COL F  TIMES D SHOULD EQUAL  G
    THEN I’D LIKE TO ADD E + G AND HAVE THEIR TOTALS ENTERED IN COL H IN EACH ROW.
    ONCE ALL THAT’S DONE,  I’D LIKE COL. E TOTALED, COLUMN G TOTALED AND COL H TOTALED.
    FOR EXAMPLE:
         A             B                         C                 D                  E                          F                        G                         H
    1. SYM    DESCRIPTION       A ACCT#SH     CLOSE    A ACCT TTL VALUE     B ACCT#SH   B ACCT TTL VALUE    ACCTS A&B TTL
    2. XYZ     XYZ STOCK               200             25.00           $5,000.00              150                  $3,750.00           $8,750.00
    3. STU     STU STOCK               100             10.00           $1,000.00            
    4. PQR     PQR STOCK               500             20.00         $10,000.00             100                   $2,000.00         $12,000.00
    5. MNO    MNO STOCK              100             12.75           $1,275.00            
                                                                                    =SUM (E2:E5)                               =SUM (G2:G5)      =SUM (H2:H5)              
    I THINK I KNOW HOW TO WRITE THE FORMULAS TO TOTAL THE COLUMNS. I CHOOSE  “EDIT FORMULA” UNDER  “FUNCTION” AT
    THE TOP OF THE SPREADSHEET AND WRITE AS I’VE SHOWN ABOVE IN AN EMPTY CELL AT THE BOTTOM OF EACH COLUMN.
    IS THIS  CORRECT?
    WHAT I HAVEN’T FIGURED OUT IS HOW TO GET THE MULTIPLICATION DONE ACROSS THE ROWS OR THE ADDITION FOR COL. H
    I THINK I KNOW WHAT THE FORMULAS SHOULD BE  BUT DON’T KNOW HOW TO GET THEM ENTERED OR WHERE….
    I’M DOING SOMETHING WRONG BECAUSE  I GET ONLY ONE  NUMBER AT THE BOTTOM OF COLUMN E  INSTEAD OF MULTIPLYING
    ACROSS,  THEN TOTALING THE COLUMNS
    I THINK THOSE FORMULAS SHOULD BE:
    COL E  SHOULD BE:   =PRODUCT(C,D)         AND   COLUMN G  SHOULD BE: =PRODUCT(D,F )        AND COL H SHOULD BE: =SUM(E,G)
    CORRECT?  IF NOT PLEASE ADVISE WHAT THEY SHOULD BE.
    IF MY FORMULAS ARE CORRECT, HOW DO I GET NUMBERS TO DO IT?  PLEASE PRETEND YOU’RE SPEAKING TO A 5 YR OLD…..
    I’D SAY 1O YR OLD BUT THEY MAY BE MORE FAMILIAR WITH THE VOCABULARY AND HOW TO DO THIS THAN I AM.
    THANK YOU.

    It's incredibly hard to read a post when it's in ALL CAPS.
    But the answer to your question is copy and paste. When you have a cell that contains a formula, and you copy and paste it into another cell, firstly, the formula gets pasted, not the value, and second, the formula uses relative cell values. What that means is, if your formula in E2 is C2 * D2, and you copy and paste that cell value into E3, it will by default become C3 * D3. (You CAN change a formula to use absolute cell values if it suits your spreadsheet - when you edit the formula, the drop down for each cell number includes a value like $C2 which will not change when you paste it into a lower row.)
    by the way, it's usually faster just to use the equals sign when you enter a formula in a cell. eg, click into E2, press equals to start the formula, click into C2 to make that the first cell in the formula, type "*", then click into D2 and click the green tick to confirm the formula.
    Matt

  • ? how to add page numbers in pages 5.2, starting with 2.  Pages '09 had an option to not show folio on page one.  Also any how to do left and right folios for a Tabloid?  Many trhanks

    ? how to add page numbers in pages 5.2, starting with page 2.  Pages '09 had an option to not show folio on page one.  Also any idea how to do left and right folios for a Tabloid?  Many thanks  . . .

    Hello jacquemac,
    Your first question:
    There might be a better way of achieving what you wish to do, but following these steps could help you out.
    You might want to blend in Thumbnails and Invisibles either with (cmd+shift+i and cmd+alt+p) or over the View section in the Menubar.
    1. go for Documents (right end of the Toolbar) -> Section
    2. place your cursor at the very top of your second page and click "Create new Section->Starting with this page" in the side bar on your right.
    (what you are actually doing next is setting the pagenumbers for each section you created. You can see your sections in the Thumbnail view.)
    3. click on your first page (the first and only page of your first section) and mark the checkbox "Hide on first page of section"
    4. click on your second page (the first page of your second section) and  "Insert page number" -> start at 1
    Your second question:
    Im not quite sure i understand what exactly you want to do here. One page, two columns, each column with another page number? As far as i know this is not possible.
    greetings jl

Maybe you are looking for