Quantcast
Channel: SCN : Discussion List - SAP Crystal Reports, version for Visual Studio
Viewing all 3636 articles
Browse latest View live

Crystal report loses "right to left" formatting for arabic text and data

$
0
0

We are using crystal report for VS .Net 2010.  Developing a report having both arabic and english text in same report. But arabic paragraph is not aligning properly. Instead of last line starts with Right aligned , it is starting with left aligned. Englsih is Ok.

 

Thanks in advance


prompted for user name and password

$
0
0

Hello

 

I have recently installed Crystal Reports (v.13.05.x), for use with Visual Studio 2010.

 

My program is a simple database application, that produces a crystal report.

 

However, when I try to run the report, I  am faced with a Database Login Screen (which I wasn't when using an earlier version), that prompts  me for a

 

username and password that doesn't exist. Can anyone please advise?

Can't open rpt in VS2012 & Win8

$
0
0

Hi,

 

I am unable to design any report or even open any rpt files.

I am Using Visual Studio 2012 with Windows 8 64x Enterprise.

 

I am already  download and install SP5 (v. 13.0.5.x). Done successfully.

Also I add crystal report reporting Tools in toolbox, with all references, compile, No compile errors appears.

 

But i can't design any report.

when I try to open any prt file its appear like this:

    001.jpg

Getting an 80070005 Access is denied error

$
0
0

I get a constant "80070005 Access is denied" error when attempting to deploy a report to the production server.

 

My report is in a subfolder named Reports, and is being called by a page within that folder named UsersReport.aspx. The report itself is named rptUsers.rpt. Its Build Action is set to none. I have copied the report to the server.

 

Everything runs fine on the local machine. It also ran properly on a local 32 bit Windows XP Pro box.

 

Here's the code:

 

Imports CrystalDecisions.CrystalReports.Engine
Imports CrystalDecisions.Shared

Public Class UsersReport
     Inherits System.Web.UI.Page     Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load          Dim reportPath As String = (Server.MapPath("~\Reports\rptUsers.rpt"))        Dim rpt As New ReportDocument        rpt.Load(reportPath)        Dim connectionInfo As New ConnectionInfo()          With connectionInfo               .ServerName = "servername"               .DatabaseName = "database"               .UserID = "username"               .Password = "password"          End With          For Each table In rpt.Database.Tables               Dim tableLogonInfo As TableLogOnInfo = table.LogOnInfo               tableLogonInfo.ConnectionInfo = connectionInfo               table.ApplyLogonInfo(tableLogonInfo)          Next          crViewer.ReportSource = rpt     End Sub

End Class

 

Edited by: Ludek Uher on Jan 24, 2011 2:27 PM

VS2010 +OutOfMemoryException (SetTableLocation and Replace Connection methods failed)

$
0
0

We created a windows based application with Virsual studio 2010 & Crystal Report & NET Framework 4.

During

objRpt.SetDataSource(ds.Tables(0))

OutOfMemoryException was thrown . The table is too big. I saved DS to xml and tried to use RAS to SetTableLocation.

The code works fine on some projects  but on the big one  throwing an error out:

"Logon failed.

Error in File temp_1708867f-4479-4904-8666-456b84fa2d63 {CD095C31-6A80-4412-B4E2-C11B2DCDE359}.rpt:

Unable to connect: incorrect log on parameters."

 

I tried to use Replace Connection method (below) but it did not work for me.

"Error in File temp_...rpt:

Invalis section."

What am i doing wrong?

Please help. Thanks in advance

 

SetTableLocation code

 

    Private Sub getXML(ByVal m_boReportDocument As CrystalDecisions.CrystalReports.Engine.ReportDocument, ByVal dtb As System.Data.DataTable)
      

Dim m_boReportClientDocument As ISCDReportClientDocument
        m_boReportClientDocument = m_boReportDocument.ReportClientDocument
        Dim m_boConnectionInfo As ConnectionInfo
        Dim m_boAttributes As New PropertyBag()
        Dim m_boLogonInfo As New PropertyBag()
        Dim m_boTable As CrystalDecisions.ReportAppServer.DataDefModel.Table
        Dim tempFileName = "c:\a.xml"
        dtb.WriteXml(tempFileName, XmlWriteMode.WriteSchema)
        m_boLogonInfo.Add("XML File Path", tempFileName)
        m_boLogonInfo.Add("Internal Connection ID", "{680eee31-a16e-4f48-8efa-8765193dccdd}")
        m_boAttributes.Add("QE_DatabaseName", "")
        m_boAttributes.Add("Database DLL", "crdb_adoplus.dll")
        m_boAttributes.Add("QE_DatabaseType", "ADO.NET (XML)")
        m_boAttributes.Add("QE_ServerDescription", "NewDataSet")
        m_boAttributes.Add("QE_LogonProperties", m_boLogonInfo)
        m_boAttributes.Add("QE_SQLDB", "False")
        m_boAttributes.Add("SSO Enabled", "False")
        m_boConnectionInfo = New ConnectionInfo()
        m_boConnectionInfo.Attributes = m_boAttributes
        m_boConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE
        Dim boTables As CrystalDecisions.ReportAppServer.DataDefModel.Tables
        boTables = m_boReportClientDocument.DatabaseController.Database.Tables
        m_boTable = New CrystalDecisions.ReportAppServer.DataDefModel.Table()
        m_boTable.ConnectionInfo = m_boConnectionInfo
        m_boTable.Name = dtb.TableName.ToString
        m_boReportClientDocument.DatabaseController.SetTableLocation(boTables(0), m_boTable)


        m_boReportClientDocument.VerifyDatabase()

End Sub

 

Replace Connection code:

   Private Sub getXML1(ByVal m_boReportDocument As CrystalDecisions.CrystalReports.Engine.ReportDocument, ByVal dtb As System.Data.DataTable)
        Dim m_boReportClientDocument As ISCDReportClientDocument
        m_boReportClientDocument = m_boReportDocument.ReportClientDocument
        Dim oldConnInfo As CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo
        Dim oldConnInfos As CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfos
        oldConnInfos = m_boReportClientDocument.DatabaseController.GetConnectionInfos(Nothing)

        Dim m_boConnectionInfo As ConnectionInfo
        Dim m_boAttributes As New PropertyBag()
        Dim m_boLogonInfo As New PropertyBag()
        Dim tempFileName = "c:\a.xml"
        dtb.WriteXml(tempFileName, XmlWriteMode.WriteSchema)
        m_boLogonInfo.Add("XML File Path", tempFileName)
        m_boAttributes.Add("QE_DatabaseName", "")
        m_boAttributes.Add("Database DLL", "crdb_adoplus.dll")
        m_boAttributes.Add("QE_DatabaseType", "ADO.NET (XML)")
        m_boAttributes.Add("QE_ServerDescription", "NewDataSet")
        m_boAttributes.Add("QE_LogonProperties", m_boLogonInfo)
        m_boAttributes.Add("QE_SQLDB", "False")
        m_boAttributes.Add("SSO Enabled", "False")
        m_boConnectionInfo = New ConnectionInfo()
        m_boConnectionInfo.Attributes = m_boAttributes
        m_boConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE

        For I As Integer = 0 To oldConnInfos.Count - 1
            oldConnInfo = oldConnInfos(I)
            m_boReportClientDocument.DatabaseController.ReplaceConnection(oldConnInfo, m_boConnectionInfo, Nothing, CrystalDecisions.ReportAppServer.DataDefModel.CrDBOptionsEnum.crDBOptionDoNotVerifyDB)

         Next

        End Sub

unable to start print job in crystal report

$
0
0

I am  using Crystal Report for visual studio and  using web form (C#) for launching the reports.  Reports are launching fine.  We are using Activex printing for printing the reports, in our c# code , when i click print icon its opening dialog box for print , but when i click on print its giving me dialog box

   unable to start print job  . i have to restart server to get rid of this error,please give me the solution

In Production server Barcode font (3 of 9 ) is not working in crystal report in VS 2010

$
0
0

Hi,

 

we used SAP crystal report in VS 2010 in local machine and in production server we deployed changes.

 

In Production server we installed 30f9 barcode font.

 

Our production server 64 bit system and site is 32 bit. So that we installed SAP 32-bit run time msi in production server. We are getting report but barcode is not coming in report(generated PDF from crystal report).

 

FYI... we are able to use 3 0f 9 font in Notepad. But it is not working in Report.

 

Thanks in advance

Vinay

Load report failed

$
0
0

I am trying to display a report on two of my tables. However the report is not loading. The other reports in my project are loading very well with no problems at all, but this particular one is not loading. Once in a while it loads but after having given me two error messageboxes with "Load report failed" message and then after these messageboxes it then loads the report. In the other scenario it just gives you the "Please wait while the document is processing" message in the crystalreportviewer and hangs like that. What can I do to solve this?

 

Other reports are loading very well.But the reports on these two tables are the ones that are posing the challenge.


CR2008 - "The system cannot find the path specified"

$
0
0

Hi,

 

I have a report designed with CR 2008.

 

In my VB.Net programm I execute a "CrystalDecisions.CrystalReports.Engine.ReportDocument.Export" to export the report f.ex. to pdf.

This works fine.

 

Now I add a incorrect formula to the report with {TSQLTable.TField_ThatDoesNotExist} = "Otto".

 

When I export the report I receive now "The system cannot find the path specified" which does not reflect the real problem.

 

When showing the report with the incorrect formula in the Viewer, I get the correct error message

 

This Field name is not known

Details: errorKind

Error in file....

 

So why doesn't the export show the correct error message?

 

Thanks

 

Patrick

System.IO.FileLoadException when I want to print something

$
0
0

Hi, I am using VS 2010, I have the latest version of CR (13.0.5).

When I launch my project (C#) in debug there is no problem I can print what I want and with print preview.

I do a setup of my solution and when I install my application, if I try to print something the application stop with error.

When I see in windows error there is this:

Application : ArteliServeurWin.exe


Version du Framework : v4.0.30319


Description : le processus a été arrêté en raison d'une exception non gérée.


Informations sur l'exception : System.IO.FileLoadException


Pile :


   à System.Reflection.RuntimeAssembly._nLoad(System.Reflection.AssemblyName, System.String, System.Security.Policy.Evidence, System.Reflection.RuntimeAssembly, System.Threading.StackCrawlMark ByRef, IntPtr, Boolean, Boolean, Boolean)


   à System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(System.Reflection.AssemblyName, System.Security.Policy.Evidence, System.Reflection.RuntimeAssembly, System.Threading.StackCrawlMark ByRef, IntPtr, Boolean, Boolean, Boolean)


   à System.Reflection.RuntimeAssembly.InternalLoadAssemblyName(System.Reflection.AssemblyName, System.Security.Policy.Evidence, System.Reflection.RuntimeAssembly, System.Threading.StackCrawlMark ByRef, Boolean, Boolean, Boolean)


   à System.Reflection.RuntimeAssembly.InternalLoadFrom(System.String, System.Security.Policy.Evidence, Byte[], System.Configuration.Assemblies.AssemblyHashAlgorithm, Boolean, Boolean, System.Threading.StackCrawlMark ByRef)


   à System.Reflection.Assembly.LoadFrom(System.String)


   à CrystalDecisions.ReportAppServer.DataSetConversion.DataSetConverter.DataSetProcessingDelegate(IntPtr)

 

How can I solve this?

I precise that my app.config file contain :

<startupuseLegacyV2RuntimeActivationPolicy="true"><supportedRuntimeversion="v4.0"sku=".NETFramework,Version=v4.0"/></startup></configuration>

Thank you for your answer, Gwenael

'Suppress embedded field blank lines' doesn’t work with CRRuntime_32bit_13_0_1 - CRRuntime_32bit_13_0_5 when the last field in the line is NULL or NOTHING

$
0
0

We develope Software in Microsoft Visual Studio 2010 (VB.NET). The Reports we create with Crystal Reports v10 (we also tried the newest Version v11). We use the 'CRforVS_13_0_5' to call the report in VB.NET.

 

The report that doesn't function correctly includes a textbox with the option 'suppress embedded field blank lines'. In this textbox are a few database-fields. If the report is generated as preview in CRv10 the result is correct. But if the report is generated with the CRRuntime_13_0_5 the lines, where the last field is nothing(NULL) or empty, will be suppressed too. In VB6 (with his CR-Runtime) there was no difference between the preview in CRv10 and the called report.

 

Example:

 

Fields:                         Value:

{Name}:                      'name'

{Prename}:                 DB-Null

{Street}:                      'street'

{Street-Number}:      DB-Null

{City}:                          'city'

 

Textbox (Definition):

{Name} {Prename}

{Street} {Street-Number}

{City}

 

Result CRv10 preview

name

street

city

 

Result CRRuntime
city

 

Is there a solution to get the same result in CR-Runtime as in the preview of CRv10?

 

Thanks.

FYI - Issue with too many .rpt files

$
0
0

While upgrading a Visual Studio 2010 web application hosted under Server 2003/IIS 6.0 to a Visual Studio web application hosted under Server 2012/IIS 8 I ran into an interesting problem.  After installing the latest crystal runtime files on the web server I was adding the crystal reports one at a time which included an .aspx page with a crystal viewer and the appropriate .rpt file and things were working fine until they stopped.

 

To make a long story short, in one folder there are about 20 crystal reports.  I got a couple of them working by creating the .aspx pages and copying over the .rpt files.  Thinking everything is looking good I then copied the other 18 or so .rpt files to get them in place and then the web server would hang forever when requesting any crystal report.  I don't know what the number of .rpt files in the folder was to start this issue but what I did in the end is to create a sub folder for every single report.

 

Even in the old environment I noticed certain report that seem slow to load especially after site updates were deployed to the web server.  Now that they are all in their own folder the come up super fast comparatively.  I don't know what happens but it seems maybe IIS has an issue compiling something when there are so many .rpt files in one folder?  Not sure, there were no entries in the event logs and no entries at all in the web log files even indicating I ever requested an .aspx page with a crystal report in it.

 

So just an FYI in case someone else ever runs into this issue.  YMMV

CrystalReportsViewer v.14 in Export Dialog 'From: ' 'To:' fields enabled but cannot insert value in IE 8

$
0
0

Hi,

 

I'm working on issue in Crystal Reports, i believe it is issue in CrystalReportsViewer:

 

In IE8 for some reason in Export dialog, for export to pdf I cannot modify From:  and To: pages on the dialog. In IE9, IE7 dialog seems to be working fine.

 

I noticed that logic in html behind 'From text field' looks in html:

 

<input oncontextmenu="event.cancelBubble=true;return true"

    style="width: 50px; margin-top: 1px; margin-bottom: 1px; padding-left: 5px; padding-right: 2px; height: 16px; margin-left: 0px;"

    onfocus="_CW.TextFieldWidget_focus(this)" onblur="_CW.TextFieldWidget_blur(this)"

    onchange="_CW.TextFieldWidget_changeCB(event,this)"

onkeydown=" return _CW.TextFieldWidget_keyDownCB(event,this);"

onkeyup=" return _CW.TextFieldWidget_keyUpCB(event,this);"

onkeypress=" return _CW.TextFieldWidget_keyPressCB(event,this);" type="text"

ondragstart="event.cancelBubble=true;return true"

onselectstart="event.cancelBubble=true;return true"

class="textinputs textDisabled" id="<id>" name="<name>" title="" value="" disabled=""/>

 

I suppose that input element events don't work properly for some reason..

 

The question - where can I find javascript source functions behind these events to change them?

May be try some other idea?

 

Thanks!

Click to set formula value which sorts report

$
0
0

Greetings,

 

I'm new to the forums and also fairly new to Visual Studio. I've been working with CR for the past 4 years and during that time we have used Datalink Viewer for our employees to view reports. Our company keeps growing and it is becoming a bit difficult to keep up with maintaining reports as the CR and DL softwares are changing and improving. So I've been doing some research and have come across the idea of a web portal for our reports which will enable our employees to view the reports in a web browser.

So far things are going well and most of our simple reports are displaying and working fine. But we have some reports that use a specific functionality of DL which is the click to sort functionality. Basically, one creates a set of formulas in the report header which contain a value. When the user clicks on one of the formulas, the value is passed to a different formula, which  in turn dictates how the report is sorted. When changing the sort criteria, the report does not need to run again, it merely goes through the cursor and resorts accordingly. The issue is, that the CR Report Viewer plugin in VS 2010 doesn't allow for a formula field in the header to be clicked. When I try to click on the formula field, it just highlights the field but nothing happens.

Is there any way to make what I have described possible with CR and VS2010? I know this is a long post and if you need any more information, please feel free to ask. Any and all help would be greatly appreciated! I have posted this in some VS forums before, but my posts simply got removed since they were not posted in the right forum, according to the moderators.

 

Thank you very much in advance for your help,

 

Chris

Crystal Reports 2008 R3 leak memory /High Memory Usage

$
0
0

Hello,

We using Crystal Reports 2008 R3 on W2K3 (x32) server.

We faced with leak and high memory usage.

We've saved dump and sent it to Microsoft IIS advanced support level.

The answer we received form Microsoft is pointed to SAP issue:

 

On the dump we crashed because:

0:050> .ecxr

eax=00000000 ebx=00000000 ecx=00000035 edx=18abc44c esi=00000000 edi=00000000

eip=18ab512f esp=3684ebe8 ebp=0000040d iopl=0         nv up ei pl nz ac pe nc

cs=001b  ss=0023  ds=0023  es=0023 fs=003b  gs=0000 efl=00010216

uf12manager!UFManagerTerminate+0x18cf:

18ab512f 8b4002 mov     eax,dword ptr [eax+2] ds:0023:00000002=????????

0:050> kvn

  *** Stack trace for last set context - .thread/.cxr resets it

# ChildEBP RetAddr  Args to Child

WARNING: Stack unwind information not available. Following frames may be wrong.

00 3684ec14 18ab24f1 0000040d 00000000 37f6e770 uf12manager!UFManagerTerminate+0x18cf

01 00000000 00000000 00000000 00000000 00000000 uf12manager!UFManagerSetProductLocale

 

lmvm uf12manager

start end        module name

18ab0000 18ac8000   uf12manager (export symbols)       uf12manager.dll

    Loaded symbol image file: uf12manager.dll

    Image path: C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\uf12manager.dll

    Image name: uf12manager.dll

Timestamp:        Thu Apr 22 15:41:27 2010 (4BD043F7)

CheckSum:         00026410

ImageSize:        00018000

    File version: 12.3.0.601

    Product version:  12.3.0.601

    File flags:       0 (Mask 3F)

    File OS:          4 Unknown Win32

    File type:        2.0 Dll

    File date:        00000000.00000000

    Translations: 0409.04b0

    CompanyName: Business Objects

ProductName:      Crystal Reports Professional For Windows

    InternalName: uf12manager.dll

    OriginalFilename: uf12manager.DLL

    ProductVersion:   12.3.0.601

FileVersion:      12.3.0.601

    PrivateBuild: 12.3.0.601

    SpecialBuild: 12.3.0.601

    FileDescription:  uf12manager DLL

    LegalCopyright:   Copyright 1999-2008 Business Objects. All rights reserved.

    LegalTrademarks:  Crystal Reports is a trademark of Business Objects or one of its subsidiaries.

Comments:         Crystal Reports is a trademark of Business Objects or one of its subsidiaries.

 

I will be appreciate you for assistance or any ideas about this issue.

Regards,

Steve Rekun


Error has occurred while attempting to load the Crystal Reports runtim

$
0
0

Hi all,

 

I'm using VS 2008 to create a business app that uses Crystal Reports to display and print reports. I'm distributing it mostly to Win7 Pro 64 bit machines.

 

The program is working on ALMOST every machine, but I just installed it on a new laptop, and whenever I access the Crystal part of the program, I get the classic "Either The Crystal Reports registry key permissions are insufficient or the Crystal Reports runtime is not installed correctly".

 

Googling this error, the UNIVERSAL answer is "Target your VB application at x86 only." The problem is, I ALREADY DID THAT. And this program works on all my OTHER Win7 64 bit machines. It's just this one.

 

Can anyone help? I'm at my wits end. I've tried installing, uninstalling, installing while right-clicking and choosing Run as Admin...

 

Thanks,

 

Andy Oliner

What is what SAP Crystal Reports version for Visual Studio has limitations?

$
0
0

Hello,

I would like to know if SAP Crystal Reports version for Visual Studio has limitations as we met him in the version 11.5.

I explain you my problem, we maintain an application in ASP.Net who shows Crystal Report ( 11.5 ) states and this one undergoes limitations of access to the simultaneous delais of 20 requests.

That is why before planning a change of version, i have to know that limitation.

 

Saddened for my inferior English, it is not my language.

Best Regards.

Suppress Printing If No Records System.DivideByZeroException.

$
0
0

With one of our customers, we've got a couple of problems.  The first is that if the user customizes their report and checks "Suppress Printing If No Records" in SAP Crystal Reports 2008 or 2011, when we go to print it using the SAP Crystal Reports 2011 run-time, we get a System.DivideByZeroException.

 

Interestingly enough, we can create a completely blank report, with no query, no parameters, and no data on the page and recreate the same problem.  If we check "Suppress Printing If No Records", then we get the DivideByZeroException.  If we uncheck it, then the completely blank report prints without the error.

 

We are using SAP Crystal Reports for Visual Studio (13.0.5 latest) to do this.  We can also duplicate the issue in prior versions.  If we print the report via the 2008 or 2011 standalone designer, there is no error and "Suppress Printing If No Records" works correctly.

 

I've seen the SAP Note  (1487765) on workarounds, however they are not acceptable workarounds for our situation.  We have 400 reports plus customers can customize their own.  We have customers who want to print blank reports, and some that do not, and performance is critical.  We can't be hard-coding workarounds into our printing that would jeopardize flexibility and performance when it is very clearly a deep, internal Crystal Reports bug.

 

Is there a way to get this reported as a critical bug and get it fixed?

 

Here's the stack trace:

 

System.DivideByZeroException: Attempted to divide by zero.

   at CrystalDecisions.Shared.PrintingHelper.PrintPage(PrintPageEventArgs e, PageObject page, PrintLayoutSettings layoutSettings, Int32& currentPageNumber, Int32& currentHorizontalPageNumber)

   at CrystalDecisions.CrystalReports.Engine.FormatEngine.PrintPageEventHandler(Object sender, PrintPageEventArgs e)

   at System.Drawing.Printing.PrintDocument.OnPrintPage(PrintPageEventArgs e)

   at System.Drawing.Printing.PrintDocument._OnPrintPage(PrintPageEventArgs e)

   at System.Drawing.Printing.PrintController.PrintLoop(PrintDocument document)

   at System.Drawing.Printing.PrintController.Print(PrintDocument document)

   at System.Drawing.Printing.PrintDocument.Print()

   at CrystalDecisions.CrystalReports.Engine.FormatEngine.PrintToPrinter(PrinterSettings printerSettings, PageSettings pageSettings, PrintLayoutSettings layoutSettings, Boolean reformatReportPageSettings)

   at CrystalDecisions.CrystalReports.Engine.ReportDocument.PrintToPrinter(PrinterSettings printerSettings, PageSettings pageSettings, PrintLayoutSettings layoutSettings, Boolean reformatReportPageSettings)

   at CrystalDecisions.CrystalReports.Engine.ReportDocument.PrintToPrinter(PrinterSettings printerSettings, PageSettings pageSettings, Boolean reformatReportPageSettings)

 

 

The second issue is that when we open the report in SAP Crystal Reports for Visual Studio designer in Visual Studio 2010 or 2012, the Report Options page is missing a group of options that appear in the SAP Crystal Reports 2008 and 2011 standalone report designers:

  • Save Data With Report
  • Suppress Printing If No Records
  • Perform Query Asynchronously
  • Show Preview Panel
  • Display Alerts on Refresh
  • Read-only

 

SAP Crystal Reports For Visual Studio:

SAP Crystal Reports for Visual Studio Report Options.jpg

SAP Crystal Reports 2008:

SAP Crystal Reports 2008 Report Options.jpg

Is there a way to get these options back?  The inconsistency between the two designers is concerning.

 

Thanks for the help!

 

Kyle

Runtime licensing question

$
0
0

I would like even more clarification, if I may, on this document: http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/70bd6328-4128-2d10-7882-d7b95418dbaa?QuickLink=index&overridelayout=true&50676319570534, found in this link:  http://scn.sap.com/docs/DOC-21575

 

Beginning with Page 5 and Application Redistribution.  I believe we will need to support both Client Applications and Server Applications.

 

We will write our reports in the Crystal Designer and distribute these reports to our customers.

We will create a Windows app (exe) created in VB.NET using the SAP Crystal Reports for Visual Studio developer.  It will use the the Crystal Reports methods and properties to render the report for our customers.  Depending on the customer, the Crystal runtime may be installed on a client machine or on a Terminal Server.

 

Based on the above document, it sounds like we will have a combination of both Client Application and Server Application.

It also sounds like for customers with a Client Application, there is no licensing required.  But, for the customers with a Server Application there will be licensing required.

 

What I am trying to determine is if we will need a runtime license for the Server Application?  And, if so, do we need to purchase the SAP Crystal Reports runtime server license (formerly Crystal Reports Developer Advantage) or an OEM contract?

 

Can someone please clarify and let me know prices?

 

Thank you.

Error running report in VS 2010

$
0
0

bobj.crv.stateManager.setComponentState('CrystalReportViewer1__UI',eval('('document.getElementById('__CRYSTALSTATECrystalReportViewer1').value')'));

 

CR 13.0.2 versions of the controls with VS 2010. These are both in eval mode to get crystal reports working and tested before buying the product, so far no luck. creating a simple report to a dataset errors on this line above. Multiple users get this error by doing a google search but no one seems to have a solution. Thanks for your help in advance.

Viewing all 3636 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>