Pagination word editable Crystal Report

Hi,
I have a problem when I export to Word editable in Crystal report. the header constains only the text from de first page on every page (page 1 of 9) I need to solve this because the client needs to edit the document.

Hi
Need more info.
- What version of Crystal Reports are you using? What patch level?
- What version of Visual Studio?
- is it a windows or a web application?
- Does this happen on dev box or server?
- Does the report view and export fine from CR designer?
- What happens when you export the report using viewer export button to any other format e.g. PDF, excel?
- How are you exporting the report, using the code or viewer export button?
- Bhushan
Senior Engineer
SAP Active Global Support
Follow us on Twitter
Got Enhancement ideas? Try the SAP Idea Place
Getting started and moving ahead with Crystal Reports .NET applications.

Similar Messages

  • Paginacion Word editable crystal report

    Buenas
    Tengo un problema al exportar a word editable, me sale en todas las pagina page 1 de N, en los otros formatos si me sale bien. El cliente necesita editar y por eso es necesario exportarlo a este formato.

    Hi
    Need more info.
    - What version of Crystal Reports are you using? What patch level?
    - What version of Visual Studio?
    - is it a windows or a web application?
    - Does this happen on dev box or server?
    - Does the report view and export fine from CR designer?
    - What happens when you export the report using viewer export button to any other format e.g. PDF, excel?
    - How are you exporting the report, using the code or viewer export button?
    - Bhushan
    Senior Engineer
    SAP Active Global Support
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place
    Getting started and moving ahead with Crystal Reports .NET applications.

  • How to create user editable Crystal Report with dynamic dataset

    What I would like to achieve:
    A program loads a report in runtime updates list of database fields (possibly includes sample data), open report in "Crystal Reports 2011" (or 2008) where user customizes report and saves it. Later on the program loads the report, fills actualized data and displays it in .net report viewer.
    What I do:
    CrReport = New CrystalDecisions.CrystalReports.Engine.ReportDocument
    CrReport.Load(TemplateFilename)
    Dim Results As DataTable
    DataTable is filled from a database
    CrReport.SetDataSource(mResults)
    CrReport.SaveAs(NewReportPath, True)
    The NewReportPath is opened in the default program.
    What are the problems
    The report is open in preview mode (not in design).
    When the field is added to the report the designer asks for XML datasource on preview.

    The short answer is that it is not possible. I broke the question to other two: How to save a report that it opens without preview? and How to create user editable Crystal Report with dynamic dataset, where it is possible to find details. Key answer is Re: How to create an editable previewable report?

  • Amount in words in crystal report

    Hi all,
    I am new to crystal report.
    What i need is i need to create a formula for amount to display in words.
    That is,
    if the value is AED 15,68,595 then i need this to be converted into
    " one million five sixty eight thousand five hundred ninety five only"
    That is,
    10 lakhs is equal to 1 million,
    then 5 lakhs is equal to 500 thousand + 68 thousand,
    five hundred and ninety five.
    Help me solving out this issue.
    Regards,
    Janani

    HOW TO IMPLEMENT THE LOGIC.
    STEP1: IN CRYSTAL REPORT  RIGHT CLICK N  FIELD EXPLORER RIGHT CLICK ON FORMULA FIELD AND THEN CREATE NEW..EXAMPLE WORDS
    STEP2:UNDER FORMULA FIELDS CLICK ON WORDS AND THEN CLICK ON EDIT..
    U CAN SEE THE BELOW FORM
    THE BELOW CODE JUST COPY AND PAST IT..
    IN THE BELOW BOLD COLOR U HAVE CHANGE ONLY ONE LINE..
    ORDR.DocTotal I AM USING ORDER.DOCTOTAL
    IN YOUR CASE THE AMOUNT IS COMMING FROM WHERE WHICH TABLE AND FIELD
    THAT IS ENOUGH
    numbervar RmVal:=0;
    numbervar Amt:=0;
    numbervar pAmt:=0;
    stringvar InWords :="";
    Amt :={ORDR.DocTotal};
    if Amt > 10000000 then
    RmVal := truncate(Amt/10000000);
    if RmVal = 1 then
    InWords := InWords + " " + towords(RmVal,0) + " Crore"
    else if RmVal > 1 then
    InWords := InWords + " " + towords(RmVal,0) + " Crores";
    Amt := Amt - Rmval * 10000000;
    if Amt > 100000 then
    RmVal := truncate(Amt/100000);
    if RmVal = 1 then
    InWords := InWords + " " + towords(RmVal,0) + " Lakh"
    else if RmVal > 1 then
    InWords := InWords + " " + towords(RmVal,0) + " Lakhs";
    Amt := Amt - Rmval * 100000;
    InWords := InWords + " " + towords(truncate(Amt),0);
    ProperCase(InWords)
    STEP3: IN FORMULA EDITOR JUST CLICK ON X2 ICON FOR CHECKING ERRORS IN THE
               FORMULA
    AFTER THAT PRESS OK..
    STEP4: JUST DRAG AND DROP WORKS INTO CYRSTAL REPORT THIS IS ENOUGH

  • Display Chinese Word In Crystal Report's Cross-Tab

    Hi all,
    I am trying to display chinese word in my cystal report. It can be display correctly in detail, page header or formula. But when come to cross-tab, it just will show some funny symbol on it. any idea?
    i am using Crystal report xI release 2.
    Thank You
    Wong

    Hi,
    I solve it.Just for your reference, change the font type inside cross-tab.

  • Use another edition Crystal Report for VS2008

    I only use Crystal Report in VS2008 before.
    Our company has CR 11 enterprise edition.
    What benefit can get if I use CR 11?
    Do I need to install something in order to use CR 11 in VS2008?

    CR11 is not supported or tested with VS 2008.
    If you want to use VS 2008 you will need to use Crystal Reports 2008.

  • Run a report as output format "MS Word" under Crystal Report Server 11 R2

    May I confirm any patches I can download to fix the problem ?
    The problem is if I set the output format as MS Word 2003/2007 instead of crystal report when "Schedule" a report in Crystal Report Server. I found a problem all reports cannot be show on the browser (with error message "Error on page." at the bottom of browser). I need quit the infoview and login again.
    Thanks for your kindly help

    Hello Wallace,
    I recommend to post this query to the [BusinessObjects Enterprise Administration|BI Platform; forum.
    This forum is dedicated to topics related to administration and configuration of BusinessObjects Enterprise, BusinessObjects Edge, and Crystal Reports Server.
    It is monitored by qualified technicians and you will get a faster response there.
    Also, all BOE Administration queries remain in one place and thus can be easily searched in one place.
    Best regards,
    Falk

  • Editing Crystal Report causes Errors under VS 2005

    Every time a report is modified in a Visual Studio 2005 C# project the following errors appear as a result of the code generated by Crystal Reports:
      "NewGenerator' no suitable method found to override
      "FullResourceName' no suitable method found to override
    Commenting out the two generated methods gets rid of the errors and allows for a successful build.
    Other forum posters have solved this problem by changing the project references to .dlls from a newer Crystal Reports version however I have only one version of Crystal Reports on my system (Version XI Release 2) so the same trick does not work for me.
    Any help would be appreciated.

    Does this happen with new reports added to the project, or just older reports that were already there? It sounds like the DLLs for the code generator aren't matching up to the runtimes being used at compile time. There are a couple of things to try. First, make sure all your project references are a single version, as per AG's post
    Then, try right-clicking on the report in the solution explorer and selecting "Run Custom Tool". That should force the code generator to regenerate the report's code file. (Note - if you have custom stuff in there, back it up first or it will be lost in this process.) Does the report still fail now?
    If it does, try running [Modules|https://smpdl.sap-ag.de/~sapidp/012002523100006252802008E/modules.zip] to see what DLLs are being loaded. It's probable that a wrong one got mixed in somewhere with your machine's history being what it is.
    If you do want to reinstall and try to get your environment in good working order, I'd recommend the following order: uninstall Crystal Reports XIR2, do a repair-install on VS (you could also "change" the install and make sure the bundled CR options are checked prior to this), then install CR XIR2, then install any patches you want to install (latest service pack recommended).

  • SAP 9.0 PL10 Crystal Report Viewing/Editing error

    When trying to preview any crystal document in SAP, I'm getting a "The procedure entry point could not be located in the dynamic link library C:\Program Files (x86)\SAP Business Objects\SAP BusinessObjectEnterprise XI 4.0\win32_x86\rasauditingw.dll". I've manually registered the dll, and still get the error on the first view of any document. Subsequent previews no longer show the error, until you log out of SAP. This is all happening in the SAP Client, and only happens after I install the Crystal Server Integration piece required by the Crystal Report Addin to edit Crystal Reports. Anyone else getting this?

    This isn't the issue. Crystal Reports runs fine. Opening from all programs works fine. It's when in SAP, and you try to preview any marketing document for the first time only, I get a windows error box stating "The procedure entry point could not be located in the dynamic link library C:\Program Files (x86)\SAP Business Objects\SAP BusinessObjectEnterprise XI 4.0\win32_x86\rasauditingw.dll". Clicking OK on the box allows the document to be previewed, and crystal viewer opens properly. This above note does not reference this issue, or is it relevent to this version of SAP 9.0.

  • Invalid export DLL or export format" with Crystal Reports 2008 to Excel xls

    We are experiencing the same issue as reported in the sticky thread. I answered in that thread, but thought that I woudl open a new thread to keep track of this issue.  I can give you the responses to your questions you have requested in that thread:
    Server Operating System - MS Windows Server 2003 R2 Enterprise Edition SP2
    Version of the .NET Framework - MS .NET Framework 3.5 SP1
    How did you deploy? - Installed CR 2008 SP1 runtime with msi package
    If you deployed with CRRuntime_12_0_mlb.msi - what was the date of the file and its size? CRRuntime_12_1_mlb.msi dated Sept. 16, 2008 12:55:00 PM, size: 56,717,824 bytes
    What is the file version of crpe32.dll on your server? You'll find this in the C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 directory - File was created 9/13/08 11:21AM, 9451KB File Version: 12.1.0.882
    How many libpng10.dll files are on your system? List all instances. - 1 instance is on the system located in C;\Program Files\Business Objects\Business Objects Enterprise 12.0\win32_x86 directory. It is dated 9/13/08 8:52:26AM 132KB version 1.0.30.1
    Any additional comments - We have tried to export to PDF and this works successfully. However, we can not export to xls or rft formats.
    CRXF_XLS.dll is 905KB 9/13/08 9:38AM Version 12.1.0.882
    CRXF_RTF.dll is 509KB 9/13/08 9:35AM Version 12.1.0.882
    We also have the CR XIR2 server runtime installed side by side on the server as we migrate from CR 2008 to CR XIR2 SP4 ( where this function does work currently).
    Please let me know if you need anything additional.
    Phil
    "Invalid export DLL or export format" with Crystal Reports 2008
    Posted: Sep 27, 2008 12:36 AM       E-mail this message      Reply 
    I've included this sticky because we are seeing many posts in this forum regarding the error Invalid export DLL or export format when exporting to Excel and RTF in .NET applications using the Crystal Reports 2008 .NET SDK.
    Issue
    Exporting a Crystal Report to Excel or RTF format
    .NET application using the Crystal Reports 2008 runtime (version 12.0)
    error Invalid export DLL or export format
    We've been doing some testing in-house and haven't reproduced this behavior. In order to figure this issue out we will need your help. If you are getting this error please reply to this post with the following information:
    Server Operating System
    Version of the .NET Framework
    How did you deploy?
    If you deployed with CRRuntime_12_0_mlb.msi - what was the date of the file and its size?
    What is the file version of crpe32.dll on your server? You'll find this in the C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 directory
    How many libpng10.dll files are on your system? List all instances.
    Any additional comments
    What We Know
    The error invalid export DLL or export format may occur when exporting to Excel and RTF formats in .NET applications utilizing the Crystal Reports 2008 runtime (v 12.0)
    Other export formats like Adobe PDF, Crystal Reports, CSV all export with no error
    Some customers have resolved this by adding C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 to their environment path variables
    This may have something to do with the file libpng10.dll. Both crxf_xls.dll and crxf_rtf.dll are dependent on it.
    Thanks in advance for your co-operation. We hope to figure out what is causing this issue soon.

    Hi,
    I am also having the same problem, except that I am not using Crystal Report 2008 runtime but the actual Crystal Report 2008 installation on Windows XP SP2 with VS Studio 2005 (VC++). MS .NET Framework 2.0.
    Cyrstal Report XIR2 was installed on the same machine but uninstalled before installing Crystal Report 2008.
    So only one instance of libpng10.dll and found in C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86
    Crpe32.dll        3/1/2008 version 12.0.0.683
    Crxf_xls.dll       3/1/2008 version 12.0.0.683
    Crxf_rtf.dll         3/1/2008 version 12.0.0.683
    crdb_oracle.dll  3/1/2008 version 12.0.0.683
    libpng10.dll       3/1/2008 version 1.0.30.0             122880 bytes
    There is no problem for exporting to pdf, html, word, csv, Crystal Report. If I create a testing report without any data from database, the testing report can then be exported also to rtf and xls.
    Oracle 11.1.0.6 is the DB for the reports.
    Adding C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86 to the path did not resolve my problem.
    Any idea to fix this issue?
    Thanks
    Kin H Chan

  • Crystal Reports error - The Report Application Server failed

    Hi,
    I am getting the following error on XP Professional system. These reports were built earlier by one of my collegue and am trying to use the app but i stuck up getting the below error. The report gets failed
    repPath=Server.MapPath ("./Reports/Umbrellas.rpt");
    crReportDocument.Load(repPath); //Fails here
    crReportDocument=SetLogonForReport(crReportDocument);
    crReportDocument.SetParameterValue ("fromDate",DateTime.Parse (fromdt) );
    crReportDocument.SetParameterValue ("toDate", DateTime.Parse (todt) );
    I tried in design time attaching to Crystal Reports Viewer object , i get the same error. It looks like something related to Crystal Reports got corrupted in this system.
    Please find the stack trace for the error
    Stack Trace:
    [COMException (0x80004005): The Report Application Server failed]
       CrystalDecisions.ReportAppServer.ClientDoc.ReportClientDocumentClass.Open(Object& DocumentPath, Int32 Options) +0
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.Open(Object& DocumentPath, Int32 Options)
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
    [Exception: Load report failed.]
       CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)
       CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename)
       CrystalDecisions.ReportSource.NonHTTPCachedReportSource.GetReport(RequestContext context, Boolean bAddToCacheWhenCreated)
       CrystalDecisions.ReportSource.LocalReportSourceBase.GetPage(PageRequestContext pageReqContext)
       CrystalDecisions.Web.ReportAgent.  (Boolean  o)
       CrystalDecisions.Web.CrystalReportViewer.OnPreRender(EventArgs e)
       System.Web.UI.Control.PreRenderRecursiveInternal() +62
       System.Web.UI.Control.PreRenderRecursiveInternal() +125
       System.Web.UI.Control.PreRenderRecursiveInternal() +125
       System.Web.UI.Page.ProcessRequestMain() +1488
    Environment:
    .NET v1.1.4322
    Crystal Reports 10.0.0.533
    OS: Windows XP Professional - Ver 2002  Severice Pack 2
    I tried some of the solutions provided  by searching web,  it does not work. Please help!!!
    Appreciate your help on this.
    Edited by: KMallik2000 on Jul 15, 2009 4:39 PM

    Hi,
    I am trying to replicate the same issue on new desktop which has crystal reports 9.1 & 10 installed. I still see crystal reports 9.1 controls when i open VS.net. when i compare both desktop installed softwares, i found that the other desktop has "Crystal Reports 10 .NET runtime installed" which is not there on the new desktop. please advise whether i need to install this software to get ver 10 components installed? Appreciate your help on this. can you also advise the software download location for 10 .net run time installation?
    In other words, though crystal reports 10 got installed on this desktop but it is not getting referenced in VS.NET. I am seeing only 9.1 version assemblies are being used. hence my solution is not getting compiled in this desktop. Please advise how to get the version 10 assemblies referenced in the solution
    Edited by: KMallik2000 on Jul 20, 2009 4:46 PM

  • CDZHome Error when trying to connect universe from Crystal Reports XI R2

    I am getting the below error message when I am trying to connect a universe from Cyrstal Reports.
    CDZHome not found on server, IRAPPS437.WebIntelligenceProcessingServer
    I am using below versions:
    Universe - Business Objects XI 3.0 Enterprise Edition
    Crystal Reports - Cyrstal Reports XI R2 SP4.
    If you notice the error is related to Web Intelligence when I am not doing anything related to Web Intelligence. So I suspect that Cyrstal Reports XI R2 is not compatible with BO XI 3.1 or Vice Verse.
    Any input on this is appreciated.
    Cheers,
    Kanna

    Hello All, I am working on BO version migration. Presently we have BO XI 3.1 in which we have Java process through which we gets connected to BO server and generates an report.
    as we need to move to migrate BO version to SAP Business Objects BI Platform 4, we need to accomodate connecting to new BO server. I have upgraded all JAR which has been given by "SAP Business Objects BI Platform 4" installation still i am getting below exceptions and one of them is almost same as this POST so thought od posting my question here rather than opening an new POST.
    Caused by: com.crystaldecisions.enterprise.ocaframework.OCAFrameworkException$ServiceConnection: Unable to connect to service CDZHome from server LONWS20055.WebIntelligenceProcessingServer via CMS LONWS20055.EUROPE.NOM:6400 (FWM 01006)

  • Stand Alone Crystal Reports for Visual Studio 2010

    I wish to use the stand alone product to edit Crystal Report .rpt files created with Visual Studio 2010
    Is CR 2011 stand alone.product the right tool?
    Using CR 2008, I receive a warning message if I open a .rpt created al VS 2010.
    Likewise, if I import the edited .rpt file to VS, another message pop ups saying that it will be updated to a newer version.
    Thank you in advance
    Edited by: Roberto Mirelman on Oct 21, 2011 2:59 PM

    You are correct.
    CR 2011 reports can be run in CR for VS 2010.
    Technically you can still use CR 2008 to edit your reports and shouldnt see any problems other than getting the prompt all the time.  I am not sure if using CR 2011 will cause prompting as well so you may want to try it our using the trial version first.
    Jason

  • Use dotx template as Crystal Report design template

    Hi,
    i have dotx (ms word with header and footer) files. how can i use it as template file for the crystal report design ?
    anyway i can do this ?  or any way i can use the dotx template files as background in my crystal report ?
    i google alot but look like no way to link the dotx (ms word) to crystal report..

    hi Jiann Neow,
    you can't use a dotx as a template in any automated way to create report files.
    you can add them as a background though by going to Insert > OLE Object and adding them via OLE. please note though this is only good for 1 page objects.
    -jamie

  • Crystal Reports with MSY in CRM 2007

    Hi there
    We had built  some reports for CRM Mobile Sales 3.0/4.0 with Crystal Reports in Mobile System Maintanance. Then we upgraded to CRM 2007 and some people still use this old reports. Now we have found an error in one of the reports. When I want to modify the report in MSY I get the error "Error while modifying report; try again". I chose the report in MSY and I click on "Modify Report". Then I get this error and nothing happens.
    Is it possible that you can't edit Crystal Reports with MSY and CRM 2007 anymore? I found no information about this, so I hope someone can help me.
    What do we have to do to let Crystal Reports work with MSY in CRM 2007?
    Thanks in advance for your answers!
    Regards
    Marco

    Hi Marco,
    You might get this error if the reports were developed in CRM 3.0 and you want to modify in 4.0 because the dataconnection is different. I know there is some stuff on the marketplace which describes how to connect.
    May be it is a login issue and note 756331 helps.
    Btw. are you working for ASK in Koblenz CH?
    Whity

