Exporting a report with a chart.

Post Author: Coleen
CA Forum: Other
Hello, I am using Delphi7 with CR XI. When I export a report
with a chart to a pdf in my development environment it works fine. But
when I distribute my application, the export works correctly except the
chart does not display.  I am using Installshield to distribute
the following merge modules: CR11_rdc_license, CR11_rdc_reportengine,
and CR11_rdc_runtime. What am I missing? Thanks,Coleen

Hello Russell,
The Joint Time Frequency and Order Analysis Tool comes with example data. If you use the sample data, do you see the same behavior? Here are the steps I took:
Run the VBS script Time Frequency and Order Analysis 111.VBS to launch the tool.
Select New Data File
Select Noise data.tdms and Open. This is in the Sample Data folder in the tool's folder Time Frequency and Order Analysis 111
Set the Time Channel to "1 Time" and set the Signal Channel to "3 Noise_2"
Select Spectrum 3D CharDiag.TDR as the Report Templace.
Select Joint Time Frequency Spectrum as the Analysis Type.
Select Run Analysis. This will load the analysis data into a report
Double-click on the graph to open the 3D Axis Definition window
Select ... next to the Characteristic diagram to open the Curve Parameters window
Under the Interpolation tab, uncheck Interpolation. Click OK and close both dialogs. The graph will re-draw.
Go to File > Clipboard or press the Copy Graphic to Clipboard button.
Paste the image in Paint or Microsoft Word
With these steps, I do not get an error with the clipboard. Are you able to export to clipboard if using the sample data Noise data.tdms? Does copying to clipboard work with any data? I'm trying to determine if maybe a certain large or small set of data could be causing the issue, or if you always have this issue.
Taylor B.
National Instruments

