Adding my own custom export format

I want to export reports in PDF but using my own custom "Export to pdf dll" . For this I 'd have to add an
option in export format drop down list. Is this possible? ]
Regards,
Mahmood

Hi Mahmood,
Not an option. But I'll pass this onto the Program Managers to see if they know of a way.
Reply and I'll watch for it.
I woul dlike to get more info on what your dll does?
Thanl you
Don

Similar Messages

  • [CS4] Can a plug-in's custom export format be used in a JavaScript?

    Hi Folks,
    I'm not sure if this message should be here or in the AI Scripting forum, but I'll start here...
    I have just written an AI CS4 Mac Plug-In that provides a custom file export format. What I would like to know is how (or even if it's possible) to use my plug-in's export format from a JavaScript? The trouble is that the second parameter of the Document class's exportFile() method is an ExportType enum. I don't see how I can add my export format to the ExportType list.
    In other words, I would like to complete this line of JavaScript (replacing the ????? with something that will trigger my plug-in's export file method):
    myDoc.exportFile(myFile, ?????);
    Thanks in advance for any ideas.
    -- Jim

    Thanks for the help. Sadly, one cannot run an action from a JavaScript; it can be done with an AppleScript or VBScript though. I was hoping there was a way to do what I want from JavaScript so I would not have to deal with the headaches of involving JavaScript and AppleScript in the same project.
    The ideal solution would be create a way for a script (JavaScript, VBScript, and AppleScript) to send a message to a plug-in without having to--in the plug-in code--create a timer and watch and wait for some event to happen. If everything were easy, I guess everyone would be developing software! ;-)
    I'll try the Scripting forum...
    Cheers!
    -- Jim

  • Help with export format - can I meet ad requirements?

    Help!
    I need to create a color ad for magazine. Starting with a file in either PDF or EPS. Need to tweek existing file by changing some of the text and adding a logo. Final product is for magazine ad with media requirements:
    Preferred High Resolution PDF
    Embedded fonts - no true type fonts, only Type 1 or open Type fonts
    300 DPI
    supporting images must be CMYK, not RGB
    I also have PS CS3. I have experienced output issues with printers in past, especially using the PDF export format from Pages (problems with fonts and layers).
    From reading other posts my plan was to start in Pages, insert PDF file, overlay text and logo, print to Postscript, then open in PSCS3 where I would "save as PDF." Only concern is uncertain resolution of original PDF which is a small file (about 100k for quarter page color ad).
    Other thought was to start with EPS in PS, save as PDF or TiFF, open in Pages to ad text/logo, then back to PS. Trying to avoid PS for main editing, just more versed in PAGES.
    Will this work?
    Any comments appreciated!!

    Good evening from Normandy
    In response to Barbara's point:
    It is serious. At an early stage in my magazine project I lost a client because the background colour in his ad had changed after CMYK separation, and when I noticed it was too late. The client is with us now and very happy with the quality of his ad.
    Pages colour palette allows adjusting CMYK separation WITHIN Pages (note: it is also available in other Mac applications, even in SimpleText). Click on the rainbow circle in the tool bar to open it. Click on the second icon with colour sliders, in the drop down menu click on CMYK sliders. They show percentage content of the four colours used in professional printing - Cyan(blue), Magenta (purple), Yellow and Black.
    With Pages you work in what-i-see-what-i-get mode (WYSIWYG) which is wonderfully intuitive and the results in print are satisfactory more often than not. As a general rule of thumb, however, I would recommend avoiding sharp, vibrant colours. What looks exciting on screen comes out dull on paper. Mind physiology here: screen colours are generated to go staight into your eyes, but the colours on paper are a reflected and refracted sun- or electric light.
    It also makes sense to avoid colours that are too feeble. I used light blue colour wash for background with Cyan reading of 8 percent and it completely disappeared in print. After consulting with my printers I had to change the reading to 15 percent.
    Another printers tool is colour-code or colour-guide tablets. They are like a stack of cards with changing colour sequences with exact CMYK percentage reading for each shade of colour. They can be purchased at specialised shops and web-sites, but are costly. Weigh your needs against costs. In my work I have to pay more attention to general lay-out rather than to colours, so I decided against investing in colour tablets.
    Another work-around here is to use colour combinations from Apple's own templates that come with iWork suite. Copy colours that work nicely together from templates to your colour palette (I wish there was a feature allowing to give custom names to composite colours) and they will be available for use in your projects.
    Re ColourSync utility mentioned here by Dragon. I agree, it is a powerful tool, but Barbara's point is especially relevant here: you have to know what you are doing. I invested some time in creating new workflows with ColourSync. The improvement in quality was dramatic, but while some problems were solved, others appeared. A short article I wrote re using Colour Sync is here:
    i-work-in-pages.blogspot.com/2006/10/preparing-colour-separated-pdfs-using.html
    So after a while I dropped ColourSync method and started using Enfocus PitStop which allows adjusting PDFs right at the CMYK conversion stage.
    Another work-around which makes life even easier is to ask your computer service people to prepare Distiller settings exactly to your requirements as a separate folder which you can install as default in your Distiller settings. That way you just drag-n-drop your files onto the Distiller icon in the Dock and get perfect press quality PDFs in no time.
    It is worth remembering that we are mostly end-users, not developers or technicians. Remembering this saves a lot of heart-ache. I call it the Renaissance Man dilemma - if you spend to much time chasing too many things your main goal is not achieved. Leonardo da Vinci was famous for not finishing his projects, because he always got distracted by exciting technical solutions that he stumbled upon while working...
    This is more in response to Angiomans thread than to Barbara's comment now, but I assume he followed Dragon's invitation to this thread.
    Cheers everybody - it is really exciting to share things with people who have similar experiences.
    Alex,
    Normandy
    <edited by host>

  • Loading custom image formats

    Hello all.
    I am wanting to load a custom image format into my Java application, and am wondering how to do that. I have a few ideas to try but I figure if there is a site out there (or someone with the knowledge), there is no need for me to re-invent the wheel. So hopefully, someone might be able to expedite my learning. :)
    The image format I want to read actually contains multiple images, with 1 color palette at the end of the file. I'd like to create a series of (I assume) BufferedImages for all the images contained within the file.
    Are there any sites out there that can send me through a quick tutorial on rolling my own images, or can anyone give me a short function to do so?
    Thanks so much!

    Okay... I failed. I could really use some help in getting this work. Please.
    I have a file, which contains 1 or more compressed bitmap images and a palette. I have a small Perl script that will convert the images in the file into multiple bitmap image files, so I know where the data is and I know I have the data locations right. :)
    To create a BITMAP, I must reverse the order of the palette (perl function):
    sub reversePalette() {
      my $output = "";
      for (my $i=0; $i < length($_[0]); $i=$i+4) {
        $output = $output . substr($_[0], $i+2, 1) . substr($_[0], $i+1, 1) . substr($_[0], $i+0, 1) . chr(0);
      return $output;
    }For the image data itself, it uses a simple RLE encoding. If I see a 0, I check the next number and "uncompress" the data by adding that many 0's to the output file.
    So, what I would like to do is convert my Perl script into a Java class that will take this sprite file and return an array of BufferedImages, which can then be used for whatever.
    Any help in this would be greatly appreciated! I can't even figure out how to properly load a valid BMP file manually using WritableRaster and ColorModel. I'm so lost. :(

  • Invalid export DLL or export format

    I have created a code to export the report to excel and it works.. but when i use the export property of the crystal report viewer, all file format works except for the excel format and I am receiving this kind of message whenever I tried using export property of the crystal report viewer..
    "Error in File rpt017 {4742A80B-0356-499C-9B57-BE59A69BD788}.rpt: Invalid export DLL or export format."
    any idea? someone?

    Here is my Web config..
    <?xml version="1.0"?>
    <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
         <configSections>
              <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
                   <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
                        <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"></section>
                        <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">
                             <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="Everywhere"></section>
                             <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"></section>
                             <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="false" allowDefinition="MachineToApplication"></section>
                        </sectionGroup>
                   </sectionGroup>
              </sectionGroup>
              <sectionGroup name="businessObjects">
          <sectionGroup name="crystalReports">
            <section name="reportMappings" type="CrystalDecisions.Shared.ReportMappingHandler, CrystalDecisions.Shared, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, Custom=null"></section>
            <section name="rptBuildProvider" type="CrystalDecisions.Shared.RptBuildProviderHandler, CrystalDecisions.Shared, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304, Custom=null"></section>
          </sectionGroup>
        </sectionGroup>
      </configSections>
         <system.web>
                        <sessionState stateNetworkTimeout="1000000" timeout="50000"></sessionState>
              <httpRuntime executionTimeout="1440"></httpRuntime>
              <pages enableEventValidation="true">
                   <controls>
                        <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
                   </controls>
                   <namespaces>
            <clear></clear>
            <add namespace="System"></add>
            <add namespace="System.Collections"></add>
            <add namespace="System.Collections.Specialized"></add>
            <add namespace="System.Configuration"></add>
            <add namespace="System.Text"></add>
            <add namespace="System.Text.RegularExpressions"></add>
            <add namespace="System.Web"></add>
            <add namespace="System.Web.Caching"></add>
            <add namespace="System.Web.SessionState"></add>
            <add namespace="System.Web.Security"></add>
            <add namespace="System.Web.Profile"></add>
            <add namespace="System.Web.UI"></add>
            <add namespace="System.Web.UI.WebControls"></add>
            <add namespace="System.Web.UI.WebControls.WebParts"></add>
            <add namespace="System.Web.UI.HtmlControls"></add>
                        <add namespace="Microsoft.VisualBasic"></add>
                        <add namespace="System.Data"></add>
                        <add namespace="System.Drawing"></add>
                        <add namespace="System.Data.Odbc"></add>
                   </namespaces>
              </pages>
              <compilation defaultLanguage="vb" debug="true">
                   <assemblies>
                        <add assembly="System.Messaging, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.Transactions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"></add>
                        <add assembly="System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"></add>
                        <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"></add>
                        <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"></add>
                        <add assembly="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"></add>
                        <add assembly="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"></add>
                        <add assembly="System.EnterpriseServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"></add>
                        <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"></add>
                        <add assembly="CrystalDecisions.CrystalReports.Engine, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
                        <add assembly="CrystalDecisions.Shared, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
                        <add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
                        <add assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
                        <add assembly="CrystalDecisions.Windows.Forms, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
                        <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
                        <add assembly="CrystalDecisions.Enterprise.Framework, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
                        <add assembly="CrystalDecisions.ReportSource, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
            <add assembly="CrystalDecisions.Enterprise.Desktop.Report, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"></add>
            <add assembly="CrystalDecisions.ReportAppServer.Controllers, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"></add>
            <add assembly="CrystalDecisions.Enterprise.Viewing.ReportSource, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"></add>
                   </assemblies>
          <buildProviders>
            <add extension=".rpt" type="CrystalDecisions.Web.Compilation.RptBuildProvider, CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
          </buildProviders>
        </compilation>
              <httpHandlers>
                   <remove verb="*" path="*.asmx"></remove>
                   <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
                   <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
                   <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"></add>
                   <add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"></add>
              </httpHandlers>
              <httpModules>
                   <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
              </httpModules>
                                  <authentication mode="Forms">
                   <forms timeout="1440"></forms>
              </authentication>
              <authorization>
                   <allow users="*"></allow>
                             </authorization>
                        <trace enabled="false" requestLimit="10" pageOutput="true" traceMode="SortByTime" localOnly="true"></trace>
              <!--  SESSION STATE SETTINGS
              By default ASP.NET uses cookies to identify which requests belong to a particular session.
              If cookies are not available, a session can be tracked by adding a session identifier to the URL.
              To disable cookies, set sessionState cookieless="true".
        -->          <globalization requestEncoding="utf-8" responseEncoding="utf-8" culture="en-GB"></globalization>
              <xhtmlConformance mode="Transitional"></xhtmlConformance>
         </system.web>
         <system.webServer>
              <validation validateIntegratedModeConfiguration="false"></validation>
              <modules>
                   <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
              </modules>
              <handlers>
                   <remove name="WebServiceHandlerFactory-Integrated"></remove>
                   <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
                   <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
                   <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"></add>
                   <add name="CrystalImageHandler.aspx_GET" verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" preCondition="integratedMode"></add></handlers>
         </system.webServer>
         <location allowOverride="true" inheritInChildApplications="true">
              <appSettings>
       <add key="connString1" value="Data Source=lmkdb3.ntpasila.ad.lmk;User Id=lcnwuat_dbo;Password=two-1=one;"></add>
       <add key="crLogonServername1" value="lmkdb3.ntpasila.ad.lmk"></add>
       <add key="crLogonUserID1" value="lcnwuat_dbo"></add>
       <add key="crLogonPassword1" value="two-1=one"></add>
       <add key="connString" value="Data Source=orcldb;User Id=st_test;Password=st_wala;"></add>
       <add key="crLogonServername" value="orcldb"></add>
       <add key="crLogonUserID" value="st_test"></add>
       <add key="crLogonPassword" value="st_wala"></add>
       <add key="TreeViewIcons" value="images/treeicons/icons"></add>
       <add key="TreeViewStyles" value="images/treeicons/styles/classic"></add>
       <add key="leftnavroot" value="Lemcon Staff Tracker"></add>
       <add key="FromYear" value="1900"></add>
       <add key="ToYear" value="2010"></add>
       <add key="FileLocation" value="E:StafftrackerStafftrackerFiles"></add>
       <add key="Server" value="http://192.168.1.115/stafftracker/"></add>
       <add key="MailServer" value="localhost"></add>
       <add key="ViewSearchEmp" value="usercontrols/views/ViewEmployeeProfile.aspx?emp_id="></add>
       <add key="ViewSearchReq" value="usercontrols/views/ViewCustomerRequest.aspx?cr_id="></add>
       <add key="ViewSearchAward" value="usercontrols/views/ViewAwarding.aspx?cr_id="></add>
       <add key="ViewSearchCons" value="usercontrols/views/ViewConsultantContract.aspx?ec_id="></add>
       <add key="ViewSearchCust" value="usercontrols/views/ViewCustomerContract.aspx?cc_id="></add>
       <add key="ViewSearchECon" value="usercontrols/views/ViewEmployeeContract.aspx?empc_id="></add>
       <add key="ViewSearchSoc" value="usercontrols/views/ViewSocialSecurity.aspx?emp_id="></add>
       <add key="ViewEmpRec" value="usercontrols/views/ViewEmploymentRecord.aspx?employ_id="></add>
       <add key="ViewReq" value="usercontrols/views/ViewRequest.aspx?req_id="></add>
       <add key="SiteMaintenance" value="usercontrols/maintenance/Site.aspx"></add>
       <add key="ProjectMaintenance" value="usercontrols/maintenance/Project.aspx"></add>
       <add key="ViewFI" value="FI_Socsec.aspx?grdFISocSecId="></add>
       <add key="ViewFIFam" value="FIFam_Socsec.aspx?grdFISocSecId="></add>
       <add key="ViewEmpRecord" value="Employment.aspx?employ_id="></add>
       <add key="ViewEmpRecord2" value="EmploymentCreateNew.aspx?employ_id="></add>
       <add key="ViewEmpRecord3" value="EmploymentCreateNew02.aspx?employ_id="></add>
       <add key="ViewProjTask" value="Proj_Task.aspx?employ_id="></add>
       <add key="ViewProjTask2" value="Proj_Task2.aspx?employ_id="></add>
       <add key="ViewEmpContract" value="usercontrols/contract/EmployeeContract.aspx"></add>
       <add key="ViewEmpContractLN" value="usercontrols/contract/EmployeeContractLN.aspx"></add>
       <add key="ViewSocSecUI" value="usercontrols/employee/SocialSecurity.aspx"></add>
       <add key="CrystalImageCleaner-AutoStart" value="true"></add>
       <add key="CrystalImageCleaner-Sleep" value="60000"></add>
       <add key="CrystalImageCleaner-Age" value="120000"></add>
       <add key="CountryMaintenance" value="usercontrols/maintenance/Country.aspx"></add>
       <add key="CityMaintenance" value="usercontrols/maintenance/City.aspx"></add>
      </appSettings>
        <connectionStrings></connectionStrings>
         </location>
         <businessObjects>
        <crystalReports>
          <reportMappings>
            <add reportName="Copy of rpt010.rpt" path="usercontrols
    eportsCopy of rpt010.rpt"></add>
            <add reportName="Copy of rpt017.rpt" path="usercontrols
    eportsCopy of rpt017.rpt"></add>
            <add reportName="CrystalReport.rpt" path="usercontrols
    eportsCrystalReport.rpt"></add>
            <add reportName="CustomerWoConsContract.rpt" path="usercontrols
    eportsCustomerWoConsContract.rpt"></add>
            <add reportName="default.rpt" path="usercontrols
    eportsdefault.rpt"></add>
            <add reportName="MissingWorkRec.rpt" path="usercontrols
    eportsMissingWorkRec.rpt"></add>
            <add reportName="RequestwoCandidate.rpt" path="usercontrols
    eportsRequestwoCandidate.rpt"></add>
            <add reportName="RequestwoCandidateExp.rpt" path="usercontrols
    eportsRequestwoCandidateExp.rpt"></add>
            <add reportName="RequestwoCustCont.rpt" path="usercontrols
    eportsRequestwoCustCont.rpt"></add>
            <add reportName="rpt001.rpt" path="usercontrols
    eports
    pt001.rpt"></add>
            <add reportName="rpt002.rpt" path="usercontrols
    eports
    pt002.rpt"></add>
            <add reportName="rpt003.rpt" path="usercontrols
    eports
    pt003.rpt"></add>
            <add reportName="rpt005.rpt" path="usercontrols
    eports
    pt005.rpt"></add>
            <add reportName="rpt005B.rpt" path="usercontrols
    eports
    pt005B.rpt"></add>
            <add reportName="rpt006.rpt" path="usercontrols
    eports
    pt006.rpt"></add>
            <add reportName="rpt006B.rpt" path="usercontrols
    eports
    pt006B.rpt"></add>
            <add reportName="rpt008.rpt" path="usercontrols
    eports
    pt008.rpt"></add>
            <add reportName="rpt008B.rpt" path="usercontrols
    eports
    pt008B.rpt"></add>
            <add reportName="rpt009.rpt" path="usercontrols
    eports
    pt009.rpt"></add>
            <add reportName="rpt009B.rpt" path="usercontrols
    eports
    pt009B.rpt"></add>
            <add reportName="rpt010.rpt" path="usercontrols
    eports
    pt010.rpt"></add>
            <add reportName="rpt011.rpt" path="usercontrols
    eports
    pt011.rpt"></add>
            <add reportName="rpt013.rpt" path="usercontrols
    eports
    pt013.rpt"></add>
            <add reportName="rpt017.rpt" path="usercontrols
    eports
    pt017.rpt"></add>
            <add reportName="rpt018.rpt" path="usercontrols
    eports
    pt018.rpt"></add>
            <add reportName="StaffPerArea.rpt" path="usercontrols
    eportsStaffPerArea.rpt"></add>
          </reportMappings>
          <rptBuildProvider>
            <add embedRptInResource="true"></add>
          </rptBuildProvider>
        </crystalReports>
      </businessObjects>
    </configuration>
    Edited by: Angelo Emmanuel Heraña on Aug 14, 2008 7:37 AM

  • 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

  • "Output could not be issued" when using custom page formats

    Dear all,
    I created a custom page format using SPAD. Its dimension is 7.5cm x 10cm (190mm x 254mm). I also created this page format in windows and set as the default paper size in my printer. However, when trying to print a smartform using this size, the message "Output could not be issued" is given. When I use the standard paper sizes (e.g., LETTER, DINA4), the form prints OK.
    Can you point me to the direction to solving this?
    Thank you!
    Kyle

    Issue resoved.
    For those who are encountering the same problem, here's what I did. I tested the smartform by itself and it reported the specific error: the page format is not supported in device type SWIN. I added it in another device type SAPWIN. This was just a simple miscommunication between the admins and the developer. I added the format in SWIN and everything works fine.
    Kyle

  • I18n for custom date format strings

    I want to internationalize dates shorter than DateFormat.SHORT, in the form "M/d". For example, when the Locale is US, January 16 should display as 1/16, but if the Locale is MX (Mexico), it should display as 16/1.
    It seems like a very simple problem date formatting problem, but it doesn't look like the DateFormat/SimpleDateFormat classes have any way of doing this. Am I missing something?
    --Steven                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    You need to apply your own customized date pattern to get the formats you want. I suggest you put the patterns in resource bundles...the default pattern in your default bundle, and the Mexican pattern in your bundle for Mexico. Then do something like this:
    <pre>
    <code>
    String newPattern = "M/d"; // retrieve from bundle instead
    Date today = new Date();
    DateFormat df = DateFormat.getInstance();
    SimpleDateFormat simpleFormat = (SimpleDateFormat)df;
    simpleFormat.applyPattern(newPattern);
    System.out.println(df.format(today);
    </code>
    </pre>

  • List Export Format for Prospects

    Hi,
    I am looking for a list export format for Prospects in Siebel Marketing. An example load format was provided and I am able to load prospects successfully but I need the list export format for Prospects to be able to launch. The OBI version used is 10.1.3.4.1 and while this provides example export formats for Accounts and Contacts it doesn't for Prospects. Does anyone know if there is such an export format for Prospects or would I need to create my own list format and subject are?
    Best regards,
    Pete
    Edited by: 855262 on Apr 28, 2011 8:06 AM

    Hi,
    I solved the problem myself. It was caused by the source (S_PRSP_CONTACT) for the logical table OLTP Prospects in the business model Marketing Contact List being inactive by default.

  • Getting Error 'Invalid export DLL or export format'

    Hi, we are getting the above error when exporting to Excel from Crystal Reports. Although the export is via one of our products, the process of exporting the report is controlled by the Crystal Report viewer which we have no control over.
    Basic system details are as follows:
    Operating system : - Windows Server 2003 R2 Service pack 2
    Crystal Reports : - Crystal Reports Developer version 12.0.0.683, product type : Full
    Problem summary : - When exporting a report, exporting to excel produces an error 'Invalid export DLL or export format'.
    We have tried the following so far, obviously to no avail:
    The Business Objects folder has been added to the PATH variable.
    Crystal Reports has been deinstalled and reinstalled.
    Your help in getting to the bottom of this is greatly appreciated!

    Hi.
    Please check the fourm
    "Invalid export DLL or export format" with Crystal Reports 2008
    Regards
    Gangadhar

  • CSV Export Format

    Hi all,
    I wrote a custom toolbar in order to select export formats. The toolbar works fine with PDF and RTF formats, but there is a problem with CSV format when the report contains characters like à, è, é, etc. or symbols like u20AC. In that case the symbols are not displayed correctly and there are problems importing the CSV file in Excel (I have to replace with a text editor the wrong characters in the file exported). The problem is verified also using the standard Crystal Reports toolbar and only for CSV format: PDF and RTF reports are created correctly.
    I had a similar problem with JSP, but the solution was the page charset. In this case, how can I solve the problem?
    Regards,
    pippo.

    <p>Hi Pippo,</p><p>        Thank you for the bug submission. I was able to reproduce the issue on our end and subsequently have tracked the issue using the following bug ID: ADAPT00671293. Hopefully we can get the fix out in the next update to Crystal Reports for Eclipse. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) <br /><br /> <a href="http://www.eclipseplugincentral.com/Web_Links-index-req-ratelink-lid-639.html">Rate this plugin @ Eclipse Plugin Central</a>          </p>

  • Adding fields to custom idoc type

    Hi,
    i have a query regarding adding fields to custom idoc type.
    To add fields to custom idoc type we are trying to cancel the release from we30, but we are facing error that 'The release of basis type cannot be reset'
    When we are trying to cancel release from we31we are facing error 'Error while ressting release of segment z type'.
    Kindly suggest the solution to add fields in basic idoc type.
    Thanks & regards,
    Farheen.

    Reason that you are getting these errors is that you cannot cancel
    the release of an extension made in previous version . Instead you have to create a new extension.
    1.It is not possible to change a segment definition which is released in a
    lower release.
    2.You must create a new segment definition for the new release e.g. 620 with a new segment
    field with the appropriate length.
    In transaction WE20, outbound parameters, you can specify
    the "segment release in IDoc type" for the communication.
    Please read the F1 help of this field for further information.
    3.For your own segments you can define a new version of the segment
    tcode  WE31 -> Add Version
    Thanks!

  • "Invalid export DLL or export format" with Crystal Reports 2008

    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. Note the system must be restarted after editing the path variable.
    - This may have something to do with the file libpng10.dll. Both crxf_xls.dll and crxf_rtf.dll are dependent on it.
    - libpng10.dll has changed versions from SP0 to SP1. In SP0 it was 1.0.30.0 and in SP1 it is 1.0.30.1
    libpng10.dll dependencies
    The dependencies have also been updated for libpng10.dll in service pack 1. This may have something to do with the export issue. If you've deployed your application with the latest merge modules or setup package for service pack 1 you'll want to make sure you have version 1.0.30.1 of libpng10.dll.
    Version 1.0.30.0
    - zlib.dll
    - msvcr71.dll
    - kernel32.dll
    Version 1.0.30.1
    - boezlib.dll
    - msvcr80.dll
    - kernel32.dll
    Thanks in advance for your co-operation. We hope to figure out what is causing this issue soon.
    Edited by: David Hilton on Jan 14, 2009 10:07 AM

    Our company has also been experiencing this issue with deployed versions of our software, and during my examination of the error I have made the following discoveries:
    For us the error has only been reproduced on Windows 2003 running Citrix
    The error does not occur on Windows XP, Windows 2003 or Vista without Citrix
    For installation of our application we use the CRRuntime_12_0.msm merge module (version 12.0.0.683, file size 46790KB)
    As mentioned in the first post this error is related to the files crxf_rtf.dll and cfxf_xls.dll being unable to locate its reference to the file libpng10.dll during load.
    I have run the application with ProcMon (http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx) attached on both environments that work correctly and that does not work and iIve made these observations:
    During load of dlls Windows searches for references in the following orders (see http://msdn.microsoft.com/en-us/library/ms682586.aspx):
    1. The directory from which the application loaded.
    2. The system directory.
    3. The 16-bit system directory.
    4. The Windows directory.
    5. The current directory.
    6. The directories that are listed in the PATH environment variable.
    Looking at the ProcMon log for the environment where it works correctly (Windows XP, no Citrix) it looks like this . Numbers represent the search order mentioned above:
    Load Image     C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\crxf_rtf.dll     SUCCESS     Image Base: 0x3e640000, Image Size: 0x79000
    (1) QueryOpen     C:\Program Files\<our application name>\libpng10.dll     NAME NOT FOUND     
    (2) QueryOpen     C:\WINDOWS\system32\libpng10.dll     NAME NOT FOUND     
    (3) QueryOpen     C:\WINDOWS\system\libpng10.dll     NAME NOT FOUND
    (4) QueryOpen     C:\WINDOWS\libpng10.dll     NAME NOT FOUND     
    (5) QueryOpen     C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\libpng10.dll     SUCCESS      ...
    So you can see it finds the file in the "current directory"
    Now, from the environment where it does not work (Windows 2003 Server / Citrix):
    Load Image     X:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\crxf_rtf.dll     SUCCESS     Image Base: 0x3e640000, Image Size: 0x79000
    (1) QueryOpen     X:\Program Files\<our application name>\libpng10.dll     NAME NOT FOUND     
    (2) QueryOpen     X:\WINDOWS\system32\libpng10.dll     NAME NOT FOUND     
    (3) QueryOpen     X:\WINDOWS\system\libpng10.dll     NAME NOT FOUND     
    (4) QueryOpen     X:\WINDOWS\libpng10.dll     NAME NOT FOUND     
    (5) QueryOpen     X:\Documents and Settings\<my user name>\WINDOWS\libpng10.dll     NAME NOT FOUND     
    (6) QueryOpen     ... loops trough all paths in the PATH variable, finding nothing
    As you can see somehow the current directory is %USERPROFILE%\WINDOWS and not the Crystal Reports bin path in this environment at the time of loading the dll.
    I have yet to discover why this is the case, but i tought i could share what I have found =)
    The %USERPROFILE%\WINDOWS folder is not a standard Windows folder, and I think it is used by Citrix for some files (like win.ini)
    This also shows why adding the bin folder to the PATH variable is a valid workaround for some, but for us this is not really a good solution as we need this to work out of our installer. We don't always have consultants do the installations for the customers and we cannot expect them to manually edit the PATH variable, and we don't want to add to the PATH variable in the installer unless this is the only way...
    So, I hope this maybe can bring you closer to being able to reproduce it. I'm still looking into it, will post more if I find something else interesting

  • HDV: best export format for client viewing?

    I am working on a project in HDV 1080i (1440).
    What is the best export format to create a sample for a client to view- one that will give the proper aspect ratio.
    I've tried everything I can think of, and the export is still squashed 1440 and not full 1920
    I am a pretty experienced Motion user.....please give me the video and the output settings.
    thanks!

    hemmster- thanks I really appreciate the specific info
    I dont mean to be dense but....I don't see those buttons anywhere in Motion 4. When I go to File>export what I see is:
    Export: (quicktime)
    Use: set to current project
    When I click on the "options" button I am taken to the export options window with 2 tabs: "Video/audio" and "output"
    Can you please translate your settings into those parameters....? I am assuming that under "video/audio" that compressor is H.264. The advanced button lets me set the data rate.
    The Output tab lets you choose from a full range of resolutions. I could select "Custom" and set to 1280. No options for deinterlacing to be seen. Interlacing is a big problem with this project....
    I have read the complete manual (twice) and the peachpit books. There is little info on this subject to be found there, so I am depending on the kindness of strangers
    Thanks, you are awesome........!

  • Is it possible to restrict the available export formats in InfoView?

    Hi all,
    I uploaded some reports to Crystal Reports Server 2008. For most of them the user should be able to export them to CSV when viewing them in InfoView. For some reports this does not work correctly because they contain embedded subreports, cross tables etc., which can not be exported to CSV. Is it possible to remove the CSV format from the list of possible export formats for those reports?
    Alternatively, is it possible to insert some hint into the CSV export like "Not all data contained due to export restrictions"?
    Thanks for infos
    Joern

    HI,
    you will  able to disable the group tree icon panel when the crystal report opened. to do this,follow the steps mentioned below.
    1. Go to your BO installation folder and then tomcat folder and then choose the CrystalReports web application.
    C:\Program Files\Business Objects\Tomcat55\webapps\CrystalReports
    Now change the web.xml of the this web app and insert a context parameter
    <!-- Added to remove group tree panel shown as default -->
    <context-param>
    <param-name>viewrpt.groupTreeHide</param-name>
    <param-value>true</param-value>
    </context-param>
    Restart your tomcat, or restart crystal report web app from tomcat manager.
    you can remove or add or disable the group tree icon as per your requirement.
    Let me know if this works,
    Regards,
    Rameez

Maybe you are looking for

  • How do I transfer photos from iPad to flashdrive

    How do I transfer photos from iPad to a flash drive?

  • Managed Metadata Navigation not showing to users

    I created a Managed Metadata service and created group, term-set and terms I gave full access to application pool service account. read access to all the users via AD Security Group. I set up navigation to use Managed Navigation (Managed Metadata Ser

  • Class Data

    Hello Expert, We have two different class assigned to two differnt document type, But when we create DIR with one docment type and dont enter required characteristics, - It allows to save with information message " Status changed: missing values for

  • Financial software for personal use?

    I just bought my blackberry bold yesterday and I'm not sure which financial software to use. Has anyone used Ascendo or any of the other money management programs? Which ones do you prefer? I'm looking for something that's more for personal use than

  • How cam i recover a lost Disk Image?

    I tried creating an encrypted 30GB disk image but got impatient and clicked cancel while it was still creating. Although it finished creating and even asked me to create a password, I can't seem to find it anywhere. My 30GB of space is gone. How can