Maybe you are looking for

  • New password won't work! Help please!

    So with the new software update, recently, I had to change my username to an e-mail address because my account wasn't "Safe." That's fine; I did that, but with the new username came a new password. Now, that password will not work! I even wrote it on

  • HT1399 How do I manage the music on my phone now?

    Managing the music on my phone used to be so easy.  I have a large library and would just click boxes next to the artists I wanted and uncheck the ones I didn't.  And changed frequently.  Now, I can't manage the music on my phone.  I upgraded itunes

  • Calling Web Service from PL/SQL in 9.2.0.4

    We're having some problems getting the "Calling Web Services Sample from PL/SQL" sample working with our 9.2.0.4 database. After downloading the sample from http://www.oracle.com/technology/tech/webservices/htdocs/samples/dbwebservice/DBWebServices_P

  • Client reports "fuzzy" / "broken up" appearance of type??!

    I've been doing websites for some time now, and this is a new one for me. My client is reporting that the text in the sitewide header and footer, as well as any/all text that's created in image files appears "fuzzy" or "broken up" to him on some moni

  • Dynamic cell associated value as query string parameter in custom hyperlink property of KPI of scorecard in PPS SP2013

    Can we pass dynamic cell associated value [of scorecard] as query string parameter in custom hyperlink property of KPI of scorecard in PPS SP2013 , so that we can pass those values to another page  How to get those cell associated values and set thes