Similar Messages

  • Need help to develop report with column chart

    Hi
    I am new to SAP BO world.Could  anyone please help me to design report with column chart.Please guide me how to develop report for the following requirement.I am not aware of variance columns and variance labels.Please provide some guidance or some tutorials(for column Chart) so that I can complete the task. Please reply me as soon as possible.Waiting for reply.Thanks in advance.
    Type: Column Chart
    u2022     Rows: Banking Asset Margin (%)
    u2022     Start / End Columns: PY YTD Act(Prior year year to date); CY YTD Act(Current year Year to date)
    u2022     Variance Columns: # Var (CY-PY Act) for GOLM; Volume; Rate; Non Banking NII; Banking Volatility in NII; Banking Volatility in OOI; Fees/One Offs/Other; Volatile Items; Sophie
    u2022     Sub-total columns: PY YTD Underlying; CY YTD Underlying.
    u2022     Variance Labels: % Var (CY-PY Act) for Total Income and Underlying Income
    u2022     Sub-Total Labels: # Var (CY-PY Act) for Net Insurance Income; Banking Volatility; Other Operating Income
    Additional information
    u2022     Variance columns (bar) colours: Red = Adverse to Prior Year; Green = Favourable to Prior Year
    u2022     Columns to show values. Adverse values to be shown in red text in brackets. Favourable results in black text.
    u2022     All values in Black, but adverse to be shown below the bar.

    Hi,
    This type of question is almost impossible to answer over a forum .
    You need to work with your business to understand what these requirements mean in terms of data modelling and relationships between object entities.
    - Some of these metrics should be delegated to source, and calculated in the update routines to your datatargets (aka Cubes/Tables)
    - Others could be resolved in the semantic layer (Universe)
    - Other will be calculated in the presentation layer as local formulae or variables.
    whilst BusinessObjects is a fairly intuitive tool, it may be unreasonble to expect a new learner to deliver an advanced report with conditional formatting.
    Regards,
    H

  • Creating custom reports with Pie Chart

    Hello,
    I've got a little problem while I'm creating custom reports with SQL Chart.
    For example, I want to have a Pie Chart that represent the distribution of the version for a software, i wrote my query with no problem, the result is in good format.
    My Pie Chart is fine except there are no percentage displayed. The legend on the right is fine with correct count of different version, but no percentage on the pie chart.
    Any idea?
    Thanks in advance,
    Fab

    Hello,
    well, I think this is not possible to ask OEM to print the percentage over the chart.
    Anyway, I sugget you to rewrite your query to compute the % in the query itselft thus to have the pct displayed on the rigth.
    Let's say you want to display the database files' size with such a query: select file_name name,bytes val from dba_data_files;
    This is the way to display the % of each file size over the total (remark the above query has been embeded in the new one).
    select name,ratio_to_report(val) over() pct
    from ( select file_name name,bytes val from dba_data_files )
    order by val desc
    It is quite easy to adapt such a tip to your own query.
    Regards,
    Noel Talard

  • Exporting Crystal Reports with embedded Xcelsius content to PDF

    Hi,
    I have a crystal report with an embedded xcelsius chart. I would like to schedule this report using Crystal Server 2008, sending it monthly as a PDF file attached to an email. But after exporting the report through Crystal Server, the xceslsius content is just blank. Shouldn't this be working?

    What is the version of Adobe Reader? Adobe Reader 9 should be there.Also check whether you have Flash Palyer/ flash Active X control installed.
    If you can view the dashboard after exporting it to PPT,it means you have Flash Player installed. You need to try with Adobe Reader 9.

  • Exporting a report with color..

    Hi,
    While exporting to excel, can we export the report as it is with the theme color in the report
    Regards,
    Pa

    Pa,
    Using my export to excel package, you can do that - even choose the colors you want
    to display, if you change the package:
    http://htmldb.oracle.com/pls/otn/f?p=31517:108
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Export Interactive reporting with javascript

    Hi,
    i have some problem when i try to export in excel my report created with Interactive Reporting.
    I use the javascript code inside the button and at onClick event i succeded only the file conversion in mhtml format.
    The next step is conversion from mhtml in xls format, but i think that the instance JooleObject don't.
    Below the code that i use:
    //**********Create the FileSystemObject
    var objFSO = new JOOLEObject("Scripting.FileSystemObject");
    var strMhtmlFile = "C:\\pippo.mhtml";
    var strExcelFile = "C:\\pippo.xls";
    //************Create the JOOLE Object for Opening Excel File
    var objExcel = new JOOLEObject("Excel.Application");
    //**********If Files Already Exist - Delete Them
    if (objFSO.FileExists(strMhtmlFile))
    objFSO.DeleteFile (strMhtmlFile);
    if (objFSO.FileExists(strExcelFile))
    objFSO.DeleteFile (strExcelFile);
    //**********Export to MHTML Format
    ActiveDocument.Sections["PDC_FIN"].Export(strMhtmlFile,bqExportFormatOfficeMHTML,true);
    //**********Make Excel Invisible
    objExcel.Visible = false;
    //**********Open MHTML File in EXCEL
    objExcel.Workbooks.Open(strMhtmlFile);
    //**********Save As Copy of MHTML File into .XLS
    objExcel.ActiveWorkbook.SaveCopyAs("C:\\pippo.xls");
    //**********Close EXCEL
    objExcel.Quit();
    Have you any suggestion? There are some libraries that i must import?
    I use Interactive Reporting Studio 11.1.1.3
    Thank you in advance.
    Flavio

    Hi,
    thank you for response.
    I use IR Studio (Desktop) and public the report in the workspace when the report is complete.
    Your suggestion work
    var strMhtmlFile = "C:\\pippo.xls";
    ActiveDocument.Sections["PDC_FIN"].Export(strMhtmlFile,bqExportFormatOfficeMHTML,true);but the problem is that when export the report directly in xls format, the formatting of the report is lose. For this reason i export befor in mhtml and after Open/SaveAS the report in xls format for mantaining the formatting.
    I think that the istruction
    //**********Open MHTML File in EXCEL
    objExcel.Workbooks.Open(strMhtmlFile);
    //**********Save As Copy of MHTML File into .XLS
    objExcel.ActiveWorkbook.SaveCopyAs("C:\\pippo.xls");
    on the objExcel variable (instance of JOOLEObject) don't work.
    I speak with my develop team and decide if adopt your solution.
    Thank you so much.
    Flavio

  • Error exporting Crystal Report with VB Script

    I am working with Crystal Reports and attempting to export a .RPT file to a .PDF file using a VBScript called from InSQL. I can get the script to work properly if I require a user entry for file destination and name (.export true) but get the error message "Missing or out-of-date export dll" when I attempt to export the .RPT silently (.export false). The report also exports correctly when I manually initiate the export from within Crystal Report. Do you have any examples or solutions for this procedure? Thank you in advance.
    Here is my code for the VBScript export:
    dim rptfile, exportfile
    dim strDate
    dim objCRRpt
    dim objCRApp
    strDate = "_" & right("0" & month(now()),2) & "_" & right("0" & day(now()),2) & "_" & year(now())
    rptfile = UCase("C:\CompCriticalAlarmReport_Test\Report1.rpt")
    exportfile = "C:\CompCriticalAlarmReport_Test\criticalalarmreport" & strDate & ".PDF"
    Set objCRApp = CreateObject("CrystalRuntime.Application")
    set objCRRpt = objCRApp.openreport(rptfile)
    With objCRRpt
         With .exportoptions
         .formattype = CrEFTCrystalReport
         .diskfilename = exportfile
         .destinationtype = CrEDTDiskFile
         .usereportdateformat = true
         .usereportnumberformat = true
         End With
    .export (false)
    End With
    Set objCRApp = Nothing
    set objCRRpt = Nothing

    Ludek, I downloaded the VBA Sample application using the Microsoft Access Database and it is coming up with the same error as my VBScript for the PDF export. The error message for this application is "Run-time error '-2147190908 (80047784)': Failed to export the report."
    Private Sub Image47_Click() 'Exporting to PDF
    'Defines report's format type
    Me.crxReport.ExportOptions.FormatType = crEFTPortableDocFormat
    'Defines report's destination type
    Me.crxReport.ExportOptions.DestinationType = crEDTDiskFile
    'Defines report's file name
    Me.crxReport.ExportOptions.DiskFileName = "C:\MyPDFfile.pdf"
    'exports without calling the exporting dialog window
    Me.crxReport.Export False        <----ERROR OCCURS ON THIS LINE
    When I Run the application with Me.crxReport.Export True, the application executes without error and a popup appears prompting me to select the destination and format type. I need this to run automatically though without a user prompt.
    I have seen numerous topics regarding the exportmodeller.dll, crtslv.dll, and atl.dll files improperly registering or the incorrect versions causing export problems. Could this be causing problems with my export functions? Again, the reports export fine when I manually export them, I am just having a problem when I try to export automatically in any format (excel, text, pdf, rpt, etc...)
    atrain10

  • CR report with a chart takes a lot of time

    Post Author: kushaljn
    CA Forum: Charts and Graphs
    Hi,
    I have a CR-9. The dataset behind this report takes 4-5 seconds if I run separately.
    When building a Bar Chart using the 10 rows which are returned in the dataset it takes ALMOST 30-35 seconds to fill the viewer.
    Is this time acceptable/known time for a simple chart.
    This is a test application which I started with in .Net, c#. I am trying to fix a bigger problem where my reports take almost 2 mins to fill up and show in the viewer.
    Any suggestions/commets are welcome.
    TIA.

    Post Author: srmalloy
    CA Forum: Charts and Graphs
    I am using CR XI, so my solution may not be directly applicable to your problem. I have a report that extracts data from a database containing workload by month that presents summary data by fiscal year, grouping and across four drill-down levels of aggregation. The report originally had the month-by month data visible at the deepest drill-down level, with three charts (average workload, total workload, total work units) for the month-by-month data. The full report would take two minutes or more for the top-level report (about 12 rows of data) to display.It appears that, regardless of whether or not it is visible, CR does enough rendering all the way down the report structure to determine where items will be placed on pages; for me, that was rendering each set of three charts for each of the thousands of leaf nodes in the drill-down before CR decides whether to display the page sections those charts were in. This was not an acceptable response speed. What I did was to make the month-by-month data its own subreport, using the fiscal year parameter set in the main report as its filter; this let me provide month-by-month breakouts at each detail level while having the charts display only when the subreport is requested; that eliminated the lag in displaying the main report.

  • Exporting a report with barcode label fails

    Post Author: Jega
    CA Forum: Exporting
    When i try to export a report which has a barcode label in it, the export fails "Font is not allowed to be embedded in the report"

    Post Author: V361
    CA Forum: Exporting
    A few questions....   If you print, does it work ok ?  What type of export, Word, Excel, PDF ?, What version of CR do you have ?

  • Exporting a report with group in crystal report

    Hi all,
    I am new to crystal reports XI.
    I have designed a report in which I have created 2 groups.
    The structure of report is shown below.
    MAIN REPORT:
    Status           1st     2nd 3rd
    A               10      20   30
    B               40      50   60
    When I double click on groups(either A or B) another subreport gets opened.
    The structure of the sub report is
    DETAILED REPORT:
    A            10        20     30
    Name:XYZ
    Age:XY
    Place:XYZ.
    My query is when i export the report in PDF format only the main report is getting exported.
    I have to run this report through BOXI and have to send the mail to users in PDF format.
    But when i export the report in PDF format i am not able to see the detailed report.
    Please give me suggestions how can i resolve this problem.
    Thanks in advance...

    In the report design description I undestand that when you double click on the group header it opens the subreport. I think this might be on demand subreport or you might have used suppress condition for the subreport section using "drilldowngrouplevel". If you are suppressing conditionally and showing the report when you double click on it these feature will work only in crystal report but not in PDF. So it is better to remove conditional suppress and show the complete data so that when you export it to PDF it will show all the data.
    Regards,
    Raghavendra

  • How to export interactive reports with control break

    Hi to all,
    I have this interactive report:
    select "Work ID", MA01_WORK_GROUP_ID, "Relco",
    "Data Esecuzione", "Stato"
    from (
    SELECT ma01.ma01_work_id as "Work ID", ma01.ma01_work_type_id, ma01.MA01_WORK_GROUP_ID,
    MA01.MA01_START_DATE as "Data Esecuzione",
    MA01.MA01_END_DATE as "Data Fine Esecuzione",
    (SELECT ma07.ma07_system_id
    FROM mobi_aes.ma07_work_system ma07
    WHERE ma07.ma07_work_id = ma01.ma01_work_id
    --and ma07.ma07_SYSTEM_TYPE_ID = 10
    and ma07.ma07_SYSTEM_TYPE_ID in (10, 70, 90)
    AND ROWNUM < 2) AS "ID Contatore",
    (SELECT ma03_value
    FROM mobi_aes.ma03_work_metadata
    WHERE ma03_work_id = ma01.ma01_work_id
    AND ma03_name = 'FORNITURA') AS "Fornitura",
    (SELECT ma03_value
    FROM mobi_aes.ma03_work_metadata
    WHERE ma03_work_id = ma01.ma01_work_id
    AND ma03_name = 'RELCO') AS "Relco",
    MA93.MA93_DESCRIPTION as "Stato"
    FROM mobi_aes.ma05_work_status ma05, mobi_aes.ma01_work ma01, mobi_aes.MA93_STATUS_TYPE ma93, ma11_planning ma11
    WHERE ma01.ma01_work_id = ma05.ma05_work_id
    and ma11.ma11_WORK_ID = ma01.ma01_WORK_ID
    and ma93.MA93_STATUS_ID = ma05.ma05_STATUS_ID
    and ma05.MA05_STATUS_ID in ('AS','CO','NI')
    AND UPPER (ma01.ma01_work_group_id) = DECODE(:P103_WORK_GROUP_ID,'-1',UPPER (ma01.ma01_work_group_id),:P103_WORK_GROUP_ID)
    and trunc(ma11.ma11_start_date) >= DECODE(:P103_START_DATE,'-1',to_date('01/01/1970','dd/MM/yyyy'),to_date(:P103_START_DATE,'dd/MM/yyyy'))
    and trunc(ma11.ma11_END_DATE) <= DECODE(:P103_END_DATE,'-1',to_date('31/12/9999','dd/MM/yyyy'),to_date(:P103_END_DATE,'dd/MM/yyyy'))
    ), mobi_aes.ma51_work_type ma51
    where ma51.ma51_work_type_id = ma01_work_type_id
    and ma51.ma51_work_type_id in (7,50)
    I set a control break on the "Relco" column, so APEX generates correctly more "sub-report".
    I need to export into csv file every single "sub-report".
    Is it possible ?
    Does another solution exist ?
    Thanks for all
    Francesco

    Hello,
    Getting the breaks in the csv export doesn't work unfortunately.
    You would need to create your own procedure to get the correct csv.
    There are many blog posts for that
    e.g http://spendolini.blogspot.com/2006/04/custom-export-to-csv.html
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.sumneva.com/

  • How to change file type when exporting a report with a background job

    Hi,
    I've set up a background job in SM36 to execute a SAP Query I've created, set to send the results as a file to an external email address. When it arrives the file is a .htm (and it seems to cut out after a few pages of data), but I'd like it to export as a .xls, .txt or .csv.
    I've checked the job, the query and my user settings, but I can't find where the change the file extension used - can anyone please tell me how to do it?
    Thanks,
    Tim

    Hi Shiva,
    Can you please confirm where in SQ01/2 the file path information / settings are?
    Thanks,
    Tim

  • Unable to run a report with chart

    I have report rel.6 NT version installed on Windows 2000.Now I want to run my report with a chart.But after I finished the chart
    wizard and try to run it,it gives me error.The error says that it is unable to create a PL/SQL Development Environment context.I also try it on Report Runtime
    and it gives me error "REP-0074:Failure to run another product using SSL".Anybody out there can help me.Is it because of my operating system or ????

    Charlie:
    I think we might be dealing with a bug: I have the same problem. I'm stumpted as well. Let me know if you make any headway. I think it might be best to call Oracle tech support.
    Paul

  • Hyperlink error : on Exporting crystal report to Editable RTF format

    Hi , In my crystal report I have hyperlink which works normally. Now when I export this report to Editable RTF format; the hyperlink gives error "Error! Hyperlink reference not valid. "
    It works for other formats.
    Please help

    This issue was patched for Crystal Reports XI R1
    Hot Fix Name: commonXIwin_chf.zip
    Adapt Number-ADAPT00408450
    Description:
    When exporting a report with email hyperlink to editable RTF format,
    the links do not work.
    New Behavior:
    This is now resolved.
    Here is a link to the hotfix:
    ftp://ftp1.businessobjects.com/outgoing/CHF/commonXIwin_chf.zip
    If you are using XI R2 and are still encountering this, then please check that you have installed the latest service pack (SP3) - and if the issue still occurs, then this may need to be tracked as a bug again.  However my understanding is that this was fixed for R2
    a programmer learning programming from perl is like a chemisty student learning the definition of "exothermic" with dynamite

  • How to Export SSRS report into Excel format using query string

    Hello all,
    I am new to SSRS world.
    Last night i was trying to add a hyperlink  on the SSRS report (.rdl) file, by clicking which we can export the report into "Excel" format, but with no luck.
    Can anybody tell me how to form the hyperlink, so that we can export the report with its current content ( I mean the report content generated by selecting some parameter values)

    Hi Suman85,
    Based on your scenario, you want to add a link on the SSRS report file, and then click it you can export the report into “Excel” format.
    Just as kishan1901 said , you can add a textbox to your report and type in the words “Click here and export the report
    to excel” .Then right-click the textbox and select Properties. Switch to Navigation tab, click the radiobutton of ‘Jump to URL’ and type in the expression ,here is just a example:
     ="http://vyof1884200/ReportServer$youhoo?/My+Adventure+Works/Product+Sales+and+Profitability+by+Month&rs:Command=Render&rs:Format=excel"
    Then preview the report ,you will see
    Click here and export the report to excel 
    when you move the mouse to it ,the mouse will become a hand ,then left-click, it will jump out a dialog box to indicate user whether the excel file should be saved , opened or canceled. 
    I think this is what you want, if you have any further requirement, could you please describe it in more detail? We would give you some resolution or workaround.
    Regards,
    Challen Foo

Maybe you are looking for

  • Table Filter Problem with Operators And ,Or

    Hi , Version : Jdeveloper 11.1.1.5 I Created one view object based on query( Select Empno,Ename From Emp) Based on View Object - I created adf table . In Emp table data is as shown below Empno Ename 1 Hari 2 Ramu and Hari I made "Filterable" Property

  • Additional Lead Column in Report painter

    Hi Gurus Please guide me how to add an additional Lead column in Report painter Thanks Hiren

  • ORDER BY in view definitions

    ORDER BY was not allowed in view definitions in 7.3.4. It is allowed in 8.1.6 but I have not seen any documentation to say when or why it was introduced. There is an old rule that a select statement does not guarantee the order of rows without an ord

  • Flash Builder 4.7 activate issue

    I buy the flash builder 4.7 and  it keeps showing the internet error as i trying to activate the product, i have no idea where i can get the support. all the possible have been try,  such as   - https://lm.licenses.adobe.com   Done ->Congratulations!

  • Simple powershell help

    Hi, I need to change multiple .txt file names in a folder. I have found information about renaming the files using Powershell but I do not what to rename the file. I want to add an "_Deviation" to it. I go into powershell and can get this far. PS C:\