Displaying "Revision Number" in a report

We use Crystal's revision number as a means to help us track a problem one of our clients may be having with a report we have provided them for use by our application.  Revision number is found in the Crystal file document summary File > Summary Info > Statistics tab.
Is there any method to have a Crystal report display this field.  We are using Crystal-10 and Crystal-XI.
Thanks in advance for any help you might provide.
Frank

Not what you want,  but I just add a text box, and put the revision number in it.
Now, you could use some of the "Special Fields", like file path and name, modification date, modification time.
and just add them to the report  ( At least these are automatic )
File summary info, can also be used, ( but this is a manual update, if you need to change it )
Comments and Titles can be pulled from this location, using a formula like this.
ReportTitle &" "& ReportComments

Similar Messages

  • Help needed- Reg: Display page number in SQL Reports

    Hi,
    I need to display page number in " page no: X of Y " format where X is current page & Y is total number of pages. Now I am able to display only the current page using ' sql.pno '. but not able to display in ' X of Y ' format.
    Any inputs in this regard will be helpful.
    Thanks & Regards,
    Anilkumar.

    Hello Anil,
    If you have the above requirement for Oracle Reports then follow the steps:
    1.In the Paper Layout view or Paper Design view, choose InsertPage Number.
    2. In the Insert Page Number dialog box, choose from the list the location for the page number.
    3.Click the desired page number format: Page Number Only or Page Number and Total Pages.
    Cheers,
    Suresh

  • Displaying serial number in the report output

    Hi everyone
    may i know hw can we display serial number inthe report output.

    hi,
    Assuming that you wanted to print the entries of internal table record by record ... do this way ...
    loop at itab.
    write : sy-tabix.  " Record Position
    endloop.
    Regards,
    Santosh

  • How to display week number in a report

    Hi,
    I need to show the week number in a report and related sales data for that week. For example, starting from 01-JUL-2009 the week1 should show total of sales from 01-JUL-08-JUL.
    Help please....
    Thanks
    A/A

    If you are trying to extract the week number of the calender year...you can use..
    sql> select to_char(sysdate,'WW') from dual;
    TO
    05and then group the sales figures by week...
    sql> create table t(
      2     target_date date,
      3     sales       number);
    Table created.
    sql> begin
      2     for i in 1..30 loop
      3        insert into t values (sysdate-i,100*i);
      4     end loop;
      5   commit;
      6  end;
      7  /
    PL/SQL procedure successfully completed.
    sql> select week, sum(sales) from (
      2     select sales, to_char(target_date,'WW') week from t)
      3   group by week;
    WE SUM(SALES)
    05       2100
    02      16800
    01       8800
    04       7000
    03      11900However, if your week calculation starts with a particular date like a calender year starting with 01-june-2010, then you would need to calculate the (relative) week number using something like...
      1  select target_date,
      2         trunc(((target_date - to_date('01-june-2010','DD-MON-YYYY'))/7)) week_number
      3*   from t
    sql> /In the above code, 01-june-2010 is the date from which my calender year starts.
    Please note that since this is relative, you might get negative numbers for weeks.

  • RDL report(2008).Want to display different number of rows from second page onwards than the first page.

    I have used pagination to display the report data.I have used page break.I want to display 10 records on first page and from second page onwards I want to display 25 records on all remaining pages.
    I followed this link to show 25 records for all page. "http://www.sqlchick.com/entries/2010/9/11/displaying-fixed-number-of-rows-per-ssrs-report-page.html". Now suggest me how display 10 records only on first page having 25 from second page onwards.

    Hi mukesh_harkhani,
    According to your description, you want to insert page break for different number of rows, display 10 rows on the first page and 25 rows on the following pages. After testing the issue in my SQL Server Reporting Services 2008 environment, we can use the
    method below to achieve your requirement:
    In your scenario, right-click the group which contains the expression: =CEILING(RowNumber(Nothing)/25) to open the Group Properties dialog box.
    Modify the original expression to the following in the Group on textbox:
    =Floor((RowNumber(Nothing)+14)/25)
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • I want to display the number of Passed / failed tests in Testtand xml report , please help me

    Hi, I want to display the number of Passed / failed tests in Testtand xml report , please help me.
    My requirement is later i should be able to display these number of passed/failed test in report header too.
    Solved!
    Go to Solution.

    I have attached a sequence to give you an idea of how to get the Result count (I didn't check it's working ), I have used "SequenceFilePostResultListEntry" callback to calculate the Result Count,
    and the Result Count is passed to the "ModifyReportHeader" through File Globals,  where you can edit the XML file to show it in the Repot (follow the link in my previous post).
    Hope this helps
    AshwiN,
    Attachments:
    Get Result Count.seq ‏8 KB

  • 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

  • Display of serial number in the report

    Hi experts,
       I wanted the serial number in my report based on plant .I am getting it based on my sub divisions of plant .Also i wanted  this column as the first while dispplayed in the re[port.
    can anyone please suggest me a solution for this issue?

    thanks syed but i want a new column in my report level based upon the plant like
    1. aaa
    2.bbb
    but i get it based on the subgroup like
    aaa  asdf  1
             dfgh  2
             hjkl    3
    bbb   asdf  1
             dfgh  2
             hjkl    3
    the correct output what iam looking for is
    1.aaa  asdf  1
               dfgh  2
                 hjkl    3
    2.bbb   asdf  1
               dfgh  2
                hjkl    3

  • Displaying the Row and Column number in the report

    I am trying to show row and column number in the report (not just web preview). I am using Hyperion Reports Version 7.2.5.168

    use a formula column/row. use RANK function in that. (e.g. Rank([A], asc) will sort the rows based on column A values in ascending order)
    you can use this rank in your heading.
    But frankly this is not so easy. You have to do it in a very intelligent way, so that rank gives you column number/row number any how.
    Have a try and let see if you find a appropriate solution.
    Regards,
    Rahul

  • Display data in smartforms using report

    hi,
    i want to display data from smartform using report.
    i have a preview buttons in report when i select preview buttons displays in smarts
    regards
    amit

    design the smartform as per ur need and get  the function module generated by smartform and pass it to ur report programas below..
    case sy-ucomm.
    when 'smartform'.
    pass the f.m that is generated by system in smartforms
           CALL FUNCTION '/1BCDWB/SF00000265'
        EXPORTING
        ARCHIVE_INDEX              =
        ARCHIVE_INDEX_TAB          =
        ARCHIVE_PARAMETERS         =
        CONTROL_PARAMETERS         =
        MAIL_APPL_OBJ              =
        MAIL_RECIPIENT             =
        MAIL_SENDER                =
        OUTPUT_OPTIONS             =
        USER_SETTINGS              = 'X'
          DATE_L                     = s_fkdat-low
          DATE_H                     = s_fkdat-high
          PLANT_L                    = s_werks-low
          PLANT_H                    = s_werks-high
      IMPORTING
        DOCUMENT_OUTPUT_INFO       =
        JOB_OUTPUT_INFO            =
        JOB_OUTPUT_OPTIONS         =
        TABLES
          IFINAL                     = ifinal1[]
      EXCEPTIONS
        FORMATTING_ERROR           = 1
        INTERNAL_ERROR             = 2
        SEND_ERROR                 = 3
        USER_CANCELED              = 4
        OTHERS                     = 5
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    endcase.

  • Page number in ALV report

    Hi all,
    I use top of page to print page number for ALV report. When i run my report in backgrond and see the spool, the page is always started from page 2.
    These does not happen when I use non-ALV report, report prints the header starting from page 1 normally. It is weird.
    does anyone of you ever face such of that problem ?
    thanks alots
    Alia

    Hi Alia,
    Page number is usually not set in an ALV display, as compared to  List processing.
    r u sure this is a requirement?
    chk this:
    ALV Print page numbers
    Regards,
    Anjali

  • Create a number of sub reports or table rows based on an arbitrary number

    I should note that I am using reporting services in SharePoint server mode and I am connecting to Sharepoint list data as my data source.
    In my SharePoint list item, it will have a property called quantity with a value of 5 for example.  In this case, I would want to create 5 subreports in my report (or a table with 5 rows).  Currently, I do not see how to accomplish this using Report
    Builder.  The table will only display a number of rows equal to the number of items returned from a dataset, which in this case would be 1.
    Is this possible to do?

    Katherin earlier said "In your scenario, you can insert 4 rows in the table, then insert values". 
    How do you do that?  That's the piece I don't understand.
    sqlstudy, below I have included more background on the requirements and details of what we are trying to do.  Here is another example of the dataset:
    Name____
    Description____
    Quantity
    Item1
    Tennis Balls
    2
    Item2
    Footballs
    3
    The requirement is that we need to print 5 pieces of paper that each have the item's name and description as well as an x of y sequence based on the quantity.  So the first piece of paper that prints out would say (Item1,Tennis Balls, 1 of 2), the second
    piece of paper would say (Item1,Tennis Balls, 2 of 2), the third piece of paper would say (Item2,Footballs, 1 of 3), the fourth piece of paper would say (Item2,Footballs, 2 of 3), and the fifth piece of paper would say (Item2,Footballs, 3 of 3).
    We are creating a system where users can print labels to identify boxes on pallets.  Each pallet can contain multiple boxes and the users need to label and identify each box.  The x of y sequence helps them keep the boxes together so things don't
    get mixed up.  The users deal with a lot of orders at once and would like to be able to print everything at once.  So, given the dataset above, they would check both item1 and item2, press print and expect to get the 5 pages as I described earlier.

  • I want to display invoice details(MIRO) in REPORT

    Hi,
       i am new for abap can any one please send code for to display miro details in a report based on below logic.
    Pass the RSEG-BELNR & RSEG-GJAHR joined together into BKPF-AWKEY to get the MIRO Doc date BKPF-BUDAT, vendor invoice number BKPF-XBLNR& Vendor invoice date BKPF-BLDAT.
      Pass the RSEG-BELNR & RSEG-GJAHR joined together into BKPF-AWKEY to get the BKPF-BELNR & BKPF-GJAHR to pass this into BSEG-BELNR BSEG-GJAHR to get the BSEG-LIFNR, BSEG-DMBTR, BSEG-ZTERM corresponding to the vendor code.

    Set the option PRINT OBJECT ON to First Page, I think this might resolve your problem.

  • Function or formula to display the desired color in report

    Hi,
    I am using Web I rich client in BO XI R3.1 version and would like to know if there is any function or formula to display the desired color in report.
    I've used aleters but not getting the desired output. I need to display the color of some regions percentage wise based on a condition in a box i've created alerters for individual colors but they are not working.
    I came to know in crystal it is available just want to know if it is available in BO too.
    For more information about the issue am facing which had already posted in this forum please have a look in the below post.
    Alerter not working in XI R3.1 web I rich client report  
    Posted: Mar 15, 2010 1:29 PM  Eswar Rao
    I am desperately looking for solution and trying to resolve this issue. I would really appreciate for your ideas or solutions.
    Thanks,
    Eswar

    Or just make one alerter. Make sure you are in the cell and open Alerters. Create one that says "Filtered Object or cell" = "Cell Contents"  "Less than" and enter the lowest number, like 0.6. Then click format and change to the color text or background you want. Say ok to all of that and make sure it works.
    Then edit the same alerter, click add sub-alerter. Make this one "Filtered Object or cell" = "Cell Contents" again, and put Operator of "Greater than or Equal" to 0.7. Then click on the plus sign button to the right and it should give you an "And" option. Make that one "Cell Contents" "Less than" 0.8. Again go into Format and change to the next color you want. Click OK all the way out and check.
    Then edit it again, and add another sub-alerter and make this one "Cell Contents" "Greater than or equal to" 0.9. and again format the color, and save.
    Does that not work?

  • Row number in Financial reporting

    Is it possible in Financial reporting to display row number any how.

    Best bet would be to be in a formula column that increases by 1 by row [a]+1 or something. Then move the headers to display after this row.
    Think this would work.
    Hope this helps
    Andy King
    http://www.analitica.co.uk

Maybe you are looking for

  • ITunes 7 - add me to the list of disgruntled users and please help!

    I know the number of these kinds of posts is increasing almost hourly and I have scoured the internet and other mac forums without finding any tips. My iTunes 7, with increasing frequency, stop responding and give me the spinning beach ball. Right cl

  • Audio problems and more after updating to 10.4.3

    After taking an OS X update to 10.4.3 from 10.4.2, I've got static instead of audio. This happens no matter what program I'm using: Bias Peak 4.14, iTunes 6.0.1, Apple DVD Player 4.6, QuickTime 7.0.3. I'm even getting static on system sounds (empty t

  • Itunes 10.5 - no visualizers

    In Itunes 10.5 i can't choose any other visualizer than the standard and classic one (not even custom ones). I also cannot click the options menu item under the visualizer menu.

  • Site refreshed from dynamic data.

    I have a site stubb out that has multiple accordian canvases each containing a tree. In my header area I have a combo box that give you a list of clients. When you select a new client, I want to reload all the trees in each accordian cavas with that

  • Performance problem using multi-thread

    I am using berkeley db to store a int/double pair, and i randomly get 100,0000 results to check the performance . Using 1 thread, it cost about 1 Mins. But using 4 threads, it costs 4 Mins. More threads, lower performance. Is there Anyone know the re