Default Export Format

I have a Finance user who daily must export reports into excel. After a ehp upgrade of ECC they go to List-Export-Spreadsheet they get defaulted to MHTML with no popup of options like everyone else. Ok no worries I thought as this means they chosen this default an I can use report SALV_BS_ADMIN_MAINTAIN to wipe them from SALV_BS_ADMIN table. Issue is they aren't listed on the table at all. Program says no entries for this user. Any ideas whats storing this default export entry? I removed user params and no luck. Only affecting this one person.

Have you tried "&RESET_EXCEL" in the function code?

Similar Messages

  • How to set default export format in CrystalReports Viewer

    When Viewing Crystal Reports in InfoView, the top left button can choose export file format, how to set it default to Excel?

    Hi Jennie Xiang,
    You can set the default export format in Crystal designer before publishing in infoview.
    Open the report in Crystal designer and go to file>export>export options--> select the export option to xls and check the options that you want and click on OK.
    Now try exporting the report by clicking on export button then you can see the first option as xls with all format options that you have selected before by default.
    By saving this report at server (infoview) you can get the same options while exporting from viewer.
    Regards,
    Ragahvendra

  • How to change default Export Format Type in Crystal Report Viewer

    We are coding in VB.NET 2005 using the CR2008 SP1 .NET objects.
    The Crystal Report Viewer, when displayed, defaults the export type as .rpt (Crystal Reports).
    We distribute our .NET application to our customers.  99% of the time, this .rpt format is useless to our customers as they do not have crystal reports developer.  They usually export to a .pdf or .xls format.  Is there a way to default this export option to something other than .rpt?
    Thank you.

    Yes, that's as much as I figured.
    With the Crystal for .NET methods, the CrystalDecisions.CrystalReports.Engine's reportdocument object has an ExportToDisk method.  We wanted to use this (as we used something similar with the RDC) to prompt the user to export.  However, the reportdocument's exporttodisk method does not have an argument that allows for Prompting the user (true/false) like the RDC's export did.  You have to actually know ahead of time the type of export the user wants as well as the filename.  Well, we do not, and therefore, want the user to be able to select the type of export they want as well as enter their own filename.  We want the Crystal methods to prompt for this.  Since we are unable to, we've had to resort to declaring a reportviewer object and setting the viewer's reportsource = to the reportdocument.  We then use the ExportReport() method which defaults to .rpt (which none of our end users have Crystal Developer).  This is why we want to know if there is a way to reset the default export method to something more common (such as .pdf or .xls).  Is there a way to change the reportdocument's file type in order to default the export type?  Just trying to come up with some sort of workaround...
    Thanks

  • How to set default export format in Crystal Reports Viewer

    When Viewing Crystal Reports, the top left button can choose export file format, how to set it default to Excel?
    If we can only go with hidden the button, and create a new button, any one can kindly provide how to?
    The BOE version is XI R2 SP2.
    Thanks in advance!
    Jennie

    hi all , i have same problem like i want only 1 report to be generated like for ex:only PDF should be generated n all others has to be disabled. my jsp is as follows:
    <%@page import="com.abc.def.crystalReports.JRCHelper,
    com.crystaldecisions.reports.reportengineinterface.*,
    com.crystaldecisions.report.web.viewer.CrystalReportPartsViewer,
    com.crystaldecisions.report.web.viewer.CrystalReportViewer,
    com.crystaldecisions.reports.sdk.ReportClientDocument,
    com.crystaldecisions.sdk.occa.report.application.OpenReportOptions,
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKExceptionBase,
    com.crystaldecisions.sdk.occa.report.reportsource.IReportSource,
    com.crystaldecisions.report.web.viewer.*,
    com.crystaldecisions.sdk.occa.report.exportoptions.*,
    java.sql.Connection,
    java.sql.DriverManager,
    java.sql.ResultSet,
    java.sql.SQLException,
    java.sql.Statement,
    java.util.ResourceBundle"%><%
         // This sample code calls methods from the JRCHelperSample class, which
         // contains examples of how to use the BusinessObjects APIs. You are free to
         // modify and distribute the source code contained in the JRCHelperSample class.
         try {
              ResourceBundle messageBundle = ResourceBundle.getBundle("resources.ApplicationResources");
              String reportName = messageBundle.getString("report.path");
              ReportClientDocument clientDoc = (ReportClientDocument) session.getAttribute(reportName);
              if (clientDoc == null) {
                   // Report can be opened from the relative location specified in the CRConfig.xml, or the report location
                   // tag can be removed to open the reports as Java resources or using an absolute path
                   // (absolute path not recommended for Web applications).
                   clientDoc = new ReportClientDocument();
                   // Open report
                   clientDoc.open(reportName, OpenReportOptions._openAsReadOnly);
                   // ****** BEGIN CHANGE DATASOURCE SNIPPET **************** 
                        String connectString = "jdbc:oracle:thin:@****:db;
                        String driverName = "oracle.jdbc.driver.OracleDriver";
                        String JNDIName = "";
                        String userName = "root";               // TODO: Fill in database user
                        String password = "root";          // TODO: Fill in password
                        // Switch all tables on the main report and sub reports
                        JRCHelper.changeDataSource(clientDoc, userName, password, connectString, driverName, JNDIName);
                   // ****** END CHANGE DATASOURCE SNIPPET ****************      
                   // Store the report document in session
                   session.setAttribute(reportName, clientDoc);
                   // ****** BEGIN CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET **************** 
                        // Create the CrystalReportViewer object
                        CrystalReportViewer crystalReportPageViewer = new CrystalReportViewer();
                        ReportExportControl exporter = new ReportExportControl();
                        //     set the reportsource property of the viewer
                        JPEReportSourceFactory rptSrcFactory = new JPEReportSourceFactory();
                        IReportSource reportSource = (IReportSource)rptSrcFactory.createReportSource(reportName,request.getLocale());
                        Boolean b1 = new Boolean(messageBundle.getString("Toggle.Group.TreeButton"));
                        Boolean b2 = new Boolean(messageBundle.getString("Has.ExportButton"));
                        Boolean b3 = new Boolean(messageBundle.getString("Has.SearchButton"));
                        Boolean b4 = new Boolean(messageBundle.getString("Display.GroupTree"));
                        Boolean b5 = new Boolean(messageBundle.getString("Has.Logo"));
                        Boolean b6 = new Boolean(messageBundle.getString("Display.Toolbar"));
                        crystalReportPageViewer.setHasToggleGroupTreeButton(true);
                        crystalReportPageViewer.setHasExportButton(true);
                        crystalReportPageViewer.setHasSearchButton(false);
                        crystalReportPageViewer.setDisplayGroupTree(false);
                        crystalReportPageViewer.setHasLogo(false);
                        crystalReportPageViewer.setOwnPage(true);
                        crystalReportPageViewer.setOwnForm(true);
                        crystalReportPageViewer.setReportSource(reportSource);
                        crystalReportPageViewer.processHttpRequest(request, response, application, null);
                        IReportSource reportSource = (IReportSource)rptSrcFactory.createReportSource(reportName,request.getLocale());
                        //CharacterSeparatedValuesExportFormatOptions csvOptions = new CharacterSeparatedValuesExportFormatOptions();
                        ExportOptions exportOptions = new ExportOptions();
                        //exportOptions.setExportFormatType(ReportExportFormat.characterSeparatedValues);
                        //exportOptions.setExportFormatType(ReportExportFormat.PDF);     
                        exportOptions.setExportFormatType(ReportExportFormat.characterSeparatedValues);
                        exporter.setReportSource(reportSource);
                        exporter.setExportOptions(exportOptions);
                   //exporter.setExportAsAttachment(true);
                        exporter.processHttpRequest(request, response, application, null);
                   // ****** END CONNECT CRYSTALREPORTPAGEVIEWER SNIPPET ****************          
         } catch (ReportSDKExceptionBase e) {
             out.println(e);
    %>
    if i want to add custom button where to add

  • How do I set jpeg as my default export format?

    At my old job, when I exported sketches, it would automatically go to jpeg as jpeg was on top of the list. Now, I have to scroll through a lot of different formats looking for the jpeg format and of course, this takes up valuable time.
    I make tech sheets in Illy at my job and need to export just about everything I do in jpeg format, for the benefit of others. I tried looking through the menus, but haven't found the answer yet.

    I don't know, but to speed up the process you can
    - assign a Keyboard shortcut to File->Export...(Ctrl+E for example, you'll have to give up Scale shortcut if you don't use it)
    that brings up the export dialog
    - type you file name
    - instead of scrolling, TAB to highlight the saveas type field
    - hit "J", it will get JPEG
    - hit "Enter"
    hope it helps
    p.s. you could also set up an action....

  • Export Format In PDF Articles - Vector as default

    I would like to request that 'Vector' be made the default (or an option allowed for users to change the default) for 'Export Format in PDF Artciles' in Slideshows and Scrollable Frames.
    In my line of work - newspaper and magazine publishing - roughly 99.9% of Slideshows and precisely 100% of Scrollable Frames contain text and therefore *must* be set to Vector otherwise our pages look pants on a Retina display. It is troublesome and needlessly expensive for us to be changing Raster content to Vector over and over and over again. And over and over. And over and over.
    We're finding that big scrolls and MSOs might be set to Vector in our templates but, after a bit of chopping, changing and copy-pasting on live pages by designers, they revert to Raster. Can you imagine how infuriating it would be if you applied a custom Swatch to an object, only to have it keep reverting to Black? Well, this is what it's like with the Raster business.
    Alistair

    I would like to request that 'Vector' be made the default (or an option allowed for users to change the default) for 'Export Format in PDF Artciles' in Slideshows and Scrollable Frames.
    In my line of work - newspaper and magazine publishing - roughly 99.9% of Slideshows and precisely 100% of Scrollable Frames contain text and therefore *must* be set to Vector otherwise our pages look pants on a Retina display. It is troublesome and needlessly expensive for us to be changing Raster content to Vector over and over and over again. And over and over. And over and over.
    We're finding that big scrolls and MSOs might be set to Vector in our templates but, after a bit of chopping, changing and copy-pasting on live pages by designers, they revert to Raster. Can you imagine how infuriating it would be if you applied a custom Swatch to an object, only to have it keep reverting to Black? Well, this is what it's like with the Raster business.
    Alistair

  • 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>

  • 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.

  • .rpt  default setting  Format not working?

    I login to the administrator portal and right cilck on one of the report *.rpt and right click on it and properties, I see the default setting and format. So under format I choose format option, I choose Microsoft Excel 2003. and saved it. I then login as the user and ran the report, but by default it doesn't keep the setting, when I do a export I am prompt as my default .rpt format. I need it to be excel format. Even though I choose export to excel, but the setting are default, I need the setting i set . Anyone what I'm doing wrong?
    Here is a screen shot of the format setting I need. When I login as the user and run the report, I am given an option to export to excel 2003, but I don't get the other print option. like Detail, and show gridlines?
    Anyone know why? please advice..
    http://img543.imageshack.us/i/56643353.jpg/
    Edited by: songv888 on Oct 5, 2010 11:29 PM

    Merlin128 wrote:
    NLS_DATE_FORMAT is DD-MON-RR
    Where is it set to that? NLS_DATE_FORMAT can be set in various places .... OS environment, oracle session level, db initialization ....
    but when I select sysdate, or do an insert.. thats not the format..
    select sysdate from dual; shows 4/27/2010..
    inserts dont work with 27-APR-10 they only work with 4/27/10 or 04/27/10..
    I dont get it..

  • 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

  • Default Export settings?

    Is there anyway to set the export settings as a default? Ever since I did the new update it appears as if Premiere no longer remembers the last setting I used to export - as I am often doing 11 - 12 videos per day it is a huge waste of time for me to continually have to select the same export settings over and over.
    Thanks in advance for any help

    Thanks for all your answers, however none of them really help me. I'm not asking about presets, I know very well how to set them up and how to use them in both Premiere and AME.
    I have 12 presets saved and the number is still growing, I edit rushes into single clips every day and since they are shot on different cameras (DSLR, BMPCC, C300...) I have to use different presets for all of them.
    At the moment when I hit export the setting always defaults to HD 720p 24 h.264 AAC 48kHz, which is useless to me as among other things all my exports have to have audio sampling dropped to 44100Hz. Before the update after selecting my preset once Premiere defaulted to the selected preset in following sequences, now it always defaults to the useless 720p 24fps setting.
    It might not seem like a big issue to some, however when you are editing in volume and dealing with loads of formats like me, the ability to rely solely on keyboard shortcuts is massively important as it allows me to smash through an edit with looking at the export window only once.
    I do realise I could queue my exports into AME and drag and drop my preset to all queued exports, however that's a loss of time for me, as normally I trim and colour correct my first clip, send it to AME and start the export, go back to Premiere and work on the next clip, send to to AME.... This way by the time I get to my final clip 70%-90% of all my exports from that project will be done, instead of waiting for all clips from one project to export.
    I simply don't understand why there are some many options for storing effect presets and setting default effects but no default export setting or am I missing something? I like the new colours of the interface but functionality should always be more important.
    Would be great to get an answer from Adobe about this but of course any suggestions and fixes are very welcome. If anyone knows of a way to downgrade to the previous version please tell me as from my perspective this version of premiere due to lack of functionality is not really an upgrade more of a 'bad facelift' looks better on the surface but hides damage on the inside.
    Thanks!

  • 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

  • Best Export Format

    I edited an standard def movie in Premiere Pro CS3 that a distributor wants to sell.  They are requesting a copy of the movie in Digital Betacam.  I've found companies that will dub to that format but I'm not sure of the best format to export from CS3 for the dub.  I would guess that it would be uncompressed as as close to natural footage as possible.  Please tell me what export type would be the best.
    I've also purchased Premiere Pro CS5.  If there is a better export format with it, I can re-edit it in CS5, but I'd rather not do that.
    Thank you in advance!

    >found companies that will dub
    You should ask the individual companies what they want
    The "default" for SD at the likely same quality as your source (except, you don't describe your source codec) is DV AVI Type 2 with 16bit 48khz sound
    That codec takes about 13gig per hour... uncompressed with a different codec will take a lot more space
    But, again, don't ask us... ask the company you select to create the Digital Betacam

  • Export format

    I'm exporting to a quicktime movie that I'll be burning a DVD from for our customers. My goal is to maintain the quality of the video with the least amount of time converting to the export format.
    I have tried exporting to a quicktime video with the settings at:
    Video Only
    "make self-contained movie" = deselected
    I have also tried exporting as a quicktime conversion with the settings at:
    Quick Time Movie
    Video = H.264 / default settings
    Audio = deselected
    Internet streaming = deselected
    Both formats work well and create a quality video, but does anyone have suggestions as to settings or alternate formats that might speed up the export conversion process while maintaining video quality.
    Thanks

    If you are exporting for the purpose of burning DVDs, you should export to *QuickTime Movie*, and UNcheck the option called 'Make Movie Self-Contained'. The export should be pretty fast (a few minutes at most).
    One other thing - before exporting you should always do
    *Sequence > Render All > Both* and
    *Sequence > Render Only > Mixdown*
    Then save your project before exporting. In addition to reducing the risk of problems during exporting, it will also speed the export time.
    You should never export to QT Conversion if you are transferring your output to iDVD or Toast.

  • Default export to excel

    We are using Discoverer 10.1.2, we want to customize the export funtionality of Discoverer Viewer in such a way that it would export to Excel by default when the user clicks on export instead of givng him various options. Any suggestions? I assume this has to be with App Server config files.
    Thanks

    This is practically an identical answer I gave on anther thread on this forum right now. Same idea in that you're customizing viewer in a 'non-standard' way.
    Russ
    You would be performing a customization in that it would be a global change in that everyone will have the same limitation using Viewer.
    However, a post on doing nearly this exact thing can be seen at:
    http://oraclebi.blogspot.com
    which is the blog for a couple of Oracle BI Project Managers.
    If you search in the search box for 'UIX' and choose 'search this blog', you'll see some hacks and 'How To Customize The Export Formats List in Viewer' is the one that may interest you.
    Now ... if I don't say it ... someone else will (although maybe not so humously), so ...
    1. Oracle doesn't support this
    2. Oracle will say it voids all sorts of stuff
    3. You wife will leave you, the kids will join a punk rock band, the dog will relieve itself in the house, and the car won't start (well at least it will seem that way with all the warnings you'll get for this kind of thing)
    4. If you're an adult now, then treat it like an adult would (ie: back up all the UIX files to a directory first, don't touch that backup upon penalty of death, and only restore back from that area if you screw up your UIX hack). If you just treat it like altering an Oracle Apps Form (ie: you don't play with Oracle's original one, you make a copy, work on the copy and link the copy in as the new one right), then you'll be okay
    On a sidenote, I could resist mentioning something funny (well I thought it was funny) as I always state all these warnings, and still people miss them. Hopefully the message has now gone so far down in the list that you won't want to see it (and the author isn't on this forum), but recently on the BI forum here, someone was asking where they could get a copy of the UIX files. Makes me think ...
    I guess his wife left him, the kids joined a punk rock band ... you get the idea.
    Russ

Maybe you are looking for