Graphical Report Copy to excel / word

Dear Experts,
The graphical reports that we get from MCI3 (In all MCI Reports), can we save them to any excel or word file or any other system file for history. If yes please guide how ?
thanks
DM

Hi,
You can download to excel and word format.
Please follow the given below:
After executed the report Select ->System->Save-->Local file - Excel format given correct path where you want to store.
Regards
Sen

Similar Messages

  • How to copy an Excel, Word, music or video file from my Windows computer to iphone 4s?

    I am using my new iphone 4s for 2 weeks now.  I am not able to copy my favourite old music and video files and some useful Excel, Word and Pdf files from my Sony Vaio.  Why doesn't it allow for copy paste when it is connected to my laptop by USB cable?  Moreover it doesn't accept Bluetooth connection from my computer as well.  Then I tried emailing the file, but it doesn't download the file, instead makes a link in the homescreen and for opening the file, I have to connect to the inernet. 
    I don't know what is happening with this phone.  These are the basic things which a user wants in any phone.  If it is not allowing for these things despite all that hypes and fame sorrounding it, it is a pretty useless thing.  So is there any option to copy the files onto it?  Thank you in advance.

    Something doesnt quite sound right here, firstly an iPhone isnt a media storage device so you cant simply move files to it, you need to use an App such as Documentd to Go or cloud storage such as Drop Box or Sky drive to store the documents then you will be able to View them from your phone.
    Emailing them is another option and this works fine for all the people i know, for pdf, excel, word and txt documents and most common files but again this is view only.
    Apple have their our apps, Pages, Numbers etc which also uses the cloud to store the documents which can then be accessed from any ios device or mac etc.
    Finally as mentioned above, music and video's are managed through iTunes, using Apple products means you need to use the tools offerred by Apple to get best use of the device, thats just the way it is with Apple.

  • Export Reports (PDF,RTF,Excel,Word)

    i am having difficulty setting up reports 6i to export in different formats. does anyone have experience in exporting reports either to a file server or e-mail in different formats.
    thank you,
    randall timmerman

    Hi Alisa,
    unfortunately changing option re. compatibility view does not help either. Checked or unchecked I still have the same. Re. Power view browser support I would understand this for excel and word, but why pdf does not work? Version of sql server is "Microsoft
    SQL Server 2008 R2 (SP2) - 10.50.4000.0 (X64)   Jun 28 2012 08:36:30   Copyright (c) Microsoft Corporation  Standard Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) ". I saw some people recommend RsClientPrint
    to be R2/SP2 version 10.50.4000. So I have this.
    At the end I can force users to use Mozzila Firefox or Google Chrome, but I would like to know or find the reason that this Microsoft product does not work welll with Microsoft IE.
    I am attaching screen shot of popup I have got before my IE starts "hanging"
    In header on clicking to export to pdf i have following address
    http://localhost:51623/Reserved.ReportViewerWebControl.axd?Culture=1033&CultureOverrides=True&UICulture=9&UICultureOverrides=True&ReportStack=1&ControlID=e1713cc4e4064c6f99208bac1a4f53bd&Mode=true&OpType=Export&FileName=MyReportName0107&ContentDisposition=OnlyHtmlInline&Format=PDF

  • Can you open a report in Excel/Word desktop instead of the web pugin?

    using run_report_object( and web.show_document,
    how or can you get a report to open in the desktop/full version of MS Excel/Word instead of the web plugin versions?
    I can get the browser to open a report in pdf with my desktop adobe reader, but not with an rtf or xml/delimited desformat.
    Currently I don't pass a mimetype when opening as a pdf, but I do pass one in the url when i am destypes of xml, delimited and rtf,
    as this is the only way i have found out how to open the reports in word/excel.
    I'm in the process of upgrading from forms 6 client/server to 10g developer suite, so this is my try with a web based system.
    Does anyone have any suggestions, or where I should look.
    Below I listed my code from a procedure.
    the first part of the procedure is alot of converting, but if you skip down to the part between the 2 sets of double lines this fairly standard.
    PACKAGE BODY pmc_lib IS
    -- Procedure to run the report.
    procedure run_reports(v_report_name in varchar2, -- Report Name with or w/o a path.
    v_commode in number default synchronous, -- commode
    v_execmode in number default runtime, -- execute mode
    v_file_sys in number default filesystem, -- dummy
    v_param_list in paramlist, -- parameter list
    v_show_modes in varchar2 default null) is -- used for testing,
    -- if set to anthing but null, the report properties will display
    -- on the screen through an alert prior to printing.
    v_errorcode number;
    v_errortext varchar2(600);
    v_initialized boolean := false;
    v_prop_reportserver varchar2(200);
    v_report_path varchar2(200);
    v_user varchar2(100);
    v_user_sessionid number;
    v_forms_version varchar2(100);
    v_default_report_server varchar2(200);
    v_default_server_domain_path varchar2(200);
    v_connect_string varchar2(3) := get_application_property(connect_string);
    v_user_name varchar2(35) := get_application_property(username);
    report_id report_object;
    reportserverjob varchar2(100);
    v_jobid varchar2(100);
    rep_status varchar2(100);
    v_url varchar2(500);
    v_url2 varchar2(500);
    v_parameter_value varchar2(100);
    v_destype_param_value varchar2(100) := null;
    v_desformat_param_value varchar2(100) := null;
    v_desname_param_value varchar2(100) := null;
    v_value_n number := 0;
    v_param_type number := text_parameter;
    v_prop_execmode number;
    v_prop_commode number;
    v_prop_destype number;
    v_prop_filename varchar2(200);
    v_prop_source_block varchar2(200) := null;
    v_prop_query_name varchar2(200) := null;
    v_prop_desname varchar2(200) := null;
    v_prop_desformat varchar2(200) := null;
    v_prop_reportserver varchar2(200) := null;
    v_prop_other varchar2(200) := null;
    v_mimetype varchar2(200) := null;
    v_selected_mimetype varchar2(200) := null;
    report_not_generated exception;
    report_id_not_found exception;
    BEGIN
    v_forms_version := get_application_property(version);
    v_prop_reportserver := get_report_object_property('report1', report_server);
    v_report_path := null;
    v_user := v_user_name || '/' ||
    get_application_property(password) || '@' ||
    v_connect_string;
    if v_connect_string = 'NNN' then
    v_default_server_domain_path := 'pmcoracapp01.aapmc.com/reports/rwservlet';
    v_default_report_server := 'rep_pmcoracapp01_frhome1';
    else
    v_default_server_domain_path := 'oradevsrv.aapmc.com/reports/rwservlet';
    v_default_report_server := 'rep_oradevsrv_frhome1';
    end if;
    v_initialized := true;
    -- Check to see what version of forms is running.
    if substr(v_forms_version, 1, 1) <> '6' then
    -- Check to see if WEB version is running
    -- This may be an unnecessary check.
    if (get_application_property(user_interface) = 'WEB') then
    report_id := find_report_object('report1');
    -- id_null won't work on a report_id in Version 6, may put back in 10g once version 6 is gone completly
    -- if id_null(report_id) then
    -- raise report_id_not_found;
    -- end if;
    -- Because of Convertions from old system the following are needed.
    -- 1) If 'execmode' is runtime, then change it to batch.
    if v_execmode = runtime then
         v_prop_execmode := batch;
    else
         v_prop_execmode := v_execmode;
    end if;
    -- 2) If Report name has an attached path, then remove it.
    v_value_n := instr(lower(v_report_name), 'k:\pmc\new\');
    if v_value_n = 0 then
         v_prop_filename := v_report_name;
    else
         v_prop_filename := substr(v_report_name, v_value_n + 11);
    end if;
    -- From looking at the FORMS, 'destype' parameter is always passed in from the FORM.
    -- It is either 'preview' or 'file'.
    -- This is here for the converstion from Forms 6 to 10g.
    -- If for some reason destype has not been passed in as a parameter, you will get a FORM error,
    -- saying the parameter does not exists.
    begin
    -- 3) If 'destype' is one of the following, then change it to cache.
    get_parameter_attr(v_param_list, 'destype', v_param_type, v_destype_param_value);
    if lower(nvl(v_destype_param_value, 'null')) in ('preview', 'file', 'null') then
    v_prop_destype := cache;
    -- 3a) If 'destype' was = 'file' then check the 'desformat' and 'desname'.
    if lower(nvl(v_destype_param_value, 'null')) = 'file' then
    -- 3b) Get 'desformat' value
    get_parameter_attr(v_param_list, 'desformat', v_param_type, v_desformat_param_value);
    -- 'delimited' was not working, so change all 'delimited' to 'delimiteddata'.
    if lower(nvl(v_desformat_param_value, 'null')) = 'delimited' then
         v_desformat_param_value := 'delimiteddata';
    end if;
    -- 3c) If 'desformat' is NOT one of the following, then change it to pdf.
    if lower(nvl(v_desformat_param_value, 'null')) not in ('pdf', 'xml', 'rtf', 'delimiteddata') then
    v_prop_desformat := 'pdf';
    else
    v_prop_desformat := lower(v_desformat_param_value);
    end if;
    -- 4) Get 'desname' property.
    get_parameter_attr(v_param_list, 'desname', v_param_type, v_desname_param_value);
    v_prop_desname := lower(v_desname_param_value);
    end if;
    else
    v_prop_destype := lower(v_destype_param_value);
    end if;
    exception
    when others then
    null;
    end;
    -- If a desformat is rtf, xml, or delimited then get a mimetype to pass to the url
    if lower(v_prop_desformat) = 'rtf' then
    v_mimetype := '&mimetype=application/msword';
    elsif lower(v_prop_desformat) = 'xml' then
    v_mimetype := '&mimetype=application/vnd.ms-excel';
    elsif lower(v_prop_desformat) = 'delimiteddata' then
    v_mimetype := '&mimetype=application/vnd.ms-excel';
    end if;
    -- 6) If the Following are not set within the Report Object then
    -- set them to the following defaults.
    -- These are al required to be set for the Report Object to Function.
    -- These are the defaults for AAPMC.
    v_prop_execmode := nvl(v_prop_execmode, batch);
    v_prop_commode := nvl(v_prop_commode, synchronous);
    v_prop_destype := nvl(v_prop_destype, cache);
    v_prop_desformat := nvl(v_prop_desformat, 'pdf');
    v_prop_reportserver := nvl(v_prop_reportserver, v_default_report_server);
    -- Set All Report_Object Properties
    set_report_object_property(report_id, report_execution_mode, v_prop_execmode);
    set_report_object_property(report_id, report_comm_mode, v_commode);
    set_report_object_property(report_id, report_destype, v_prop_destype);
    set_report_object_property(report_id, report_filename, v_prop_filename);
    set_report_object_property(report_id, report_source_block, v_prop_source_block);
    set_report_object_property(report_id, report_query_name, v_prop_query_name);
    set_report_object_property(report_id, report_desname, v_prop_desname);
    set_report_object_property(report_id, report_desformat, v_prop_desformat);
    set_report_object_property(report_id, report_server, v_prop_reportserver);
    set_report_object_property(report_id, report_other, v_prop_other);
    -- Run Report_Object
    reportserverjob := run_report_object(report_id, v_param_list);
    v_jobid := substr(reportserverjob, length(v_prop_reportserver) + 2, length(reportserverjob));
    -- If Report Status is not 'FINISHED', then loop till it is.
    if reportserverjob is not null then
    rep_status := report_object_status(reportserverjob);
    while rep_status in ('RUNNING', 'OPENING_REPORT', 'ENQUEUED') loop
    rep_status := report_object_status(reportserverjob);
    end loop;
    if rep_status <> 'FINISHED' then
    raise report_not_generated;
    end if;
    -- Create 1st part of url.
    v_url := 'http://' || v_default_server_domain_path || '/getjobid' || v_jobid || '?server=' || v_prop_reportserver;
    -- Check for mimetype.
    if v_mimetype is not null then
    v_url := v_url || v_mimetype;
    end if;
    -- Final part of url.
    v_url2 := 'javascript:window.open("' || v_url || '", "", "fullscreen=no, titlebar=no, location=no, toolbar=no, menubar=no, status=no, resizable=yes"); self.close()';
    -- This is the built-in that calls a new browser window
    web.show_document(v_url2,'_blank');
    else
    raise report_not_generated;
    end if;
    end if;
    -- Destroy the parameter list.
    destroy_parameter_list(v_param_list);
    else
    -- This section if for Client Server, Version 6 of forms.
    -- It will do the same as before the conversion.
    -- It is only used before the complete conversion.
    if v_report_name is null then
    return;
    end if;
    v_value_n := instr(v_report_name, 'k:\pmc\new\');
    if v_value_n = 0 then
         v_prop_filename := 'k:\pmc\new\' || v_report_name;
    else
    v_prop_filename := v_report_name;
    end if;
    run_product(reports,
    v_prop_filename,
    v_commode,
    v_execmode,
    filesystem,
    v_param_list,
    null);
    end if;      
    -- create history record of the report being run
    insert into pmc_report_history values(
    s_pmc_report_history.nextval,
    v_prop_filename,
    v_user_name,
    sysdate,
    v_forms_version,
    v_jobid,
    v_destype_param_value,
    v_desformat_param_value,
    v_desname_param_value,
    v_prop_destype,
    v_prop_desformat,
    v_prop_desname,
    v_mimetype,
    v_window_open_params);
    commit;
    exception
    when report_id_not_found then
    show_user_alert('ERROR: Cannot Find Report Object!', null);
    when report_not_generated then
    show_user_alert('ERROR: Report Not Generated!', null);
    when others then
    v_errorcode := SQLCODE;
    v_errortext := SQLERRM;
    show_user_alert('ERROR : ' || v_errorcode || ' = ' || v_errortext, null);
    end;
    end;

    What you could try is downloading the report to the client pc using WEBUTIL_FILETRANSFER.URL_TO_CLIENT, then open the locally save file using something like:
    CLIENT_HOST('cmd /c rundll32.exe url.dll,FileProtocolHandler "localfilename"');

  • For a reporting alternative (design in Word or Excel)

    If you are looking for an alternative in reporting, please take a look at Windward.
    Windward Reports, the leader in enterprise report generation, has released the world’s first enterprise reporting software that enables use of Excel as a design tool. The Windward Reports Server Engine is perfect for users creating both java reports and .net reports alike, and now allows users to design reports in both Microsoft Word and Microsoft Excel as well.
    Windward, a leader in with its design-in-Word reporting software because of its ease of use, now adds the advantages of Excel to its portfolio of simple-to-use, superior reporting products. Windward’s new AutoTag 6.0 reporting software uniquely uses Excel to intelligently figure out sums and number formatting, and allows users to build a table which supports calculations. AutoTag 6.0 still outputs to Word, or any other output format, to produce reporting documents.
    Why is this Excel release so important? Simply put: Freedom. By creating an easy-to-use design tool which allows users to design their reports in Excel (in addition to word), Windward is freeing up thousands of IT man-hours normally allocated to report design, and including Excel business users in their ‘power-to the people’ philosophy. Now, non-technical business users who prefer Excel, can design their own reports and stay within their comfort zone while doing so. Windward Reports AutoTag for Excel doesn’t just look like Excel, it IS Excel.
    How Does It Work? Begin with a worksheet. Using the AutoTag pull-down menu, select a data source such as an SQL database or XML file. (AutoTag works in conjunction with the Windward Reports Standard Server Engine, which gives your PC the ability to communicate with your organization's data sources, such as its SQL databases and XML files.) You use standard Excel commands to format and edit the report, and you assign tags to the data fields using the AutoTag pull-down menu. When finished, you save your template and, if you wish, verify that tags are correct with AutoTag's "validate" function.
    What makes this unique? With AutoTag for Excel, your number formatting always carries through – it doesn’t matter if you output to RTF, PDF, or any other type. And, by using Excel templates you have a way to easily, and automatically generate reports that perform calculations on a collection of values! For instance, you might use Excel to sum all of the line-item amounts that are generated by an AutoTag. While AutoTag was always easy to use, this additional capability offers functions not available in a word-designed template, allowing the software to be used by more people, in more ways.
    When you generate the report Windward Reports merges this template with the data you have selected. The finished report, with all of your formatting, positioning and design, is available in minutes instead of hours or even days.
    Download a demo or check out a sample report at http://www.windwardreports.com. For more information on how you can use Excel or Word to design your reports, call 303-499-2544.

    Program: http://www.adobe.com/products/acrobat.html
    Online service: https://www.acrobat.com/welcome/en/home.html

  • I am using report generation toolkit 1.1 with Labview 7.0 and Office 2003 profession​al. The create new report VI opens Excel but throws error (-21471672​62- from automation open VI) when I try to open MS word. please help...

    I am using report generation toolkit 1.1 with Labview 7.0 and Office 2003 professional. The create new report VI opens Excel but throws error (-2147167262- from automation open VI) when I try to open MS word. please help...

    Hi Leo22,
    Does this error occur if you use any of the example programs that come shipped with LabVIEW? I would try opening one of the examples that write data to Word and see if those give you an error. Also, have you tried just putting down a New Report.VI and change the report type to Word? If this simple vi (that's all you need to open Word) breaks, I would check to see if there are any instances of Word still open. Check the task manager to see if any word processes are still open. There should not be a problem accessing Word 2003 from LabVIEW 7.0. If neither of these solutions work, please give some more detail about your application and we can research further. Thanks!
    Jeremy L.
    National Instruments
    Jeremy L.
    National Instruments

  • How to copy and paste the graphics from illustrator to MS word. What I tried is exporting in png with highest resolution and then inserting in to word. This loses a bit of resolution in comparison to direct copy and paste as EMF.  But if I do a copy and p

    How to copy and paste the graphics from illustrator to MS word. What I tried is exporting in png with highest resolution and then inserting in to word. This loses a bit of resolution in comparison to direct copy and paste as EMF.  But if I do a copy and paste, and then take a print of the document, all the graphs and text is printed upside down, flipped back.

    Use the Pencil Tool
    alex
    adrian stock wrote:
    > How to copy and paste a single pixel
    >
    > I want to copy a single pixel and then paste it in the
    position of
    > another pixel in the same image.
    >
    > (This is in effect changing the colour of the target
    pixel, isn't it.
    > But in my case copying an existing pixel seems simpler
    than selecting a
    > colour from the swatch or using the colour picker.)
    >
    > What is the most efficient way of doing this?
    >
    > I tried to select one pixel with the marquee tool. Then
    copied it with
    > control-C, but then how do I select the target pixel and
    paste with
    > control-V?
    >
    > Thanks for your help.
    >
    > Adrian
    >

  • Issue with SSRS Report Exporting to Excel and word

    Hi,
    When report is exporting in word and Excel getting format issue, but same report export with pdf there is  no issue.
    Regards,
    Afroz

    You need to be always careful when export format is Word and specially Excel. Sometimes report result looks good in Report Viewer and PDF too, but it may not in MS Word and MS Excel.
    You need to understand Word and Excel limitations and align all the data regions (Tablix, Rectangles, Texboxes) in correct way.
    Also, you may post the actual formatting issue that you get. (With screenshot if possible)
    Please read Limitation section in below:
    Exporting to Microsoft Word
    Exporting to Microsoft Excel
    Refer:
    Ten Common SQL Server Reporting Services Challenges and Solutions
    -Vaibhav Chaudhari

  • Does creating Excel,Word,PDF reports & printing in Apex need licensing ?

    I am new to this Apex 4.0
    I have installed the Apex 4.0 with Oracle 10g database.
    Now using Apex if I create any web application, and develop some reports in the web application.
    1) Now to do the printing of the reports in Excel,Word,PDF does Apex need some other components to be installed ?
    2) Does those components needs licensing ? or are they free like Apex 4.0 ?

    Hi,
    Yes you need other components
    http://www.oracle.com/technetwork/developer-tools/apex/configure-printing-093060.html
    Some of solutions need license, like BI Publisher.
    There is also free solutions using e.g. Cocoon, Jasper reports ...
    http://carlback.blogspot.com/2007/03/apex-cocoon-pdf-and-more.html
    http://www.poveravoce.net/blog/?p=85
    http://ubuntuforums.org/showthread.php?t=1004742
    http://daust.blogspot.com/2010/09/jasper-reports-integration-v1100.html
    ANNOUNCE:JAPEX Open Source PDF reporting & Blob Download/Flash upload
    Regards,
    Jari

  • Export BIRT reports to PDF, Excel or Word is not working properly

    Dear Forum members,
    We are seeing an issue with the BIRT reports Export option where some reports are working fine(exporting properly) in PDF but Not in Excel or Word or PowerPoint.
    In some cases, we are NOT able to export some reports in PDF as well.
    BIRT reports are integrated in our java application and Weblogic is our application server. We have both Windows and Linux environment.
    We see the errors shown below. Please let me know if any one knows how to resolve this issue.
    + org.eclipse.birt.report.service.api.ReportServiceException: Error happened while running the report.
    AxisFault
    faultCode: {}Server.userException
    faultSubcode:
    faultString: org.eclipse.birt.report.service.api.ReportServiceException: Error happened while running the report.
    faultActor:
    faultNode:
    faultDetail:
    {}stackTrace:org.eclipse.birt.report.service.api.ReportServiceException: Error happened while running the report.
    at org.eclipse.birt.report.service.ReportEngineService.throwDummyException(ReportEngineService.java:1104)
    at org.eclipse.birt.report.service.ReportEngineService.renderReport(ReportEngineService.java:1551)
    at org.eclipse.birt.report.service.BirtViewerReportService.renderReport(BirtViewerReportService.java:369)
    at org.eclipse.birt.report.service.actionhandler.BirtRenderReportActionHandler.__execute(BirtRenderReportActionHandler.java:65)
    at org.eclipse.birt.report.service.actionhandler.AbstractBaseActionHandler.execute(AbstractBaseActionHandler.java:90)
    at org.eclipse.birt.report.presentation.aggregation.layout.FramesetFragment.doService(FramesetFragment.java:222)
    at org.eclipse.birt.report.presentation.aggregation.layout.FramesetFragment.service(FramesetFragment.java:86)
    at org.eclipse.birt.report.servlet.ViewerServlet.__doGet(ViewerServlet.java:181)
    at org.eclipse.birt.report.servlet.BirtSoapMessageDispatcherServlet.doPost(BirtSoapMessageDispatcherServlet.java:278)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at org.eclipse.birt.report.servlet.BirtSoapMessageDispatcherServlet.service(BirtSoapMessageDispatcherServlet.java:122)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
    at org.eclipse.birt.report.filter.ViewerFilter.doFilter(ViewerFilter.java:68)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3748)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3714)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2283)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2182)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1491)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:263)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused by: org.eclipse.birt.report.engine.api.EngineException: Error happened while running the report.
    at org.eclipse.birt.report.engine.api.impl.RenderTask.render(RenderTask.java:308)
    at org.eclipse.birt.report.service.ReportEngineService.renderReport(ReportEngineService.java:1545)
    at org.eclipse.birt.report.service.BirtViewerReportService.renderReport(BirtViewerReportService.java:369)
    at org.eclipse.birt.report.service.actionhandler.BirtRenderReportActionHandler.__execute(BirtRenderReportActionHandler.java:67)
    at org.eclipse.birt.report.service.actionhandler.AbstractBaseActionHandler.execute(AbstractBaseActionHandler.java:90)
    at org.eclipse.birt.report.presentation.aggregation.layout.FramesetFragment.doService(FramesetFragment.java:222)
    at org.eclipse.birt.report.presentation.aggregation.layout.FramesetFragment.service(FramesetFragment.java:86)
    at org.eclipse.birt.report.servlet.ViewerServlet.__doGet(ViewerServlet.java:181)
    at org.eclipse.birt.report.servlet.BirtSoapMessageDispatcherServlet.doPost(BirtSoapMessageDispatcherServlet.java:278)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:821)
    at org.eclipse.birt.report.servlet.BirtSoapMessageDispatcherServlet.service(BirtSoapMessageDispatcherServlet.java:123)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:61)
    at org.eclipse.birt.report.filter.ViewerFilter.doFilter(ViewerFilter.java:69)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:61)
    ... 9 more
    Caused by: java.lang.NoClassDefFoundError: sun/awt/X11/XToolkit
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:170)
    at java.awt.Toolkit$2.run(Toolkit.java:832)
    at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:824)
    at org.eclipse.birt.report.engine.layout.pdf.util.PropertyUtil.getScreenDpi(PropertyUtil.java:322)
    at org.eclipse.birt.report.engine.layout.pdf.util.PropertyUtil.getRenderDpi(PropertyUtil.java:294)
    at org.eclipse.birt.report.engine.emitter.excel.layout.ExcelContext.setReport(ExcelContext.java:113)
    at org.eclipse.birt.report.engine.emitter.excel.ExcelEmitter.start(ExcelEmitter.java:88)
    at org.eclipse.birt.report.engine.api.impl.RenderTask$PageRangeRender.render(RenderTask.java:585)
    at org.eclipse.birt.report.engine.api.impl.RenderTask.render(RenderTask.java:284)
    at org.eclipse.birt.report.service.ReportEngineService.renderReport(ReportEngineService.java:1545)
    at org.eclipse.birt.report.service.BirtViewerReportService.renderReport(BirtViewerReportService.java:369)
    at org.eclipse.birt.report.service.actionhandler.BirtRenderReportActionHandler.__execute(BirtRenderReportActionHandler.java:65)
    at org.eclipse.birt.report.service.actionhandler.AbstractBaseActionHandler.execute(AbstractBaseActionHandler.java:90)
    at org.eclipse.birt.report.presentation.aggregation.layout.FramesetFragment.doService(FramesetFragment.java:222)
    at org.eclipse.birt.report.presentation.aggregation.layout.FramesetFragment.service(FramesetFragment.java:86)
    at org.eclipse.birt.report.servlet.ViewerServlet.__doGet(ViewerServlet.java:181)
    at org.eclipse.birt.report.servlet.BirtSoapMessageDispatcherServlet.doPost(BirtSoapMessageDispatcherServlet.java:278)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at org.eclipse.birt.report.servlet.BirtSoapMessageDispatcherServlet.service(BirtSoapMessageDispatcherServlet.java:122)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
    at org.eclipse.birt.report.filter.ViewerFilter.doFilter(ViewerFilter.java:68)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:60)
    ... 9 more

    Does this issue happen in both environments, Windows and Linux?
    Do you have some reports that can be exported successfully to Word, Excel and Power Point?
    That specific error indicates there is an error finding the X11 XToolkit in the class path.

  • Excel/word graphics into indesign nightmare

    Hello,
    i'm having a hell of time trying to import excel/word(embedded excel with anotations) charts into indesign(like barcharts, pie charts, etc).
    They get pasted as an image(when the original is part vector, part image, part text) always with random sizes that when i resize them to fit the page text and graph always looks terrible due to what looks like a very crude linear scaling(haven't found any other option to use a proper lanczos resize/resample) thus graphs end up looking like crap really, and it's extremelly time consuming
    so, how do you people do this?, do you maybe paste it into something intermediate that maintains proper text/graph metadata?, i mean, people that make technical boosk(or excel manuals maybe) in indesign how do they do them?!

    the "place PDF" method has worked perfectly!, thanks A LOT!
    and yes, it will require some retooling of every graph but i've reduced the steps to the minimum necessary per graph to optimize the workflow and it's not very cumbersome(at least not compared to having to redo/transfer tables, urgh those really take a lot of time).
    A lot of the issues is because the source material was done in A4 size, including graphs, and now in ID i'm working with a much smaller "book size" so you can imagine that when i transfer huge graphs and need to downsize them, the vectors are somewhat ok, but text went to lalala-land
    Now i've made an intermediate word file with the same sheet size as ID so i resize and retool there, export to PDF selection and thus i only need a small amount of placement/content adjustment(mostly to kill the white fill areas) in ID.
    one hting i've noticed is that ID is now complaning about missing fonts in ALL of the placed PDFs, and they're normal system fonts(double checked and i do have them), on Word i have the option to embed fonts(no subset) but NOT common system fonts!, yet the imported data seems perfectly fine, what's going on?, do i need to fully incrust ALL fontsin every pdf?

  • When I open my Excel/Word 2004, the 'Application Quit Unexpectedly' message appears.  This just happened with Viber also.  Help!  I don't know that much about computer problems.

    When I open my Excel/Word 2004, the 'Application Quit Unexpectedly' message appears and I cannot relaunch.
    This just happened for Viber also.
    I am not to knowledgeable on technical issues.
    Please help!
    Thank you.

    Thank you for your reply.  Here is the full copy:
    Process:         Microsoft Excel [119]
    Path:            /Users/susanslater/Desktop/Microsoft Office 2004/Microsoft Excel
    Identifier:      com.microsoft.Excel
    Version:         090512 (11.5.5)
    Code Type:       PPC (Translated)
    Parent Process:  launchd [63]
    Date/Time:       2009-11-01 19:46:37.528 +0900
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  DE40358D-E5BE-46DF-8382-5E64FE348B72
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0
    Thread 0 Crashed:
    0   translate                               0xb80bcd58 0xb8000000 + 773464
    1   translate                               0xb80b7007 0xb8000000 + 749575
    2   translate                               0xb80d49c0 0xb8000000 + 870848
    3   translate                               0xb813ce79 spin_lock_wrapper + 1981
    4   translate                               0xb8011b64 0xb8000000 + 72548
    Thread 1:
    0   ???                                     0x800bc286 0 + 2148254342
    1   ???                                     0x800c3a7c 0 + 2148285052
    2   translate                               0xb818b6ea CallPPCFunctionAtAddressInt + 202886
    3   ???                                     0x800ed155 0 + 2148454741
    4   ???                                     0x800ed012 0 + 2148454418
    Thread 2:
    0   translate                               0xb81529ef spin_lock_wrapper + 90931
    1   translate                               0xb8183633 CallPPCFunctionAtAddressInt + 169935
    2   translate                               0xb81861e2 CallPPCFunctionAtAddressInt + 181118
    3   translate                               0xb80dfb0b 0xb8000000 + 916235
    4   ???                                     0x812d8b96 0 + 2167245718
    Thread 3:
    0   translate                               0xb8152b6b spin_lock_wrapper + 91311
    1   translate                               0xb817b608 CallPPCFunctionAtAddressInt + 137124
    2   translate                               0xb80bdb8b 0xb8000000 + 777099
    3   translate                               0xb80b7007 0xb8000000 + 749575
    4   translate                               0xb80d49c0 0xb8000000 + 870848
    5   translate                               0xb813d75f spin_lock_wrapper + 4259
    6   translate                               0xb8011b64 0xb8000000 + 72548
    Thread 4:
    0   translate                               0xb8152c24 spin_lock_wrapper + 91496
    1   translate                               0xb817b31e CallPPCFunctionAtAddressInt + 136378
    2   translate                               0xb80bdb8b 0xb8000000 + 777099
    3   translate                               0xb80b7007 0xb8000000 + 749575
    4   translate                               0xb80d49c0 0xb8000000 + 870848
    5   translate                               0xb813ce79 spin_lock_wrapper + 1981
    6   translate                               0xb8011b64 0xb8000000 + 72548
    Thread 5:
    0   translate                               0xb8152863 spin_lock_wrapper + 90535
    1   translate                               0xb816e79d CallPPCFunctionAtAddressInt + 84281
    2   translate                               0xb80bdb8b 0xb8000000 + 777099
    3   translate                               0xb80b7007 0xb8000000 + 749575
    4   translate                               0xb80d49c0 0xb8000000 + 870848
    5   translate                               0xb813ce79 spin_lock_wrapper + 1981
    6   translate                               0xb8011b64 0xb8000000 + 72548
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0xb80bcd30  ecx: 0x00000000  edx: 0x0000001a
      edi: 0x00000000  esi: 0x80303820  ebp: 0xb7fffa08  esp: 0xb7fff9d0
       ss: 0x0000001f  efl: 0x00010202  eip: 0xb80bcd58   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
    0xb8000000 - 0xb81d7fe7  translate ??? (???) /usr/libexec/oah/translate
    Translated Code Information:
    Rosetta Version:  21.03
    Args:            /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMAp p /Users/susanslater/Desktop/Microsoft Office 2004/Microsoft Excel
    Exception: EXC_BAD_ACCESS (0x0001)
    Thread 0: (0xb011cd64, 0xb8152b6b)
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp :   + 0
    0x005e0934: /Users/susanslater/Desktop/Microsoft Office 2004/Office/ShMem.bundle/Contents/MacOS/ShMem : _FWaitForConnection + 48
    0x848dcbc4: No symbol
    0x8483d558: No symbol
    0x8483d73c: No symbol
    0x903bb42c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _PrivateMPEntryPoint + 80
    0x903bb42c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _PrivateMPEntryPoint + 80
    0x945841d4: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    PPC Thread State
    srr0: 0x00000000          srr1: 0x00000000                                 vrsave: 0x00000000
    cr:  0xXXXXXXXX                    xer: 0x00000000                     lr: 0x9459b7d8                    ctr: 0x9459b7c4
    r00: 0x00000194           r01: 0xf01019d0           r02: 0x00000000           r03: 0x00000013
    r04: 0xf0101a68           r05: 0xf0101a60           r06: 0xf0101d40           r07: 0x00000004
    r08: 0x00000000           r09: 0x100b2fd0           r10: 0x00000000           r11: 0x0064e110
    r12: 0x9459b7c4           r13: 0x00000000           r14: 0x00000000           r15: 0x00000000
    r16: 0x00000000           r17: 0x00000000           r18: 0x00000000           r19: 0x00000000
    r20: 0x00000000           r21: 0x00000000           r22: 0x00000000           r23: 0x00000000
    r24: 0x00000000           r25: 0x00000000           r26: 0x00000000           r27: 0x00000000
    r28: 0x00000000           r29: 0x009f8e00           r30: 0xf0101b28           r31: 0xf0101b28
    Thread 1: (0xb009a83c, 0xb81529ef)
    0x0082c800: No symbol
    0x00644204: /Users/susanslater/Desktop/Microsoft Office 2004/Office/ShMem.bundle/Contents/MacOS/ShMem : _MerpUnregisterCFMFragment + 3156
    0x945841d4: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp :   + 0
    PPC Thread State
    srr0: 0x00000000          srr1: 0x00000000                                 vrsave: 0x00000000
    cr:  0xXXXXXXXX                    xer: 0x00000000                     lr: 0x944fa120                    ctr: 0x944f31f0
    r00: 0xffffffe1           r01: 0xf0080d60           r02: 0x00000001           r03: 0xf0080e4c
    r04: 0x00000102           r05: 0x00000000           r06: 0x00000054           r07: 0x00003403
    r08: 0x000003e8           r09: 0x00000000           r10: 0x000eb010           r11: 0xa076a68c
    r12: 0x944f31f0           r13: 0x00000000           r14: 0x00000000           r15: 0x00000000
    r16: 0x00000000           r17: 0x00000000           r18: 0x00000000           r19: 0x00000000
    r20: 0x00000000           r21: 0x00000000           r22: 0x00000000           r23: 0x00000000
    r24: 0xf0080e4c           r25: 0x00000054           r26: 0x00003403           r27: 0x000003e8
    r28: 0x00000000           r29: 0x00000102           r30: 0x00000102           r31: 0x0064efb0
    Thread 2: (0xb0220d64, 0xb8152863)
    0x903cf818: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _MPWaitOnSemaphore + 40
    0x8483dca8: No symbol
    0x903bb42c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _PrivateMPEntryPoint + 80
    0x903bb42c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _PrivateMPEntryPoint + 80
    0x945841d4: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp :   + 0
    PPC Thread State
    srr0: 0x00000000          srr1: 0x00000000                                 vrsave: 0x00000000
    cr:  0xXXXXXXXX                    xer: 0x00000000                     lr: 0x903cf85c                    ctr: 0x944f3260
    r00: 0xffffffda           r01: 0xf0203d60           r02: 0x0013bda0           r03: 0x00007803
    r04: 0x0000003c           r05: 0x00000000           r06: 0x00000000           r07: 0xf0203c60
    r08: 0x00000010           r09: 0x000f4240           r10: 0xffffff3f           r11: 0xa076aa78
    r12: 0x944f3260           r13: 0x00000000           r14: 0x00000000           r15: 0x00000000
    r16: 0x00000000           r17: 0x00000000           r18: 0x00000000           r19: 0x00000000
    r20: 0x00000000           r21: 0x00000000           r22: 0x00000000           r23: 0x00000000
    r24: 0x00000000           r25: 0x00000000           r26: 0x00000000           r27: 0x00000000
    r28: 0x00000000           r29: 0x0000ea60           r30: 0x00000000           r31: 0x903cf7fc
    Thread 3: Crashed (0xb7fff9d0, 0xb80bcd58)
    0x85181738: No symbol
    0x851816a0: No symbol
    0x85181490: No symbol
    0x847438d4: No symbol
    0x92fadda0: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation : _CFArrayApplyFunction + 352
    0x8475675c: No symbol
    0x84756810: No symbol
    0x9577dc4c: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1488
    0x9577cde4: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 468
    0x9577cc00: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : _SendEventToEventTargetWithOptions + 56
    0x95843b48: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : DockCallback(unsigned long, unsigned int, void*, void*) + 1648
    0x9697250c: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics : _notifyDatagramHandler + 476
    0x9693410c: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics : _CGSDispatchDatagramsFromStream + 740
    0x969339a8: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics : _snarfEvents + 292
    0x96c2cbd0: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics : _CGSGetNextEventRecordInternal + 152
    0x969337e4: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics : _CGEventCreateNextEvent + 28
    0x9577f408: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : PullEventsFromWindowServerOnConnection(unsigned int, unsigned char) + 88
    0x957aa180: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : _PullEventsFromWindowServer + 24
    0x957aa0d0: /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox : _FlushSpecificEventsFromQueue + 72
    0x83f6ac5c: No symbol
    0x83f6ab90: No symbol
    0x83f7a958: No symbol
    0x83f79fe8: No symbol
    0x83f79f60: No symbol
    0x83f79d14: No symbol
    0x903f08d4: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _ReleaseClosure + 896
    0x903f052c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _TerminateApplication + 88
    0x94505acc: /usr/lib/libSystem.B.dylib : ___cxa_finalize + 240
    0x945059a8: /usr/lib/libSystem.B.dylib : _exit + 36
    0x924edab8: /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices : _PlotIconRef + 0
    0x84aab310: No symbol
    0x84aab2e0: No symbol
    0x8497c154: No symbol
    0x8519a674: No symbol
    PPC Thread State
    srr0: 0x00000000          srr1: 0x00000000                                 vrsave: 0x00000000
    cr:  0xXXXXXXXX                    xer: 0x20000000                     lr: 0x85181738                    ctr: 0x94696df0
    r00: 0x85181738           r01: 0xbfff9a30           r02: 0x00422000           r03: 0x0048e0e4
    r04: 0x0db48ba0           r05: 0xfffffffe           r06: 0x00000000           r07: 0x00000000
    r08: 0x00000000           r09: 0x0db48cd6           r10: 0x00000001           r11: 0x00000048
    r12: 0xa07a5b24           r13: 0x00000000           r14: 0x00000000           r15: 0x00000000
    r16: 0x00000000           r17: 0xa00523e8           r18: 0xa07659f0           r19: 0xa07659f0
    r20: 0xa07a59f0           r21: 0xbfffa56c           r22: 0xbfffa4b4           r23: 0xbfffa4ac
    r24: 0x00000000           r25: 0xbfff9d58           r26: 0x00000000           r27: 0x00000003
    r28: 0x000fd26c           r29: 0x001aad30           r30: 0x004d2634           r31: 0x0048e0ec
    Thread 4: (0xb019ed38, 0xb8152c24)
    0x00000000: /System/Library/Frameworks/Carbon.framework/Versions/A/Support/LaunchCFMApp :   + 0
    0x848dcd3c: No symbol
    0x8483d96c: No symbol
    0x8483db04: No symbol
    0x903bb42c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _PrivateMPEntryPoint + 80
    0x903bb42c: /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore : _PrivateMPEntryPoint + 80
    0x945841d4: /usr/lib/libSystem.B.dylib : __pthread_body + 40
    PPC Thread State
    srr0: 0x00000000          srr1: 0x00000000                                 vrsave: 0x00000000
    cr:  0xXXXXXXXX                    xer: 0x00000000                     lr: 0x005e0af0                    ctr: 0x94583588
    r00: 0x00000193           r01: 0xf0182c20           r02: 0x00000000           r03: 0x00000014
    r04: 0xf0182d18           r05: 0x00000098           r06: 0x00000000           r07: 0x00000000
    r08: 0x00000000           r09: 0x002c5340           r10: 0x000eb020           r11: 0x0064e124
    r12: 0x94583588           r13: 0x00000000           r14: 0x00000000           r15: 0x00000000
    r16: 0x00000000           r17: 0x00000000           r18: 0x00000000           r19: 0x00000000
    r20: 0x00000000           r21: 0x00000000           r22: 0x00000000           r23: 0x00000000
    r24: 0x00000000           r25: 0x00000000           r26: 0x00000000           r27: 0x00000000
    r28: 0x00000000           r29: 0xf0182d18           r30: 0xf0182d04           r31: 0xf0182d04
    Regarding your suggestion to try the free LibreOffice, at the moment I don't need this, because I have downloaded a one-month trial Japanese Microsoft Office 2011 and can open my current files with that, although I do not want to revise any of my files until either this problem is solved, or I purchase a new MS Office.
    Unfortunately there is not many MS Office software in English available here in Japan.  I spoke to Microsoft Japan and even though they sell software, they do not sell any English verions of MS Office.  Incredible, considering that the company itself is located in the US.  They suggested I buy it from Amazon Japan, however Amazon do not have any available at this time and do not know if they will in the future.
    Anyway, I have found a company which sells the downloaded English version (no disk).  The software is Microsoft Office for Mac Home and Student 2011.  I have not purchased it yet.  It would take too long and the postage charges would be too high to purchase it from the US.
    Hoping you have some good ideas.
    Best regards,
    Susan

  • Report generation using Excel

    I created a VI for making a report in Excel. It works correctly, however when I built an executable files, it is unable to do the processing and announce ‘error 7 open VI reference in Excel’! I was wondering if anybody can guide me that how I can fix this error. Many thanks

    Hello,
    I think that if you add the Excel/Word dynamic VIs to your project, you will see them in the VI list when building your EXE, which would allow you to add them to your application as dynamic VIs.  I'm guessing you currently don't have the Excel/Word dynamic VIs added into your project yet.
    Good luck,
    -D
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • Report Generation Toolkit Excel errors and Libraries, Classes

    Hello All,
    I'm using the Report Generation toolkit Excel functions to handle some data and create graphs.  I'm running into problems with the Add Worksheet.vi.  At the very start of the vi, it closes the reference to Shapes.  Occasionally, the Close Ref will throw an error.  I haven't pinned down the exact cause yet (probably an invalid reference).  The error itself wouldn't be a problem.  Under other circumstances I would choose to ignore it and continue on.  The problem is, this is stored in a Class Library controlled by NI.
    Solutions I've tried without success:
    1.) Make changes, and save the new vi with another name - can't do it because it's encapsulated and the Library is password protected.
    2.) Install toolkit in something other than the default folder, so I can make changes and put it under Source Control - installer doesn't allow a new path to be entered.
    3.) Change the vi where it is.  This works until I move the source to another computer or I update Labview.  At that point I lose all my changes.
    Maybe it's just my inexperience with Classes, but I just don't see an elegant solution to this.  Ultimately I'd like to copy the library off to somewhere else and put it under Source Control so I can make changes and additions to it (NI folks - providing a password to unlock the lib would be helpful...).  Does anyone have suggestions on how I can accomplish this?
    Thanks in Advance,
    Doug

    Hi Ben,
    Sorry about the first post.  After re-reading it, it sounds more like a frustrated rant than a request for help.
    I've attached a simplified vi to try to illustrate the problem I'm having.  I'm running Excel 2007.  Please open the vi, then open Excel Add Worksheet.vi.  At the start of the vi, Close Ref for Excel.Shapes occasionally throws an error.  So far, I have not been able to consistently reproduce the error, so I can't really troubleshoot it.  As I recall, the error code is 1045.  The error is carried through the rest of the vi, causing invalid references to be written to Excel._Worksheet and Excel.Shapes, going out to NI_report.ctl.
    So, here are the issues I'm running into (other than the error itself):
    1.)Short of closing and reopening the file, there is no way to recover from the error.  After the error, there is an invalid reference in Excel._Worksheet.  There is no vi available to regenerate references in NI_report.ctl.  I could easily write a vi to start from Excel._Application and re-read them, but because NI_report.ctl is in a Class library (controlled and passworded by NI), I can't add the vi to the library.
    2.) I found that I could ignore the error by wiring around it.  If I disconnect Error Out from Excel.Shapes Close Ref and wire Error In from Excel.Sheets.Count to the Error In of the Close Ref, everything works fine.  Under other circumstances, I'd save this with a new vi name (because functionality changed) and continue on.  But, because the vi is part of a Class library (controlled and passworded by NI), I can't do this.  I can save the vi with the modifications (because Excel Add Worksheet.vi is not passworded), but if I pass the source off to someone else, they will have to make the same changes on their installation of the NI Report Generation Toolkit.
    Again, I can't reproduce the error with any regularity.  I've run the example vi I provided a few times and everything seems to work fine.  If I come up with something, I'll repost.  If you (or anyone) has an idea of what could be failing or if they've seen the problem, I'd appreciate a comment.
    Thanks again,
    Doug
    Attachments:
    Excel Fail.vi ‏15 KB

  • Export to excel/word/ppt failed at Web Analysis studio

    Hi,
    I open a document and right click to select export data and select Microsoft excel or word or ppt, and after input the file name, it will prompt an error message saying "can not export to file".
    Is there any prerequisite to use the Export to Excel/Word/PPT functionalities at Web analysis studio of EPM 11.1.2? Do I need to install office at the server side?
    Or I need specific version of office at client?
    Thanks

    From memory: you need to have MSOffice installed on the report/print server and also the corresponding mimetypes added to workspace.

Maybe you are looking for