Crystal report problem

Post Author: ranganadhkodali
CA Forum: Authentication
Dear Group Members,
I have a vary big problem with crystal report XI edition, I am
unable to find the cause of the problem actually.
I am using Crystal Report XI Developer version to build
reports in my development system, which I am, using SQL server 2005 as a
backend database and u201CUn-Typedu201D Pull
model for generate reports, in that my system those are working very good.
For distribute those reports to the other clients, I was
prepared one small windows application in .net and I placed one shared
directory. Application will show all report files placed under the shared
directory by the user selection.
If User selects one report, I am taking the selected report
from the shared directory and open with the .net embedded crystal report
viewer, while opening I was filling the
server login information(By code itself).
Any way application also working very well in my development
system, for deploys this application I added crystal report redist package that
is came with the visual studio 2008.
When I run the same application, in deployed
system, it showing login database dialog with empty database name, and one more
thing is that database text box also showing like disable. So even I unable to
give database credential with in dialog. I donu2019t understood what is the cause
of the problem?
Almost same problem was happen before 4 months back for some
other project, @ that time I rebuild my report with the PUSh model, and it
working well. But this case, I donu2019t have a chance to do like that, because daily
I should generate some kind of reports, needs of management. That management
staff will check reports from with that my distributed application. For these
all things, I canu2019t rebuild and redistribute my application every time if I add
new report. So that I placed one shared folder and, I keep update all changed
reports files in that shared folder, my application will show them.
What is the cause of the problem?
Is it problem with connection? Then it should not work with
in my development system also
Then it probably problem with the deployment? Then I am able
to view the initial report, problem came only when I refresh the data?
If problems with deployment, then how it is works for push type reports, it giving problem
for only pull type reports?
thanks and regards Ranganadh Kodali

Please visit:
www.geocities.com/pmk16
Regards,
pmk16

