Serial Numbers generation  in XL Report

Hi  All
iam designing the reort using XL Report
In that report i want to display the serial numbers column which should generate automatically at runtime of XL report which is not taken from any field it is
what i have to do
thanks in Advance

Hi,
The requirement is not under the scope of the xl reporter.
But it can be achieved through a macro in the excel.
Try to modify to your requirement with the following macro code
Sub Macro1()
    ActiveCell.FormulaR1C1 = "1"
    Range("A2").Select
    ActiveCell.FormulaR1C1 = "2"
    Range("A1:A2").Select
    Selection.AutoFill Destination:=Range("A1:A17"), Type:=xlFillDefault
    Range("A1:A17").Select
    End Sub
Also refer this document on [How to to Apply Microsoft Excel Macros within a Report Definition in XL Reporter|https://websmp206.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_SCENARIO=01100035870000000183&_OBJECT=011000358700002122502006E]

Similar Messages

  • Serial Numbers of machines under reporting

    I have been using ARD 3 to do an Audit of all our machines in the college. However I noticed that after running the standard machine summary report some of the machines came back listed with the same serial numbers which obviously is incorrect. Has anyone else had this problem and is there a solution. I don't want to do the reporting individually despite only having 69 machines.
    Best regards
    Robin Bassett

    Thanks much appreciated didn't think that would make any difference ah well you live and learn.
    Robin

  • Serial numbers to generation at Sales Order Issue

    Hi someone knows about Serial Control
    Do use serial number at pick release is mandatory apply Installed Base?
    what´s different between serial numbers generation in reception and at Sales Orders Issue?
    thanks,

    Do use serial number at pick release is mandatory apply Installed Base?
    No it is not mandarory if you use this serial control (At Sales Order Issue). If you use serial number control at receipt then serial number is mandatory at the time of pick confirming.
    what´s different between serial numbers generation in reception and at Sales Orders Issue?
    At Receipt:
    You maintain serial numbers in inventory and transaction them in inventory for all transactions.
    At SO Issue:
    You enter the serial numbers only at the time of shipments.
    As IB knows the inventory controls it maintains the information accordignly. When in inventory serial numbers can be grouped into one instance as they do not have any serial number. Once shipped, the same instance will be split and is created as a different instance with the serial number.
    Thanks
    Nagamohan

  • How to insert serial Number in BI Publisher Report

    Hi All,
        I want to insert serial numbers in BI Publisher report.
    For Example:
       SNO
         1
         2
         3
         4
    I tried below code in XML file...but i confused where i need to add these code in XML file
    <?xdoxslt:set_variable($_XDOCTX, 'var', 0)?>
    <?xdoxslt:set_variable($_XDOCTX,'var', xdoxslt:get_variable($_XDOCTX,'var‘)+1)?>
    <?xdoxslt:get_variable($_XDOCTX, 'var')?>
    Can anybody explain detail steps........
    Regards,
    Nagaraju M

    Use <?position()?> in your RTF template when you display your records..
    I believe if you search for posts on this forum, you will find several threads with similar requirement.
    Thanks,
    Bipuser

  • How to include Serial Numbers in a marketing documents

    Hi,
    we would like to show the serial number attached to the right item in the Invoice and Delivery documents.  But the serial number columns are always empty in the markleting documents.  My boss don't want to see the serial numbers on a separate report like it is right now.
    Do you have any solution ?  I tried to use a Formatted search to fill the Serial Number Field, but it's not working, I can't discard the wrong serial number or the SQL query do not work in SAP (thought it's working well in SQL Server)..
    Daniel Gagnon

    You should select the setting for When Batch/Serial No. Exist, Print 
    Select the option to print Batch or Serial Number information in inventory documents.
    Document and Batch/Serial No. (Print the document and the Batch or Serial Number information)
    To access this area  Administration > System Initialization > Print Preferences..Per document Tab
    Suda

  • How to use serial numbers in Crystal Reports?

    I want to use serial numbers in Invoices and Packing Lists in the report I built in Crystal. Is there a easy way to do that? I searched the forum but no helpful answers could be found.......

    I need more help! I did the following for my Invoice: OSRD-INV1 join by ItemCode and DocEntry
    DLN1-OSRD join by DocEntry and INV1-OINV join by DocEntry
    I'm sure this is not good. What are the right joins and which field from which table has to be placed in the Report? Thanks for your help, we just got life from April 1st, so I'm new with this....
    Edited by: Frits Pen on Apr 13, 2009 2:38 PM
    Edited by: Paulo Calado on Jun 12, 2009 4:56 PM

  • New Report including Serial numbers

    Hi all
    Need to develop a new report
    Feilds to be included are - PO number, Material code, Serial number , GRN , Goods issue note, text feild
    what are  the most suiatable tables that i can collect the above information
    Thanks and Regards
    Sasika

    Hi,
    Hope these tables will be useful
    EQBS Serial Number Stock Segment
    EQSE Serial Number Records
    MASE Last Serial Number for Material
    OBJK Plant Maintenance Object List
    SER00 General Header Table for Serial Number Management
    SER01 Document Header for Serial Numbers for Delivery
    SER02 Document Header for Serial Nos for Maint.Contract (SD Order)
    SER03 Document Header for Serial Numbers for Goods Movements
    SER04 Document Header for Serial Numbers for Inspection Lot
    SER05 Document Header for Serial Numbers for PP Order
    SER06 Document Header for Serial Numbers for Handling Unit-Content
    SER07 Document Header for Serial Numbers in Physical Inventory
    SER08 Document Header for Purchase Order Item Serial Numbers
    SERBL Plant Maintenance Object List
    SERI Serial Numbers
    ITOB
    Regards
    Madhu
    Edited by: MADHU SUDHANA on Sep 21, 2009 12:50 PM

  • Group By reports with Serial Numbers

    hi,
    i am creating group by reports with serial numbers. i use the
    following code to generate the serial numbers using a formula
    column:
    function SNOFormula return Number is
    SNO NUMBER(5);
    begin
    SNO := :SNO + 1;
    RETURN(SNO);
    end;
    I am able to acheive the required output with the above code in
    the case of Normal Tablular reports. But in the case of Group by
    reports, the output goes as follows:
    for example:
    sno,groupno,empno
    1,g1,e1
    e2
    e3
    4,g2,e5
    e6
    Any way out?. pls help.
    Regards,
    Prabhu S

    create a summary column in the group . set the function to
    count. set the source to the group name. set the reset at value
    as report. create a field in the lay our editor left of the
    group field. set the source as the summary column. you will see
    the numbering.
    Ex :
    Query : Select * From Emp;
    Group Field : Deptno
    Summary Field : CS_Count
    Properties of Cs_Count - Function => Count
    Source => DEPTNO
    Reset At => Report
    Now create a field in the lay out editor left side of deptno
    field lets say "SEQ", set the source to Cs_Count.
    It will disply the serial number of the groups.

  • APEX Report - how can i create column with serial numbers in a report

    Need help
    I have created a report with displaying no of rows resticted to 43, every time i genarate this report i would like to add serial numbers from 6 to 48
    apear in additional column. How can i do this?

    This is not really an APEX question, and would have been better posted on the {forum:id=75} forum.
    Note also that the best way to get fast, effective answer to questions is to provide sufficient information for people to fully understand them:
    http://tkyte.blogspot.com/2005/06/how-to-ask-questions.html
    You should also ensure that your forum profile is updated with a better handle than "user8308442".
    Getting back to the question, one way to do this is using the analytic function ROW_NUMBER():
    with t as (
    -- Test data. Replace with actual query. ---------------------------------------
      select
                dbms_random.string('a', 10) query_data
      from
                dual
      connect
                by rownum <= 43)
    select
              5 + row_number() over (order by query_data) sn -- use required ordering here
            , t.query_data
    from
              t
    order by
              sn
    SN                     QUERY_DATA
    6                      CApoRenlch
    7                      CDiUiSYdMo
    8                      FsjsWFpTMT
    9                      KbbzXvYmQv
    10                     MrjEPqAzFs
    11                     QKOPSdVWpr
    12                     REIXjjdLtD
    13                     RijqpNTzmv
    14                     RngzthgaFv
    15                     SKcPxsdlBE
    16                     SuqFKzMqbB
    17                     TxlglIYENC
    18                     TyWlxKbDIg
    19                     VdRbUOUOPz
    20                     XIQxzkBuKY
    21                     YVcWUJrswt
    22                     aVoYNlMkfx
    23                     cHZPsOlzYM
    24                     cTUEztIOae
    25                     etdNGqQasP
    26                     fVGoGWmdLL
    27                     gHANXpbvMW
    28                     gRNBnwtEhO
    29                     iyefgszgLT
    30                     jRaliUJjKS
    31                     jpzAvQXBwY
    32                     kJifAaetUN
    33                     kfbTWGGCpR
    34                     mTPtqYGvrG
    35                     mhAPgdzezZ
    36                     pdXidmikRX
    37                     pwNdAsqpIV
    38                     rPTBTObdKg
    39                     sFoNLHLeMH
    40                     squTbOYVUM
    41                     tPxSMqPpnQ
    42                     uJtqCybjXB
    43                     vEvrwnGnyJ
    44                     xOOseicRRy
    45                     xqqXBKURog
    46                     ydOPurqyvo
    47                     yqEZvoNsbg
    48                     zsWFLHjVLK
    43 rows selected

  • .How do I find out what Version (generation) of Ipod touch I have, as I want to know if I can download IOS 5 onto it? It was a gift so I only know the model and serial numbers but not the type

    Hi, can anyone help me out with this question?
    How can I find out which version of Ipod touch I have. I only have the model and serial numbers as it was a gift, but I would like to download IOS 5 if it is compatible?
    Very frustrated Ipod user, any advice would be much appreciated.
    Lynda.

    I had the same problem because there are so many iPod models.  There is a great article in Wikileaks that explains it all and also has pictures.  I'm confident this answer your question.

  • Goods Receipt and Serial Numbers

    I'm getting the following error "[IGN1.WhsCode][line: 1] , 'This entry already exists in the following tables (ODBC -2035)'" when trying to add a goods receipt document containing a single item that is serial number managed via the DI API.  We are running against Business One version 2005A SP01 PL9.  The Goods Receipt PO transaction is reporting the same error.  The Goods Issue and Delivery transaction appeared to work correctly. The Goods Receipt transaction posted correctly when created in the B1 Client (GUI) application.  So it is an issue with the DI API.  We are using the SBODemo_US company database but we added a new item and configured it for serial number management.  This same code works with B1 2004A.  Our application is suppose to work with both versions of B1, so our application is built with version 2004A DI API.  Should this work, or do I need to use the 2005A version of the DI API when communicating with a 2005A system?  Would this version of the DI API work correctly with a 2004A system?
    Thanks,
    Jason Eiler

    I remembered encountering the same problem working with B1 2004A.  For the Goods Receipt and Goods Receipt PO documents, when receiving items that are serial managed I would fill in the InternalSerialNumber data member of the Document Lines Serial Numbers object.  The fix was I also had to provide some value for the SystemSerialNumber field.  I just always set it to a value of 1.  In B1 2005A, this issue must have been resolved, because when I commented out this line of code, the document was added successfully.  I don't have to provide a SystemSerialNumber, the system must generate one, as I would expect.

  • Goods movement with serial numbers

    Hi,
    1. Is there any report or table where I can see goods movement of material with their serial numbers?
    2. Also in MMBE i can see 'On order stock'. I know this is PO open PO quantity.
    Now this open PO qty will not be there against any storage location. I got some stock on this status in some storage location.
    How I can move to 'unrestricted stock' status?
    Please advice.

    Hi
    Check these tables,
    SER00 General Header Table for Serial Number Management
    SER01 Document Header for Serial Numbers for Delivery
    SER02 Document Header for Serial Nos for Maint.Contract (SD Order)
    SER03 Document Header for Serial Numbers for Goods Movements
    SER04 Document Header for Serial Numbers for Inspection Lot
    SER05 Document Header for Serial Numbers for PP Order
    SER06 Document Header for Serial Numbers for Handling Unit-Content
    SER07 Document Header for Serial Numbers in Physical Inventory
    And in order to move On Order stock to Unrestricted you need to close those POs by doing GR.
    Hope it helps
    Rgds
    ramesh

  • Goods movements of material with serial numbers

    Hi,
    1. Is there any report or table where I can see goods movement of material with their serial numbers?
    2. Also in MMBE i can see 'On order stock'. I know this is PO open PO quantity.
    Now this open PO qty will not be there against any storage location. I got some stock on this status in some storage location.
    How I can move to 'unrestricted stock' status?
    Please advice.

    Hi,
    Is Serial number is the one obtained thro stadard batch management or is it a Zfield.
    On Order stock cannot be converted to unrestircted stock unless a GR is made.
    With regards,
    Jeeva

  • Control of serial numbers in productions (parts and final product serials)

    Hi,
    We are starting using our production module in SBO 9.0 PL11 and it is all quite messy.
    We need to manufacture an item that has a serial number made of parts, some of which have serial numbers. Just imagine a car. The car will have its own serial number, but the engine, the radio and so on will have their own serial numbers. But the cables, tyres, etc do not have  a serial of their own.
    We set a BOM model, made of every part (with or without serial) and set every line to manual.
    Then we place a PO for our parts, and then do a Goods Receipt and enter the individual items' serials.
    Then, we issue a Production order for our final product made of all of our parts in the BOM. Then we release it for production.
    Next, it all gets messi. If we create a receipt from production, we can issue the serial number of each of our final products.
    If we create an Issue for Production, we can choose what serials to pick for production.
    Big problem is that we loose all traceability. There is no way (or we can't find it) to know what are the serials of the parts that created the final product.
    Not only this, issue for production looks (serial number transaction report-wise) looks like a goods issue, so just a way to decrease your parts stock. And receipt of production looks like a goods receipt. So you just now you received something for production or that you issued it to production, but there doesn't seem to be a link between them. No traceability at all.
    Can anyone throw some light into this? I am sure we are doing something really wrong, but can't see what.

    Hi,
    1. But how do we control what serial numbers for each part we used to create the final product specific serial? (I use engine #003 and radio #376) to create product with serial #076. And we always produce in quantities greater than 1.
    Please provide an sample process production with FG item and components with required serial format to check
    2. This query is not returning any rows. I am inputing a final product code, with production orders, and nothing shows up.
    As mentioned, the above query works for batch managed items. Once we conclude process, I can try modify above query to meet your purpose.
    3. It sounds really complicated to have to open both receipt and issue to track a single manufacturing operation.
    You can use relationship map option to view both issue and receipt for single production.
    4. Besides that, what is the exact workflow? I don't quite understand issue and receipt, should I run both independently?
    Standard work flow for production order:
    1. Create bill of material
    2. Create planned production order based on above BOM
    3. Make sure required components are arrived.
    4. Change planned to released status.
    5. Issue components to production by issue production
    6. Receive finished item from production through receipt from production.
    Thanks & Regards,
    Nagarajan

  • "My Adobe" site is permanently redirected to "Adobe ID" site. There is no way to retrieve serial numbers for CS 5.5 products and below.

    How can I get my serial number for CS 5.5 Master Collection and CS 5.5 Captivate? This was retrievable only a few days ago using the "My Adobe" site at (adobe.com/account.html)
    The My Adobe URL (adobe.com/account.html) has a permanent redirect to the new Adobe ID URL (accounts.adobe.com/) Just a few days ago, Adobe "My Products and Services" contained my collection of serials.Users now cannot access this URL at adobe.com/account/my-products-services.html with the redirect in place.
    The new Adobe ID site "My Products" at (accounts.adobe.com/products) reports "You have no registered products." We need the "My Adobe" classic site back to access our registered serials.
    Adobe should update their help documentation that references the old link (adobe.com/account.html) as well. Here are a couple of examples:
    Where is My Adobe account info | How to sign in/out « Caveat Lector
    Serial number, Redemption, and Product codes | Student & Teacher Editions

    https://accounts.adobe.com/products shows all my products with their serial numbers back to 2005 when I first registered PSE2.0 that came bundled with my camera, and the two example pages with old links properly redirect to the Plans page and all I have to do is click View all products and again I will see my list back to 2005.
    So things are working just fine for me.  If it says you have no products, maybe there are changes still percolating through the server network that aren’t in place from where you’re surfing from, or maybe you have multiple AdobeIDs and are signed into the one that doesn’t have products registered to it.
    In other words, things appear to be working just fine with my AdobeID using either the old links or the new links and so I’d reword the request to be that you want the new site to work properly.   The old site did have another layout that required clicking into each product to see the serial number whereas the new site list everything on one page without clicking into anything.  I prefer the new way.

Maybe you are looking for

  • Word report generation toolkit error with Win 7 LabVIEW 2013, Word2010

    Hi All I'm seeing different Errors using the Report generation toolkit. Maybe you can help me with that. The errors are: -2147417846, application is busy in Word_Get_range.vi -2146824090 Exception in Microsoft word: Befehl misslungenHelp Path is wdma

  • Spaces getting truncated in 2D barcode

    HI, I am facing an issue with 2D bar code output where variables with fixed legth are concatenated assigning offset without concatenation statement, the issues is if the length of variable is 24 , value is of 18 characters then the remaining 6 spaces

  • Is there anyway to kill the email app. without rebooting the phone?

    I get emails, but I can't do anything on the screen.  It is totally unresponsive to touch. In addition, my sleep button is broken, so I can't reboot the phone.  (ordered new one, but not getting it for weeks).  Is there anyway to kill the email appli

  • Running SQL scripts from a unix directory

    DB version: 11.2 os Version : Solaris 5.10 We have a set of scripts used by DBAs for displaying Tablespace free space info, file size info...etc Currently these .sql files (say free_Space.sql) are stored in directory /u02/dba_scripts/ . To execute th

  • Videos in slide shows

    I have Photoshop Elements 6.  I have some photos and videos I took this summer and I am trying to make a "slide show" using both the pictures and the videos.  Can this be done, and if so, how?