Serial No  in Report

Asalam Every one..
I want to add serial number in my report for example
1
2
3
4
5
6
but i dont no how to do it.. can any one tellme how to add serial number in bi publisher ???
Thanks in advance

Use
<?position()?> -- this will give you the running serial numbers of the row.

Similar Messages

  • HT5824 My iPad has been stolen. I need the serial number to report it to the authorities. I dont have the box it came in or the receipt and its not on my itunes on the computer because I didnt use it or music, just pictures. Can someone please help???

    My iPad has been stolen. Someone broke into my house on Tuesday. I have already tried locking it through icloud.  I have reported this to the authorities but they cannot do much unless I give them the serial number to the iPad. With the serial number they can put it into a database and send that inormation to pawn shops, so i the theie tries to pawn it, the pawn shop employeee can convscate the iPad and hand it over to the authorites. I need the serial number to report it to the authorities. I dont have the box it came in or the receipt and its not on my itunes on the computer because I didnt use it or music, just pictures. Can someone please help??? btw, some words are misspelled becasue the letter that comes ater the letter E, doesnt work on my keybord.
    Thanks

    Serial Number
    http://support.apple.com/kb/HT4061
    Sign in to My Support Profile
    https://supportprofile.apple.com/

  • Serial Number Transaction Report export to excel but serial not exported

    Hi Experts,
    I'm trying to export Serial Number Transaction Report to excel in a client database (SP00 PL47). Basically, the report has two screen, the Serial Number (Top) and Transactions for Serial Number (Bottom). When I try to export it, it only export the Transaction for Serial Number. We Need the serial number to be exported, how do we go about this? I tested same database on SP01 PL07 and exported the Serial Number and  Transactions for Serial Number. Why is it working in other database, do we have settings that we need to configure?
    Regards,
    Sai

    Hi Don,
    In the serial number transaction report, when you click on the excel tab the Save as window will open just cancel the first window there is onther window opened, just save that window under the other name e.g. 123.
    because both the window has same name.
    Then check the excel file.
    Regards,
    Datta Kharat

  • Serial number transaction report

    Hi,
    Where do I find Serial number transaction report?
    Do any one know t.code or program name?
    I am unable to locate following menu path,
    Inventory >>> Inventory Report >>> Serial Number Transaction Report
    Please some one guide me.
    Thanks and Best Regards,
    Mohan

    Try using tcode OIYH: Serial Number List
    Thanks & Regards
    JP

  • Serial Number Transaction Report Window isn't opening when adding AR Invoice

    Hi,
    For One of my Client the Serial Number Transaction Report Window is not opening when adding the AR Invoice.
    In the Invoice all the item's that is present in the line level are SERIAL MANAGED and Management Method is ON RELEASE ONLY.
    Why is it so?

    Hi,
    Do you receive any error message? Is it possible to add without selecting invoice without selecting serial number?
    What is your B1 version and PL?
    Thanks & Regards,
    Nagarajan

  • Batch/Serial Number Transaction Report

    when we created A/R Invoice or Return..we can see its Batch/Serial Number transaction report..in which table the barcode is saved?
    i need this table because i want to create 'Reverse' transaction for it, so we can reconcile it and make new transaction with 'correct' value..
    thx,
    erick

    Hello Eric,
    BarCode is stored in OITM table, Field Name: CodeBars.
    You can join the OIBT, IBT1 (Batches) and OSRI, SRI1  (Serial Numbers) tables into OITM table to get the transaction report.
    Outgoing batches and serials are stored in the IBT1 and SRI tables, so it is enought to join them into the OINM view (table)
    In 8.8 Views has been created for IBT1 and SRI1 tables.
    If the items by Delivery note. In this case the delivery note is the key for the serials/batches transaction report. You may create a short development for displaying them in the invoice.
    You may read the following blog to understand the basic queries and use them in practice
    /people/janos.nagy/blog/2010/06/18/displaying-serial-numbers-batch-details-on-invoice-part-ii
    So basics: (2007 and also 8.8)
    Bacthes related to Invoices
    SELECT T0.[BatchNum] , T1.[Quantity] , case when T0.[ExpDate] is null then '' else convert(nvarchar,T0.[ExpDate],102) end, T2.CodeBars  FROM OIBT T0 INNER JOIN IBT1 T1 ON T0.ItemCode = T1.ItemCode and T0.WhsCode = T1.WhsCode   and T0.BatchNUm = T1.BatchNum inner join OITM T2 on T0.ItemCode = T2.ItemCode  WHERE
      T1.[BaseType] = '13' and
      T1.[BaseEntry] = [INVOICE_DOCENTRY]
    Serial numbers:
    SELECT T0.[IntrSerial], T2.CodeBars FROM OSRI  T0 INNER JOIN SRI1 T1 ON T0.ItemCode = T1.ItemCode and T0.SysSerial = T1.SysSerial inner join OITM T2 on T0.ItemCode = T2.ItemCode WHERE  T1.[BaseType] = '13'  and T1.[BaseEntry] =[YOUR_INVOICE_DOCENTRY]
    Regards
    János Nagy

  • My mac book air was stolen frommy aapartment.  how do i retrieve the serial number to report it?

    My mac book airwas sstolen frommy aapartment H.How do i retrieve my serial number to report it stolen?

    Help here >  How to find the serial number of your Apple hardware product

  • Serial Number in report name aswell as report body ?

    Hello
    I am fairly new to TS, I am using the Single Pass Execution entry point with a sequence I have written. I have written my own LabVIEW based Barcode Scanning Module for getting the DUT Serial Number from the user (As the Single Pass doesn't include this) I then write the output of this module to RunState.Root.Locals.UUT.SerialNumber and voila the Serial Number entered appears in the header of my report however the report name still says {No UUT Serial Number} {Time} {Date}
    How can I get the S/N into the filename ?
    Thanks
    Chris

    Chris,
    You can use the ReportOptions BaseName variable to contain the serial number that you want to appear in the report’s filename.  If you’re using the SinglePass execution, try copying the ReportOptions callback from the process model and placing it into your sequence. The default ReportOptions is blank so you can add your own method of obtaining the serial number from the DUT. Once you have the DUT S/N, copy it into the Parameters.ReportOptions.BaseName string so that it will appear in the filename. Copy the S/N into the variable, RunState.Root.Locals.UUT.SerialNumber to have it appear into the Report header.
    Hope this helps, Please see the attached example TS3.1 sequence file.
    Todd
    Attachments:
    SN_in_report_filename.seq ‏38 KB

  • Adding batch serial number to report file name in sequential model

    Hi,
    I'm using a Sequential model in TS 4.0 and have learned how to add the UUT serial number to the report file name. But I would like to add the batch serial number instead. Is this possible? Any modifications to the ReportOptions callback seem to only modify the temp report name.
    Thanks!
    Chris

    Hi Chris,
    While Paul's suggestion may be useful in this case, if you would like the flexibility of customizing your Report File Pathnames further, you may want to consider upgrading to TestStand 4.2.
    In TestStand 4.2 we introduced predefined macros and the ability to use custom expressions to specify the Report File Pathname. For example, the <Batch> macro will add the Batch Serial Number to the Report File Pathname as you specify it.
    Please see the Using Expressions to Customize Report File Paths section of the TestStand 4.2 Reference Manual for more information on these new reporting features and how one might use them. For a specific explanation of the different macros and what they might be used for, please see the Specifying Report File Paths by Expression section of the TestStand 4.2 Online Help.
    Manooch H.
    National Instruments

  • How to display serial number in reports

    Hi,
    I want to display serial number (for each row of records retrieved ) in reports.How can I accomplish that?Please help
    Regards,
    Nycy

    Like this:
    SELECT ROWNUM RN,
    COL1,
    COLN
    FROM (SELECT COL1,
    COLN
    FROM TABLE
    ORDER BY ORDERCONDITION
    or
    sometime you sould use logic like this:
    first, you should take a summry column into relevent group.
    then
    goto its property
    then
    goto Function field
    then
    select Count from list
    then
    select the source means you want to count records acoording to which column.
    then
    select from relevent group cource from Reset at
    Now, give this summary column source to the required field then generate the report.
    If you feel better to understand then give comments otherwise mail me at "[email protected]"I will give you the complete procedure with images.
    Edited by: Waqas Attari on Feb 18, 2009 7:13 AM

  • How to give serial number in reports

    Hi,
    I want to display serial number (for each row of records retrieved ) in reports.How can I accomplish that?Please help
    Regards,
    Nycy

    Dear
    sometime you sould use logic like this:
    first, you should take a summry column into relevent group.
    then
    goto its property
    then
    goto Function field
    then
    select Count from list
    then
    select the source means you want to count records acoording to which column.
    then
    select from relevent group cource from Reset at
    Now, give this summary column source to the required field then generate the report.
    If you feel better to understand then give comments otherwise mail me at "[email protected]"I will give you the complete procedure with images.

  • HT201322 lost my iPad air! I am asking how to find my serial number to report to police

    I have lost my IPad and am asking for direction to attain my serial number so I can report to police?

    See this -> http://support.apple.com/kb/ht4061
    If you have access to your computer, but not your device
    Open iTunes.
    Open Preferences. (In Mac OS X, choose iTunes > Preferences. In Windows, choose Edit > Preferences.)
    Click the Devices tab.
    Position the mouse over a backup to display the serial number of the backed-up device. iPhone and cellular iPad models also display the IMEI/MEID and Cellular Data Number:

  • My ipad has been stolen!!! serial:  F4LK94HDF193 please REPORT!!!

    I need send the message to the fuc*** thief, my ipad has been stolen! serial:  F4LK94HDF193, How do I place message to give me back ipad? the find my ipad is disable please HELP!!

    Neron991 wrote:
    I need send the message to the ****** thief, my ipad has been stolen!
    I imagine he knows.
    In order for a lost iPhone to be located you have to have set 'Find My iPhone' up on it before losing it, and it has to be on, not wiped, and able to connect to a network (how else could it transmit its location) - if any of these conditions is not true then locating it is not possible. You can't use the serial number or IMEI number to locate a phone: the former is only useful to identify it as yours if it turns up, and the latter can be used by most service providers to block it, rendering it useless and preventing anyone from spending your credit.

  • Had my ipod stolen from me was wondering if there is some way i could get the serial number to report it to the police

    anyone know a way i can get the information for my ipod off itunes or online or somewhere so i can have the info for the police

    Your Support Profile for Registered Purchases
    How to find the serial number of your Apple hardware product
    iOS- How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • My iPhone was stolen last night and im needing my serial number to report to the police, consequently i dont have the box or anything linked to itunes? Any solutions??

    I need help getting my serial number to my iPhone 4s for the above reason

    These are the various ways to find that Info:
    http://support.apple.com/kb/HT4061
    If you need the IMEI number, your carrier will have a record of such.

Maybe you are looking for

  • Is there a way to view all the messages in a folder containing subfolders?

    I use Mac Mail for my work email (becuase I hate entourage...), but the way it displays messages within folders is really inconvenient. Let's say I have a folder for a client (Brand XYZ) and within that folder I have subfolders (Campaign A, Project B

  • Windows Vista trouble finding airport base station

    I recently bought an AirPort Extreme 802.11n. It was easily able to connect it to my mac, but when I try to connect it to my Windows Vista desktop computer, the base station in the airport utility software cannot be found. It finds the internet from

  • Change document name in event receiver

    I need to rename a document during an ItemUpdating or an ItemUpdated event. Either one would be fine. When my user changes the file name, I want my code to set it to something else. In the examples below, I am trying to set it to a silly constant val

  • Issue saving edited pdf file on preview

    Hi I opened a 5 page page pdf file on preview and just wanted to save the last page and delet the others.  When I am done, I am not able to save, or save as or cancel. When I click on save as a page for save as came on but disapeared without i could

  • HT5219 Can I connect my thunderbolt monitor to my MacBook Pro and iMac at the same time

    I am wanting to connect my thunderbolt monitor to my MacBook Pro as a secondary monitor when running programs in windows 7 thru boot camp, and also have it connected to my iMac as a secondary monitor when working thru apps on my iMac. Is there a way