Getting syntax error in Crystal Report Viewer

The web application that I am supporting has reports that are presented through CR Viewer. The problem that I am facing is that if I pass a value to get the report, its giving the following error.
The syntax of the value of prompt 'name_of_paramente_passing' is incorrect. Please check the syntax and try again.
I am not getting this error if I run the same report through the actual Crystal report program.
So when I pass 123.1 to the crystal web viewer it wont give me any trouble. But If I pass 123.1(a) , it throws that error.
somehow the combination of pareanthesis and the alphabet is causing some trouble....
Is this a bug or some other problem.?
Version that I have:
Crystal Report web Viewer Control 11.5
Crystal Developer 11.0.0.1282
Please reply if you have any work around for this.
Thank you,
Santhosh

Thanks Mohammed. But our application is trying to pass a parameter which contains user data like section numbers....
So when we pass the value 123.1(a) , here what is happening behind the scene of CR viewer
webSource0.AddParameter "promptex-NAMEOFPARAMETER", "123.1%28a%29"
and it throws up the error
"The syntax of the value for prompt 'NAMEOFPARAMETER' is incorrect. Please correct the syntax and try again"
I have no idea why it is throwing up this errror....

Similar Messages

  • How to Resolve Join Syntax Errors in Crystal Reports 11.5

    Weu2019re upgrading form Crystal Reports Runtime Client 10.0 to 11.5.  I have a registry fix that resolves the join syntax errors in Crystal Reports 10.0 by updating the registry key:
    [HKEY_LOCAL_MACHINE\Software\Crystal Decisions\10.0\Crystal Reports\Database\QueryBuilder\JoinBuilder]
    "SQLServerJoinBuilder"="adbc"
    What is the fix for Crystal Runtime 11.5?

    Create a new key under:
    HKEY_CURRENT_USER\Software\Business Objects\Suite 11.5\Crystal Reports\Database\QueryBuilder\JoinBuilder and add the values
    "SQLServerJoinBuilder"="adbc"

  • How to get actual error from Crystal Report

    We are using Crystal report in web service.
    We faced some problem due to crystal report unexpected error.
    Refer the below error message.
    Xception E NSF NSFZ1100 20100608 145511565 GPRAB0 : GPRZ10 GUEC0001 [1] AbstractService Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application.
    Xception E NSF NSFZ1100 20100608 145511972 GPRAB0 : GPRZ10 GUEC0001 [1] AbstractService at System.Windows.Forms.MessageBox.ShowCore(IWin32Window owner, String text, String caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, MessageBoxOptions options, Boolean showHelp)
    at System.Windows.Forms.MessageBox.Show(String text, String caption, MessageBoxButtons buttons, MessageBoxIcon icon)
    at CrystalDecisions.Windows.Forms.CrystalReportViewer.HandleExceptionEvent(Object eventSource, Exception e, Boolean suppressMessage)
    at CrystalDecisions.Windows.Forms.CrystalReportViewer.HandleExceptionEvent(Object eventSource, Exception e)
    at CrystalDecisions.Windows.Forms.ReportDocumentBase.GetLastPageNumber()
    at CrystalDecisions.Windows.Forms.ReportDocumentBase.GetLastPage()
    at CrystalDecisions.Windows.Forms.DocumentControl.ShowLastPage()
    at CrystalDecisions.Windows.Forms.PageView.ShowLastPage()
    at Biz.Nissan.Cats.CORE.REPORT.LibCrystalReport.TotalPageCount(ReportDocument Rpt)
    at Biz.Nissan.Cats.CORE.REPORT.LibCrystalReport.Print(BaseReport RptDefinition)
    at Biz.Nissan.Cats.CORE.REPORT.MCTLIST260Print.Print(IFData ifData)
    at Biz.Nissan.W3.CATS.BC.Service.DistributeService.ExecuteMpp()
    How we get the actual error from crystal report?
    Thanks in Advance

    Same as
    crystal report unexpected error in Web service (IIS)
    Closing this thread.
    Ludek

  • Memory Full Error in Crystal Reports Viewer

    Environment:
    Windows 7 64 Bit
    Crystal Reports for Visual Studio Version 13.0.13.1597
    SQL Server Database
    Connecting with OLE BD (ADO)
    I am previewing a report in the Crystal Reports Viewer and it instantly returns an error pop-up "Memory Full".  When I run the report in the runtime environment on the same machine everything is fine.  Other reports will run in the viewer.  There seems to be a problem with just this one.  This Report runs on a different machine with the same setup other than it is running 13.0.8.
    I tried upgrading from 13.0.8 to the version above and there was no difference.
    Any ideas?
    Thanks,
    Koby

    Use Modules or ProcessMonitor and compare what is missing between your DEV PC and Runtime Only PC.
    May give you a clue as to what is missing or if it's permissions, DB client or third party dependencies.
    Windows or WEB App?
    Don

  • Logon Error for Crystal Report Viewed by User When Not Included In App

    I have a Visual Basic 2008 SP1 application and I'm using Crystal Reports 2008 SP0 (with FP1 + 2).  I have about 50 reports using integrated security that are all "embeded resources" in the application.  When I want to print one of these reports I use code like this:
    PrintReports(New MyEmbededReport)
    And in my PrintReports routine it just creates a new instance of a form that has the report viewer control on it and passes the report over to it.  This works GREAT and I can embed all my reports right into the app and call them when I need them.
    Recently however I've had the need to add some custom reports that may change more often then the app changes so I need a way for users to access their reports without a new version of the app being pushed out.  So I made a routine that lets me store the actual Report.rpt file into SQL and when a user goes to run it the report is pulled out of the database and saved into their temporary files and then passes it back to my PrintReports routine as a ReportDocument.  This also works fine but only on my machine.  On the client machines it asks for the login information and no combination will work.  I've tried multiple ways of getting around it and have spent hours trying examples found on the internet including assigning the login information before preview, running through and assigning the login information to each table, I've gone through the "Using Integrated and SQL Autentication in .Net Applications" guide, turning on and off integrated security.  Nothing seems to work.
    What else is there to try?  As a very last resort I will have to store the reports into the app like the other ones but I'm really trying not to do this.
    -Allan

    Just trying to get this working.  My PrintReport routine used to just have the single line to assign the passed report to the report viewer.report source property.  I've changed it to this:
                Dim crtableLogoninfos As New TableLogOnInfos()
                Dim crtableLogoninfo As New TableLogOnInfo()
                Dim crConnectionInfo As New ConnectionInfo()
                Dim CrDatabase As Database
                Dim CrTables As Tables
                Dim CrTable As Table
                'Set the ConnectionInfo properties for logging on tothe Database
                With crConnectionInfo
                    .ServerName = My.Settings.SQLServerName
                    .DatabaseName = My.Settings.MainDatabaseName
                    .IntegratedSecurity = True
                End With
                'This code works for both user tables and stored procedures.
                'Set the CrTables to the Tables collection of the report
                CrDatabase = myReportFileName.Database
                CrTables = CrDatabase.Tables
                'Loop through each table in the report and apply the LogonInfo information
                For Each CrTable In CrTables
                    crtableLogoninfo = CrTable.LogOnInfo
                    crtableLogoninfo.ConnectionInfo = crConnectionInfo
                    CrTable.ApplyLogOnInfo(crtableLogoninfo)
                Next
                'Set the viewer to the report object to be previewed.
                PrintPreview.CrystalReportViewer.ReportSource = myReportFileName
    And I have the exact same issue....my internal reports stored within the app still work fine for everyone but the custom reports made in CR2008 and added as files still do not. 
    So out of fustration I added one of the "external" reports into VB 2008 and opened it in there, did a verify database, saved it, and then added it to my SQL server but again same issue....it's like when its off of my computer it "loses" the connection information even though it still shows its there.  Not sure why the reports that are embedded into the app don't have this issue. 
    So that gave me another idea.  I took one of the reports that was originally created in VB2008 and took that and put it into the SQL then ran that like the others and IT WORKS.  It creates the temp file on the client PC and runs it from there with no login issues.  Now I'm more confused....any ideas?  I guess I'm going to start recreating the reports I created in CR 2008 and remake them in VS 2008 since those seem to work fine but why should I have to....what would be the difference?
    -Allan

  • Get entire record from Crystal report viewer

    Hi,
    I'm using Crystal 2008 .Net components to view reports from within an application.
    I would like to write a custom drill down event so that users can link back from a record on the report they are previewing to somewhere else in the application. In order to do this I need access to the whole record's data for the object that they clicked on.
    It's not really much good if I just have the value, name and table of the field they clicked on, since it is probably not a unique value within that table, and therefore I couldn't drill back to the specific record they selected. Also, if it's not a database field in the first place then I have no way of going anywhere. But if I can get the whole record they are on then I'll already know which primary key field I want, and I could then get the appropriate value from the record.
    Is this possible?
    Richard

    You can get at specific objects using events,  but not a whole record.
    Can't think of any way of doign this at all...
    Ludek

  • Multi Value Parameter in SP  error in Crystal Report SAP B1 ?

    Hi Experts ,
    i am Getting an error in Crystal Report
    "Failed to retrieve data from the database.  Details:  42000:[Microsoft][ODBC SQL Server Driver][SQL Server]Line 1: Incorrect syntax near '('. [Database vendor code: 120]" 
    I an executing the SP In Command  , I want to pass multi value parameter in SP
    When Pressing  ok
    than  On Ok Button  Error come
    So I have Some Question
    1> Why All parameter in Commend Are  Automatic getting  Compulsory  and How to Avoid It?
    2> How to Solve  this error ? this error is only coming with multivalued parameter ?
    i have many report in which i have to send the multi value parameter into query it self  so , Plz Help Me
    I am New to Crystal Report so it will be Kind Of you  if explain  with example .
    Thankks in Advance !!!
    Regards,
    Mayank Shah

    Hi Shachar,
    i will explain one because i think some thing is misunderstood
    please the images
    when all parameter record selected and no parameter record selected ... i want all record should display
    this blank report is problem
    Regards,
    Mayank Shah

  • The Crystal Report Viewer is unable to create its resource objects

    Recently our Clients have updated to Windows 7 and IE8. we are having issues to view the Reports in Infoview.
    The web server operating server is Windows 2003, Crystal Reports XI Release 2  and BOE R2 SP2 is installed in it. Activex Viewer is downloading fine in client machine having Windows XP OS (IE Version is 7) but for the same url ActiveXViewer.cab is not getting downloaded in Windows 7 Enterprise (IE Version is 8). It throws the error u201CThe Crystal Report Viewer is unable to create its resource objects.u201D
    Does BOE R2 SP2 support on IE8?
    Thanks

    Tested Windows 7 And IE8 browser to view Reports in Infoview for different user preference setting.
    1.       Active X Viewer u2013 Fails to open in View Mode and errors out with message as u201CThe Crystal Report Viewer is unable to create its resource objectsu201D
    2.       DHTML Viewer u2013 Could able to open/export/print  the Report.
    3.       Advance DHTML Viewer  - Could able to open/export/print  the Report .
    4.       Java Viewer u2013 Could able to open/export/print  the Report, but noticed the fonts are overlapping.

  • Crystal Report Viewer and Windows 7 Enterprise

    Hi,
    We are using RDC methodology for launching the crystal reports in the web using ASP. 
    The web server operating server is Windows 2003, Crystal Reports XI Release 2 is installed in it. Activex Viewer is downloading fine in client machine having Windows XP OS (IE Version is 7) but for the same url ActiveXViewer.cab is not getting downloaded in Windows 7 Enterprise (IE Version is 8).  It throws the error u201CThe Crystal Report Viewer is unable to create its resource objects.u201D
    To download the cab file in Windows 7 machine it request for the following url
    1.     http://<web server name>/crystalreportviewers115/ActiveXControls/ActiveXViewer.cab
    2.     http://crl.verisign.com/pca3.crl
    3.     http://csc3-2004-crl.verisign.com/CSC3-2004.crl
    4.     http://www.download.windowsupdate.com/msdownload/update/v3/static/trustedr/en/authrootstl.cab
    URL 2,3,4 returns the http status as 502 (Bad gateway).  These url are not called from the Windows XP machine.
    The windows 7 client machine is not connected to the internet. I tried importing the crl files (by downloading from another machine).  But still we are getting the same error.
    How to over come this issue?
    Please Note :
    1. I am able to download the cab file when I tried to download only the cab file directly by specifying the cab url.
    2. If I am registering the ActiveXViewer.cab deliverables manually in the client machine report is launching fine, but we cannot do the same for the entire client machine having Windows 7 Enterprise Operating System.

    Hi Ludek Uher,
    Thank you very much for the information provided by you.  But still the same error (The Crystal Report Viewer is unable to create its resource objects) occurs after changing the IE8 Compatibility mode.
    Are there any other settings that can be tried for this issue?
    Thank You.

  • Temporary error "A Crystal Reports job failed because a free license ..."

    Hi all,
    We coded with VS 2003 a .NET 1.1 application which using the Crystal Report 9 Redistribution package .NET ready to display reports from measured data from our device. The data is stored in a SQL Server 2000 MSDE. Crystal Report has his own DB connection to the SQL server to read the data to display the report.
    Our application runs well on approx. 100 distributed installations. But on six customers installation we get this error. Actual on two customers PCs using the same DB we get the error "A Crystal Reports job failed because a free license could not be obtained in the time allocated.". This error pop up every time, when the report is shown. Although the report get shown completely.
    I observed in the 'Windows Event Viewer => "System" log after the above-mentioned error following entry "Crystal Report job was delayed 2 (sec)." once for every time when the user requested a report.
    I restored an empty DB on customers PC and the error don't pop up anymore.
    All CR .NET assemblies have the version 9.2.3300.0. I tested also the "CrystalReportNET_keycodefix.zip", but it doesn't help. I had checked for hours all the issues about this error message on the internet. I tested the most fitting solutions, but not one fix the problem.
    I tested customers full DB on my Virtual Machine with same installation, but I don't get the error.
    Cheers
    Ronny

    Hi Ludek<br>
    <br>
    Thanks for your answer. I checked all the things you asked me to do on both system.<br>
    <br>
    Here are the results from my investigations:<br>
    <br>
    <b>1) The keycode.dll was not on the not working PC.</b><br>
    I copied it to the root of C: as on the working PC. I registered it with regsvr32.exe and tested the issue.<br>
    => The problem still exist.<br>
    <br>
    <br>
    <br>
    <b>2) I compared the keycode on both system:</b><br>
    HKLM\SOFTWARE\Crystal Decisions\9.0\Crystal Reports\Keycodes\CR Ent<br>
    <br>
    non working PC:<br>
    1 AAP50-GS00000-U7000RN 131203342 3979604006<br>
    The code is different in comparison to the working PC, because I carried out the 'CrystalReportNET_keycodefix.zip'. Before this I made an export of the above registry key. Afterwards I wasn't able to merge this export (backup) again with the registry. I assume due to the included carriage returns in the keycode.<br>
    <br>
    working PC<br>
    1 XXXXX <br>
    <br>
    <br>
    <br>
    <b>3) I used the Process Monitor and got following error during the error sequence:</b><br>
    <br>
    I list only some key entries from the hundreds of error entries. Please inform me, how I can provide you the full logger files.<br>
    <br>
    non working PC:<br>
    WriteFile         C:\...\Administrator.QCNIR002\Local Settings\temp\~cpe{AD83....}    Fast IO Disallowed<br>
    RegEnumKey HKCR\Drive\shellex\FolderExtensions                                                 NO MORE ENTRIES<br>
    RegOpenKey HKLM\Software\Crystal Decisions\9.0\Crystal Reports\Database      NAME NOT FOUND<br>
    RegOpenKey HKCU\Software\Crystal Decisions\9.0\Crystal Reports\Database      NAME NOT FOUND<br>
    RegOpenKey HKLM\Software\Policies\Microsoft\Windows NT\DnsClient                 NAME NOT FOUND<br>
    <br>
    But I observed beside the results: No more entries, Name not found, Fast IO Disallowed, Buffer overflow (RegQueryKey) and Range not locked (UnlockFileSingle of printer driver) no other errors.<br>
    <br>
    <br>
    working PC<br>
    Operation:      Path:                                                                                Result:<br>
    WriteFile         C:\...\Administrator\Local Settings\temp\~cpe{AD83....}                 Fast IO Disallowed<br>
    RegEnumKey HKCR\Drive\shellex\FolderExtensions                                            NO MORE ENTRIES<br>
    RegOpenKey HKLM\Software\Crystal Decisions\9.0\Crystal Reports\Database NAME NOT FOUND<br>
    RegOpenKey HKCU\Software\Crystal Decisions\9.0\Crystal Reports\Database NAME NOT FOUND<br>
    <br>
    <br>
    <br>
    <b>4) Service Packs</b><br>
    We could only compare the file size of the Merge Module we used with the one you provided me in the above link.<br>
    <br>
    <table border=0 cellpadding=0 cellspacing=0>
    <tr>
    <td>file name</td>
    <td>file size of used Merge Module</td>
    <td>file size of SP1 Merge Module</td>
    </tr>
    <tr>
    <td width=150>crnetruntime.msm</td>
    <td width=100>4'764'672 Byte</td>
    <td width=100>4'770'304 Byte</td>
    </tr>
    <tr>
    <td>license.msm</td>
    <td>578'048 Byte</td>
    <td>578'048 Byte</td>
    </tr>
    <tr>
    <td>reportengine.msm</td>
    <td>10'701'824 Byte</td>
    <td>10'905'088 Byte</td>
    </tr>
    </table>
    <br>
    But I tried to install SP7 on my PC and on customers PC, but I got following error after I accepted the license agreement in the setup.exe: titlebar of window 'Information', Msg: 'Failed to create Backup folder -110' and just a button 'OK'. I got into an infinit loop and I could only end the process: 'IKernel.exe'.<br>
    Remark: I get the same error with SP5 and SP6.<br>
    <br>
    <br>
    <br>
    <b>5) Modules - comparison of DLL's</b><br>
    <br>
    I cross checked all the DLL in Modules, which begin with CR and some other, because there were over 100 DLL's.<br>
    <br>
    <table x:str border=0 cellpadding=0 cellspacing=0 width=834 style='border-collapse:
    collapse;table-layout:fixed;width:626pt'>
    <col width=385 style='mso-width-source:userset;mso-width-alt:14080;width:289pt'>
    <col width=179 style='mso-width-source:userset;mso-width-alt:6546;width:134pt'>
    <col width=110 style='mso-width-source:userset;mso-width-alt:4022;width:83pt'>
    <col width=80 span=2 style='width:60pt'>
    <tr height=17 style='height:12.75pt'>
      <td height=17 width=385 style='height:12.75pt;width:289pt'>CRHEAPALLOC.DLL</td>
      <td width=179 style='width:134pt'>9.2.0.2</td>
      <td width=110 style='width:83pt'>9.2.0.2</td>
      <td width=80 style='width:60pt'></td>
      <td width=80 style='width:60pt'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>CRPE32.DLL</td>
      <td>9.2.3.1183</td>
      <td>9.2.3.1183</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>CRQE.DLL</td>
      <td>9.2.1.625</td>
      <td>9.2.1.625</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>CRTOWORDS_EN.DLL</td>
      <td>9.2.0.14</td>
      <td>9.2.0.14</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>CRYSTALDECISIONS.CRYSTALREPORTS.ENGINE.DLL</td>
      <td>9.3.9500.10</td>
      <td>9.3.9500.10</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>CRYSTALDECISIONS.REPORTAPPSERVER.CLIENTDOC.DLL</td>
      <td>9.2.3300.0</td>
      <td>9.2.3300.0</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>CRYSTALDECISIONS.REPORTSOURCE.DLL</td>
      <td>9.3.9500.7</td>
      <td>9.3.9500.7</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>CRYSTALDECISIONS.SHARED.DLL</td>
      <td>9.3.9500.10</td>
      <td>9.3.9500.10</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>CRYSTALDECISIONS.WINDOWS.FORMS.DLL</td>
      <td>9.3.9500.12</td>
      <td>9.3.9500.12</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>CRYSTALKEYCODELIB.DLL</td>
      <td>9.2.3300.0</td>
      <td>9.2.3300.0</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>keycode.dll</td>
      <td>9.0.0.281</td>
      <td>9.0.0.281</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>MSADCE.DLL</td>
      <td>2.81.1135.0</td>
      <td>2.81.1135.0</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>MSADCER.DLL</td>
      <td>2.81.1117.0</td>
      <td>2.81.1117.0</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>MSADO15.DLL</td>
      <td>2.81.1128.0</td>
      <td>2.81.1128.0</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>MSADRH15.DLL</td>
      <td>2.81.1117.0</td>
      <td>2.81.1117.0</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>MSCORLIB.DLL</td>
      <td class=xl26>01/15/09 22:31:34</td>
      <td class=xl26>7/7/08 13:39</td>
      <td class=xl24></td>
      <td class=xl25></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>sqlresld.dll</td>
      <td>2000.80.382.0</td>
      <td>2000.080.0382.00</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    <tr height=17 style='height:12.75pt'>
      <td height=17 style='height:12.75pt'>crdb_ado.dll</td>
      <td>9.2.1.542</td>
      <td>9.2.1.542</td>
      <td colspan=2 style='mso-ignore:colspan'></td>
    </tr>
    </table>
    <br>
    Please specify the more detailed, if you mean the Crystal framework files or the .NET files. Could you give me please the location of the framework dlls and database client dlls like a folder name, so that I can check also all of them.<br>
    <br>
    I can provide you also the Module logger files, if you require them.<br>
    <br>
    <br>
    I would appreciate your further help very much.<br>
    <br>
    Cheers<br>
    <br>
    Ronny
    Edited by: Ronny S. on Jul 6, 2009 4:57 PM
    Edited by: Ronny S. on Jul 6, 2009 5:02 PM
    Edited by: Ronny S. on Jul 6, 2009 5:17 PM
    Edited by: Ronny S. on Jul 8, 2009 11:44 AM
    Edited by: David Hilton on Jul 15, 2009 11:04 AM
    Removed private keycode.

  • Crystal Report Viewer Microsoft JScript runtime error

    When I use the crystal viewer control to render a report on the screen I receive the following error message:
    Microsoft JScript runtime error: Object doesn't support property or method 'isObject' ... and the following line is hilighted:
    if(!bobj.isObject(json)).
    Here is the markup for the test page I'm using
    {<body>
    <form id="form1" runat="server">
    <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
    AutoDataBind="true" ReportSourceID="crSource" />
    <CR:CrystalReportSource ID="crSource" runat="server">
    </CR:CrystalReportSource>
    </form>}
    I believe I set all info on crSource correctly (report path etc ...) because If I remove the Crystal reports viewer from the page and just use the crsource (i.e crptSource.ReportDocument.ExportToHttpResponse ...) I can export the report OK. Its only when I have the crViewer on the page Is when I recieve this error.
    Web Config
    <assemblies>
    <add assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
    <add assembly="CrystalDecisions.Shared, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
    <add assembly="CrystalDecisions.ReportSource, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
    <add assembly="CrystalDecisions.Enterprise.Framework, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
    <add assembly="CrystalDecisions.Enterprise.Desktop.Report, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
    <add assembly="CrystalDecisions.CrystalReports.Engine, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
    <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
    <add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
    <controls>
    <add assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web" tagPrefix="CR" />
    <http handlers>
    <add path="CrystalImageHandler.aspx" verb="GET" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
    appsettings
    <add key="CrystalImageCleaner-AutoStart" value="true" />
    <add key="CrystalImageCleaner-Sleep" value="60000" />
    <add key="CrystalImageCleaner-Age" value="120000" />
    I am using crystal reports 2008, visual studio 2008, windows 7 pro, MS Sql Server 2005, IE9
    I uninstalled crystal reports, and reinstalled crystal reports 2008 sp3 (Full build) - No help
    When I goto help about visual studio it says crystal reports 2008 (No specific version info)
    Assembly cache on the machine has
    12.0.2000.0 and 12.0.1100.00 as the vast majority ... a few (Design and Engine) have older 10.5.3700 and so forth (There are so many)
    I found this problem on the web with different solutions involving frame work folder or not having IIS setup to server the crystal reports viewer ... this is happening to me on my local development machine using the ASP.Net Develepoment server included with VS2008 ..
    Any help you could give me would greatly be appreciated
    Thanks in advance
    Kevin

    Hi Kevin,
    Take a look at below SAP Note.
    [1531003 - Error: bobj undefined - javascript error |http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333533333331333033303333%7D.do]
    I got this result just by searching 'bobj is undefined javascript' in the top right search box.
    Thanks,
    Bhushan.

  • Error With Export/Print from Crystal Report Viewer

    Hello there,
    I've searched through the web and SAP discussion boards with not much luck with this issue.
    After working through this for some days now I've decided to look here for help.
    Environment:
    I have created a web Crystal Report viewer application(Developed with SBOP BI Platform 4.0 SP06 .NET SDK Runtime) that communicates with a managed Cyrstal Server 2011 SP4 (Product 14.0)
    I am able to connect and authenticate with the server, retrieve a token for communication and display reports in the Crystal report Viewer successfully.
    Problem:
    When I attempt to export, I receive the prompt to select format and pages.
    When I click export after selections most times I receive an error with the text
    Unable to cast COM object of type 'System.__ComObject' to interface type 'CrystalDecisions.ReportAppServer.DataDefModel.PropertyBag'. This operation failed because the QueryInterface call on the COM component for the interface with IID '{74EEBC42-6C5D-11D3-9172-00902741EE7C}' failed due to the following error: No such interface supported (Exception from HRESULT: 0x80004002 (E_NOINTERFACE)).
    Other times the page simply refreshes on export.
    When I click to print, no print dialog is displayed the page always refreshes and no error is displayed.
    No Print or Export document is ever created.
    As many print/export issues seems to be related, I'm guessing this two issues are as well.
    Notes:
    I am utilizing the ReportClientDocument model
    I am storing this in session to use as the crystal report viewer report source on postbacks
    I am assigning a subset of export formats to the crystal report viewer
    I am setting particular parameters as well on the report source
    At this point I would appreciate every assistance I may receive on this issue
    Thanks in advance,
    Below is the pertinent code
    Code:
    <aspx>
       <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
       AutoDataBind="true" EnableDatabaseLogonPrompt="False"
       BestFitPage="False" ReuseParameterValuesOnRefresh="True"
      CssClass="reportFrame" Height="1000px" Width="1100px" EnableDrillDown="False"
      ToolPanelView="None" PrintMode="Pdf"/>
    <Codebehind>
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using CrystalDecisions.Enterprise;
    using CrystalDecisions.ReportAppServer.ClientDoc;
    using CrystalDecisions.ReportAppServer.CommonObjectModel;
    using CrystalDecisions.ReportAppServer.Controllers;
    using CrystalDecisions.ReportAppServer.DataDefModel;
    using CrystalDecisions.ReportAppServer.ReportDefModel;
    using CrystalDecisions.Shared;
    namespace ClassicInternalReportPage
        public partial class Reports : System.Web.UI.Page
            protected override void OnInit(EventArgs e)
                base.OnInit(e);
                if (!String.IsNullOrEmpty(Convert.ToString(Session["LogonToken"])) && !IsPostBack)
                    SessionMgr sessionMgr = new SessionMgr();
                    EnterpriseSession enterpriseSession = sessionMgr.LogonWithToken(Session["LogonToken"].ToString());
                    EnterpriseService reportService = enterpriseSession.GetService("RASReportFactory");
                    InfoStore infoStore = new InfoStore(enterpriseSession.GetService("InfoStore"));
                    if (reportService != null)
                        string queryString = String.Format("Select SI_ID, SI_NAME, SI_PARENTID From CI_INFOOBJECTS "
                           + "Where SI_PROGID='CrystalEnterprise.Report' "
                           + "And SI_ID = {0} "
                           + "And SI_INSTANCE = 0", Request.QueryString["rId"]);
                        InfoObjects infoObjects = infoStore.Query(queryString);
                        ReportAppFactory reportFactory = (ReportAppFactory)reportService.Interface;
                        if (infoObjects != null && infoObjects.Count > 0)
                            ISCDReportClientDocument reportSource = reportFactory.OpenDocument(infoObjects[1].ID, 0);
                            Session["ReportClDocument"] = AssignReportParameters(reportSource) ? reportSource : null;
                            CrystalReportViewer1.ReportSource = Session["ReportClDocument"];
                            CrystalReportViewer1.DataBind();
                //Viewer options
                // Don't enable prompting for Live and Custom
                CrystalReportViewer1.EnableParameterPrompt = !(Request.QueryString["t"] == "1" || Request.QueryString["t"] == "4");
                CrystalReportViewer1.HasToggleParameterPanelButton = CrystalReportViewer1.EnableParameterPrompt;
                CrystalReportViewer1.AllowedExportFormats = (int)(ViewerExportFormats.PdfFormat | ViewerExportFormats.ExcelFormat | ViewerExportFormats.XLSXFormat | ViewerExportFormats.CsvFormat);
            protected void Page_Load(object sender, EventArgs e)
                if (IsPostBack && CrystalReportViewer1.ReportSource == null)
                    CrystalReportViewer1.ReportSource = Session["ReportClDocument"];
                    CrystalReportViewer1.DataBind();
            private bool AssignReportParameters(ISCDReportClientDocument reportSource)
                bool success = true;
                if (Request.QueryString["t"] == "1" || Request.QueryString["t"] == "2" || Request.QueryString["t"] == "4" )
                    reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "STORE", Session["storeParam"]);
                    if (Request.QueryString["t"] == "2")
                        reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "FromDate", Request.QueryString["fromdate"]);
                        reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "ToDate", Request.QueryString["todate"]);
                else if (Request.QueryString["t"] == "3")
                    reportSource.DataDefController.ParameterFieldController.SetCurrentValue("", "SKU", Request.QueryString["sku"]);
                else
                    //Unknown report type alert
                    success = false;
                return success;

    Thanks Don for your response,
    I'm new to the SCN spaces and my content has been moved a couple of times already.
    In response to your questions
    The runtime is installed on the web application server, if by that you mean the machine hosting the created .NET SDK application.
    My question was whether it was also required on the Crystal Server 2011 (I.E. the main enterprise server with CMS and Report management and I guess RAS and all that). I figured this would remain untouched and queries would simply be made against it to retrieve/view reports e.t.c
    If install of the SDK on Crystal Server 2011 is indeed required should I expect any interruption to any of the core services after a restart. I.E. I'm hoping that none of the SDK objects would interfere with the existing server objects (in SAP Business Objects)Reason I ask is I note that much of the SDK install directories are similar to the existing Crystal Enterprise Server 2011 (Product 14.0.0)
    Is this temp folder to be manually created/configured or is it created by the application automatically to perform tasks. Or are you referring to the default C:\Windows\Temp directory and so saying that the application would try to use this for print and export tasks?Once I'm sure which I'd give the app pool user permission
    Printing is to be client side but I figured by default (with the Crystal Report Viewer) it would simply pool and print from the user's printer. This is how it works with the previously used URL reporting approach (viewrpt.cwr). Therefore a user can print the document from wherever they are with their own printer.We don't intend on printing from the server machine, but are you suggesting that a printer must be installed on server (which one web or enterprise server) for any client side printing to work.
    App pool is running in 32 bit mode
    Initially didn't get anything useful from fiddler but I'd try and look closer on your suggestion.
    It's also possible that some of my questions are a misunderstanding of APP vs RAS vs WEB, so please feel free to clarify. Currently I see the Web server as simply the created .NET SDK Application and RAS (Crystal Server 2011 e.t.c) as the existing fully established Application server which I simply pool for information.
    Thank you for your patience and advice,

  • How can I get the View Tab name on the Crystal Report Viewer at runtime?

    When a report is displayed in the Windows Forms Crystal Report Viewer and the user drills into the report, the drill down view is displayed in a seperate view and is identified via a View tab at the top of the report.  I can determine the index of the view tab that is currently selected, but I need to access the text that is on the View tab.  The only properties that I've found that pertain to the "view" on the Crystal Report viewer are the ActiveViewIndex and the ViewCount.  Unfortunately, neither of these items help me because they are not specific to a certain section of the report.  Has anyone had any luck accessing the View Tab properties ?  Thanks.

    The tabs at the top of the page are nested within some of the viewers controls. Through trial and error you just have to find the right one. In this case the main part of the report is in the first control. This happens to be a TabControl. From there you can loop through the TabPages on the TabControl to grab the names of the tabs.
    Here is a quick example of what I did to get the tab text. All this code was in a button click event.
    Control oControl = crystalReportViewer1.Controls[0];
    TabControl oTabControl = (TabControl)oControl.Controls[0];
    foreach (TabPage oTabPage in oTabControl.TabPages)
         MessageBox.Show(oTabPage.Text);

  • How can I get Crystal Report Viewer 2008 to view boe xi r2 sp4 rpts

    we're getting an error when trying to open a report generated out of boe xi r2 sp4....the report does have "save data" with report.... I send to myself via email, save the rpt but when I try to open on a machine with viewer installed....it tries and gets to the end and presents an 'unexpected error' with detail:
    any suggestions? I put in case# 1020775
    Product Info:
    Crystal Reports Viewer 2008
    com.businessobjects.crystalreports.viewer.shell.application
    JVM Info:
    1.6.0_02-b05
    Sun Microsystems Inc.
    Java HotSpot(TM) Client VM
    System Configuration:
    win32
    x86
    en_US
    Plug-ins:
    org.eclipse.osgi version: 3.4.0.v20080605-1900
    org.eclipse.equinox.common version: 3.4.0.v20080421-2006
    org.eclipse.update.configurator version: 3.2.200.v20080417
    org.eclipse.core.runtime version: 3.4.0.v20080512
    com.businessobjects.crystalreports.designer.BOEIntegration.cs version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.de version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.en version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.es version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.fr version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.hu version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.it version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.ja version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.ko version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.nl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.pl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.pt version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.ru version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.sv version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.zh version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.zh_HK version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.zh_MO version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.zh_MY version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration.zh_TW version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.BOEIntegration version: 12.2.0.r325
    com.businessobjects.crystalreports.boesdk.libs version: 12.0.0
    com.businessobjects.crystalreports.boesdk version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.cs version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.de version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.en version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.es version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.fr version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.hu version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.it version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.ja version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.ko version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.nl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.pl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.pt version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.ru version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.sv version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.zh version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.zh_HK version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.zh_MO version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.zh_MY version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core.zh_TW version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.core version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.cs version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.de version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.en version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.es version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.fr version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.hu version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.it version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.ja version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.ko version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.nl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.pl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.pt version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.ru version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.sv version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.zh version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.zh_HK version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.zh_MO version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.zh_MY version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration.zh_TW version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.CRDCIntegration version: 12.2.0.r325
    com.businessobjects.crystalreports.crdcsdk.libs version: 12.0.0
    com.businessobjects.crystalreports.crdcsdk version: 12.2.0.r325
    com.businessobjects.crystalreports.crsdk.libs version: 12.2.0.r325
    com.businessobjects.crystalreports.crsdk version: 12.2.0.r325
    com.businessobjects.GEFUtilities.cs version: 12.2.0.r325
    com.businessobjects.GEFUtilities.de version: 12.2.0.r325
    com.businessobjects.GEFUtilities.en version: 12.2.0.r325
    com.businessobjects.GEFUtilities.es version: 12.2.0.r325
    com.businessobjects.GEFUtilities.fr version: 12.2.0.r325
    com.businessobjects.GEFUtilities.hu version: 12.2.0.r325
    com.businessobjects.GEFUtilities.it version: 12.2.0.r325
    com.businessobjects.GEFUtilities.ja version: 12.2.0.r325
    com.businessobjects.GEFUtilities.ko version: 12.2.0.r325
    com.businessobjects.GEFUtilities.nl version: 12.2.0.r325
    com.businessobjects.GEFUtilities.pl version: 12.2.0.r325
    com.businessobjects.GEFUtilities.pt version: 12.2.0.r325
    com.businessobjects.GEFUtilities.ru version: 12.2.0.r325
    com.businessobjects.GEFUtilities.sv version: 12.2.0.r325
    com.businessobjects.GEFUtilities.zh version: 12.2.0.r325
    com.businessobjects.GEFUtilities.zh_HK version: 12.2.0.r325
    com.businessobjects.GEFUtilities.zh_MO version: 12.2.0.r325
    com.businessobjects.GEFUtilities.zh_MY version: 12.2.0.r325
    com.businessobjects.GEFUtilities.zh_TW version: 12.2.0.r325
    com.businessobjects.GEFUtilities version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.cs version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.de version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.en version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.es version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.fr version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.hu version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.it version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.ja version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.ko version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.nl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.pl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.pt version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.ru version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.sv version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.zh version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.zh_HK version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.zh_MO version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.zh_MY version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase.zh_TW version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.IntegrationBase version: 12.2.0.r325
    com.businessobjects.crystalreports.platformext.win32 version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.cs version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.de version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.en version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.es version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.fr version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.hu version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.it version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.ja version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.ko version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.nl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.pl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.pt version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.ru version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.sv version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.zh version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.zh_HK version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.zh_MO version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.zh_MY version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui.zh_TW version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.promptingui version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.cs version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.de version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.en version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.es version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.fr version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.hu version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.it version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.ja version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.ko version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.nl version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.pl version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.pt version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.ru version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.sv version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.zh version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.zh_HK version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.zh_MO version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.zh_MY version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities.zh_TW version: 12.2.0.r325
    com.businessobjects.RCPRuntimeUtilities version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.cs version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.de version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.en version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.es version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.fr version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.hu version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.it version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.ja version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.ko version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.nl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.pl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.pt version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.ru version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.sv version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.zh version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.zh_HK version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.zh_MO version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.zh_MY version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage.zh_TW version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.readingpage version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.cs version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.de version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.en version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.es version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.fr version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.hu version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.it version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.ja version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.ko version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.nl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.pl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.pt version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.ru version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.sv version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.zh version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.zh_HK version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.zh_MO version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.zh_MY version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib.zh_TW version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.reportviewlib version: 12.2.0.r325
    com.businessobjects.SWTUtilities.cs version: 12.2.0.r325
    com.businessobjects.SWTUtilities.de version: 12.2.0.r325
    com.businessobjects.SWTUtilities.en version: 12.2.0.r325
    com.businessobjects.SWTUtilities.es version: 12.2.0.r325
    com.businessobjects.SWTUtilities.fr version: 12.2.0.r325
    com.businessobjects.SWTUtilities.hu version: 12.2.0.r325
    com.businessobjects.SWTUtilities.it version: 12.2.0.r325
    com.businessobjects.SWTUtilities.ja version: 12.2.0.r325
    com.businessobjects.SWTUtilities.ko version: 12.2.0.r325
    com.businessobjects.SWTUtilities.nl version: 12.2.0.r325
    com.businessobjects.SWTUtilities.pl version: 12.2.0.r325
    com.businessobjects.SWTUtilities.pt version: 12.2.0.r325
    com.businessobjects.SWTUtilities.ru version: 12.2.0.r325
    com.businessobjects.SWTUtilities.sv version: 12.2.0.r325
    com.businessobjects.SWTUtilities.zh version: 12.2.0.r325
    com.businessobjects.SWTUtilities.zh_HK version: 12.2.0.r325
    com.businessobjects.SWTUtilities.zh_MO version: 12.2.0.r325
    com.businessobjects.SWTUtilities.zh_MY version: 12.2.0.r325
    com.businessobjects.SWTUtilities.zh_TW version: 12.2.0.r325
    com.businessobjects.SWTUtilities version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.cs version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.de version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.en version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.es version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.fr version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.hu version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.it version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.ja version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.ko version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.nl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.pl version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.pt version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.ru version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.sv version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.zh version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.zh_HK version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.zh_MO version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.zh_MY version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase.zh_TW version: 12.2.0.r325
    com.businessobjects.crystalreports.designer.uibase version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.cs version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.de version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.en version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.es version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.fr version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.hu version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.it version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.ja version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.ko version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.nl version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.pl version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.pt version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.ru version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.sv version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.zh version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.zh_HK version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.zh_MO version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.zh_MY version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin.zh_TW version: 12.2.0.r325
    com.businessobjects.crystalreports.updateserviceplugin version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.cs version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.de version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.en version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.es version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.fr version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.hu version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.it version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.ja version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.ko version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.nl version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.pl version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.pt version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.ru version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.sv version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.zh version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.zh_HK version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.zh_MO version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.zh_MY version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell.zh_TW version: 12.2.0.r325
    com.businessobjects.crystalreports.viewershellext.win32 version: 12.2.0.r325
    com.businessobjects.crystalreports.viewer.shell version: 12.2.0.r325
    com.businessobjects.ui.controls.de version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.en version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.es version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.fr version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.it version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.ja version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.ko version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.nl version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.pl version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.pt version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.ru version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.sv version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.zh version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.zh_HK version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.zh_MO version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.zh_MY version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls.zh_TW version: 12.0.0.r325_v20080731
    com.businessobjects.ui.controls version: 12.0.0.r325_v20080731
    com.ibm.icu version: 3.8.1.v20080530
    org.eclipse.core.commands version: 3.4.0.I20080509-2000
    org.eclipse.core.contenttype version: 3.3.0.v20080604-1400
    org.eclipse.core.databinding version: 1.1.0.I20080527-2000
    org.eclipse.core.expressions version: 3.4.0.v20080603-2000
    org.eclipse.core.jobs version: 3.4.0.v20080512
    org.eclipse.core.runtime.compatibility.auth version: 3.2.100.v20070502
    org.eclipse.draw2d version: 3.4.0.v20080529
    org.eclipse.equinox.app version: 1.1.0.v20080421-2006
    org.eclipse.equinox.launcher.win32.win32.x86 version: 1.0.100.v20080509-1800
    org.eclipse.equinox.launcher version: 1.0.100.v20080509-1800
    org.eclipse.equinox.preferences version: 3.2.200.v20080421-2006
    org.eclipse.equinox.registry version: 3.4.0.v20080516-0950
    org.eclipse.gef version: 3.4.0.v20080526
    org.eclipse.help version: 3.3.100.v20080610
    org.eclipse.jface.databinding version: 1.2.0.I20080515-2000a
    org.eclipse.jface version: 3.4.0.I20080606-1300
    org.eclipse.rcp version: 3.4.0.v20080507
    org.eclipse.swt.win32.win32.x86 version: 3.4.0.v3448f
    org.eclipse.swt version: 3.4.0.v3448f
    org.eclipse.ui.views version: 3.3.0.I20080509-2000
    org.eclipse.ui.workbench version: 3.4.0.I20080606-1300
    org.eclipse.ui version: 3.4.0.I20080610-1200
    Libraries:
    C:\Program Files\Business Objects\Crystal Reports Viewer 2008\libs\CR\us.jar version: null
    Stack Trace:
    Caused by : java.lang.IndexOutOfBoundsException
    com.crystaldecisions.reports.formulas.FieldExpression$Type.a(Unknown Source)
    com.crystaldecisions.reports.formulas.ExpressionNode.getType(Unknown Source)
    com.crystaldecisions.reports.datafoundation.DFQuery.a(Unknown Source)
    com.crystaldecisions.reports.datafoundation.DFQuery.a(Unknown Source)
    com.crystaldecisions.reports.datafoundation.DFQuery.a(Unknown Source)
    com.crystaldecisions.reports.datafoundation.DFQuery.<init>(Unknown Source)
    com.crystaldecisions.reports.datafoundation.DFRuntime.if(Unknown Source)
    com.crystaldecisions.reports.datafoundation.DFRuntime.a(Unknown Source)
    com.crystaldecisions.reports.datalayer.a.if(Unknown Source)
    com.crystaldecisions.reports.datalayer.a.char(Unknown Source)
    com.crystaldecisions.reports.datalayer.a.long(Unknown Source)
    com.crystaldecisions.reports.datalayer.a.f(Unknown Source)
    com.crystaldecisions.reports.datalayer.a.c(Unknown Source)
    com.crystaldecisions.reports.datalayer.a.case(Unknown Source)
    com.crystaldecisions.reports.dataengine.m.char(Unknown Source)
    com.crystaldecisions.reports.dataengine.j.char(Unknown Source)
    com.crystaldecisions.reports.dataengine.m.j(Unknown Source)
    com.crystaldecisions.reports.dataengine.m.a(Unknown Source)
    com.crystaldecisions.reports.dataengine.ContextNode.a(Unknown Source)
    com.crystaldecisions.reports.dataengine.ContextNode.a(Unknown Source)
    com.crystaldecisions.reports.dataengine.j.case(Unknown Source)
    com.crystaldecisions.reports.dataengine.h.<init>(Unknown Source)
    com.crystaldecisions.reports.dataengine.DataContext.a(Unknown Source)
    com.crystaldecisions.reports.dataengine.DataProcessor2.a(Unknown Source)
    com.crystaldecisions.reports.dataengine.DataProcessor2.a(Unknown Source)
    com.crystaldecisions.reports.dataengine.DataProcessor2.new(Unknown Source)
    com.crystaldecisions.reports.dataengine.DataProcessor2.try(Unknown Source)
    com.crystaldecisions.reports.dataengine.DataProcessor2.int(Unknown Source)
    com.crystaldecisions.reports.dataengine.DataProcessor2.I(Unknown Source)
    com.crystaldecisions.reports.formatter.formatter.objectformatter.ObjectFormatter.fl(Unknown Source)
    com.crystaldecisions.reports.formatter.formatter.paginator.PageFormatter.if(Unknown Source)
    com.crystaldecisions.reports.formatter.formatter.paginator.PageFormatter.a(Unknown Source)
    com.crystaldecisions.reports.formatter.formatter.paginator.PageFormatter.Y(Unknown Source)
    com.crystaldecisions.reports.formatter.formatter.paginator.PageFormatter.moveToPageN(Unknown Source)
    com.crystaldecisions.reports.formatter.formatter.lightmodel.FCMPageFormatter.goToPage(Unknown Source)
    com.businessobjects.crystalreports.designer.core.elements.formatted.MultiPageModel.B(Unknown Source)
    com.businessobjects.crystalreports.designer.core.elements.formatted.MultiPageModel.A(Unknown Source)
    com.businessobjects.crystalreports.designer.core.elements.formatted.FormattedPages.create(Unknown Source)
    com.businessobjects.crystalreports.designer.core.elements.formatted.FormattedDocumentModeller.getValidFormattedPages(Unknown Source)
    com.businessobjects.crystalreports.designer.reportviewlib.FormattedModelHelper$1.A(Unknown Source)
    com.businessobjects.crystalreports.designer.reportviewlib.FormattedModelHelper$1.call(Unknown Source)
    com.businessobjects.crystalreports.designer.uibase.dialogs.ProgressMonitorDialog$6.run(Unknown Source)
    org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:121)

    going back to crystal viewer xi worked / resolved....

  • Crystal Report Viewer 2008 paging error.  Unable to process your request

    Hi everyone,
    I encountered this error today when clicking on the next page button on the Crystal Report Viewer.  I am running Crystal 2008 SP0.  When i click on show detail i get this:
    Programming Error520|/wEWPQL/uNqsCgKLovFcAtm0IoIAoScvAHAoqK76EFApyD1ugPApqWlPcMAsX1vAHAsX1198BAsCEq8AHAtuulPcMAoaMm/kHAoaMg/YCAoSGgI0OAs/lg/YCAsWelPcMArPesvYEAreG34oIAqKak5INAtzilMNAtD9h8wDApmmIoPAti0IoIApuWgI0OAubdht0DAsSe5NMPAqOak5INAqOa9/ICAr39wAOAp79l8IOApnFpvwJAo2nlP4BAsWFxAGAsHe54QMAs/Ok/EBAp7Eo3kCgvyr9gEC9POo2gkC2qGU/gEClfLUnAMCvuWnwQgCmuLjgg4Cnv3bgg8ChuPz6gMCpeOPzAMCl6zX3wECpuuLzAMC3eqToA4CvuWXgg4Czs7nhAwCveXvww0C3OrjoQ0C3eqn4wkCvuW7wQgCnv3Hgg8Cvf3b4A4Cnv2fwg4C0e7nhAwCxei3zAMCw97nhAwC6OONrwUYE9w8XzGf1oPuoIcvJLRvyIbTWg==
    I have a simple .Net page that has a dropdown control that a user can select to pass the parameter for the report.  I have a server side button that gets the report on the onclick event. The code behind is as follows:
    protected void btnReport_Click(object sender, EventArgs e)
            CrystalDecisions.CrystalReports.Engine.ReportDocument Myreport = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
            Myreport.Load(Server.MapPath("Reports/rpt_equipment_summary.rpt"));
            ConnectionInfo crLoginInfo = new ConnectionInfo();
            Database crDatabase;
            Tables crTables;
            CrystalDecisions.CrystalReports.Engine.Table crTable;
            TableLogOnInfo crTableLogOnInfo;
            crLoginInfo.ServerName = "----";
            crLoginInfo.DatabaseName = "------";
            crLoginInfo.UserID = "-----";
            crLoginInfo.Password = "------";
            //Get Table or SP information from report
            crDatabase = Myreport.Database;
            crTables = crDatabase.Tables;
            //Loop through all tables in the report and apply the
            //connection information for each table.
            for (int i = 0; i < crTables.Count; i++)
                crTable = crTables<i>;
                crTableLogOnInfo = crTable.LogOnInfo;
                crTableLogOnInfo.ConnectionInfo =
                crLoginInfo;
                crTable.ApplyLogOnInfo(crTableLogOnInfo);
            //Add Parameter
            ParameterField paramField = new ParameterField();
            ParameterDiscreteValue spValue = new ParameterDiscreteValue();
            ParameterFields ParamFields = new ParameterFields();
            paramField.Name = "@txComments";
            spValue.Value = ddlPastInvoices.SelectedValue.ToString();
            paramField.CurrentValues.Add(spValue);
            ParamFields.Add(paramField);
            CrystalReportViewer1.ParameterFieldInfo = ParamFields;
            CrystalReportViewer1.ReportSource = Myreport;
    Is there something i am missing for paging to work?
    Thanks in advance

    Sorry i forgot to include more information.
    .Net 3.5 and I can view this report fine in Crystal report designer.  I get no error message when I switch pages.  The issue happens when i view the report inside a Crystal report viewer control that i have on the page. 
    <%@ Register assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web" tagprefix="CR" %>
    I haven't tried your sample reports.  Where can i find those?  i have other reports with multiple pages so I can also try using those reports as well. 
    Thanks again,
    Pablo

Maybe you are looking for

  • Mini DVI to VGA adaptor

    Hi - having a frustrating time trying to buy a mini DVI to VGA adaptor for a macbook with a core 2 duo - none on the apple shop, only ones for intel core duo which does not fit (says review)  I need to to connect a monitor to the MacBook.  Help

  • Quicktime Pop-up videos on my webpage

    Forgive me for my inexperience - first time on a forum... I am using FrontPage to design my webpage and working in Windows Internet Explorer. *WHAT I'M TRYING TO ACCOMPLISH:* On my webpage I want to have a selection of photos that link to (.mp4) vide

  • Why is my 4th generation ipod capacity showing 6.46GB instead of 8GB

    why is my 4th generation ipods capacity showing6.46GB instead of 8GB

  • Migrating from weblogic 8.1 to sun one server

    I need some documentation that could guide, in steps involved, in migrating an J2ee application from weblogic 8.1 to sun one application server. Please help.

  • Computer crashes randomly

    Hi, my computer(WIN8) always crashes randomly and when I open the dmp it says it is cause by ntoskrnl.exe here are the the DMP files https://drive.google.com/file/d/0B3kqCRTWiaxKNEZJMWx4elVUUzg/edit?usp=sharing