Crystal report printing problem in Malayalam

Hi,
I have a printing problem in Malayalam in crystal report.The viewer displays the correct font but the printed output displays the square boxes.I have installed the font.I am using Visual studio 2010 and crystal report 13.0 version.what could be the problem???
please help me...!!!

Hi priyashekar,
I’m afraid that it is not the correct forum about this issue, since this forum is to discuss Visual C#. You can post your question in the
Crystal report forum: http://scn.sap.com/community/crystal-reports-for-visual-studio/content?filterID=content~objecttype~objecttype[thread]
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Crystal Reports print preview problem

    Hello
    The problem is that print preview of a report using crystal Report dotnet Print Preview is  making u201Cblank signsu201D inside words. The blank signs occurs near Swedish special signs like u201Cåu201D, u201Cäu201D and u201Cöu201D. Also near u201C.u201D (dot). Maybe there are more signs making this problem.
    The problem occurs for those who have .NetRuntime, or a full installation of Crystal Reports
    The problem started when we installed Crystal Reports 12. In earlier versions we had no problem with this.
    It feels like Crystal Report have some bug in the u201Ctext rendering engineu201D. This is obviously a problem when a customer previews a text before printing it. This preview should look like the printout. Even if the room between two letters not is  a space, there still is a room that is interpreted as a space by a human.
    However, if we zoom to larger % (200%) the preivew is matching the report.
    Regards
    Kamlesh

    Make sure you have SP 2:
    https://smpdl.sap-ag.de/~sapidp/012002523100009038092009E/cr2008win_sp2.exe
    with FP 2.5 on top:
    https://smpdl.sap-ag.de/~sapidp/012002523100002975192010E/cr2008fp25.exe
    If the issue persists, since it is in the CR designer, post to the CR design forum:
    SAP Crystal Reports
    You need to resolve this in the designer, before trying to resolve it in a .NET application.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Hi Expert , crystal report export problem. system not responding

    Hi,
    crystal report export problem. system not responding.
    Thanks
    Rajkumar Gupta

    Dear Raj,
    Please try this
              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 & "\" & rptName
                Dim rptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument
                rptDoc.Load(rptPath)
                rptView.ShowExportButton = True
                rptView.ReportSource = rptDoc
                For Each oMainReportTable As CrystalDecisions.CrystalReports.Engine.Table In rptDoc.Database.Tables
                    oMainReportTable.Location = System.Windows.Forms.Application.StartupPath & "\" & 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 & "\" & SourceXML
                            Next
                        End If
                    Next
                Next
                'Setting Paper
                Dim rawKind As Integer = 0
                Dim printSet As New System.Drawing.Printing.PrinterSettings
                For i As Integer = 0 To printSet.PaperSizes.Count - 1
                    If printSet.PaperSizes.Item(i).PaperName.ToUpper = PaperName.ToUpper Then
                        rawKind = CInt(printSet.PaperSizes.Item(i).RawKind)
                        Exit For
                    End If
                Next
                Dim MyTest As New SaveFileDialog
                rptDoc.PrintOptions.PaperSize = CType(rawKind, CrystalDecisions.Shared.PaperSize)
                rptDoc.ExportToStream(ExportFormatType.Excel)
                'rptDoc.SaveAs("C:\TBKING.xls", True)
                '''How to export the report
                Try
                    Dim CrExportOptions As ExportOptions
                    Dim CrDiskFileDestinationOptions As New _
                    DiskFileDestinationOptions()
                    Dim rename As String
                    rename = rptName.Replace(".rpt", "")
                    Dim CrFormatTypeOptions As New ExcelFormatOptions
                    CrDiskFileDestinationOptions.DiskFileName = _
                                                "c:\Report\" & rename & "_Export_File.xls"
                    CrExportOptions = rptDoc.ExportOptions
                    With CrExportOptions
                        .ExportDestinationType = ExportDestinationType.DiskFile
                        .ExportFormatType = ExportFormatType.Excel
                        .DestinationOptions = CrDiskFileDestinationOptions
                        .FormatOptions = CrFormatTypeOptions
                    End With
                    rptDoc.Export()
                Catch ex As Exception
                    MsgBox(ex.ToString)
                End Try
                '' end by kevin shah
                rptView.Show()
                rptView.ShowExportButton = True
                Dim oFrm As New System.Windows.Forms.Form
                rptView.DisplayGroupTree = True
                rptView.Dock = System.Windows.Forms.DockStyle.Fill
                rptView.Location = New System.Drawing.Point(0, 0)
                oFrm.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
                oFrm.Controls.Add(rptView)
                oFrm.Name = "Report Viewer"
                oFrm.Text = "Report Viewer11"
                oFrm.ResumeLayout(True)
                oFrm.WindowState = System.Windows.Forms.FormWindowState.Maximized
                oFrm.TopMost = True
                oFrm.ShowDialog()
            Catch ex As Exception
                objMain.objApplication.MessageBox(ex.Message)
            End Try
    By pressing this button XLS file be generated on C:\report\
    Hope this will resolved the issue
    Thanks
    Kevin

  • I need crystall report print button support insted of exporting to pdf then print

    Crystal reports are the most widely used reporting software.its print button is working on active X controls. due to the i am not able to use direct print button.
    so please help me to provide a plugin for crystal report

    Here is C# code for print crystal report
    cryRpt.PrintToPrinter(2, true, 1, 2);
    check this it will help you to print crystal reports
    http://csharp.net-informations.com/crystal-reports/csharp-crystal-reports-print.htm
    It may help you.
    merca.

  • Crystal Report Print Control install error

    Hi,
    I'm trying to manually install the crystal report print control active x file. After righ-clicking to install the printcontrol.inf file, i got the following error message; "The INF you selected does not support this method of installation" Any idea why I could not install?
    I am running Windows Vista and have local admin rights.
    Thanks in advance.

    Umm, when I enter the following search terms in the search box at the top right corner of this web page:
    print control activex crystal net
    I get the following KB:
    [1645006  - How to install the Crystal Reports ActiveX Print Control manually?|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%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333633343335333033303336%7D.do].
    See if that helps. Note that since you do not mention version of CR, the KB may not be specific to your version of CR, but it should point you in the right direction, no matter what the version.
    - Ludek

  • Crystal Report Print

    hi,
    Now i am working in Asp.net.In this website i did one crystal report.if i have to take print from crystal report print icon .the will like some boxs will continuously appear.i attached the print image.
    And one think if i will use export to pdf and then take print it will proper.
    Please Help me.

    Ramesh, you have asked the same question in three different posts. This one, then
    Crystal Report Print
    and
    Report
    This, by definition is spamming and will get you banned from these forums. Please read and make your self familiar with the Rules of Engagement.
    If this is a critical issue, you have the option of creating a phone incident here:
    Crystal Single Case Technical Support - SAP Business Objects US Online Store | SAP Online Store
    At this time, I am locking this thread. I encourage you to continue here:
    Crystal Report Print
    Make sure you answer my question on that thread as well as provide the info Bhushan requested in this thread.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Crystal Report Print Out Template

    Hi Dear;
    How can i create or from where can i Get Crystal report print out template for sales and purchasing Documents in SBO 8.8
    best regards;

    Link for documentation of B1 8.8
    https://websmp104.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000680297&_SCENARIO=01100035870000000183&_ADDINC=011000358700002837782005E&
    Thanks
    Krish

  • Crystal Reports: Print Engine Error when exporting a report

    We recently upgraded from Crystal Reports 2008 to BusinessObjects Edge Series X3.1. When exporting a report to an excel data-only format we get "Crystal Reports: Print Engine Error". All other formats work fine.  Any help is highly appreciated.
    Thanks,
    Jaseem

    Anyone?

  • Failed to read data from report file : Reason: Crystal Reports: Print Engin

    Hi,
    When we try to migrate the crystal reports from BO R2 to BO R3, some of the reports are faling with the error:
    Failed to create a new Report.Reason: Failed to read data from report file C:\DOCUME~1\xxxxx.rpt. Reason: Crystal Reports: Print Engine Error
    Would please someone help me in fixing the issue.
    Thanks and Regards,

    Few quick checks to identify the cause -
    1. Are you able to run report in your R2 system?
    2. In XI3.1, check SIA running on which account.
    3. Check the acount have sufficient rights on file system and registry.
    4. What's your web server?
    Give proper rights and import again. Hopefully it will resolve.
    Edited by: Das on Dec 6, 2010 9:47 PM

  • Font problem in Crystal report printing

    Post Author: chandansingh
    CA Forum: Exporting
    i am using CR 10.0 and .net 2.0 framework. In my report i am using unicode fonts(mangal,arial). Records in Crystal reports are of both font type but when i printing this report it shows only arial font records and turn remaining  records in to boxes.
    How i can sort out this problem ?
    Any idea ! it will be highly appreciated.
    Thanks
    chandan bhakuni

    Post Author: kclim
    CA Forum: Exporting
    Have you tried updating the printer drivers?  or checking your Control Panel to see if the printer is setup correctly?

  • Problem of installing Crystal Reports Print Control(ActiveX)

    Environment
    Windows 20003 SP1
    ASP.NET 2.0
    Crystal Reports XI SP4
    Background
    I am converting ASP application to ASP.NET.
    I used ActiveX Viewer on ASP.
    Now, I decide to use CrystalReportViewer and PrintControl(ActiveX) on ASP.NET.
    CrystalReportViewer.PrintMode = CrystalDecisions.Web.PrintMode.ActiveX
    Problem
    I want to make normal user (user which is in "Users" group)  use PrintControl because of security reason.
    But normal user can't use PrintControl.
    Reproduce Procedure:
    1. logon windows as admin user.
    2. install ActiveX (PrintControl) after clicking print icon.
    3. logon windows as normal user.
    4. when normal user clicks print icon, nothing happens.
        (small dialog for printing is displayed, but nothing happens.It looks like "hang". )
    When I used ActiveXViewer on ASP, the following steps worked well.
    1. logon windows as admin user.
    2. Install ActiveX (ActiveXViewer) in report screen.
    3. Logon windows as nomal user.
    4. normal user (of cource, other admin users) can use ActiveXViewer without installation.
    Could you tell me how to use PrintControl on normal user authority?

    Thank you very much for your answer.
    I solved it.
    The cause of this problem is , the dll version string in print.js which creates <OBJECT> tag dinamically is different from dll file version.
    i.e. the version string in <OBJECT> tag is newer than dll version.
    As a result, each time user accesses HTMLViewer, cab file is downloaded and installed.
    We modified the dll version string in print.js, and my problem is fixed.

  • Crystal report align problem when printing or converting to PDF

    hi
    Im using Crystal report in asp.net 2.0.. I draw line to design my invoice report on viewing that in aspx page it looks perfect and fine..
    If i need to export my report to PDF. In Crystal Report Viewer the Alignment are perfect.. But when i export into PDF the Alignment changed entirely..
    what to do..
    thanks

    Let's start with :
    1) version of CR
    2) And CR Service packs or fixes applied?
    3) Version of .NET
    4) Do you see the issue in both the CR Designer and at runtime?
    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]

  • Crystal Report Preview Problem

    Dear All,
    I have done a crystal report for Sales Quote and imported using Administration-->Setup-->General-->Reports and Layouts.
    It shows that the report is imported successfully but when i go and give print preview, it shows an error as "LogOn Failed Please Try Again".
    I dont know why this error occurs.
    But the other reports are working well.
    Help me solving this issue.
    Regards,
    Janani

    hi
    Janani..
    Actually i never Seen This Type of problem..
    I have one Doubt May be u have Developed in ur system n then import it to the client server..
    before importing have u change the login credentials....
    After i search i got below link just have a look on below post If it's not use ful just ignore the mail....
    System asks for SA Password when printing with Crystal Reports

  • Crystal Report print layout error during print preview

    Hi Everyone,
    When I try print preview a marketing document, it will work the first time, and then when I try to print preview again it brings up a window asking me to login into the database with the sa username and password.
    When putting in the correct password, the login fails.
    When I click cancel, SAP hangs up and requires a restart.
    All print layouts were done in Crystal Reports, and imported via the report layout manager.
    This occurs on all marketing documents where there is a crystal print layout.
    Anyone will be able to help me with this?
    Thanks
    Best Regards
    Dario Moutinho
    Edited by: Dario Lopes Moutinho on Jul 7, 2011 3:19 PM
    Edited by: Dario Lopes Moutinho on Jul 7, 2011 3:19 PM

    Hi Rahul,
    Your solution worked. Thank you very much.
    I also did not include a stored procedure into the connection that was needed in the layout.
    This could have also added to the problem (for future reference).
    Best Regards
    Dario

  • Crystal report related problem

    Hello All,
    SELECT
    TOP (100) PERCENT T0.CardCode, T0.CardName, T0.Address, T3.Name, T0.DocDate, T0.DocNum, T0.VatSumFC, T0.U_Suffix, T2.Phone1, T2.Phone2,
    T2.Fax, T4.PymntGroup, T1.Dscription, T1.ItemCode, T1.Quantity, T1.OpenQty, T1.Price, T1.Currency, T1.LineTotal, T1.TotalFrgn, T1.U_Text_Rate,
    T1.Quantity as U_Order_Qty, T1.OpenQty as U_Order_OpenQty, T6.InvntryUom,  T1.U_Order_UoM, T1.Price as U_List_Price, 1 as U_ConvFactor, T1.U_OB_MANU, T1.U_OB_MANUPART, T1.FreeTxt,
    T5.SlpName, T5.Memo, T0.U_RequestedBy, T0.U_Note1, T0.SlpCode, T0.U_Note2, T0.U_Remarks1, T0.U_Remarks2, T0.U_Remarks3,
    T0.U_Remarks4, T0.U_Remarks5, T0.U_Remarks6, T0.U_Remarks7, T0.U_Remarks8, T0.U_Remarks9, T0.U_Remarks10, T0.U_Remarks11,
    T0.U_Remarks12, T0.U_Remarks13, T0.U_Remarks14, T0.U_Remarks15, T0.U_Remarks16, T0.VatSum, T0.DocDueDate, T1.LinManClsd, T0.DiscPrcnt,
    T0.DiscSum, T0.DiscSumFC, T6.SWW, SUM(T7.Quantity) AS RecdOrdrQty, SUM(T7.Quantity) AS RecdQty, T1.LineNum, T1.VisOrder
    FROM    
    dbo.OPOR AS T0 INNER JOIN
    dbo.POR1 AS T1 ON T0.DocEntry = T1.DocEntry INNER JOIN
    dbo.OCRD AS T2 ON T0.CardCode = T2.CardCode INNER JOIN
    dbo.OCPR AS T3 ON T0.CntctCode = T3.CntctCode INNER JOIN
    dbo.OCTG AS T4 ON T0.GroupNum = T4.GroupNum INNER JOIN
    dbo.OSLP AS T5 ON T0.SlpCode = T5.SlpCode INNER JOIN
    dbo.OITM AS T6 ON T1.ItemCode = T6.ItemCode LEFT OUTER JOIN
    dbo.PDN1 AS T7 ON T1.DocEntry = T7.BaseEntry AND T1.LineNum = T7.BaseLine
    Where
        T0.DocEntry = {?Dockey@}
    GROUP BY T0.CardCode, T0.CardName, T0.Address, T3.Name, T0.DocDate, T0.DocNum, T0.VatSumFC, T0.U_Suffix, T2.Phone1, T2.Phone2, T2.Fax,
    T4.PymntGroup, T1.Dscription, T1.ItemCode, T1.Quantity, T1.OpenQty, T1.Price, T1.Currency, T1.LineTotal, T1.TotalFrgn, T1.U_Text_Rate,
    T1.Quantity, T1.OpenQty, T6.InvntryUom, T1.U_Order_UoM, T1.Price, T1.U_OB_MANU, T1.U_OB_MANUPART, T1.FreeTxt,
    T5.SlpName, T5.Memo, T0.U_RequestedBy, T0.U_Note1, T0.SlpCode, T0.U_Note2, T0.U_Remarks1, T0.U_Remarks2, T0.U_Remarks3,
    T0.U_Remarks4, T0.U_Remarks5, T0.U_Remarks6, T0.U_Remarks7, T0.U_Remarks8, T0.U_Remarks9, T0.U_Remarks10, T0.U_Remarks11,
    T0.U_Remarks12, T0.U_Remarks13, T0.U_Remarks14, T0.U_Remarks15, T0.U_Remarks16, T0.VatSum, T0.DocDueDate, T1.LinManClsd, T0.DiscPrcnt,
    T0.DiscSum, T0.DiscSumFC, T6.SWW, T1.LineNum, T1.VisOrder
    ORDER BY T1.VisOrder
    I have wrote above query in crystal reports. Its working fine
    But i am not able to see the Print Preview only for 2 business partners.
    Can anyone check this query and help me to find out the issue.
    Regards,
    Hitul

    HI , 
    This conditions may be problem for that particular BP , 
    dbo.OCPR AS T3 ON T0.CntctCode = T3.CntctCode INNER JOIN  
    dbo.OCTG AS T4 ON T0.GroupNum = T4.GroupNum INNER JOIN  
    you can Change LEFT JOIN instead of INNER JOIN and then check the result.
    -Rajesh N

Maybe you are looking for

  • Can I send a preview of an iWeb website to a PC user prior to going live?

    I have a completed site in iWeb that needs to be previewed by another member of my group prior to publishing the site live. He is a PC user. Is there a way to show him a preview of the site prior to uploading it to ftp and going live? thanks! Todd

  • PSE7 with Windows 7 - Drag & Drop Problems

    Hello, have some people experince in PSE 7 with OS Windows 7? I have some problems with the Drag & Drop function. If I drag a picturce from the explorer into PSE7, PSE7 freeze and need two minutes to come back. Have somebody any idea / solution? -->

  • Increase in size due to upgrade?

    i've just upgraded latest install and have genuis installed - when i want to update my 160gb ipod I was told i had insufficient memory - over 24gb to be precise! I have not imstalled any more songs, only a few podasts - can someone please explain wha

  • Looking for libxtst-dev and libxtst6 for Solaris 10 x86

    I am trying to compile Synergy (http://synergy2.sourceforge.net) on a Solaris 10 x86 1/06 system and need the libxtst-dev and libxtst6 libraries. I believe these are part of XFree86. I searched Google and found these on GnuSolaris.org as Debian-based

  • How do I delete forwards, ie without using the backspace key ?

    When want to change a letter or some text I always have to position the cursor after the entire word and use the backspace key to delete the whole word, even if I just want to delete, for example, the first letter. Is there a key that deletes forward