Table of contents in Crsytal Reports 2008

Hi,
I have a requirement to create table of contents showing pagenumbers along with the titles in report.I tried using below formula:
WhilePrintingRecords;
StringVar Array catArry;
NumberVar Array pageArry;
IF NOT (GroupName({ARTIST.LAST_NM}) IN catArry) THEN (
Redim Preserve pageArry[UBound(pageArry) + 1];
pageArry[UBound(pageArry)] := PageNumber;
Redim Preserve catArry[UBound(catArry) + 1];
catArry[UBound(catArry)] := GroupName({ARTIST.LAST_NM});
Here grouping should be done on the name of last name. I have created a group also with that. This formula is added in Report header. But i am getting an error stating "A boolean value is required here" while saving it.
I also tried the below formula as an alternative approach:
global stringvar strTOC1;
global stringvar strTOC2;
local stringvar strTemp;
if not InRepeatedGroupHeader then
  ( strTemp := {ARTIST.LAST_NM} + chr(10) ;
  if len(strTemp) + len(strToc1) <= 254 then
    ( strToc1 := StrToc1 + strTemp;
    strToc2 := StrToc2 +
      totext(PageNumber,0) + chr(10) ))
This also gives the same error.
Please let me know if the formulas used are incorrect. Please suggest if there are anyother ways to implement this.
Thanks in advance!

Satya,
In Oracle create a Package with both a Package Head and a Body definition - ORACLE help has acouple examples of this
In the Head you would need to define the REF_CURSOR record you would be using in Crystal. I am copying a simplified version of one of mine here:
The Head definition --
create or replace PACKAGE TST_PROFILE_EXTRACT_RENAME AS
TYPE PROFILE_EXTRACT_REC IS RECORD
(RC_Profile_num_in               TEST.PRFL_NB%type
,Addditional fields are defined here
,Addditional fields are defined here
,Addditional fields are defined here
TYPE PROFILE_EXTRACT_Type IS REF CURSOR RETURN PROFILE_EXTRACT_rec;
PROCEDURE sp_PROFILE_EXTRACT (
PROFILE_EXTRACT_CURSOR IN OUT PROFILE_EXTRACT_TYPE
,IV_PARAMETER_1 IN  PRM_RPT_DFLT.TEST_NUM%TYPE
,IV_PARAMETER_2 IN  VARCHAR2);
END TST_PROFILE_EXTRACT_RENAME;
Body definition --
create or replace PACKAGE BODY TST_PROFILE_EXTRACT_RENAME AS
PROCEDURE sp_PROFILE_EXTRACT (
PROFILE_EXTRACT_Cursor IN OUT PROFILE_EXTRACT_Type
,IV_PARAMETER_1 IN  PRM_RPT_DFLT.TEST_NUM%TYPE
,IV_PARAMETER_2 IN  VARCHAR2 ) IS
--- working variables go here
LV_FILLER_D6                    CHAR(6);
LV_FILLER_H9                   CHAR(9);
LV_FILLER_T14                  CHAR(14);
BEGIN
Code to delete out any existing "old" data rows from a previous execution
COMMIT -- to make sure these do not get picked up in the current execution
Code goes here -- to do full Select and/or PLSQL goes here including the insert to the "temp" table you have defined in structure to ORACLE.
After all processing is done and all updates COMMITTED,
Open the REF_CURSOR to Crystal using a select against your "temp" table as the last piece of code in your SP.
OPEN PROFILE_EXTRACT_Cursor FOR
select
RC_Profile_num_in              
,Addditional fields are defined here
FROM "temp" table
WHERE   - any additional logic you might need (we are using a unique identifier for each report SP in order to allow reuse/multi-threading of our reports)
ORDER BY .....  as necessary for your critera - we are using a counter to make sure we retrieve the rows in the order they are inserted but this may or may not be necessary depending on your data.
END sp_PROFILE_EXTRACT;
END TST_PROFILE_EXTRACT_RENAME;
Searching the web for ORACLE and Stored Procedures returns a number of examples (some good and some otherwise) but this is the model we are using.
Let me know if you have any other questions.
Greg

Similar Messages

  • How do I create table of contents in the reports

    Hi,
    Can I create a table of contents in the report?
    for example:
    Name page
    Jack ___________________________________25
    Mat ____________________________________29
    Please let me know.
    Thanks,
    Ratna

    Hi!
    I would try to use a (temporary) table with needed Columns for
    output. Then fill this table using SRW.DO_SQL in a trigger.
    Greetings - Hajo

  • From Crystal report XI R2 files to Crsytal Report 2008  files

    Hi All,
    Can I convert  from Crystal report XI R2 files to Crsytal Report 2008  files?
    Please let me know.
    Thanks,
    Manjunath N Jogin

    Hi,
    Here are a few more facts about up gradation to CR 2008.
    1)     Crystal Reports should be the same version of the Enterprise: for instance if reports are created with CR XI R2, the Enterprise version should be BOE XI R2; CR2008 will not be compatible with BOXI R2 Enterprise.
    2)     More versions of CR can be installed in the same machines; please note that the versions should be installed following the order from the oldest version to the latest one in order to avoid conflicts. For instance, you may install CR X first, then CR XI, then XI R2 and then CR 2008;
    3)     The reports created with CR XI can be opened with CR 2008.
    4)     And the reports created with CR 2008 can be opened with CR XI; however if the reports contain any features which are not available with the previous version, these may not be supported; For instance Flash objects which can be used with CR2008 would not be supported by CR XI R2.
    5)     The report definition defines the version with witch the report is created. The report definition information is available from u2018Reportu2019 menu/u2019Performance Informationu2019.
    Hope this would be helpful.
    Regards,
    Aditya Joshi

  • How to build Table of Content in Crystal Reports

    Hi,
    Initially, I am looking for an article about how to build Table of Content in Crystal Reports in table-based approach----including how to write to DB table from report:
    http://support.businessobjects.com/library/kbase/articles/c2011950.asp
    However, the link above is invalid. I also searched through SDN articles, but no luck.
    Can someone please forward me the link if you happend to know?---does not have to link to this specific article, any working solution is just fine.
    I am aware of another approach which put the TOC to the end of the report(http://www.ml-consult.co.uk/cryst-05.htm), which probably does not satisfy the requirement.
    If you have other solutions, your share is greatly appreciated.
    Thanks a ton!

    [Is it possible to create a table of contents in Crystal Reports?|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313335333133303330%7D.do]

  • How to create a clickable Table of contents using Crystal Reports 8.5

    How to create a clickable Table of contents using Crystal Reports 8.5. I was able to create the table of contents using subreport and temporary table. but not able to link to the pages.
    how to make it clickable ?
    -Vivek

    Hi Vivek,
    To you may create on demand sub report.
    In main report only the link will be shown when you click on the link the sub report will be opened in a new tab.
    It can be placed in a Group header and to show the data for that particular group only.
    Click on the Help menu in the crystal Reports Designer and open the Crystal Reports Help
    Go to Index tab and type in subreport
    Select Creating On demand you will get lot of information on that.
    Please let us know if that is enough to solve your problem
    Regards,
    Aditya Joshi

  • Table of Contents In Hyperion Reports

    <BR>Hi,<BR><BR>I setup a Hyperion Report with location used for pages. When I print report, I get the expected result of each page being a location I specified, and in the order I specified. I'd like to distribute same report as pdf, but incorporate a table of contents based on page definition in report. Page 1 would have my table of contents, page 2 would have the first location, page 3 the second location, etc. Is this feasible?<BR><BR>Thanks in advance for your help.<BR><BR>-Carl

    <p>Hi Carl</p><p> </p><p>Can I ask you something before I give you the feedback on thisone. Do you use the system built in table of contents or did youdesign one?</p><p> </p><p>(1) If you have designed the table of contents  I would sayit is feasible to incorporate them in pdf  formataccording</p><p>to your order in the report book</p><p>BUT</p><p>(2) If you use the system built in table of contents the orderwill be determined by the number of your reports  you add inthe report book</p>

  • Not able to get the tables in crystal report 2008

    Hi,
    I am using crystal report 2008 and trying to connect MS SQL using OLE DB (ADO) connection. After giving all DB credentials data base tables are not appearing in the connection. how to get the tables for selection in crystal report 2008.
    Regards,
    Sree

    In the CR Designer, select the connection and press the right mouse button. Select Options in the context menu and check if there is an entry in the Table name fiel. Maybe you have a placeholder there that does not match the names of the tables in the database. Just remove it, close the window by pressing OK and refresh the connection browser (press F5). Unfold the connection again and check if you can see the tables now.
    Regards,
    Stratos

  • Table of contents in Reports 6i

    Hello, everyone.
    Does anyone know how to create table of contents in Oracle Reports 6i?
    My output looks like that:
    1.0 Introduction -- (printed on page 1)
    some data...
    1.1 Integration -- (printed on page 3)
    some data...
    1.1.1 Testing (printed on page 7)
    some data....
    All of course in indented according to number.
    Now, I need to created a table of contents that looks like that:
    1.0 Introduction ................................ 1
    1.1 Integration ............................. 3
    1.1.1 Testing ............................ 7
    with indent as well. I can build it manually in the header section, the only thing that I don't know is how to get a page number. I don't know at the runtime, which page it will be for a certain section. The report output is printed as pdf file. Maybe there is a way to send a command to print bookmarks instead?
    Please, help.

    Hi Lena,
    I think it's impossible. Let image following situatian: you send your report to printer... Could you change your first shit after that one had been prited? Unfortunately no. Maybe your should do your contents on the last pages?
    If you will do so, you will be able to place page's number in the table of contents.
    Sorry.

  • How to set Formulas in crystal reports 2008

    Hi,
    I am generating crystal reports in vb6 using CR 8.5 and vb6 and below is the code snippet for the same
    CrystalReport1.Formulas(0) = "PrintTitle= '" & strMyTitle & "'"
    CrystalReport1.Formulas(1) = "FromDate= '" & MskFromDate.Text & "'"
    CrystalReport1.Formulas(2) = "ToDate= '" & MskToDate.Text & "'"
    Please let me know how the same functionality can be achieved in VB.Net using Crsytal reports 2008
    Any code snippet would be of great Help.
    Thanks in Adnvance.
    Ramnath

    Something like this:
    Imports CrystalDecisions.CrystalReports.Engine
    Imports CrystalDecisions.Shared
    Public Class Form1
    Inherits System.Windows.Forms.Form
    Dim Report As New CrystalReport1()
    Dim FormulaFields As FormulaFieldDefinitions
    Dim FormulaField As FormulaFieldDefinition
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    FormulaFields = Report.DataDefinition.FormulaFields
    FormulaField = FormulaFields.Item(0)
    FormulaField.Text = "[formula text]"
    CrystalReportViewer1.ReportSource = Report
    End Sub
    Also, see the Developer help file:
    http://help.sap.com/businessobject/product_guides/boexir31/en/crsdk_net_dg_12_en.chm
    API reference:
    http://help.sap.com/businessobject/product_guides/boexir31/en/crsdk_net_apiRef_12_en.chm
    and [Crystal Reports for Visual Studio 2005 Walkthroughs|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23]
    And don't forget to use the search box at the top right of this page before posting to the forums...
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Edited by: Ludek Uher on Jul 26, 2010 8:57 AM

  • Migration from Crystal Reports 2008 to Crystal reports Enterprise(BOE 4.0)

    Dear all ,
    I m currently doing a project on Crystal reports 2008 where datasource is mostly SAP BW queries.  Our customer will have BOE 4.0 in coming months .  I have heard that in BOE 4.0 Crystal reports for Enterprise will be a better option for BW datasources.Is that true? So here comes my question , Is  it possible to migrate reports based on Crsytal reports 2008 to Crystal reports for Enterpise 4.0  afterwards. What will be best option for us , shall we build further reports on Crystal reports 2008 or Crystal reports 2011 or should wait until we have BOE 4.0 ?
    Thanks
    Best regards
    Atul

    Hi,
    We are going through the migration process from 2008 to Enterprise version. The only issue we are facing is the mapping of the Hierarchy nodeid and parentid. Other than that we were able to migrate most of the pieces from the report.
    Here is the overview of migration process:
    1. When you run the upgrade manager to migrate objects from BOE 3.1 to 4.0 it will automatically upgrade it to CR 2011 version.
    2. You then have option to migrate it manually by opening the report in Enterprise version.
    3. If you open the report in Enterprise version it will prompt you to connect to common semantic layer wizard.
    4. Before that you have to have your datasource ready for that report depends on how your CR 2008 is connected. (can be BEx query or Relational Universe)
    5. If its BEx query you have to maintain the connection in CMC under OLAP connection to your BW system.
    6. Next thing is to map the Source fields to Target fields (BEx query or Relation Universe via IDT) and your report will be converted to Enterprise version.
    7. You might have to resolve if there are any errors.
    Let me know if you have any particular questions if i can help.
    Thanks.
    Edited by: Rajan Patel on Oct 27, 2011 5:13 PM

  • Crystal Reports 2008 - Changing Table Locations

    Hello,
    we have several reports which we use by different customers. The customers use different name spaces (table locations) for the same data. To use the same reports with different table locations, we wrote a piece of software replacing the connection strings and table locations. 
    Example:
    A report should be used in a test environment as well as in a production environment:
      The original SQL is (using a DB2 database on a AS400):
        SELECT alias.name FROM as400.production.users alias
      The modified SQL looks like:
        SELECT alias.name FROM as400.test.users alias
    Up to now we used Crystal XI and developed using RDC. We solved the above described problem by reading the report SQL string, replacing the table location in this string and assigned it back to the report object. Modifying the SQL string has the advantage that it works fine also for reports which contain a SQL command.
    Since Crystal Reports 2008 this is not possible anymore (no RDC, no direct way to modify the report SQL string).
    My first approach was to use the CrystalDecisions.CrystalReports.Engine.Table object. First I just wanted to see what really was the content of the Location and Name property:
    for (int i = 0; i < rdReport.Database.Tables.Count; ++i)
      Table rt = rdReport.Database.Tables<i>;
      Console.WriteLine("Table Nr : {0}", i);                   
      Console.WriteLine("  Table Loc  : {0}", rt.Location);
      Console.WriteLine("  Table Name : {0}", rt.Name);
    My problem with this is that the output for the report with the SQL in the above example is:
    Table Nr: 0
      Table Loc : users
      Table Name: alias
    So obviously not the real table location and table name is returned, but instead the table name for the table location and the alias for the table name. Unsurprisingly setting the location had not the originally desired effect.
    Furthermore if the report was designed using a SQL command, the location and in the name property contain the string COMMAND. Therefore the table object doesn't seems to be the solution to my problem.
    Thanks to the help of a user in this forum here, I figured out how to read the SQL string of a report. Unfortunately I did not found a way to assign it back to the report.
    Has anybody here an idea how to solve my problem? I'm open for every kind of hint.
    Thanks in advance,
    Ron

    My solution looks like this:
    ReportDocument rdReport = new ReportDocument();                   
    rdReport.Load(sReportName, OpenReportMethod.OpenReportByTempCopy);
    CrystalDecisions.ReportAppServer.ClientDoc.ISCDReportClientDocument rcDocument = rdReport.ReportClientDocument;                   
    for (int i = 0; i < rdReport.Database.Tables.Count; ++i)
        CrystalDecisions.ReportAppServer.DataDefModel.ISCRTable rctTable = rcDocument.DataDefController.Database.Tables<i>;
        if (rctTable.ClassName == "CrystalReports.CommandTable")
            Console.WriteLine("Processing CommandTable {0}",rctTable.Name);
            Console.WriteLine("  Old Qualified Name: {0}", rctTable.QualifiedName);
            Console.WriteLine("  Old Alias:          {0}\n" , rctTable.Alias);
            CrystalDecisions.ReportAppServer.DataDefModel.CommandTable tbOldCmd = (CrystalDecisions.ReportAppServer.DataDefModel.CommandTable) rctTable;
            CrystalDecisions.ReportAppServer.DataDefModel.CommandTable tbNewCmd = new CrystalDecisions.ReportAppServer.DataDefModel.CommandTable();
            tbNewCmd.Name = tbOldCmd.Name;
            tbNewCmd.Alias = tbOldCmd.Alias;
            tbNewCmd.CommandText = sNewSql;
            tbNewCmd.ConnectionInfo = tbOldCmd.ConnectionInfo.Clone(true);
            CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag pbAttr = tbNewCmd.ConnectionInfo.Attributes;
            // set dlls
            pbAttr["Database DLL"] = "crdb_ado.dll";
            pbAttr["QE_DatabaseName"] = "NL67S021OUD";
            pbAttr["QE_DatabaseType"] = "OLE DB (ADO)";
            pbAttr["QE_ServerDescription"] = "192.0.5.24";
            pbAttr["QE_SQLDB"] = "True";
            pbAttr["SSO Enabled"] = "False";
            // set connection string                  
            CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag pbLogOnProp = (CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag)pbAttr[sAttrLogOnProp];
            pbLogOnProp.RemoveAll();
            // strangely comma seperated values instead of semicolon seperated values are needed here
            pbLogOnProp.FromString("Provider=IBMDA400,Data Source=" + sServerName + ",Initial Catalog=" + sDBName + ",User ID=" + sUserId + ",Password=" + sPwd + ",Convert Date Time To Char=TRUE,Catalog Library List=,Cursor Sensitivity=3");
            tbNewCmd.ConnectionInfo.UserName = sUserId;
            tbNewCmd.ConnectionInfo.Password = sPwd;
            rcDocument.DatabaseController.SetTableLocation(tbOldCmd, tbNewCmd);                           
        else
            Console.WriteLine("Processing Table {0}",rctTable.Name);                           
            Console.WriteLine("  Old Qualified Name: {0}", rctTable.QualifiedName);
            Console.WriteLine("  Old Alias:          {0}\n", rctTable.Alias);
            CrystalDecisions.ReportAppServer.DataDefModel.ISCRTable rctNew = new CrystalDecisions.ReportAppServer.DataDefModel.Table();
            rctNew.Name = rctTable.Name;
            rctNew.Alias = rctTable.Alias;
            rctNew.QualifiedName = sDBName + ".V41TSTDBF.CRGUOPF";
            rctNew.ConnectionInfo = rctTable.ConnectionInfo.Clone(true);
            CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag pbAttr = rctNew.ConnectionInfo.Attributes;
            // set dlls
            pbAttr["Database DLL"] = "crdb_ado.dll";
            pbAttr["QE_DatabaseName"] = "NL67S021OUD";
            pbAttr["QE_DatabaseType"] = "OLE DB (ADO)";
            pbAttr["QE_ServerDescription"] = "192.0.5.24";
            pbAttr["QE_SQLDB"] = "True";
            pbAttr["SSO Enabled"] = "False";
            // set connection string                  
            CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag pbLogOnProp = (CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag) pbAttr[sAttrLogOnProp];
            pbLogOnProp.RemoveAll();
            // strangely comma seperated values instead of semicolon seperated values are needed here
            pbLogOnProp.FromString("Provider=IBMDA400,Data Source=" + sServerName + ",Initial Catalog=" + sDBName + ",User ID=" + sUserId + ",Password=" + sPwd + ",Convert Date Time To Char=TRUE,Catalog Library List=,Cursor Sensitivity=3");
            rctNew.ConnectionInfo.UserName = sUserId;
            rctNew.ConnectionInfo.Password = sPwd;                         
            rcDocument.DatabaseController.SetTableLocation(rctTable, rctNew);
            Console.WriteLine("  New Qualified Name: {0}", rctTable.QualifiedName);
            Console.WriteLine("  New Alias:          {0}\n", rctTable.Alias);
    Console.WriteLine("\nSetting parameter {0} to value {1}", rdReport.ParameterFields[0].Name, iDataId);
    rdReport.SetParameterValue(0, iDataId);
    Console.WriteLine("\nShow SQL: ");
    CrystalDecisions.ReportAppServer.Controllers.RowsetController rsController;
    CrystalDecisions.ReportAppServer.ClientDoc.ISCDReportClientDocument rdClient = rdReport.ReportClientDocument;
    CrystalDecisions.ReportAppServer.DataDefModel.ISCRGroupPath rdGroupPath = new CrystalDecisions.ReportAppServer.DataDefModel.GroupPath();
    string temp;
    string sql;
    rsController = rdClient.RowsetController;
    sql = rsController.GetSQLStatement(rdGroupPath, out temp);
    Console.WriteLine(sql);
    Console.WriteLine("Printing");
    PageMargins pmMargins = rdReport.PrintOptions.PageMargins;
    pmMargins.bottomMargin = 350;
    pmMargins.leftMargin = 350;
    pmMargins.rightMargin = 350;
    pmMargins.topMargin = 350;
    rdReport.PrintOptions.ApplyPageMargins(pmMargins);
    rdReport.PrintOptions.PrinterName = sPrinterName;
    rdReport.PrintToPrinter(1,     // copies
                            false, // collated
                            0,     // start page
                            0);   // end page
    rdReport.Close();
    Regards,
    Ron

  • Report Generation Toolkit: Table of Contents in MS Word

    Hello forum users,
    I would like to add a table of contents to a MS Word document, using the Report Generation Toolkit.
    I couldn't find a VI in the toolkit that does that, so I tried to modify the VI "Word Insert Field.vi". Doing so, I could access a property node of the class "Word._Document"  and an invoke node of the class "Word.TablesOfContents" with the method "Add".
    As this modified VI does not belong to the private LabVIEW class "NI_Word.lvclass", it is not possible to unbundle the (type cast) "report in" wire to get the "Word._Document" class reference. I can't add the modified VI to the NI_Word class either, because it is password protected.
    There are so many methods and properties that are not used in the official Report Generation Toolkit, like this one. How can I access them?
    Or maybe there is another way to add a table of contents to a MS Word document (programmatically). Maybe I have to use a template. I rather wouldn't, though.
    Operating System: Windows 7 64bit
    LabVIEW: 2009 [9.0 (32bit)]
    Report Generation Toolkit: 2009
    MS Office: 2003 SP1
    Thank you for reading an answering.
    Solved!
    Go to Solution.
    Attachments:
    Word_Insert_TOC.png ‏68 KB

    Hello again,
    in the "Word Specific" > "Word Advanced" Palette of the Report Generation Toolkit, there is a VI called "Word Get ActiveX References" which essentially unbundles the private "report" data stream / wire. Thus, I can use the property and invoke nodes that make use of the "Add TablesOfContents" method.
    I hope, that helps other users as I didn't find too many topics on Report Generation. Maybe it's just too easy...
    Attachments:
    Word_Insert_TOC_fix.png ‏60 KB

  • Is there any way to generate table of contents in adobe for a report output

    Hi All,
    I need to display the output of a report in an PDF and layout needs to be developed in Adobe Print Forms. I want to know if there is a way to generate a table of contents for the output in adobe form on a particular page.
    Thanks...

    Hi,
    Thanks for the reply. I am new to the adobe and to the javascript.
    I would appreciate if you can guide me as to where can I get the online help on javascript related to Adobe Print and Interactive Forms.

  • Crystal Reports 2008; Can't select the certain table. Why?

    Please help me everyone!
    problem note:
    I'm using Crystal Report 2008 to access MS SQL Server 2005 Database.
    Everything was good until last month.
    But somehow when I select the table "FTABLE11C", Crystal Repors hanging-up and no more Crystal Reports works.
    If I copy the FTRAN11C to different name such as "aaa" using following statement and use Crystal Reports then I can select the "aaa" whthout problems.
    Select * into aaa from FTRAN11C.
    So, I drop the tbale FTRAN11C and copy FTRAN11C from aaa table using following statement,
    select * into FTRAN11C from aaa
    and select the FTRAN11C again on Crystal Reports 2008, Crystal Reports 2008 hanging-up again.
    I'd like to know how to solve this situation.
    Thanks.
    1. We didn't have any patch on SQL Server.
    2. I delete one field on table that named "FTRAN11C".
       That's all.
    3. I tried following steps;
       a. Copy the file to another name.
            Select * into aaa from FTRAN11C
       b. Droped the bad table.
            Drop table FTRAN11C
       c. Copy back from saved table.
            Select * into FTRAN11C from aaa
    4. Open Crystal Reports 2008
       a. Connect to database with OLD DB.
           Crystal Reports shows all the tables within database without any problems.
       b. Select the table aaa.
           No problems. It shows on right side box.
       c. Select the table FTRAN11C that is recently created from saved table.
           Now we have problems.
            It does not shows on right side box.
            Little circle displaying forever.
            If I click right side x, Crystal Reports 2008 is closed.
    5. If I use following command on SQL Server Management Studio Express, all of data shows without any problems.
           Select * from FTRAN11C

    Install all patches as you are on the original release:
    Be sure you have the keycode, used to install the product, I will not be able to get you a new one if you lose it or don't have it available.
    The easiest way to update is to uninstall CR 2008 and then install Service Pack 3 full build:
    https://smpdl.sap-ag.de/~sapidp/012002523100009989492010E/cr2008_sp3_fullbuild.zip
    Then install SP 4:
    https://smpdl.sap-ag.de/~sapidp/012002523100008782452011E/cr2008sp4.exe
    Then test your reports again.
    As for using/upgrading to CR 2011 it's not required and likely won't make any difference but you can upgrade if you want of course.
    Don

  • Generating table of contents by chapter number and title in reports

    Hi all,
    how can i generate a table of contents in reports?
    I will definitely need the chapter numbers and their respective titles to do that.
    Are there specific templates to follow in order to do that?
    Thanks.

    Your profile lists 10.6.2 as your OS version. If this is true, it may be the source of problems with Pages. Keeping both the OS and iWork apps updated will avoid some problems.
    Jerry

Maybe you are looking for

  • Status bar or jlabel

    hi all, how can i create a status bar on my java app that shows a message if it is connected on the internet or not. i already have an application that checks for internet connection every 6seconds, and has a getter method that returns a message. als

  • HT5465 how can i delete a contact ( or all contacts ) from i phone ios7 ?

    how can i delete a contact ( or all contacts ) from i phone - ios7.0.2  ?

  • Trying to run code from this weeks question of the  week

    i've copied the code from this weeks question of the week "sending an http req from a normal class." when i compile it everything looks fine. i've installed tomcat and it works. so i guess i am confused as to where i put the servlet class file??? and

  • Importing Paint Shop Photo Album 4 keywords into iPhoto

    I have many years worth of digital photos organized in folders and marked with Jasc Paint Shop Photo Album 4 keywords. Is there any way to import not just the photos, but the keywords into iPhoto?

  • How do i restore my navagation toolbar?

    I accidently press Help with the right click on the mouse and the toolbar dissapear. Now it does not show the toolbar thay include: file Edit View History Bookmarks Tools Help and back & forward ...reload... home... and the seart bar... all gone.. Ho