Similar Messages

  • Crystal report problem in add-on(CrystalDecessions.Crystal Engine not found

    HI All,
    i am having a problem with crystal report not opening.
    what is the solution to run the add-on it i ssaying that Crytsal Engine 10.5.3700.0 is not found in assenmly or specified path.
    how can i resolve this error. do i need to add some file while creating the add-on.If so what i have to add.
    Please help me.
    Thanks & Regards
    omprakash

    hi,
    Check this thead
    Problem with Crystal reports deisgner
    Jeyakanthan

  • Crystal Reports - Problema ao gerar código de barras de boleto

    Boa tarde a todos! Preciso de um help.
    Desenvolvi o boleto de um cliente em Crystal Reports, mas estou encontrando um pequeno problema ao gerar determinados códigos. O número de código de barras é gerado corretamente pela DLL do BankSync. Até aí tudo bem.
    Eu tenho a fonte Interleaved 2 of 5 - Regular, que é composta por 3 aquivos .ttf, e duas DLLs (que são responsáveis por converter o número gerado pelo BS em símbolos, para que a fonte traga corretamente a seqüência de barras).
    Se eu tentar pegar o campo do B1 onde é gravado o número do código de barras (BarCodeNum) e colocar diretamente a fonte, naturalmente ele vai me trazer um código de barras errado, pois antes eu devo converter essa sequência numérica! Isso eu sei.
    Estou utilizando a seguinte fórmula para a conversão no Crystal (que fica disponível depois que eu instalo as DLLs):  BarcodeI2of5 (BarCodeNum) . Ela me traz como resultado uma seqüência de símbolos, que, ao colocá-la no corpo do documento e selecionar a fonte Interleaved 2 of 5 - Regular, ele me traz a sequência correta de barras!
    Exemplo:
    Número do código de barras: 03396517100000100009415546700000000002050005
    O que a DLL da fonte retorna com a fórmula: «$Hb2!!!*JXOg!!!!#&!&¬
    O código de barras sai perfeito e é lido por qualquer leitor ótico!
    MAS AFINAL, QUAL O PROBLEMA?
    Alguns caracteres provavelmente não estão disponíveis na fonte, ou a fórmula está gerando algum caractere que não deveria, que são:
    Ç   e   ¶    (por enquanto só identifiquei esses)
    E quando o resultado da fórmula traz esses caracteres em específico em alguma posição dela, o local onde ele deveria aparecer uma sequência de 5 barras, aparece aquele retângulo característico de quando a fonte não suporta algum acento ou caractere.
    Agora eu não sei o que está errado:
    - Ou a fórmula não deveria trazer de jeito nenhum os caracteres Ç e ¶ como resultado, e obviamente minha fonte não deveria suportá-los.
    - Ou a fórmula está correta e deve realmente trazer os caracteres Ç e ¶ como resultado e o problema está na minha fonte, que deveria suportá-los.
    Alguém já passou por este problema e pode me ajudar?
    Qual das duas possibilidades é o que está acontecendo comigo?
    Já tentei instalar outras DLLs e utilizar outras fontes, mas o problema persiste.
    Preciso saber se o erro está na conversão que a DLL faz ou se está na fonte.
    Quero deixar claro que isso não acontece em todos os boletos. É somente naqueles que a fórmula retorna os caracteres citados.
    Muito obrigada!
    Aline Garroux.

    Prezada Aline, boa tarde.
         Baixa a fonte disponível neste link: http://www.netfontes.com.br/dow.php?cod=3of9_barcode, após coloque o arquivo "3OF9_NEW" na pasta "C:\Windows\Fonts" a qual será instalada automaticamente.
    Espero ter auxiliado.

  • Visual Studio 2005, embedded Crystal Report problem

    I am very new at .NET, and this is my first post to this forum.
    I've created a Crystal Report within a project using Visual Studio 2005 Professional Edition, on a Windows XP machine.  I set the report as the ReportSource for a CrystalReportViewer on the main form.  I can see data in the report in design view when I right-click on any of the fields and click "Browse Field Data".  But when I preview the report, or run it in the application, all I see are the column headings and report title.  I am hoping I am leaving out something obvious.  I've researched this for two days without success. 
    The report's detail section is NOT suppressed, btw.
    FYI (although I think it might not be relevant, because I don't see the data when I preview it in Visual Studio either) the report is displayed in the application when a button is clicked, as follows:
        Private Sub cmdRunLog_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdRunLog.Click
                CrystalReportViewer1.DisplayToolbar = True
                cmdRunLog.Text = "Hide Run Log"
                cmdUpload.Enabled = False
                cmdReports.Enabled = False
                cmdManualRun.Enabled = False
                CrystalReportViewer1.Visible = True
                CrystalReportViewer1.Height = 600
                CrystalReportViewer1.Width = 1000
                CrystalReportViewer1.Left = 10
                Dim strReportSQL As String = "Select * From dbo.PositivePayRunLog"
                Dim DA As New SqlDataAdapter(strReportSQL, conPP)
                Dim DS As New DataSet
                'Variable to assign the report name
                Dim strReportPath As String
                DA.Fill(DS)
                strReportPath = "c:\Positive Pay\PositivePayRunLog.rpt"
                If Not IO.File.Exists(strReportPath) Then
                    _ErrorText = "Unable to locate report file:  " & strReportPath
                    ' Throw (New Exception("Unable to locate report file:" & vbCrLf & strReportPath))
                    GoTo cmdRunLog_Click_Error
                End If
                Dim rptDocument As New CrystalDecisions.CrystalReports.Engine.ReportDocument
                rptDocument.Load(strReportPath)
                rptDocument.SetDataSource(DS.Tables(0))
                rptDocument.Refresh()
                CrystalReportViewer1.ShowRefreshButton = False
                CrystalReportViewer1.ShowCloseButton = False
                CrystalReportViewer1.ShowGroupTreeButton = False
                CrystalReportViewer1.ReportSource = rptDocument
    end sub
    I'm hoping that this is a common problem with an easy answer
    Thanks,
    John Sandin

    >
    Jason Everly wrote:
    > Did you design the report using OLEDB or ODBC instead of against the schema of the dataset you are passing?  It could be seeing data from the database when browsing.
    >
    > Technically you should design the reports against the schema of the dataset you are going to be passing, not against ODBC or OLEDB.
    >
    > You can usually get away with passing datasets to a report created against OLEDB, but if issues occur then you need to redesign them against the ds schema.
    >
    > Jason
    I have done both, but I was currently using OLEDB.
    I redesigned the report to use a dataset containing the correct data.  Now,  when I browse the fields, I see nothing.  When I preview the report, I see what appears to be dummy data (a list of colors, etc).
    But the GOOD news is:  When I run the report in the application, I see the correct data!
    Thanks!  I think I'm good to go now.  I will also apply the other suggestions, and try to simplify things.

  • Oracle - crystal report problem

    Hi,
    I have a package with few functions in it that returns certain values like name, address, state and zip
    But while I am passing these valus to get the result on the crystal report viewer on a web browser, I am not getting any special characters like dashes, commas, parenthesis...ends up in error..
    For example
    lets say u have a function named 'address' returning something like "123 my address, NY 10001" (COMMA is the problem here)
    I am trying to pass these values to the Crystal Report on the web thru input tag and found that I can only get up tp "123 my address".... the rest is being ignored.
    HTP.p ('<input type="hidden" name=promptex-p_address@subreport value=" ' || address || ' ">' );
    But when I removed the comma, its passing everything
    Please help....and sorry if I am in the wrong section of the forum
    San

    Thanks jim. I tried my best I can. Well I disabled the crystal report plugin for the web browser and tried to see the output and the entire returned value from the function is showing up...
    But somehow when it processed inside crystal, its(comma) getting ignore with the rest of the line no matter what u do with the input
    I am started to thinking like this is kind of a bug. But its my 2 cent thinking, if u guys have any suggestions please post it....
    I know this is not a place for typical crystal report discussion area, but I posted it because oracle products are also involved in this matter
    Thanks...
    san

  • Crystal Report - problem with passing parameters from J2EE app

    i'm trying to pass a few parameters from my java application to a crystal report using the code below:
    ParameterField pfield1 = new ParameterField();
    ParameterField pfield2 = new ParameterField();
    Values vals1 = new Values();
    Values vals2 = new Values();
    ParameterFieldDiscreteValue pfieldDV1 = new ParameterFieldDiscreteValue();
    ParameterFieldDiscreteValue pfieldDV2 = new ParameterFieldDiscreteValue();
    pfieldDV1.setValue("1056");//dform.getSelectedPeriod());
    pfieldDV1.setDescription("termId");
    vals1.add(pfieldDV1);
    pfield1.setReportName("");
    pfield1.setName("@p_termId");
    pfield1.setCurrentValues(vals1);
    fields.add(pfield1);
    // check here for null condition otherwise will throw nullpointerexception
    pfieldDV2.setValue("elect");
    pfieldDV2.setDescription("allocType");
    vals2.add(pfieldDV2);
    pfield2.setReportName("");
    pfield2.setName("@p_allocType");
    pfield2.setCurrentValues(vals2);
    fields.add(pfield2);
    this report calls a stored procedure (sql server). the report displays the data but the same is not the case when i call ity from my java application. with a single parameter it works fine (even though i get a "Some parameters are missing values" ERROR on the console. But when i pass, say 2 parameters, it give me the above error first and then "JDBC Error: Parameter 2 not set or registered for output"
    Can anyone bail me out of this one?
    thanks,
    ptalkad

    I don't know about naming conventions, but could the @ signs in the variable names cause a problem?
    How have you set up the mapping in Crystal?
    Is this parameter 2 an "out" parameter returning a value?
    What version of Java are you using?
    Version of Crystal?
    What JDBC driver?

  • Crystal report problem when printing

    We have developed a crystal report that adds extra pages when i physically try to print the report.
    In the viewer it does not have the extra pages, but when i print it prints a blank page after every printed page.
    The conclusion of one of the support employees was that extra lines are there when printing, but not when i view it in the crystal viewer.
    Version : 11.0.0.1282.
    The viewer im talking about is the integrated preview of crystal reports.
    Any help is greatly appreciated.
    Edited by: RolandWorms79 on Sep 2, 2009 10:41 PM

    Like I said, let me send the report to you so you can try. I have tried everything on this green earth to get that report to print correctly. I must say im getting very unsatisfied and frustrated because everyone seems to have the solution (either upgrade x or y), but nobody is willing to look at my report and try themselves.
    I have created another call for support (which is ridiculous, because its my second call) and nobody has contacted me yet.
    (the support process is flawed anyway, because i cant seem to be able to register my call anywhere, i miss some number ..)
    Helping is very simple. If you think its the printer driver and you have never had such a problem before, try it yourself, see what happens. I have been told to buy the new crystal, because that would solve it. it did not. Upgrade to the newest version, that would help, it didnt. try to change some settings in CR, does not help. Try a different printer, did not help.
    To be honest, i have had it with try this or try that. My suggestion, try yourself. If someone had done that from the start i would have solved this problem ages ago.
    I am working on this problem for about 3 months(!!!) now and i just simply need a solution.
    So if anybody has a suggestion that does not include upgrade to x or y, please let me know.

  • Crystal report problem on window 2003 server

    Hi
    We had developed a web based application using .Net 2.0 (C#) , Crystal reports (bundled version within VS2005) on Window XP, SQL Server 2005, we are able to see all the reports on this development enviroment, but when the application is deployed on Windows 2003 server , IIS 6.0 and SQL server 2005 , we are not able to view the reports we are thrown with an error as
    Failed to open a rowset. Details: ADO Error Code: 0x Source: Microsoft OLE DB Provider for SQL Server Description: Procedure or Function 'sp_xxxx' expects parameter '@ppppp', which was not supplied. SQL State: 42000 Native Error: Failed to open a rowset. Error in File
    Could you please explain what the problem is ? as we are stuck with this problem for the migration of application to the user community.
    Regards
    varma

    We have same problem
    does anyone have the answer?

  • Crystal Reports  problem

    Hi Guys,
    i had developed many more reports ie crystal reports 10 successfully in my Pc.But while going to my client place not able see my reports while clicking added reports in B1 module ie Purchase A/p -> purchase reports in that my report is added while clicking that report it displaying following Error ie myaddon.exe is Encountered or Addon Crystal report is Disconnect we are not able to fix this issue what problem but in my PC its displaying all reports this is OS problem or some other issue i am using windows 2000 proffesional in my Client PC ie windows 2003 server sp1.what is this issue can any solve with brief explantion asap.
    Regards
    ANAND

    Hi
    This is a technical issue and could be addressed in the SAP BUSINESS ONE SDK forum.
    No issues. As you have already posted it here, let me try to help you out.
    Just check for one small thing as to, if .NET framework is installed in the client's computer or not.
    Crystal reports do not have an OS compatibility issue.
    Thanks
    Sudatt

  • Crystal Report problem with VS2005

    Hi
    I have installed evaluation copy of crystal report 2008 for .net. I am using VS 2005.
    I have created reports  using default crystal report that comes with VS 2005(version 10).Reports are upgraded to version 12 and  running fine, but I am not able to use some design time features of report with .net. and these are working well with crystal report s/w.
    1.Tool tip for bar chart doesn't displayed.Where as It displayed in crystal report.
    2.Series option in preview mode to convert particular bar to line is not available.Where as this option is available in crystal report.
    Please suggest.
    Thanks in advance.
    Regards
    Kavita Choure
    Palewar Techno Solutions
    (Mobile Solutions for Your Business)
    [http://www.palewar.com]

    Hi Falk
    Thanks for your prompt response.
    Both embedded designer in VS as well as application have the same problem.
    when I open sample report (.rpt) in embedded designer it has the same problem.
    I also tried after uninstalling crystal report basic then reinstalling crystal report 2008 but it doesn't solve the problem.
    please let me know if you have any more suggestions?
    Thanks in advance.
    Regards
    Kavita Choure
    Palewar Techno Solutions
    (Mobile Solutions for Your Business)
    [http://www.palewar.com]

  • Crystal Report problem with J2EE - OutOfMemory

    Dear All,
    I am having a problem about generating PDF from J2EE (Tomcat, Java 1.4)  WebApplication by Crystal report.
    When generating a PDF it sometimes got an out of memory error.
    However the Web Application is still working fine, just when regenerate the same crystal report the out of memory error occur again. when i generate the other report it works fine.
    Please help .
    Many Thanks

    Hi,
    It's a good idea to set the minimum and maximum heap size to the same value. In any case, don't let the minimum heap size exceed the maximum.
    Stop Tomcat server, set environment variable CATALINA_OPTS, and then restart Tomcat.
    Look at the file tomcat-install/bin/catalina.sh or catalina.bat for how this variable is used.
    For example,
    set CATALINA_OPTS="-Xms512m -Xmx512m"  (Windows)
    export CATALINA_OPTS="-Xms512m -Xmx512m" (ksh/bash)
    setenv CATALINA_OPTS "-Xms512m -Xmx512m"  (tcsh/csh)
    In catalina.bat or catallina.sh, you may have noticed CATALINA_OPTS, JAVA_OPTS,
    or both can be used to specify Tomcat JVM options.
    What is the difference between CATALINA_OPTS and JAVA_OPTS?
    The name CATALINA_OPTS is specific for Tomcat servlet container,
    whereas JAVA_OPTS may be used by other java applications (e.g., JBoss).
    Since environment variables are shared by all applications, we don't want Tomcat to inadvertently pick up the JVM options intended for other apps. I prefer to use CATALINA_OPTS.
    You have specified size by a capiital "M" ?(3072M) use "m".
    Please let me know the results.
    Regards,
    Neeraj

  • Pleas Help me about Crystal report problem

    How to solve this problem. The problem is some time my web application can not connect to crystal report server. And App. log was receord as below.
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Unable to connect to the server: crp.RAS.rptappserver.---- Error code:-2147217387 Error code name:connectServer
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwReportSDKServerException(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.sdk.occa.managedreports.ras.internal.CECORBACommunicationAdapter.request(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.do(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.else(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.sdk.occa.report.application.ClientDocument.close(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.close(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.dispose(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.finalize(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at java.lang.ref.Finalizer.invokeFinalizeMethod(Native Method)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at java.lang.ref.Finalizer.runFinalizer(Finalizer.java(Compiled Code))
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at java.lang.ref.Finalizer.access$100(Finalizer.java(Inlined Compiled Code))
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java(Compiled Code))
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R Caused by:
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R java.lang.NullPointerException
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.sdk.occa.managedreports.ras.internal.CECORBACommunicationAdapter.request(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.do(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.else(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.sdk.occa.report.application.ClientDocument.close(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.close(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.dispose(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource.finalize(Unknown Source)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at java.lang.ref.Finalizer.invokeFinalizeMethod(Native Method)
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at java.lang.ref.Finalizer.runFinalizer(Finalizer.java(Compiled Code))
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at java.lang.ref.Finalizer.access$100(Finalizer.java(Inlined Compiled Code))
    [23/9/2005, 15:02:44:359 ICT] 4c383aad SystemErr R      at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java(Compiled Code))
    For more information
    Web sphere Application server 5.0.2
    JVE 1.3.x
    Crystal Report Enterpire V.10
    All component deployed on Windows 2000 OS.
    Pls. anyone advice me . thank you
    PJ

    How to solve this problem. The problem is some time
    my web application can not connect to crystal report
    server. And App. log was receord as below.
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServ
    erException: Unable to connect to the server:
    crp.RAS.rptappserver.---- Error code:-2147217387Does this give a hint of what to check? Maybe you need to check if the server is running and the server configuration is correct.
    I haven't ever used Crystal Reports, so I can't be very specific. A Google search might help.

  • Crystal Reports - Problem with too long BEx Query technical variable names?

    Hello!
    I have Crystal Reports 2008 SP3 and the SAP BO Integration Kit XI 3.1 SP3 installed and want to access a BEx query on a BW system within my Crystal Report.
    The problem is that the name of the BEx variable is not displayed correctly (just "[]" is displayed for the variable name) as a parameter within Crystal Reports when I import the query. Furthermore I can't navigate through the fields of the query within Crystal Reports.
    The technical names of the BEx query-variables have a length of 12 characters.
    The interessting thing is that if I change the technical names of the BEx query variables to a maximum length of 8 characters everything works fine.
    I use the SAP toolbar within Crystal Reports 2008 to create the report and have the "MDX-driver"-setting selected.
    Has anyone ever had the same problem? Any suggestions?
    I don't want to change the technical names of the variables of my queries...
    thanks,
    Dominik

    Hi!
    Just fixed the problem: The "Transports" for the Integration Kit had to be imported at the BW-System
    regards

  • Several Crystal Reports problems can anyone help?

    I have a software application that was developed with visual studio 2008 C#. It uses the crystal reports included in visual studio 2008 to generate reports but there are several problems that I cannot seem to get resolved. Here is a list of what Iu2019m having trouble with:
    1. I would like my pdf exports to have a bookmark or table of contents on the left side  that shows the different sections but haven't found a way to do this in the visual studio CR version. Is this available in the full stand along version of CR?
    2. I have a cover page on my report where the user can insert a logo image. The problem is that if the logo image has a white background it will turn the white background gray. I have figured out how to resolve this by checking "retain original image color depth.u201D The problem with this is that all the images in my report are larger so the report pdf file size goes from 3mb to 30mb. Is there a way to make the logo image appear as normal without having to check the retain color depth? I have tried adjusting the image in photoshop several different ways but havenu2019t figured it out yet.
    3. Is there a way to adjust line height in a rich textbox in crystal reports? When I put text into a richtextbox and then generate a report the text is very close together as if the line height needs to be increased. When I open the report in visual studio the line height says 1.5 but is grayed out so it canu2019t be adjusted. Iu2019ve tried copying/pasting text in from ms word that has 6pt between text and it looks good in the textbox but when report is created the line spacing goes away.

    I recommed looking at the following forum thread:
    inserted picutre in report with white background shows as grey
    And as per the [Rules of Engagement|http://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement], please create new thread for each of the other queries.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Load crystal reports problem

    Hello Experts
    i created one report and try to load it but it give msg "load report failed" this is my code i used database as xml file and dataset as a table
    Try
                Dim oSubReport As CrystalDecisions.CrystalReports.Engine.SubreportObject
                Dim rptSubReportDoc As CrystalDecisions.CrystalReports.Engine.ReportDocument
                Dim rptView As New CrystalDecisions.Windows.Forms.CrystalReportViewer
                Dim rptPath As String = System.Windows.Forms.Application.StartupPath & "\HOReports\" & rptName
                Dim rptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument
                'dim ss as String ="C:\Documents and Settings\Student\Desktop\9 vilas1.4\bin\HOReports\"
                rptDoc.Load(rptPath)
                For Each oMainReportTable As CrystalDecisions.CrystalReports.Engine.Table In rptDoc.Database.Tables
                    oMainReportTable.Location = System.Windows.Forms.Application.StartupPath & "\HOReports\" & SourceXML
                Next
                For Each rptSection As CrystalDecisions.CrystalReports.Engine.Section In rptDoc.ReportDefinition.Sections
                    For Each rptObject As CrystalDecisions.CrystalReports.Engine.ReportObject In rptSection.ReportObjects
                        If rptObject.Kind = CrystalDecisions.Shared.ReportObjectKind.SubreportObject Then
                            oSubReport = rptObject
                            rptSubReportDoc = oSubReport.OpenSubreport(oSubReport.SubreportName)
                            For Each oSubTable As CrystalDecisions.CrystalReports.Engine.Table In rptSubReportDoc.Database.Tables
                                oSubTable.Location = System.Windows.Forms.Application.StartupPath & "\HOReports" & SourceXML
                           Next
                        End If
                    Next
                Next
    error on this my code
         rptDoc.Load(rptPath)

    As a test, hard code the path, see if that helps.
    Ensure win\temp dir has read / write permissions.
    Try on of our sample apps from here;
    https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples
    vbnet_win_simplepreviewreport will be best.
    What version of CR are you using?
    What updates have you applied?
    What version of .NET are you using?
    Ludek

Maybe you are looking for

  • How can I adjust just the ringer volume on an iPhone 4s

    I have the ringer turned way up because I'm in a noisy work environment, but that also increases the volume for the key click, game sounds, etc.  is there a way to only affect the ringer volume?

  • Disable form item in oracle apex 3.2

    Hi, I am new to oracle apex, please help me from this problem. I'm having form item called "P805_COMP_ID" as text field , i need disable it always, for the same i fallowed some steps with the refrence of the link https://forums.oracle.com/forums/thre

  • I cannot download the newest version of Itunes-

    I've removed the previous version of iTunes and when I visit the iTunes webpage- I get the pop up to save the Binary file and then my computer won't recognize it to save it. 

  • Fireworks CSS Properties panel shorthand

    Hi is where any way insted of: font-family:"Trebuchet MS", Arial, Helvetica, sans-serif; font-size:16px; line-height:140%; color:rgb(168,168,169); text-align:left; to have: color: #A8A8A9; font: 16px/1.4 "Trebuchet MS", Arial, Helvetica, sans-serif;

  • Aperture import of RAW files

    Why does Aperture suddenly not allow me to import RAW files? The message I get is that a specific amount of space is required to import these images, I'm certain that I have the space available on my computer for the import to occur. Please help... T