Serial Number in ALV list

Hi...
How do we give Serial numbers to the records displayed in an ALV list? I can create a column(Sr. No) in the internal table, but this wont work if the user sorts the list.
Regards,
Anoop

hi.
you can try this out..
the statment WA_A2-SELTEXT_L = 'S_NO' is necessary for display of the numbers in the column in alv..
for example..
WA_A2-COL_POS = 1.
WA_A2-FIELDNAME = 'S_NO'.
<b>WA_A2-SELTEXT_L = 'S_NO'.</b>WA_A2-TABNAME = 'IT_A1'.
WA_A2-HOTSPOT = 'X'.
APPEND WA_A2 TO IT_A2.
CLEAR WA_A2.

Similar Messages

  • I am trying to reinstall Master Collection after a computer crash and after download it will not accept the serial number that it lists on my purchased products.  The purchase was in 2012.

    I am trying to reinstall Master Collection after a computer crash and after download it will not accept the serial number that it lists on my purchased products.  The purchase was in 2012.The message says the serial number is invalid.  What do I do nest?

    Hi there,
    Please see help here - https://helpx.adobe.com/creative-suite/kb/error-serial-number-valid-product.html
    If still you are facing problem, I would recommend to reach out to support through the link which is available at the bottom of the support page.
    ^Ani

  • Serial No in ALV list

    Hi everyone,
    i am gerarating a alv list which gisplays all the PO's that have been half delivered, but i need to add a serial no col for this list, so that if i sort the list on any of the fields the serial no should be intact,
    plz help,
    Shri Hari

    Hi Sri Hari,
    I think the earlier logic works fine . If the alv is implemented with Object Oriented concept then this example will be helpful.The user command can be handled before SAP handles it in the event before_user_command of cl_gui_alv_grid and after handling the event you can avoid further processing. I have done the same for the copy of standard program ERGP2020 and handled it .Here I did not go for any custom buttons but handled the standard SAP provided buttons.
    And here is the code.......
    REPORT ztest LINE-SIZE 90 NO STANDARD PAGE HEADING.
    DATA :
    t_column TYPE lvc_t_col,
    fs_column TYPE lvc_s_col.
    DATA: txt_report LIKE dokhl-object.   "Reportname für Erläuterungsaufruf
    DATA: BEGIN OF mylist OCCURS 20,       " Internal table for preparing
            sno(4)       TYPE n,
            zuordnung(8) TYPE c,                                " the list
            belegnr(10) TYPE c,
            ba(2) TYPE c,
            bldatum TYPE d,
            bs(2) TYPE c,
            s(4) TYPE c VALUE ' ',
            wrg(4) TYPE c,
            betrag TYPE p DECIMALS 2,
          END OF mylist.
    DATA: ok_code LIKE sy-ucomm,
          g_container TYPE scrfname VALUE 'LIBS_GRID_CONTROL_CONTAINER',
          grid TYPE REF TO cl_gui_alv_grid,
          g_custom_container TYPE REF TO cl_gui_custom_container.
    DATA: gt_fieldcatalog TYPE lvc_t_fcat,
          gs_layout   TYPE lvc_s_layo.
    DATA: seed1 TYPE i VALUE '123',                  " Rand number seed 1
          seed2 TYPE i VALUE '2345',                 " Rand number seed 2
          seed3 TYPE i VALUE '23'.                   " Rand number seed 3
          CLASS cls_event_handler DEFINITION
    CLASS cls_event_handler DEFINITION.
      PUBLIC SECTION .
        METHODS :
          handle_before_user_command FOR EVENT before_user_command OF
        cl_gui_alv_grid IMPORTING e_ucomm.
    ENDCLASS.                    "cls_event_handler DEFINITION
          CLASS cls_event_handler IMPLEMENTATION
    CLASS cls_event_handler IMPLEMENTATION.
      METHOD handle_before_user_command.
        IF e_ucomm EQ '&SORT_ASC' OR e_ucomm EQ '&SORT_DSC'.
          CALL METHOD grid->get_selected_columns
            IMPORTING
              et_index_columns = t_column.
          IF sy-subrc EQ 0.
            IF t_column[] IS INITIAL.
              MESSAGE 'Select one column' TYPE 'I'.
            ENDIF.
            READ TABLE t_column INDEX 1 INTO fs_column.
            IF sy-subrc EQ 0.
              IF e_ucomm EQ '&SORT_ASC'.
                SORT mylist BY (fs_column-fieldname).
              else.
                SORT mylist BY (fs_column-fieldname) descending.
              ENDIF.
              LOOP AT mylist INTO mylist.
                MOVE sy-tabix TO mylist-sno.
                MODIFY mylist FROM mylist.
              ENDLOOP.
              CALL METHOD grid->refresh_table_display
                EXCEPTIONS
                  finished = 1
                  OTHERS   = 2.
              IF sy-subrc <> 0.
                MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                           WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
              ENDIF.
              CALL METHOD grid->set_table_for_first_display
                EXPORTING
                  is_layout                     = gs_layout
                CHANGING
                  it_outtab                     = mylist[]
                  it_fieldcatalog               = gt_fieldcatalog
                EXCEPTIONS
                  invalid_parameter_combination = 1
                  program_error                 = 2
                  too_many_lines                = 3
                  OTHERS                        = 4.
              IF sy-subrc <> 0.
                MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                           WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
              ENDIF.
            ENDIF.
          ENDIF.
          CALL METHOD grid->set_user_command
            EXPORTING
              i_ucomm = space.
        ENDIF.
      ENDMETHOD.                    "handle_before_user_command
    ENDCLASS.                    "cls_event_handler IMPLEMENTATION
    Main Program *******************************
    START-OF-SELECTION.
      PERFORM fill_itab.
      PERFORM fieldcatalog_init USING gt_fieldcatalog[].
      PERFORM layout_init USING gs_layout.
      PERFORM main.
    Form Routines ******************************
          FORM MAIN                                                     *
          Main output routine                                           *
    FORM main.
      CALL SCREEN 100.
    ENDFORM.                    "main
          MODULE PBO OUTPUT                                             *
    MODULE pbo OUTPUT.
      SET PF-STATUS 'MAIN1'.
      SET TITLEBAR 'MAIN100'.
      IF g_custom_container IS INITIAL.
        CREATE OBJECT g_custom_container
               EXPORTING container_name = g_container.
        CREATE OBJECT grid
               EXPORTING i_parent = g_custom_container.
        DATA :
          obj_event TYPE REF TO cls_event_handler.
        CREATE OBJECT obj_event.
        SET HANDLER obj_event->handle_before_user_command FOR grid.
        CALL METHOD grid->set_table_for_first_display
          EXPORTING
            is_layout                     = gs_layout
          CHANGING
            it_outtab                     = mylist[]
            it_fieldcatalog               = gt_fieldcatalog
          EXCEPTIONS
            invalid_parameter_combination = 1
            program_error                 = 2
            too_many_lines                = 3
            OTHERS                        = 4.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                     WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ENDIF.
      ENDIF.
    ENDMODULE.                    "pbo OUTPUT
          MODULE PAI INPUT                                              *
    MODULE pai INPUT.
      to react on oi_custom_events:
      CALL METHOD cl_gui_cfw=>dispatch.
      CASE ok_code.
        WHEN '&F03' OR '&F15' OR '&F12'.
          PERFORM exit_program.
        WHEN 'ERLE'.
          txt_report = 'ERGP2020'.
          CALL FUNCTION 'ERGO_TEXT_SHOW'
            EXPORTING
              textname = txt_report
              id       = 'RE'
              langu    = sy-langu.
        WHEN OTHERS.
        do nothing
      ENDCASE.
      CLEAR ok_code.
    ENDMODULE.                    "pai INPUT
          FORM EXIT_PROGRAM                                             *
    FORM exit_program.
      LEAVE PROGRAM.
    ENDFORM.                    "exit_program
          FORM FILL_ITAB                                                *
          Fills the internal table for the list output                  *
    FORM fill_itab.
      DATA: ran TYPE f,
            rani TYPE i,
            ranp TYPE p DECIMALS 2,
            belnr TYPE i VALUE 1600000040,
            date TYPE d.
      date = '19920417'.
      DO 18 TIMES.
        MOVE '19920316' TO mylist-zuordnung.
        ADD 1 TO belnr.
        MOVE belnr TO mylist-belegnr.
        MOVE 'DA' TO mylist-ba.
        PERFORM random(ergphelp) USING seed1 seed2 seed3 ran.
        rani = 10 * ran.
        IF rani > 7.
          ADD 1 TO date.
        ENDIF.
        MOVE date TO mylist-bldatum.
        MOVE '01' TO mylist-bs.
        PERFORM random(ergphelp) USING seed1 seed2 seed3 ran.
        rani = 10 * ran.
        IF rani > 7.
          MOVE text-w10 TO mylist-wrg.                          "USD
        ELSE.
          MOVE text-w20 TO mylist-wrg.                          "DM
        ENDIF.
        PERFORM random(ergphelp) USING seed1 seed2 seed3 ran.
        ranp = 1000000 * ran.
        IF mylist-wrg = text-w10.
          ranp = ranp / 2.
        ENDIF.
        MOVE ranp TO mylist-betrag.
        MOVE sy-index TO mylist-sno.
        APPEND mylist.
      ENDDO.
    ENDFORM.                    "fill_itab
          FORM FIELDCAT_INIT
    FORM fieldcatalog_init USING lt_fieldcatalog TYPE lvc_t_fcat.
      DATA: ls_fieldcatalog TYPE lvc_s_fcat.
      CLEAR ls_fieldcatalog.
      ls_fieldcatalog-fieldname = 'SNO'.
      ls_fieldcatalog-datatype  = 'N'.
      ls_fieldcatalog-reptext   = text-u99.
      ls_fieldcatalog-coltext  = text-u99.
      ls_fieldcatalog-seltext  = text-u99.
      ls_fieldcatalog-tooltip  = text-u99.
      ls_fieldcatalog-key      = 'X'.
      APPEND ls_fieldcatalog TO lt_fieldcatalog.
      CLEAR ls_fieldcatalog.
      ls_fieldcatalog-fieldname = 'ZUORDNUNG'.
      ls_fieldcatalog-datatype  = 'C'.
      ls_fieldcatalog-reptext   = text-u10.
      ls_fieldcatalog-coltext  = text-u10.
      ls_fieldcatalog-seltext  = text-u10.
      ls_fieldcatalog-tooltip  = text-u10.
      ls_fieldcatalog-key      = 'X'.
      APPEND ls_fieldcatalog TO lt_fieldcatalog.
      CLEAR ls_fieldcatalog.
      ls_fieldcatalog-fieldname = 'BELEGNR'.
      ls_fieldcatalog-datatype  = 'C'.
      ls_fieldcatalog-reptext   = text-u20.
      ls_fieldcatalog-coltext   = text-u20.
      ls_fieldcatalog-seltext  = text-u20.
      ls_fieldcatalog-tooltip  = text-u20.
      ls_fieldcatalog-key      = 'X'.
      APPEND ls_fieldcatalog TO lt_fieldcatalog.
      CLEAR ls_fieldcatalog.
      ls_fieldcatalog-fieldname    = 'BA'.
      ls_fieldcatalog-datatype  = 'C'.
      ls_fieldcatalog-reptext   = text-u30.
      ls_fieldcatalog-coltext   = text-u30.
      ls_fieldcatalog-seltext  = text-u30.
      ls_fieldcatalog-tooltip = text-u30.
      APPEND  ls_fieldcatalog TO lt_fieldcatalog.
      CLEAR ls_fieldcatalog.
      ls_fieldcatalog-fieldname    = 'BLDATUM'.
      ls_fieldcatalog-datatype  = 'DATS'.
      ls_fieldcatalog-reptext   = text-u40.
      ls_fieldcatalog-coltext   = text-u40.
      ls_fieldcatalog-seltext  = text-u40.
      ls_fieldcatalog-tooltip  = text-u40.
      APPEND ls_fieldcatalog TO lt_fieldcatalog.
      CLEAR ls_fieldcatalog.
      ls_fieldcatalog-fieldname    = 'BS'.
      ls_fieldcatalog-datatype  = 'C'.
      ls_fieldcatalog-reptext   = text-u50.
      ls_fieldcatalog-coltext   = text-u50.
      ls_fieldcatalog-seltext = text-u50.
      ls_fieldcatalog-tooltip  = text-u50.
      APPEND ls_fieldcatalog TO lt_fieldcatalog.
      CLEAR ls_fieldcatalog.
      ls_fieldcatalog-fieldname    = 'S'.
      ls_fieldcatalog-datatype  = 'C'.
      ls_fieldcatalog-reptext   = text-u60.
      ls_fieldcatalog-coltext  = text-u60.
      ls_fieldcatalog-seltext = text-u60.
      ls_fieldcatalog-tooltip  = text-u60.
      APPEND ls_fieldcatalog TO lt_fieldcatalog.
      CLEAR ls_fieldcatalog.
      ls_fieldcatalog-fieldname    = 'WRG'.
      ls_fieldcatalog-datatype  = 'C'.
      ls_fieldcatalog-reptext  = text-u70.
      ls_fieldcatalog-coltext  = text-u70.
      ls_fieldcatalog-seltext  = text-u70.
      ls_fieldcatalog-tooltip = text-u70.
      APPEND ls_fieldcatalog TO lt_fieldcatalog.
      CLEAR ls_fieldcatalog.
      ls_fieldcatalog-fieldname     = 'BETRAG'.
      ls_fieldcatalog-datatype      = 'CURR'.
      ls_fieldcatalog-outputlen      = '15'.
      ls_fieldcatalog-reptext     = text-u80.
      ls_fieldcatalog-coltext      = text-u80.
      ls_fieldcatalog-seltext      = text-u80.
      ls_fieldcatalog-tooltip  = text-u80.
      ls_fieldcatalog-cfieldname = 'WRG'.
      APPEND ls_fieldcatalog TO lt_fieldcatalog.
      CLEAR ls_fieldcatalog.
    ENDFORM.                    "fieldcatalog_init
          FORM layout_init                                              *
    -->  LS_LAYOUT                                                     *
    FORM layout_init USING ls_layout TYPE lvc_s_layo.
    ls_layout-no_toolbar = 'X'.
      ls_layout-zebra = 'X'.
    ENDFORM.                    "layout_init

  • My serial number is not listed on my "products" in my account.

    I purchased Lightroom on January 28th online and received a confirmation email (which I still have) but there is not a serial number listed in the email or on my account. I went back to make sure I didn't receive any emails with a serial number but there is none. Any help to recover where my serial number is would be appreciated.

    The Products area can take some time to load after the page comes up so wait a minute or two and/or try a new browser in case there's something wrong with the JavaScript that serves the page.  This is a user-to-user forum so there's nothing we can do as users other than give you a hint as to where to look for things on Adobe's site, which you seem to know, already.
    If there is really nothing listed under your Products or your Orders or whatever the page sections are called, now, then I'd suggest you talk to Adobe, directly via Chat, which you can get to by starting on the Contact Us page and then indicating what products, problem area and problem you're having:  http://helpx.adobe.com/contact.html
    You do have to have purchased the products using the same AdobeID (e-mail) as you're logged into Adobe with when trying to view the orders and products.

  • Display Row number in ALV List

    Hi All,
          I have 50 records in Internal table . I  am displaying this internal table data in ALV List display. I want to print row number in ALV . Could you please help me how to print.
    Thanks,
    PRSN.

    HI,
      take one more field in the internal table and fill it up with the number when you are filling it with data .
    loop at itab.
    it_final-seqno = sy-tabix.
    append it_final.
    endloop.

  • SERIAL number in ALV

    Hi experts,
    iam doing alv report. iam having sl.no. filed in the internal table.
    for output depending on different options, it is not showing the sl.no. in proper order.
    for each input or requirement it is taking the same sl.no. series and the output is correct we r getting but sl.no order is not correct.
    ex:option 1.
    output:
    sl.no.
    1
    2
    3......
    ex:option 2. (according to option this values only we require but, the serial number should be 1,2,3, in this order)
    output:
    sl.no.
    12
    21
    32
    33....
    right answers can be rewarded......................
    Message was edited by:
            dasr r

    actually..........
    if i go for normal reporting......
    if i do not give procurement type e or f............it will fetch all the records belong to
    e and f. sl.no coming is 1,2,....................100...............correct iam getting.
    if i give procurement type e or f............it will fetch some records which belongs to e or f     that records only it will fetch but the sl.no. sequence is notlike 1,2,3,..........100. it is giving 1,3,5,6, ...........50.

  • Display Page number in ALV List.

    Dear Friends,
        I want to display page numbers in ALV list print output. But I dont know how to do that without using objects.
    Please suggest.
    Regards,
    Madan.

    TRY LIKE THIS
    data : ifieldcat type slis_t_fieldcat_alv,
           wfieldcat type slis_fieldcat_alv,
           IEVENT TYPE SLIS_T_EVENT,
           WEVENT TYPE SLIS_ALV_EVENT..
    CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
    EXPORTING
       I_LIST_TYPE           = 0
    IMPORTING
       ET_EVENTS             = IEVENT
    EXCEPTIONS
      LIST_TYPE_WRONG       = 1
      OTHERS                = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    READ TABLE IEVENT INTO WEVENT WITH KEY NAME = 'TOP_OF_PAGE'.
    IF SY-SUBRC EQ 0.
    WEVENT-FORM = 'TOP_OF_PAGE'.
    MODIFY IEVENT FROM WEVENT INDEX SY-TABIX.
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                =
      I_BUFFER_ACTIVE                   = ' '
       I_CALLBACK_PROGRAM                = REPID
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = ' '
      I_CALLBACK_TOP_OF_PAGE            = 'TOPOFPAGE'
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
       IT_FIELDCAT                       = IFIELDCAT
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
       IT_EVENTS                         = IEVENT
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      IT_ALV_GRAPHICS                   =
      IT_ADD_FIELDCAT                   =
      IT_HYPERLINK                      =
      I_HTML_HEIGHT_TOP                 =
      I_HTML_HEIGHT_END                 =
      IT_EXCEPT_QINFO                   =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
      TABLES
        T_OUTTAB                          = ITAB
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    FORM TOP_OF_PAGE.
    WRITE : /10 'HeadinG OF ALV'.
    WRITE : 100 SY-PAGNO.
    ENDFORM.
    ONE THING IS THERE YOU CAN USE WRITE FOR ONLY LIST DISPLAY NOT FOR GRID DISPALY.
    REGARDS
    SHIBA DUTTA

  • Serial number isn't listed under Devices

    I recently had 3 ipods stolen. When I to to Preferences / Devices to locate the serial numbers, two of them aren't listed (a new classic and a 5th gen nano). They are both synced with this account! Where can I get these numbers? I need them before they hit the pawn shops.
    FYI, my 2nd gen touch and my 6th gen nano ARE listed.

    I don't believe you can. iTunes does not store the serial number of iPod classics. You should keep the box from the iPod.

  • Bin Location In Pick List - Cannot select batch/serial number after pick list created

    Hi,
    When i set up the item master as "Issued Primarily By Bin Location". There are no way for me to assign batch/serial in back end. In contrary, when item set up as "Issue Primarly By Batch/Serial Number", SAP prompt to pre-select the batch/serial no. during creating pick list.

    Hi,
    Please check this thread for the reason why system information is not correct.
    Variables - Sap business one
    Thanks & Regards,
    Nagarajan

  • Call transaction 'VL33N' on click of Inbound delivery number  in ALV List.

    Hi,
    My ALV output is having Inbound delivery number.
    If user clicks on one of the Inbound delivery it has to call transaction VL33N and display the user selected document.
    Code:
    WHEN '&IC1'.
    IF rs_selfield-fieldname = 'VBELN'.
            READ TABLE gt_final INTO wa_final INDEX rs_selfield-tabindex.
            if wa_final-vbeln is not initial.
              FREE MEMORY ID 'VL'.
              SET PARAMETER ID 'VL' FIELD WA_FINAL-VBELN.
              CALL TRANSACTION 'VL33N' AND SKIP FIRST SCREEN.
            ENDIF.
          ENDIF.
    I am setting the parameter id 'VL' by passing Inbound Delivery number.After that it is calling VL33N Screen but the Inbound delivery number is blank.In debugging i can see the SAP memory for 'VL' as the selected document number.
    Why VL value is not  transferred to Inbound Delivery number field in VL33 Eventhough Parameter id having value.
    VL (10)  <0180000057>
    Thanks
    Bhuvana
    Edited by: Pulibhuvana on Nov 22, 2010 8:20 AM

    Hi,
    Removed Free statement.
          IF rs_selfield-fieldname = 'VBELN'.
            READ TABLE gt_final INTO wa_final INDEX rs_selfield-tabindex.
            if wa_final-vbeln is not initial.
              SET PARAMETER ID 'VL' FIELD rs_selfield-value.
              CALL TRANSACTION 'VL33N' AND SKIP FIRST SCREEN.
            ENDIF.
          ENDIF.
    In background VL is passing to VL03N Transaction instead of VL33N.
    Outbound delivery and Inbound Delivery both are assigned to same paramer id.
    Don't undestand if i'm calling VL33N Why the paramer value is passed to Outbound delivery transaction VL03N.
    Please suggest me.
    Thanks
    Bhuvana

  • How to find ThinkPad serial number if label is worn?

    QuestionI'm having some trouble with my T500 ThinkPad and want to contact service, but am not sure how I can find out the machine type and serial number to provide to support when I call because the sticker on the bottom of the laptop is faded so I don't know what the S/N is. I do have one number though: [serial removed] was what I copied down from it before it became faded. I dont know what to do now, so if you have any ideas, that'd be great.
    Answer 
    Generally the label with type and serial information is found on the bottom of laptops and tablets and on the rear of desktop systems and on the back or along the edge of displays.   As noted by the question asked above, in some cases, the label may become worn.  To reduce / avoid this, the type / serial label was relocated to the battery compartment on some systems with removable batteries, along with the Win 7 COA.  As Win 8 does not have a COA lable, and print technologies for labels have improved, most current systems have the label on the bottom.
    Some tablets may have the type and serial information label on the inside of memory door / SD card slot covers as was the case with the ThinkPad tablet type 1838/1839.
    Here is a link to an article on the support site with examples of label locations for different model Lenovo systems.   If the system will not power up at all, finding the physical label is the best course of action when contacting service.
    If the label is missing and the system will power up, there are several ways to easily find this information as it is written into the BIOS on the system board.
    1) Command Prompt
    Run an elevated command prompt, Enter the command "wmic bios get serialnumber" (without the quotations).
    2) BIOS
    Boot to BIOS (press F1 on startup) and the model type and serial number will be listed.
    3) Diagnostics - Lenovo Solution Center (LSC) or the prior Lenovo ThinkVantage toolbox.

    wmic bios get serialnumber  does not work !!!!all your pages about how to find a serial number are disfunctuional !!! What a bed service

  • Lost Software Serial Number!!

    Hi, I have a problem. Recently I had to re-install everything on my MBA.
    Only today I tried to use Pages but it ask me to buy it or to have a 30 days trial.
    The problem is that I bouth the Software serial number in 2007 and I don't have it with me anymore.
    Is there a way to get it back??
    Thanks
    Andrea

    If you bought the serial number electronically, you can get the serial number from the list of online purchases in your Apple Store account. Go to the Store tab at the top of this page, click Account (small, faint gray word next to the cart icon in the upper right), click on Downloadable Software Purchases & sign in.
    If not & you have a backup of HD > Library > Preferences (the main HD Library, not a user Library) copy the com.apple.iwork.plist to the same location on your MBA.

  • Stollen Ipod, need serial number!!!

    Ok, so I had my Ipod stollen awhile ago. I have gotten a new one since but I found out who has my old one and I need to prove that the old one is mine. I missplaced my packaging and need the serial number to report it to my boss. I need to know how to get the seriaal number it has to be somewhere in my Itunes I just don't know where anyone thta can tell me how to find it or how to get my serial number would be extremely helpful

    I believe this works for XP but I don't know about Vista.
    1. Go to Start
    2. Click Run
    3. Type in regedit
    4. Click OK *(In the Registry Editor be sure to not touch anything or edit anything)*
    5. In the left column of Registry Editor, Expand "HKEYCURRENTUSER"
    6. Expand "Software"
    7. Expand "Apple Computer Inc
    8. Expand "iPod"
    9. Click on "UserReg2" or similar under iPod
    10. Your serial number should be listed under your first name and next to "iPodSerialNum"
    Look for the one that's different from your new one.

  • CS4 not accepting serial number

    CS4 asking for serial number, but it's not recognizing it.  Any suggestions?

    Ok will please try running the available uninstallers available in the Applications/Utilities/Adobe Installers folder.  Once this is done please also run the CC Cleaner Tool to ensure complete removal. 
    If your serial number is being listed as being invalid, and you verified that it is valid under your account at http://www.adobe.com/, then it is likely the licensing files on your computer have become corrupted or you do not currently have sufficient file permissions to modify them.
    Once you have completed these steps then please try reinstalling CS4 to your external drive again.
    Btw I would recommend making sufficient space on your internal hard drive to store CS4.  Otherwise you will need to have both your laptop and your external hard drive anytime you wish to run Creative Suite 4.

  • 「Serial Number Management」 Improvement

    As far as Serial Number Management, SAP Business One is designed so that serial number update is done after specifying the serial number by narrowing down on Purchase Order or Delivery. However if an Item has a large number of Serial Number such as more than 100, it requires huge work to a user and it causes bad efficiency on the useru2019s business process.  
    We would like to add the following functionality on SAP Business One
    1. Mfr Serial Number search (specifying a record) function on u201CSerial Number Management - Updateu201D screen
    2. Mfr Serial Number update function on u201CSerial Number Detailu201D screen
    <<Reference>>
    Refer to the following inquiries on CHANNEL PARTNER PORTAL regarding this.
    Message No.: 164313
    Date: Feb. 13, 2009
    <<Reason>>
    When the user needs to change or delete Mfr Serial Number, they have to specify the target record by watching the list on the bottom of u201CSerial Number Management - Updateu201D screen. This operation is very troublesome in the case of a large number of serial number management. The list is not good enough to specify the target, becuase these serial numbers are not used sequence number. Since the user knows the target serial number, they want to specify it directly on u201CSerial Number Detailu201D screen. But SAP Business One doesnu2019t allow it with masking the data
    <<Present specification>>
    1. The user searches appropriate bill No. on u201CSerial Number Management ? Updateu201D and specify the target Mfr Serial Number form the list showed on the bottom of the screen by watching it.
    2. The user update Mfr Serial Number directly.
    <<Correspondence completion desired date>>
    We hope that this SAP Business One modification is done by July. 27, 2009.
    One of our new customers who claims this modification is going to launch SAP Business One system on July 1st. Even if this is not finished by then, please take care of this A.S.A.P.
    <<When it is not possible to correspond>>
    In many cases, its unit transaction is more than 1,000 and the user is required frequent serial number update. It is a huge problem for the user to search the target record from the list by only their eyes it gives serious impact for their business operations. If you do not fix this, we have to customize SAP Business One. It makes the cost higher and will be loosing SAP Business One business opportunity.
    <<Business impact>>
    Quite a few customers manage a large number of serial numbers par item. The current specification of SAP Business One is a burden to usersu2019 operation. It is totally wrong from business process improvement point of view. In order to avoid this, we have to customize SAP Business One for each user but it prevents us from providing SAP Business One with reasonable price in the market.
    Edited by: Noriaki Miyazawa on Jul 3, 2009 3:50 AM

    Thanks !
    This question was in relation to sap note no 200231- Scrapping of Serial Numbers. I am not able to figure out how the user status can acheive this requirement and where I can change the user status?
    My why not putting this question by giving reference to the sap note in the initial stage was that I wanted to figure out myself first and to avoid confusion among the community memebers.
    Dear Jurgen can you help me on understanding this note. Meantime I will read the link sent by you and try to figure out and find in relation to this note how this can be done-- in whcih transaction.
    I am giving details of sap note 200231- Scrapping of serial Numbers
    Symptom
    You can post a goods receipt again for a serial number that has been scrapped before.
    Additional key words
    Movement type, 551, 553, 555, available, AVLB, system status, usage decision, inspection lot, scrapping, MB1A
    Cause and prerequisites
    Several movements of serial numbers are grouped together for status update under goods issue (PMS8).
    In addition to the reversal of a goods receipt and several consumption postings this also includes scrapping.
    Solution
    To prevent the usage of a scrapped serial number, you can use the user status logic.
    However, the user status defined for this must either be set manually or with a subsequent (background) procedure.
    If it is necessary to reverse a scrapping, you then would have to reset this user status manually again.
    Regards

Maybe you are looking for

  • How to show a pcd object in dynpro view

    Hi All, I have to show a PCD object in dynpro view but I can't use iFrame because it will show all header footer of portal not just view. what will be other way to show a PCD object in Webdynpro view. Thanks

  • How do change the text color in the variable screen ?

    Hi Experts , I would like to know about , How do change the text color in the variable screen ? Using web templates (Analytical) can get the output. It has the variable screen contains 6 fields (Company code, Country , Region , COB, Plant and Purchas

  • I have updated Adobe CC and LightroomCC 2015, I have installed from before Adobe CC membership LR5 , how do I switch to LR CC 2015

    I have updated Adobe CC and LightroomCC 2015, I have installed from before Adobe CC membership LR5 , how do I switch to LR CC 2015

  • Forms runtime problem

    dear all, i am using windows xp 32 bit , and oracle developer 10g. when i run the form, it give the following error. <html> <head> ORACLE FORMS.</head> <body onload="document.pform.submit();" > <form name="pform" action="http://pc000:8889/forms90/f90

  • New option

    I do not know if such a function is available on Nokia phones or not but I've got following idea: When you assign a melody for a ringtone – the melody starts playing from very beginning. It would be nice to have a function of melody playback from the