changing the order of export format

Hi all

I want to change the order of the columns in the file exported in FDM according to my needs. How can I change the order of columns in the exported file? Please help me in this.

Thank you!

Take a look in the script Export Action of any adapter you are using. This is where the output format is defined.

I forgot to mention if you use the Essbase adapter, you can do so via the definition of the sequence of calc for each dimension, which will determine the order that it appears in the output file. This can be set in the web client or workbench

Published by: SH on October 18, 2011 09:43

Tags: Business Intelligence

Similar Questions

  • I created a 'film' in Windows Movie Maker with audio. I'm now trying to burn on a DVD in windows DVD creation, but the program will change the order of my photos. What I am doing wrong?

    I took pictures of a Picasa folder and created a "slideshow" with audio in Windows Movie Maker. It's over, but when I try and save it to a dvd using windows DVD create, change the order of my photos are randomly. Am I missing a setting? What I am doing wrong?

    It may be interesting to try to publish (Save) project in the. Film WMV
    format in a folder on your hard drive. Then import them. WMV file in
    Creating Windows DVD.

    Windows Vista - publish a movie in Windows Movie Maker
    http://Windows.Microsoft.com/en-us/Windows-Vista/publish-a-movie-in-Windows-Movie-Maker

    Movie Maker Vista - Edition
    http://www.Papajohn.org/Vista-publishing.html

  • Change the order of the components in FlowPane

    I'm interested, how I can change with mouse drag and drop the order of the components in FlowPane. I have an example that can work with TabPane and drag between two TabPanes tabs:

    public class DragPanel {
    
        private static final String TAB_DRAG_KEY = "panel";
        private static ObjectProperty<Tab> draggingTab = new SimpleObjectProperty<>();
    
        // Drag Panel
        public static Tab makePanelDrag(final Tab tabA, final Label tabALabel)
        {
    
            tabALabel.setOnDragDetected(new EventHandler<MouseEvent>()
            {
                @Override
                public void handle(MouseEvent event)
                {
                    Dragboard dragboard = tabALabel.startDragAndDrop(TransferMode.MOVE);
                    ClipboardContent clipboardContent = new ClipboardContent();
                    clipboardContent.putString(TAB_DRAG_KEY);
                    dragboard.setContent(clipboardContent);
                    draggingTab.set(tabA);
                    DragBuffer.setDraggingTab(draggingTab);
    
                    // For Java 8
                    // Make screenshot of the dragged component
                    //Image img = tabALabel.snapshot(null, null);
                    //dragboard.setDragView(img, 7, 7);
                    //tabA.getTabPane().getTabs().remove(tabA);
                    event.consume();
                }
            });
            return tabA;
        }
    
        // Drop Tab
        public static TabPane makeTabDrop(final TabPane tabPane)
        {
    
            tabPane.setOnDragEntered(new EventHandler<DragEvent>()
            {
                @Override
                public void handle(DragEvent event)
                {
                    /* the drag-and-drop gesture entered the target */
                    /* show to the user that it is an actual gesture target */
                    if (event.getGestureSource() != tabPane && event.getDragboard().hasString())
                    {
                        tabPane.setCursor(Cursor.MOVE);
                        // Add Glow effect when the mouse holds object over the TabPane
                        tabPane.setEffect(new Glow(0.5));
    
                    }
                    event.consume();
                }
            });
    
            tabPane.setOnDragExited(new EventHandler<DragEvent>()
            {
                @Override
                public void handle(DragEvent event)
                {
                    /* mouse moved away, remove the graphical cues */
                    tabPane.setCursor(Cursor.DEFAULT);
                    // Remove the Glow effect when the mouse is not over the tabPane with Object
                    tabPane.setEffect(new Glow(0.0));
                    event.consume();
                }
            });
    
            tabPane.setOnDragOver(new EventHandler<DragEvent>()
            {
                @Override
                public void handle(DragEvent event)
                {
                    final Dragboard dragboard = event.getDragboard();
                    if (dragboard.hasString()
                            && TAB_DRAG_KEY.equals(dragboard.getString())
                            && DragBuffer.getDraggingTab().get() != null
                            && DragBuffer.getDraggingTab().get().getTabPane() != tabPane)
                    {
                        event.acceptTransferModes(TransferMode.MOVE);
                        event.consume();
                    }
                }
            });
    
            tabPane.setOnDragDropped(new EventHandler<DragEvent>()
            {
                @Override
                public void handle(DragEvent event)
                {
                    final Dragboard dragboard = event.getDragboard();
                    if (dragboard.hasString()
                            && TAB_DRAG_KEY.equals(dragboard.getString())
                            && DragBuffer.getDraggingTab().get() != null
                            && DragBuffer.getDraggingTab().get().getTabPane() != tabPane)
                    {
                        final Tab tab = DragBuffer.getDraggingTab().get();
                        tab.getTabPane().getTabs().remove(tab);
                        tabPane.getTabs().add(tab);
                        // Tempolary fix
                        new Timeline(new KeyFrame(Duration.millis(100), new EventHandler<ActionEvent>()
                        {
                            @Override
                            public void handle(ActionEvent event)
                            {
                                tabPane.getSelectionModel().select(tab);
                            }
                        })).play();
                        event.setDropCompleted(true);
                        DragBuffer.getDraggingTab().set(null);
                        event.consume();
                    }
                }
            });
            return tabPane;
        }
    }
    
    

    The question is how do I get the position of the foresight of component the FlowPane and change the order when I drop the component?

    P.S

    I have a FlowPane with many small panels that are BorderPanes. I want to change the order of the BorderPanes with the mouse drag and drop. But I'm sure that this feature at the moment is not possible. So I think I can solve this problem in the other direction.

    I can insert component additional which will be inserted into the FlowPane and held the BorderPane:

    FlowPane-> component-> BorderPane

    I can add setOnDragDetected() and setOnDragDropped to the component in order to implement the transaction slip and fall.
    The question is which component will be suitable for this task? I need to make it transparent and it must be resizable auto because the BorderPanes can expand and shrink. Can you give me some advice?

    Concerning

    No idea why you think that you should add another component between each part of the border and the workflow pane. Why not just put the behavior of dragging on each side of the border?

    To change the order, just children of the pane flow and basically manipulate it like any other list, using (...) remove and add (...). Just be careful to remove the two nodes first, then add them after (so you do not violate the rules of the graphic scene).

    import java.util.Random;
    
    import javafx.application.Application;
    import javafx.collections.ObservableList;
    import javafx.event.EventHandler;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.input.ClipboardContent;
    import javafx.scene.input.DragEvent;
    import javafx.scene.input.Dragboard;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.input.TransferMode;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.FlowPane;
    import javafx.scene.layout.Pane;
    import javafx.stage.Stage;
    
    public class DraggableFlowPane extends Application {
    
        @Override
        public void start(Stage primaryStage) {
            final FlowPane root = new FlowPane();
            final Random rng = new Random();
            final int NUM_NODES = 120;
            for (int i = 0; i < NUM_NODES; i++) {
                int red = rng.nextInt(256);
                int green = rng.nextInt(256);
                int blue = rng.nextInt(256);
                Node node = createNode();
                node.setStyle(String.format("-fx-background-color: rgb(%d, %d, %d);", red, green, blue));
                root.getChildren().add(node);
            }
            primaryStage.setScene(new Scene(root, 600, 500));
            primaryStage.show();
        }
    
        private Node createNode() {
            final BorderPane bp = new BorderPane();
            bp.setOnDragDetected(new EventHandler() {
                @Override
                public void handle(MouseEvent event) {
                    Dragboard db = bp.startDragAndDrop(TransferMode.MOVE);
                    ClipboardContent clipboard = new ClipboardContent();
                    final int nodeIndex = bp.getParent().getChildrenUnmodifiable()
                            .indexOf(bp);
                    clipboard.putString(Integer.toString(nodeIndex));
                    db.setContent(clipboard);
                    event.consume();
                }
            });
            bp.setOnDragOver(new EventHandler() {
                @Override
                public void handle(DragEvent event) {
                    boolean accept = true;
                    final Dragboard dragboard = event.getDragboard();
                    if (dragboard.hasString()) {
                        int incomingIndex = Integer.parseInt(dragboard.getString());
                        int myIndex = bp.getParent().getChildrenUnmodifiable()
                                .indexOf(bp);
                        if (incomingIndex == myIndex) {
                            accept = false;
                        }
                    } else {
                        accept = false;
                    }
                    if (accept) {
                        event.acceptTransferModes(TransferMode.MOVE);
                    }
                }
            });
            bp.setOnDragDropped(new EventHandler() {
                @Override
                public void handle(DragEvent event) {
                    boolean success = false;
                    final Dragboard dragboard = event.getDragboard();
                    if (dragboard.hasString()) {
                        int incomingIndex = Integer.parseInt(dragboard.getString());
                        final Pane parent = (Pane) bp.getParent();
                        final ObservableList children = parent.getChildren();
                        int myIndex = children.indexOf(bp);
                        final int laterIndex = Math.max(incomingIndex, myIndex);
                        Node removedLater = children.remove(laterIndex);
                        final int earlierIndex = Math.min(incomingIndex, myIndex);
                        Node removedEarlier = children.remove(earlierIndex);
                        children.add(earlierIndex, removedLater);
                        children.add(laterIndex, removedEarlier);
                        success = true;
                    }
                    event.setDropCompleted(success);
                }
            });
            bp.setMinSize(50, 50);
            return bp;
        }
    
        public static void main(String[] args) {
            launch(args);
        }
    }
    
  • How can I change the order of the files in a combined PDF file?

    Trying to create a brochure.  I downloaded and converted files from word to PDF.  How can I change the order of these files now?

    Hi respice1,

    You combine several files in PDF format? If so, you can drag and drop the page thumbnails tab to combine files in the order you want the combined files.

    Afterwards, you will need to use Acrobat to rearrange the pages in a PDF document. You can try Acrobat for free for 30 days, if you wish. For more information, see www.adobe.com/products/acrobat.html.

    Best,

    Sara

  • Cannot change the order of songs in my playlists on my new iPhone 7 (iOS 10.02). How can I fix?

    CAN I change the order on my MacBook Air when my phone is connected (but the changes are not published on my phone)

    Hello, wolfebait!

    Welcome to congratulations on getting a new iPhone and Apple support communities 7.  I see your message that you are having problems changing the order of song into playlists that you created, but it only happens on your new iPhone.  I have several playlists I created myself, and I sometimes have to change the order of songs as well.  I'm happy to help you with this.

    1. Open your music app.
    2. Type library on the bottom left.
    3. Touch Playlists.
    4. Press the Playlist you want to change (it must be one that you have created, as organized playlists cannot be changed).
    5. Press 'Edit' at the top right of your screen.
    6. You should now see red circles 'remove' to the left of each song and three horizontal lines gray right of each song.
    7. Press the grey horizontal lines with your finger and drag the song to the position in the playlist that you want it to be in.
    8. When you have finished editing, type "Done" in the upper right corner.
    9. Your playlist should now be in the new order that you chose!

    Have a great rest of your week!

  • How to change the order of people

    Under El Capitan, I recently spent some time to reorganize manually about 260 faces in a seemingly random way in order of last name. Now under the Sierra Apple has decided to display them in the order first name without the possibility of manual reorganization which is useless and irritating. Any suggestions on how can I change the order?

    In Favorites, you can drag and drop them in the required location - those remaining you can not change the order

    LN

  • Today, I can't change the order of items in the dock?

    Today, I tried to clean my dock and to rearrange the order that items appear.  Although I was able to delete icons I no longer need quick access, but I'm not able to rearrange the order in which they appear. I'd rather have those I use him more appear at the top of the docking station. I have my dock on the left side of my screen iMac 21.5 ". All the elements I want to rearrange are above this line, but they don't allow me to change the order in which they appear. In the past I have rearranged the icons, but not today. Help?

    There are ways to cause the dock must be blocked. keyboard shortcuts, maybe, but

    more are certainly the shortcuts of command-line or terminal. Some ideas of those who, here:

    • How to lock the size of the Dock, the Position and content in OS X - Mac...

    https://www.MacObserver.com/TMO/article/how-to-lock-the-Dock-size-position-and-c materials in os x

    August 28, 2015 - here are a few easy Terminal commands to lock station size, position,.

  • How can I change the order of songs in my list "to the top following" of Apple's music with the 10 iOS?

    Thanks for your help guys! :-)

    Hey Aktivoli,

    If I understand correctly, you use the Apple music app and want to change the order of the songs until the next.
    I recommend reading this article, it explains how to change the order in the Apple's music library and playlists.

    Swipe up on reading to display your queue up next, that lists all the songs that you have selected for the current playback.

    Drag the songs with to rearrange the order, or swipe to the left to remove a song you want to ignore.

    Use of music Apple in the music - Apple Support application

    Thank you for using communities of Apple Support. Have a good.

  • How can I change the ORDER of my 5 email accounts to my default at the top

    How can I change the order of my 5 email accounts to my default at the top? Currently using any option to e-mail browser (Chrome Firfox IE) sends using one upstairs that is one that I never use. I specifically put by default in the settings option and figure that he took over the top NOT the default. This question never used to cultures upward, but since a recent update for Thunderbird, he chooses the top of the list only Preferred not on the list.
    Thank you I could delete the account then add it to the bottom (tedious), but there must be a way for a) restore order and b) to stop the email add on picking at the top

    Two things.

    You have defined the default value in the menu (alt + T) tools > account settings > outgoing (SMTP) Server?

    Second, try this add-on https://addons.mozilla.org/en-US/thunderbird/addon/manually-sort-folders/?src=ss

  • I have a number of accounts (left), I would like to change the order in which they are displayed, THE who is first and who is the last.

    In the left column of the program is a list of all the e-mail addresses that Thunderbird checks. I want to change the order of the list of e-mail addresses. Some addresses are more important to me than others. I would like than to be at the top of the list. How can I move them in the order I want?
    Thank you

    Install this add-on.
    https://addons.Mozilla.org/en-us/Thunderbird/addon/manually-sort-folders/

  • How can I change the order of photos in the shared album?

    Hello

    I have pictures from multiple sources in a single shared album. Photos are not in order (each device had date and different time). I can change something order these photos? I even tried to delete the shared album, rearrange photos in my album, I shared this album published, but the photos are still in the wrong order.

    Thank you

    Petr

    Shared albums the photo order depending on how they are added, you can not change the order later.

  • Change the order of songs Itunes manually?

    I have iTunes 12 and it won't let me change the order of the tracks of an album in my library. Is it possible to change and how?

    May 2016 "I can't find where to change the view in each playlist" - https://discussions.apple.com/message/30221921#30221921 - "it's in the menu bar.  With the playlist selected in the window of iTunes in the menu bar, display-> display-> [select desired display]. "List mode is called"songs ".

    Apple simplifies navigation with iTunes 12.4 - http://www.macworld.com/article/3070462/streaming-media/apple-simplifies-navigat ion-with-itunes-12 - 4.html

    How can I view my mode music list in iTunes 12.4? - https://discussions.apple.com/thread/7564244

    You must select the column left heading if you are using the manual sorting.

  • Can I change the order of the top 3 bars?

    Hello
    I just upgraded and it seems to have change the order toolbars superior superior.

    What I want to do is change the order of them. Right now my "tabs" out through the top. Below that is the search bar and below are my favorites.

    What I want to do is to put the "tabs" below the search bar. Is this possible?

    And no he does not have to reorganize under «Tools - Customize» I tried everything I could think of!
    Thank you
    Annie

    Hello

    Please see How to make the new look of Firefox as the old Firefox

    It seems that the classic add-on theme restaurant owner can move the tabs under the address bar toolbar if you open its options in tools > Classic theme restaurateur.

  • How can I change the order of open tabs?

    I currently have about a dozen tabs open, most need to be read in a particular order. Is it possible to change the order of these tabs? If not, hang a tabs without sliding laterally could become a method of 'release' of the selected tab, allowing it to be moved to the top or to the bottom of the list (I think that it looks like a good and especially easy and possible future addition to the app).

    Thanks for your time,
    Adam

    Adam, unfortunately at the moment it is not a feature of Firefox for Android. To move tabs, you will need to close and open them in the order you want them to appear.

    If this is a feature you want, however, I would recommend leaving your comments on this matter in input.mozilla.org.

  • Change the order of the email accounts

    Hello

    I was wondering why there isn't a way to change the order of the email accounts in the list?

    I created a new e-mail address and want it to appear under the first in my list of five email accounts, that I put in place. This last address is very important, the order in which I discover them is also important.

    A useful feature would be to order the accounts, as they are displayed vertically. Maybe a drag and drop system as I've seen in the WordPress CMS for menus. Just a thought.

    Sincere greetings
    Glynn

    Go to the Add Ons page and the search for records of manual sorting. It will do what you want.

Maybe you are looking for