Is it possible to add export to Excel 2003 in OBIEE 11.0.1.9

Hello, is it possible to OBIEE 11.0.1.9 to add export to Excel 2003, because when I have a report that contains several sections, and export the report it merges some columns. How to add export xls 2003 button under export

Hello

You can not.

Support for the old format of Microsoft (2003 or older) for Excel and PowerPoint fell in 11.1.1.9.

Only the new format exists.

Tags: Business Intelligence

Similar Questions

  • Newbie: is it possible to automate export to Excel

    Hello

    In my organization, we usually export a query to Excel.

    I was wondering if there was a way to automate this step.

    My hope is to have the application on demand and then using Microsoft Access VBA, I would still be working with the
    data.

    Pls advise, thx, Sandra

    Hello

    You can automate the export to Excel by running Office to the discoverer of a VB script or .bat file. Not very well why you would use Microsoft Accesss VBA.

    Rod West

  • Maximum number of lines - exported to excel

    Hi all

    I use Oracle Business Intelligence Discoverer Desktop version 10.1.2.00.00
    the maximum number of lines that I can export Excel is 65 536. I tried export in excel 2003 and 2007

    P.S unchecked tools > Options > query governor > limit extract data to ' field to get all the lines


    Y at - it a setting to control the number of rows exported?

    Please suggest

    Kind regards
    SK

    Hello

    Y at - it a setting to control the number of rows exported?

    No definition for line MAX not exported

    Export results in CSV to XLS
    Next to this, use the more can give you a solution since most divides the results in bulk from 65 536 records on each tab (in the exported XLS).

    Tamir

  • Is it is possible to add script in Adobe Muse? I have added the functionality to export file .csv to the contact form

    Is it is possible to add script in Adobe Muse? I have added the functionality to export file .csv to the contact form

    Hi Vicky,

    Yes, you can add scripts customized to a page of muse. To do this, you must go to 'properties-> metadata-> html to head page' or ' object-> insert html.

    - Abhishek Maurya

  • Is it possible to add a list drop-down selection to a form of Muse, once exported to HTML etc?

    Hello

    I have created a form and make the features of Muse does not allow a form element to have a menu drop-down. However, I wonder if it is possible to add after you have exported the file HTML etc.? If so someone does know how to approach the issue? I realize there are other alternatives to the addition of forms such as Jotform, but they do not really state how I want that they.

    If anyone can give me a hand, it would be great!

    Hello

    check the last comment in the following thread, see if you can get something useful

    Contact form Widget Radio buttons & falling down

  • JavaFX2.1 - TableView - a TableView content can be exported to Excel

    Hi all

    I'm new to JavaFx scene, I have a desktop application that uses several of various sizes and values make. When the user closes down the display of the table in question, they asked that the exit of the tableview exported to a csv file in a specified location. I tried various searches but am yet to see examples of if this is still possible in javafx.

    Could someone advise if you are able to export content from a TableView to Excel? Pointers would be greatly appreciated.

    Thank you.

    Here's an example of how export to a csv file:

    import javafx.beans.property.SimpleStringProperty;
    import javafx.scene.control.cell.PropertyValueFactory;
    import javafx.application.Application;
    import javafx.collections.FXCollections;
    import javafx.collections.ObservableList;
    import javafx.geometry.Insets;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.control.*;
    import javafx.scene.control.TableColumn;
    import javafx.scene.control.TableView;
    import javafx.scene.layout.VBox;
    import javafx.scene.text.Font;
    import javafx.stage.Stage;
    import javafx.beans.value.*;
    import javafx.beans.*;
    import javafx.beans.property.*;
    import javafx.collections.*;
    
    import java.io.*;
    
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.event.EventType;
    import javafx.scene.effect.InnerShadow;
    import javafx.scene.input.MouseEvent;
    
    public class Tbview extends Application {
    
        private IntegerProperty index = new SimpleIntegerProperty();
    
        public final Integer getIndex() {
            return index.get();
        }
    
        public final void setIndex(Integer value) {
            index.set(value);
        }
    
        public IntegerProperty indexProperty() {
            return index;
        }
    
        public static class Person {
    
            private final SimpleStringProperty firstName;
            private final SimpleStringProperty lastName;
            private final SimpleStringProperty email;
    
            private Person(String fName, String lName, String email) {
                this.firstName = new SimpleStringProperty(fName);
                this.lastName = new SimpleStringProperty(lName);
                this.email = new SimpleStringProperty(email);
            }
    
            public String getFirstName() {
                return firstName.get();
            }
    
            public void setFirstName(String fName) {
                firstName.set(fName);
            }
    
            public String getLastName() {
                return lastName.get();
            }
    
            public void setLastName(String fName) {
                lastName.set(fName);
            }
    
            public String getEmail() {
                return email.get();
            }
    
            public void setEmail(String fName) {
                email.set(fName);
            }
        }
        private TableView table = new TableView();
        private final ObservableList data =
                FXCollections.observableArrayList(
                new Person("Isabella", "Johnson", "[email protected]"),
                new Person("Ethan", "Williams", "[email protected]"),
                new Person("Emma", "Jones", "[email protected]"),
                new Person("Isabella", "Johnson", "[email protected]"),
                new Person("Ethan", "Williams", "[email protected]"),
                new Person("Emma", "Jones", "[email protected]"),
                new Person("Isabella", "Johnson", "[email protected]"),
                new Person("Ethan", "Williams", "[email protected]"),
                new Person("Emma", "Jones", "[email protected]"),
                new Person("Isabella", "Johnson", "[email protected]"),
                new Person("Ethan", "Williams", "[email protected]"),
                new Person("Emma", "Jones", "[email protected]"),
                new Person("Michael", "Brown", "[email protected]"));
    
        public static void main(String[] args) {
            launch(args);
        }
    
        @Override
        public void start(Stage stage) {
            Scene scene = new Scene(new Group());
            stage.setTitle("Table View Sample");
            stage.setWidth(400);
            stage.setHeight(500);
    
            final Label label = new Label("Address Book");
            label.setFont(new Font("Arial", 20));
    
            final TableColumn firstNameCol = new TableColumn("First Name");
            firstNameCol.setCellValueFactory(
                    new PropertyValueFactory("firstName"));
    
            firstNameCol.setSortable(false);
    
            firstNameCol.addEventHandler(MouseEvent.MOUSE_PRESSED, new EventHandler() {
    
                public void handle(MouseEvent event) {
    
                    System.out.println("First name col is pressed");
    
                }
            });
    
            TableColumn lastNameCol = new TableColumn("Last Name");
            lastNameCol.setCellValueFactory(
                    new PropertyValueFactory("lastName"));
            lastNameCol.setSortable(false);
            TableColumn emailCol = new TableColumn("Email");
            emailCol.setMinWidth(200);
            emailCol.setCellValueFactory(
                    new PropertyValueFactory("email"));
            emailCol.setSortable(false);
            table.setItems(data);
            table.getColumns().addAll(firstNameCol, lastNameCol, emailCol);
            table.getSelectionModel().setSelectionMode(SelectionMode.SINGLE);
    
            indexProperty().addListener(new ChangeListener() {
    
                @Override
                public void changed(ObservableValue o, Object oldVal,
                        Object newVal) {
                    table.getSelectionModel().select(index.get());
    
                }
            });
    
            // table.getSelectionModel().sel.s.select(1, lastNameCol);
    
            final VBox vbox = new VBox();
            vbox.setSpacing(5);
    
            table.onScrollProperty().addListener(new ChangeListener() {
    
                @Override
                public void changed(ObservableValue observable, Object oldvalue, Object newValue) {
                    System.out.println("scror bar " + oldvalue);
    
                }
            });
    
            table.getSelectionModel().setSelectionMode(SelectionMode.SINGLE);
            table.getSelectionModel().setCellSelectionEnabled(true);
    
            table.getSelectionModel().selectedItemProperty().addListener(new ChangeListener() {
    
                @Override
                public void changed(ObservableValue observable, Object oldvalue, Object newValue) {
                    for (TablePosition t : (ObservableList) table.getSelectionModel().getSelectedCells()) {
                        System.out.println(t.getColumn());
                    }
                }
            });
    
            // table.getSelectionModel().setCellSelectionEnabled(true);
    
            final Button export = new Button("Export to Excel");
            export.setOnAction(new EventHandler() {
    
                @Override
                public void handle(ActionEvent e)  {
                  try {
                    writeExcel();
                  }
                  catch (Exception ex) {
                ex.printStackTrace();
            }
    
                }
                //
            });
    
            vbox.getChildren().addAll(label, table, export);
    
            vbox.setPadding(new Insets(10, 0, 0, 10));
    
            ((Group) scene.getRoot()).getChildren().addAll(vbox);
            scene.getStylesheets().add(getClass().getResource("stylesheet.css").toExternalForm());
            stage.setScene(scene);
            stage.show();
        }
    
        public void writeExcel() throws Exception {
            Writer writer = null;
            try {
                File file = new File("C:\\Person.csv.");
                writer = new BufferedWriter(new FileWriter(file));
                for (Person person : data) {
    
                    String text = person.getFirstName() + "," + person.getLastName() + "," + person.getEmail() + "\n";
    
                    writer.write(text);
                }
            } catch (Exception ex) {
                ex.printStackTrace();
            }
            finally {
    
                writer.flush();
                 writer.close();
            }
        }
    }
    
  • Automation of several scanned page PDF export to Excel

    We have MANY PDF files scanned at work (about 8 400) that we need to export to Excel. There are a few tricky parts to what I'm trying to find out if there is a way to automate this. These are all individual PDF files, but I know that I could convert them all to a multipage PDF, if I need to, that shouldn't be a problem. The major problem being that we want only a small part of all files PDF, the upper left corner that has some basic information (name and address) to be exported to an Excel worksheet. The rest of the PDF file is not required. If that helps anything on the automation of formatting are simple page PDF. Anyone know if this is possible?

    I asked this in the PDF forum, but someone suggested to ask in the forum of java script instead.

    It can be done, most likely, but it would be a custom script to extract the text from the desired coordinates and then export it to a format that can be read using Excel (for example, a text file delimited by tabs). This is not a simple task, however.

  • is it possible to add a footer page number to a PDF in reader

    I use Adobe Reader XI on a MacBook Pro.  I created documents in Word and Excel and then them scanned in pdf format, bringing together in a single pdf file in order to present the data in order.  Is it possible to add a page number footer?

    Hi cathmint,

    You will need Acrobat free trial download Adobe Acrobat application | Acrobat Pro DC to add the header & foot Add headers, footers and in format PDF, Adobe Acrobat Bates numbering.

    Kind regards
    Nicos

  • Is it possible to add a description for each slide in the slide show as a slide to separate before each photo?

    I am trying to create a descriptive slideshow with explanatory text before each slide.

    Can you suggest the smart way to do it quickly?

    Hi graceplight,

    It is not possible to add descriptions to individual slides in Lightroom.

    Please take a look at the article, it may be useful: https://helpx.adobe.com/lightroom/help/playing-exporting-slide-shows.html

    Please let us know if it helps.

    Kind regards

    Tanuj Sandal

  • If I copy and paste a comment in a pdf when I create a comment copied xfdf file is not included.  Is it possible to add these comments copied to the xfdf file?

    If I copy and paste a comment in a pdf when I create a comment copied xfdf file is not included.  Is it possible to add these comments copied to the xfdf file?

    Hi Steve Whipple.

    This link (Acrobat Help |) Import and export comments ) seems relevant to your query. Please let me know if it allows you to export xfdf file comments.

    Kind regards

    Rahul Tyagi

  • Export to Excel dashboard

    Hello

    We are able to export analysis to Excel... but the customer wants to export/download a dashboard to Excel...
    Pls... is this possible? (we use OBIEE 11.1.1.6)

    TXS.
    Antonio

    Hello

    There is no direct option to export to excel based on 11.1.1.6.This is added in 11.1.1.7.0

    In 11.1.1.7.0, we are able to export the complete dashboard page and the current page with export to excel option.

    FOR 11.1.1.6, please see the link below...

    How to export Excel dashboard reports in OBIEE 11.1.1.6.0?

    Please indicate if this can help you...
    Thank you

  • Keep the format when exporting to Excel

    Is it possible to keep the number and width of columns formatting when you export to Excel?

    You also have a possibility to customize your class "export."

    (1) you can set a custom action that does something totally different and make it available to your users. For example, we have done something in the past where a custom window gets arises and you can 'choose' attributes in your grid that you want to be exported, rather than be "linked" to the configured columns.

    (2) you can set the class that makes the export in the control panel under the frame settings. Maybe it's a little less flexible that you will be always tied to the model and the existing export format (it is passed to your class, rather than the CSVExport class), but you would be in full control of output. Like Sasha said, by default, CSV is the output format and things like formatting are obviously not taken in charge.

    I think that #1 would be the way to go because it offers the most flexibility for your users, but there should be a somewhat higher effort.

    # 1, you can see an example of this in action here:

    http://branchbird.com/images/exporting-options.PNG

    Hope that helps.

    Patrick

    Edited by: Branchbird - Pat on 11 October 2012 08:27

  • Is it possible to add a QR code to InDesign eBook?

    Is it possible to add a QR code to an InDesign document, and then export it to eBook so that the eBook and the QR code works on mobile devices?

    Addition of a QR code to the InDesign document, simply creates an embedded image. Anchor this image somewhere in the text and it will translate on the ePub.

    But what do you want that code QR to do?

    If you want the person who reads the book click on the QR code to access a web page, you'd be better off with a hyperlink.

    If you want the person with the book to hold the mobile camera upward and another person to use a reader to analyze the code, then 'Yes'. This can be done.

    He is clumsy, but devices can mate like that.

  • No Option to export to Excel 2007

    Is there a setting to allow the discoverer of export to Excel 2007? We use the discoverer and 11g, and is the only option we have to Excel for .xls. My users need to be able to export to xlsx (2007).

    Thank you

    Published by: user527082 on August 2, 2012 11:08

    I don't think that it is possible

    Discoverer of EXCEL XLSX Format directly export [ID 1331407.1]
    Discoverer 10 g (10.1.2.3) relational worksheet and Pluggable software component BI are certified with Microsoft Excel 2007 [ID 462114.1]

    HTH
    Srini

  • conurrent out of export to Excel

    Dear, alyakom Salam

    I know that this application has been considered a lot before, but really I tried some but has not worked for me! of course, I have something missing!
    I checked the notes recommended by Patrick:

    How to set up the release of the report to the viewer different Types in Oracle Applications 11i [ID 184375.1]
    Implementation of Word or Excel as an Option of the observer [178133.1 ID]
    How do I see / open several simultaneous requests with the Excel Application [ID 377424.1]
    To change the Format of output in RTF or Excel XML Publisher request no poster not output correctly [ID 404512.1]
    11i: implementation of Microsoft Word or Microsoft Excel as a viewer of reports [119505.1 ID]
    Export to Excel: file not supported or damaged Type "TSV" [ID 437395.1]

    but it does not work for me! I have another suggestion, simply we can exit the exit browser without making a lot of changes to our EBS (for the change profile option
    ("Viewer: text ' to the browser)
    I tried to use an option in my IE 8 browser to export the result of the application to Excel, but I got the following error:

    Authentication failed.

    Is it possible to pass the user name and password with the URL used to view the report on IE?
    for example. http://xxxx.yyyy.com:8000/OA_CGI/FNDWRR.exe?temp_ID=3848259503

    If you have any suggestions, as it will be much appreciated.

    My env data:
    EBS: 12.1.1
    Operating system: Oracle Enterprise Linux 5.5
    MS Office: 2010

    Kind regards
    Mohamed

    Hello

    I tried the solution provided in your note suggested and it worked for me, but I still have another thing.

    Good.

    each line of the output RCA has been inserted in the first column of each row in Excel, so I did that one column in my excel sheet that contains all the values.
    is it possible to put each the output value of CR in his column in the Excel worksheet.

    Please review these documents (search for "tab").

    How to export form or communicate data from Oracle Applications and in Excel [ID 372353.1]
    How to print reports and export form data [ID 836707.1]

    Thank you
    Hussein

Maybe you are looking for

  • Firefox very slow, slow and unresponsive on Windows 8.1

    Basically, everything is very slow and each action takes a long time to complete - tabs, switching takes about half a second to a full second (5 seconds if there is another tab currently loading / refreshing), by clicking the Center button of the mou

  • CARPET * A DVD - RAM UJ-8208

    Hello.I just bought this laptop and I have trouble with the CARPET * a reader of DVD - RAM UJ-8208.AutoPlay does not work.I have it set it right in the menu option for Auto pay, but still the CD does not start automatically.Anyone noticed the same pr

  • Deskject1220c: How to stop a blocked jet.

    I will not use my printer for 3 months and have just put in two new cartridges.  They are expensive and I fear that they will be blocked while I'm away. How can I stop this?  (There is not one available who can do an occasional print page).

  • Library of Microsoft visual c ++ debug

    whenever I start my computer this error pops up.Time check failure #2 stacked around the variable 'Cache Manager' has been corrupted. I use Windows Vista HomeSP2

  • Windows 7 game problem

    Windows 7 seems to have problems with intels express 965 graphics chip. My every need for speed games are running Win 7, but they are unable to use the same if the screen address resolutions. How should I do