Strange behavior with csv flat file integration

Hi,
i've a real strange behavior with csv flat file integration.
I've defined the file inbound with | as separator
Here is the sender payload result, extra columns appears !
<row>
  <VAL1>D</VAL1>
  <VAL2 />
  <VAL3>01</VAL3>
  <VAL4 />
  <VAL5 />
  <VAL6>003160000</VAL6>
  <VAL7 />
  <col>003160001</col>
  <col />
  <col>2</col>
  <col />
  <col>91200604212</col>
  <col />
  <col>VIRTUAL DJ HOME EDITION</col>
  <col />
  <col>2</col>
  <col />
  <col>2</col>
  <col />
  <col />
  <col>2</col>
  <col />
  </row>
When i changed the separator to ; in my file and in the file inbound it gives the following.
Everything is ok.
<row>
  <VAL1>D</VAL1>
  <VAL2>01</VAL2>
  <VAL3 />
  <VAL4>003160000</VAL4>
  <VAL5>003160001</VAL5>
  <VAL6>7</VAL6>
  <VAL7>91200604212</VAL7>
  <col>VIRTUAL DJ HOME EDITION</col>
  <col>10</col>
  <col>10</col>
  <col />
  <col>10</col>
  </row>
Why using a different separator would change the payload ?
It will be a good thing for me if I could use the pipe separator.
Thanks

Can you give the steps you're using to get this error? I'm not seeing any problem here.
1) Create a new audio project (44.1 KHz).
2) Arm the record head in track 1 by pressing the "R" button in that track. Verify audio levels.
3) Record by pressing the record button in the audio controls.
4) Stop recording by pressing the stop button.
5) Play back the resulting audio. Sounds fine.
6) Select File > Export.
7) Change the file format to WAVE file. Change the bit depth to 16 bit, change the sample rate to 44.1 KHz.
8) Type the name SAVETEST.wav and click on the Export button.
9) Play back the resulting WAV file in QuickTime Player, Apple Loops Utility, etc. and it seems just fine.
What am I missing that you're doing?

Similar Messages

  • Strange behavior with DefaultCellEditor

    Hello everybody,
    I found a strange behavior with DefaultCellEditor using a JTextField in a JTable. The following line will show, what I mean:
    setDefaultCellEditor(String.class,new DefaultCellEditor(new JTextField()));
    Imho this should do the same as JTable does already, when it installs a JTextField as default cell editor for cell values of the String class. But, it seems, that it is not the same:
    When I add this line in the constructor of a JTable subclass the editor component seems to be less wide and less high to the right and bottom - it looks so with Win95 with JDK 1.4.0 - but with Win2000 it is correct for example.
    My question is - how can it be, that the normal default cell editor does not have this behavior but when I use the line above, it is displayed in the wrong way?- What does the default cell editor in another way than I do it, that it has not this ugly display?
    I would like to look in the sources, but unfortunately I can't find the source code in JDK 1.4.0 - perhaps you have a hint, where to find it.
    greetings Marsian

    It seems the Label doesn't like it, that it is in a GridCell with rowspan = 2
    If it is in a normal cell (no rowspan), it works.
    If I add ColumnConstraints to the gridpane, it kind of works, but the Label still occupies more space than it should.
    Edited by: csh on 19.07.2012 03:51

  • Strange behavior with Collections

    Hello!
    I have a - from my point of view - strange behavior with a List (same also applies to Vector, LinkedList, and others):
    List<String> myList = new myList<String>;
    myList.add("One");
    while (true) {
    try {
    System.out.println(myList.size());
    throw new Exception();
    } catch (Exception e) {
    e.printStackTrace();
    }And the result is 1, 2, 2, 2, ...although I added only one element. The two elements in the List point to the same object.
    What could case this issue?
    Regards,

    len00x wrote:
    List<String> myList = new myList<String>;This doesn't even look like it will compile for at least one reason, easily two.

  • Strange behavior with Label#setWrapText(true) in GridPane.

    I've got a strange behavior with a Label, which has setWrapText(true) in a GridPane.
    Check out the sample and click the button.
    You see, that the GridPane suddenly behaves as if it had GridPane.setVGrow and HGrow set for the lblStatus.
    (it takes the full available space).
    Furthermore the first column shrinks to a minimum, so that lblText1 can't display its text anymore.
    Tested with 2.1 GA.
    Any help with that?
    import javafx.application.Application;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Insets;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Label;
    import javafx.scene.layout.GridPane;
    import javafx.stage.Stage;
    public class TestApp4 extends Application {
        public static void main(String[] args) {
            launch(args);
        @Override
        public void start(final Stage stage) throws Exception {
            GridPane gridPane = new GridPane();
            gridPane.setPadding(new Insets(2, 2, 2, 2));
            Label lblText1 = new Label();
            lblText1.textProperty().set("Some text");
            Label lblText2 = new Label();
            lblText2.textProperty().set("Some other text");
            Button btnClick = new Button();
            btnClick.textProperty().set("Click me");
            final Label lblStatus = new Label();
            lblStatus.setWrapText(true);
            gridPane.add(lblText1, 0, 0, 1, 1);
            gridPane.add(lblText2, 1, 0);
            gridPane.add(lblStatus, 0, 2, 2, 1);
            gridPane.add(btnClick, 0, 3, 2, 1);
            btnClick.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent actionEvent) {
                    lblStatus.setText("very long text, very long text, very long text, very long text,very long text, very long text");
            gridPane.setGridLinesVisible(true);
            Scene scene = new Scene(gridPane, 300, 300);
            stage.setScene(scene);
            stage.show();
    }Edited by: csh on 19.07.2012 03:35

    It seems the Label doesn't like it, that it is in a GridCell with rowspan = 2
    If it is in a normal cell (no rowspan), it works.
    If I add ColumnConstraints to the gridpane, it kind of works, but the Label still occupies more space than it should.
    Edited by: csh on 19.07.2012 03:51

  • Strange behavior with Bindings??

    Hello to all JavaFX 2 Binding experts,
    I have a strange behavior with Bindings in JavaFX 2.2 (Java 1.7 update 21). Please have a look at the following source code:
    package test;
    import javafx.application.Application;
    import javafx.beans.binding.BooleanBinding;
    import javafx.beans.property.SimpleBooleanProperty;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.fxml.FXML;
    import javafx.fxml.FXMLLoader;
    import javafx.scene.Parent;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.control.RadioButton;
    import javafx.stage.Stage;
    public class BindingVsProperty extends Application
        @FXML
        private RadioButton opt11;
        @FXML
        private RadioButton opt12;
        @FXML
        private RadioButton opt21;
        @FXML
        private RadioButton opt22;
        @FXML
        private Label lbl11And21;
      @Override
        public void start(Stage arg0) throws Exception
            FXMLLoader l_loader = new FXMLLoader();
            l_loader.setLocation(BindingVsProperty.class.getResource("BindingVsproperty.fxml"));
            l_loader.setController(this);
            l_loader.load();
            Scene l_scene = new Scene((Parent)l_loader.getRoot());
            arg0.setScene(l_scene);
            useBinding1();
            //useBinding2();
            //useBinding3();
            arg0.show();
        private void useBinding1() // NOT WORKING - ChangeListener.changed(..) is not called
            BooleanBinding l_andOpt11Opt21 = opt11.selectedProperty().and(opt21.selectedProperty());
            l_andOpt11Opt21.addListener(new ChangeListener<Boolean>()
                @Override
                public void changed(ObservableValue<? extends Boolean> arg0, Boolean arg1, Boolean arg2)
                    System.out.println("Opt 1.1 AND Opt 2.1 changed to: " + arg2);
        private void useBinding2() // OK - ChangeListener.changed(..) is called
            BooleanBinding l_andOpt11Opt21 = opt11.selectedProperty().and(opt21.selectedProperty());
            lbl11And21.visibleProperty().bind(l_andOpt11Opt21);
            l_andOpt11Opt21.addListener(new ChangeListener<Boolean>()
                @Override
                public void changed(ObservableValue<? extends Boolean> arg0, Boolean arg1, Boolean arg2)
                    System.out.println("Opt 1.1 AND Opt 2.1 changed to: " + arg2);
        private void useBinding3() // NOT WORKING - ChangeListener.changed(..) is not called
            BooleanBinding l_andOpt11Opt21 = opt11.selectedProperty().and(opt21.selectedProperty());
            new SimpleBooleanProperty(false).bind(l_andOpt11Opt21);
            l_andOpt11Opt21.addListener(new ChangeListener<Boolean>()
                @Override
                public void changed(ObservableValue<? extends Boolean> arg0, Boolean arg1, Boolean arg2)
                    System.out.println("Opt 1.1 AND Opt 2.1 changed to: " + arg2);
        public static void main(String[] args)
            launch(args);
    <?xml version="1.0" encoding="UTF-8"?>
    <?import java.lang.*?>
    <?import java.util.*?>
    <?import javafx.scene.control.*?>
    <?import javafx.scene.layout.*?>
    <?import javafx.scene.paint.*?>
    <BorderPane id="BorderPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefWidth="371.0" xmlns:fx="http://javafx.com/fxml">
      <center>
        <AnchorPane prefHeight="200.0" prefWidth="200.0">
          <children>
            <Label id="lblAnd" fx:id="lbl11And21" layoutX="82.0" layoutY="121.0" text="Group1 Opt1 AND Group2 Opt1 is true" textFill="#41cc00" visible="false" />
            <RadioButton fx:id="opt21" layoutX="216.0" layoutY="24.0" mnemonicParsing="false" text="Group 2 - Opt 1">
              <toggleGroup>
                <ToggleGroup fx:id="group2" />
              </toggleGroup>
            </RadioButton>
            <RadioButton fx:id="opt22" layoutX="216.0" layoutY="67.0" mnemonicParsing="false" text="Group 2 - Opt 2" toggleGroup="$group2" />
            <RadioButton fx:id="opt11" layoutX="29.0" layoutY="24.0" mnemonicParsing="false" text="Group 1 - Opt 1">
              <toggleGroup>
                <ToggleGroup fx:id="group1" />
              </toggleGroup>
            </RadioButton>
            <RadioButton fx:id="opt12" layoutX="29.0" layoutY="67.0" mnemonicParsing="false" text="Group 1- Opt 2" toggleGroup="$group1" />
          </children>
        </AnchorPane>
      </center>
    </BorderPane>
    What I need for my application is the use case in useBinding1(), i.e., a BooleanBinding where several listeners are attached to. The problem is that I never get a callback in the ChangeListener if one of the RadioButton.selectedProperty() is changed.
    Now I tried what happens if I use the same BooleanBinding for another binding to a property plus the listener, now the listener gets callbacks as expected! (see useBinding2() )
    Than I thought may be Bindings must be bound in order to trigger listeners and tried useBinding3() where I bind the BooleanBinding to a new BooleanProperty, in this case the listener doesn't get callback anymore...
    And now I'm very frustrated and hope that anyone out there can help me to understand this strange behavior.
    Thanks a lot!
    WhiteAntelope

    All these work just fine for me: the listeners are all called as expected. Note that the listener is only invoked when the value of the binding actually changes, which doesn't happen every time a radio button is pressed. (For example, if both buttons are unselected, the binding is false. If one button is selected, the binding remains false and the listener is not invoked. When the second button is selected, the binding becomes true, and the listener is invoked.)

  • Strange behavior with "insertTextAsContent"

    Hi,
    I've got a strange behavior with this loop :
    for (j = 0; j < myParagraph.characters.length-1; j++) {
         var myCharacter = myParagraph.characters[j];
         if (myCharacter.appliedFont.fontStyleName == "Regular") {
              alert(myCharacter.contents);
              myXmlElement.insertTextAsContent(myCharacter.contents, XMLElementPosition.ELEMENT_END);
    I loop through every characters of a paragraph, test if they are "regular", "italic", "bold"..., and store them in different xmlElement. Everything is fine except that every double characters (in french : homme, cette, elle, ville...) output in my xmlElement as one only character (home, cete, ele, vile...). I try with "aaaaaazzzzzzeeeeeerrrrrtttttyyyyy" and it give me, the same way, "azerty" ?!
    The "alert" line output the correct full sentences character by character ("h", "o", "m", "m", "e"...).
    If you have any idea to explain, you are more than welcome
    Thanks
    ** edit : don't know if it's important but I'm using CS6 **

    Hi
    Have you seen this in the object model viewer?
    XMLElement.insertTextAsContent (using:varies, position: XMLElementPosition ): Text
    Adobe InDesign CC (8.0) Object Model
    Inserts the specified text as content before, in, or after the XML element.
    using: Data Type: varies
    The text to be inserted. Can accept: String or SpecialCharacters enumerator.
    position: Data Type: XMLElementPosition
    The position at which to insert the text. Note that text inserted before or after the element does not become part of the content of the element. Instead, it becomes content of the parent of the element.
    Don't ask me why it works when there is no doubled character
    So i tried the following and it worked. I hope this will solve your problem.
    function main() {
         if (app.documents.length != 0) {
            var myDoc = app.activeDocument;
            var myParagraph = myDoc.textFrames[0].paragraphs[0];
            var myXmlElement  = myDoc.xmlElements[0];
            for (j = 0; j < myParagraph.characters.length-1; j++) {
                var myCharacter = myParagraph.characters[j];
                if (myCharacter.appliedFont.fontStyleName == "Regular") {
                    alert(myCharacter.contents);
                    myXmlElement.contents += myCharacter.contents;
                    alert(">" + myXmlElement.contents+ "<");
                }     // if
            }     //for
        }     // if
    }   // main()
    Kind regards
    Dani (from Switzerland)

  • Strange Behavior with Data Merge (CS4) - Advice?

    This is the most bizarre behavior and I may have to chalk it up to a full moon or something since I can't reproduce it and I cannot find any hints as why this happened. This is my last attempt at figuring a solution...maybe someone has experienced this??? Anyway, here's what happened...
    I do a data merge for addressing envelopes. Been using the InDesign data merge feature for a couple of years now, no problems.
    My address list is approximately 1200. It's in a .csv file with the following fields: fname, lname, company, address1, address2, city, state, zip
    For my last mailing, approximately 300 addresses were merged wrong. Here's the crazy thing it did: instead of using the address1 field for the current record, it used the address1 field from the NEXT record, and ONLY the address1 field.
    Here's more bizarre-ness. The NEXT record was merged correctly.
    For example:
    Record 1 (address1 should be 555 Cherry Lane, Apt 5)
    John Smith
    Smith Company
    123 Main Street, Apt 5
    Small Town, CA 12345
    Record 2 (John Smith's address used THIS address1, but NOT address2 or any other field! Jane Doe's address is correct)
    Jane Doe
    Doe Company
    123 Main Street, Suite 300
    Big Town, TX 56789
    I've tested. I've looked for commonality in the records, where it's placed, if there was something unusual about it's format. I come up empty. The incorrect data seem randomly interspersed.
    One thing that I have to do is break up the actual merge. Either my computer memory or InDesign can't handle 1200 merge records. So, I merge approximately 200 records at a time (I make 6 print files). I don't know if this has anything to do with it (like I said, the incorrect data is interspersed all through out), but, thought I'd mention it.
    Any advice is appreciated. I'm hesitant to use it again until I can understand why this happened.
    thanks much,
    Kia

    CS was soemtimes flakey in this way with Data Merge.
    Are you updated to the latest patch? Most issues were resolved at some point.
    That said, I recall another user with this problem, and it never resolved with his particular file. I examined the data file and couldn't find any issues, but it behaved identically on my system tot he way it did on his so I can only conclude there was still some bug, or something about the data file that we were unable to detect. I seem to recall that the same data file merged correctly in CS3, but I don't recall if I saved it long enough to test in CS5. I've not had any issues with my own files in any version.
    Open the file in a plain text editor and look for any odd characters (I'd start the search where the merge first fails). Also do a Save As from the text editor to make sure there is no possibility of formatting from your spread sheet having found its way in.

  • Strange behavior with obssocookie on different browser

    Hi,
    I am trying to integrate OAM with our application deployed on WLS. I have set up an IIS proxy server and installed a web gate on it. I have seen a couple of strange behavior
    1) If I try to access some static image file, SSO keeps asking for authentication. It happens for both firefox and IE, but it doesn't happen for chrome though. Looks like for image file request, the obssocookie is not passed correctly. Anyone sees that before?
    2) If I use firefox on the machine where WLS app server is installed to connect to proxy server, if I use hostname in the URL, I don't see the obssocookie. If I use IP address in the URL, I can see obssocookie. If I use IE or any browser from any other machine, obssocookie is always available
    thanks.
    -Wei

    I found it in the document
    B.1 How Logout Works
    The WebGate logs a user out when it receives a URL containing "logout." (including the "."), with the exceptions of logout.gif and logout.jpg, for example, logout.html or logout.pl. When the WebGate receives a URL with this string, the value of the ObSSOCookie is set to "logout."
    The Access System sets an obSSOCookie for each user or application that accesses a resource protected by a WebGate. The obSSOCookie enables users to access resources that are protected by the Access System that have the same or a lower authentication level. Removing the ObSSOcookie causes the WebGate to log the user out and requires the user to re-authenticate the next time he or she requests a resource that is protected by the Access System.
    Well, I havn't got that far in the document:)
    Thanks a lot for your help.
    -Wei

  • .csv flat file loading data issue

    Environment: SQL Server 2008 R2
    Purpose: Load source data which are stored in a csv file to the destination table
    Problem: After setting up flat file transformation, including the columns in the output alias, see the following picture:
    ,because SSIS set datatype to 50 char while the length is 65. I also set up response string filed to 100 in the destination table, An error message showed as the following picture
    What I could do differently to overcome this issue. please advise

    There are a number of them but not associated with that field
    [SSIS.Pipeline] Warning: Warning: Could not open global shared memory to communicate with performance DLL; data flow performance counters are not available.  To resolve, run this package as an administrator, or on the system's console.
    1. [Flat File Source [511]] Error: Data conversion failed. The data conversion for column "Version_cd" returned status value 4 and status text "Text was truncated or one or more characters had no match in the target code page.".
    2. [Flat File Source [511]] Error: The "output column "Version_cd" (604)" failed because truncation occurred, and the truncation row disposition on "output column "Version_cd" (604)" specifies failure on truncation.
    A truncation error occurred on the specified object of the specified component.
    3. [Flat File Source [511]] Error: An error occurred while processing file "C:\Users\data\ETL files\dummydata.csv" on data row 2.
    4. [SSIS.Pipeline] Error: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED.  The PrimeOutput method on component "Flat File Source" (511) returned error code 0xC0202092.  The component returned a failure code when the pipeline engine called PrimeOutput().
    The meaning of the failure code is defined by the component, but the error is fatal and the pipeline stopped executing.  There may be error messages posted before this with more information about the failure.
    5. Task Data Flow Task failed

  • Trying to generate csv flat files from GoldenGate

    Hi,
    I am new to GoldenGate and I am trying to evaluate GG, I am trying to use GoldenGate for Flat Files.
    I was able to generate a trail file from a 1 row table, on the same DB but different installation ggs_src 
    and I placed this file on the target GG ggs_trg dirdat folder manually "cp /oracle/u04/ggs_src/dirdat/bb000000 /oracle/u04/ggs_trg/dirdat".
    However when I start my FF extract I do not see any FF files under dirout (default output location)..
    Here is what I did:
    EXTRACT SRCONV
    SOURCEDEFS ./dirdef/t1pg.def
    CUSEREXIT ./flatfilewriter.so CUSEREXIT PASSTHRU includeupdatebefores, params "./ffwriter.properties"
    TABLE T1.*;
    ggsci> ADD EXTRACT srconv, EXTTRAILSOURCE ./dirdat/bb
    ggsci> start srconv
    and here is the SRCONV.rpt
                     Oracle GoldenGate Capture for Oracle
    Version 11.2.1.0.3 14400833 OGGCORE_11.2.1.0.3_PLATFORMS_120823.1258_FBO
       Linux, x64, 64bit (optimized), Oracle 11g on Aug 23 2012 20:32:12
    Copyright (C) 1995, 2012, Oracle and/or its affiliates. All rights reserved.
                        Starting at 2013-10-02 00:25:53
    Operating System Version:
    Linux
    Version #1 SMP Tue Aug 18 15:51:48 EDT 2009, Release 2.6.18-164.el5
    Node: romania
    Machine: x86_64
                             soft limit   hard limit
    Address Space Size   :    unlimited    unlimited
    Heap Size            :    unlimited    unlimited
    File Size            :    unlimited    unlimited
    CPU Time             :    unlimited    unlimited
    Process id: 29751
    Description:
    **            Running with the following parameters                  **
    2013-10-02 00:25:53  INFO    OGG-03035  Operating system character set identified as UTF-8. Locale: en_US, LC_ALL:.
    EXTRACT SRCONV
    SOURCEDEFS ./dirdef/t1pg.def
    CUSEREXIT ./flatfilewriter.so CUSEREXIT PASSTHRU includeupdatebefores, params "./ffwriter.properties"
    2013-10-02 00:25:53  INFO    OGG-04523  /oracle/u04/ggs_trg/extract running with user exit library ./flatfilewriter.so,  compatiblity level (3) is not current, using compatiblity level (2).
    2013-10-02 00:25:53  INFO    OGG-04526  /oracle/u04/ggs_trg/extract running with user exit library ./flatfilewriter.so. Current session character set is operating system default character set.
    TABLE T1.*;
    2013-10-02 00:25:53  INFO    OGG-01815  Virtual Memory Facilities for: COM
        anon alloc: mmap(MAP_ANON)  anon free: munmap
        file alloc: mmap(MAP_SHARED)  file free: munmap
        target directories:
        /oracle/u04/ggs_trg/dirtmp.
    CACHEMGR virtual memory values (may have been adjusted)
    CACHESIZE:                               64G
    CACHEPAGEOUTSIZE (normal):                8M
    PROCESS VM AVAIL FROM OS (min):         128G
    CACHESIZEMAX (strict force to disk):     96G
    Started Oracle GoldenGate for Flat File
    Version 3.0.1.5
    **                     Run Time Messages                             **
    Opened trail file ./dirdat/bb000000 at 2013-10-02 00:25:53
    ++++
    I do NOT see any thing in the dirout file, NO FILES generated while I see that gg did see the trailfile ./dirdat/bb000000.
    Any idea why?
    Thanks in Advance
    Alaa

    Hi Mike
    Thanks for your input..
    We are in an early evaluation phase, where we want to move data from Oracle to a local ETL/Application system..
    I downloaded the latest Oracle GG Adapter 11.2.1.x and re-did everything.
    However, its the same result..
    Any idea??
    Thanks in Advance..
    =============
    FFTEST.rpt
                           Oracle GoldenGate Capture
    Version 11.2.1.0.5 14722092 OGGCORE_11.2.1.0.5_PLATFORMS_130117.1330
        Linux, x64, 64bit (optimized), Generic on Jan 17 2013 16:12:59
    Copyright (C) 1995, 2013, Oracle and/or its affiliates. All rights reserved.
                        Starting at 2013-10-02 12:10:16
    Operating System Version:
    Linux
    Version #1 SMP Tue Aug 18 15:51:48 EDT 2009, Release 2.6.18-164.el5
    Node: romania
    Machine: x86_64
                             soft limit   hard limit
    Address Space Size   :    unlimited    unlimited
    Heap Size            :    unlimited    unlimited
    File Size            :    unlimited    unlimited
    CPU Time             :    unlimited    unlimited
    Process id: 23927
    Description:
    **            Running with the following parameters                  **
    2013-10-02 12:10:16  INFO    OGG-03035  Operating system character set identified as UTF-8. Locale: en_US, LC_ALL:.
    extract fftest
    CUSEREXIT flatfilewriter.so CUSEREXIT passthru includeupdatebefores, params "./AdapterExamples/filewriter/ffwriter.properties"
    2013-10-02 12:10:16  INFO    OGG-04524  /oracle/u04/ggs_trg/extract running with user exit library flatfilewriter.so,  compatiblity level (3) is current.
    2013-10-02 12:10:16  INFO    OGG-04526  /oracle/u04/ggs_trg/extract running with user exit library flatfilewriter.so. Current session character set is operating system default character set.
    SOURCEDEFS dirdef/t1pg.def
    table T1.*;
    2013-10-02 12:10:16  INFO    OGG-01815  Virtual Memory Facilities for: COM
        anon alloc: mmap(MAP_ANON)  anon free: munmap
        file alloc: mmap(MAP_SHARED)  file free: munmap
        target directories:
        /oracle/u04/ggs_trg/dirtmp.
    CACHEMGR virtual memory values (may have been adjusted)
    CACHESIZE:                               64G
    CACHEPAGEOUTSIZE (normal):                8M
    PROCESS VM AVAIL FROM OS (min):         128G
    CACHESIZEMAX (strict force to disk):     96G
    Started Oracle GoldenGate Adapter for Flat Files
    11.2.1.0.0_ OGGADP_11.2.1.0.0_PLATFORMS_130429.0015
    **                     Run Time Messages                             **
    Opened trail file ./dirdat/T1000000 at 2013-10-02 12:10:16
    +++++++
    ffwriter_20131002.log
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:162) [INFO]:
    Started Oracle GoldenGate Adapter for Flat Files
    11.2.1.0.0_ OGGADP_11.2.1.0.0_PLATFORMS_130429.0015
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:192) [INFO]: Initializing the following writers: dsvwriter
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:211) [INFO]: Found 1 writers
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:216) [INFO]: Initializing writer: dsvwriter
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1701) [INFO]: Initializing File Writer: dsvwriter
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1719) [INFO]: NO TEMPLATE
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1743) [INFO]: Writer dsvwriter: Writer type is dsv
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1750) [INFO]: Writer dsvwriter: Data directory is ./dirout
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1770) [INFO]: Writer dsvwriter: Final data directory is ./dirout/
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1782) [INFO]: Writer dsvwriter: Rolled data file extension _data.dsv
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1793) [INFO]: Writer dsvwriter: Temp data file extension _data.dsv.temp
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1802) [INFO]: Writer dsvwriter: Data File BOM not used
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1814) [INFO]: Writer dsvwriter: Control file will be used
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1822) [INFO]: Writer dsvwriter: Control directory is ./dirout
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1842) [INFO]: Writer dsvwriter: Final Control directory is ./dirout/
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1853) [INFO]: Writer dsvwriter: Control file extension _data.control
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1860) [INFO]: Writer: dsvwriter Control Delimiter - , len 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1867) [INFO]: Writer: dsvwriter Control Eol -
    len 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1898) [INFO]: Property dsvwriter.files.data.rollover.timetype is not specified, defaulting to System
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1931) [INFO]: Writer dsvwriter: Files will rollover after 10 seconds
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1953) [INFO]: Writer dsvwriter: Files will rollover after 10 seconds if no records
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1964) [INFO]: Writer dsvwriter: Before Images will not be captured
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1975) [INFO]: Writer dsvwriter: Column names will not be output
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1988) [INFO]: Writer dsvwriter: All column values will be output
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1999) [INFO]: Writer dsvwriter: Place holders for missing columns will be output
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2010) [INFO]: Writer dsvwriter: Column values will be output
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2021) [INFO]: Writer dsvwriter: Character data be captured as ascii
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2026) [INFO]: Property dsvwriter.files.onepertable is not specified, defaulting to true
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2033) [INFO]: Writer dsvwriter: Will output one file per table
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2038) [INFO]: Property dsvwriter.files.oneperopcode is not specified, defaulting to false
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2045) [INFO]: Writer dsvwriter: Will output all opcodes in one file
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2063) [INFO]: Property dsvwriter.groupcols is not specified, defaulting to false
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2069) [INFO]: Property dsvwriter.groupcols is set to false
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2074) [INFO]: Property dsvwriter.afterfirst is not specified, defaulting to false
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2080) [INFO]: Property dsvwriter.afterfirst is set to false
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1344) [INFO]: Num Meta Cols: 0
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1432) [INFO]: Writer dsvwriter: Meta Column 0 set to position
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1484) [INFO]: Writer dsvwriter: Meta Column position has a variable length value
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1495) [INFO]: Writer dsvwriter: If Meta Column position not found value is: [NO VALUE]
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1503) [INFO]: Writer: dsvwriter Fixed padchar for Meta Column position -   len 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1515) [INFO]: Writer dsvwriter: Fixed justify for Meta Column position set to left
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1527) [INFO]: Writer dsvwriter: Omit for Meta Column position set on
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1344) [INFO]: Num Meta Cols: 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1432) [INFO]: Writer dsvwriter: Meta Column 1 set to txind
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1484) [INFO]: Writer dsvwriter: Meta Column txind has a fixed length value of 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1495) [INFO]: Writer dsvwriter: If Meta Column txind not found value is: [NO VALUE]
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1503) [INFO]: Writer: dsvwriter Fixed padchar for Meta Column txind -   len 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1515) [INFO]: Writer dsvwriter: Fixed justify for Meta Column txind set to left
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1527) [INFO]: Writer dsvwriter: Omit for Meta Column txind set on
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1344) [INFO]: Num Meta Cols: 2
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1432) [INFO]: Writer dsvwriter: Meta Column 2 set to opcode
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1484) [INFO]: Writer dsvwriter: Meta Column opcode has a variable length value
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1495) [INFO]: Writer dsvwriter: If Meta Column opcode not found value is: [NO VALUE]
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1503) [INFO]: Writer: dsvwriter Fixed padchar for Meta Column opcode -   len 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1515) [INFO]: Writer dsvwriter: Fixed justify for Meta Column opcode set to left
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1527) [INFO]: Writer dsvwriter: Omit for Meta Column opcode set on
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1344) [INFO]: Num Meta Cols: 3
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1432) [INFO]: Writer dsvwriter: Meta Column 3 set to timestamp
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1484) [INFO]: Writer dsvwriter: Meta Column timestamp has a variable length value
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1495) [INFO]: Writer dsvwriter: If Meta Column timestamp not found value is: [NO VALUE]
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1503) [INFO]: Writer: dsvwriter Fixed padchar for Meta Column timestamp -   len 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1515) [INFO]: Writer dsvwriter: Fixed justify for Meta Column timestamp set to left
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1527) [INFO]: Writer dsvwriter: Omit for Meta Column timestamp set on
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1344) [INFO]: Num Meta Cols: 4
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1432) [INFO]: Writer dsvwriter: Meta Column 4 set to schema
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1484) [INFO]: Writer dsvwriter: Meta Column schema has a variable length value
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1495) [INFO]: Writer dsvwriter: If Meta Column schema not found value is: [NO VALUE]
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1503) [INFO]: Writer: dsvwriter Fixed padchar for Meta Column schema -   len 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1515) [INFO]: Writer dsvwriter: Fixed justify for Meta Column schema set to left
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1527) [INFO]: Writer dsvwriter: Omit for Meta Column schema set on
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1344) [INFO]: Num Meta Cols: 5
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1432) [INFO]: Writer dsvwriter: Meta Column 5 set to table
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1484) [INFO]: Writer dsvwriter: Meta Column table has a variable length value
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1495) [INFO]: Writer dsvwriter: If Meta Column table not found value is: [NO VALUE]
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1503) [INFO]: Writer: dsvwriter Fixed padchar for Meta Column table -   len 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1515) [INFO]: Writer dsvwriter: Fixed justify for Meta Column table set to left
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:1527) [INFO]: Writer dsvwriter: Omit for Meta Column table set on
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2098) [INFO]: Writer: dsvwriter Insert Indicator - I len 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2105) [INFO]: Writer: dsvwriter Update Indicator - U len 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2112) [INFO]: Writer: dsvwriter PK Update Indicator - K len 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2119) [INFO]: Writer: dsvwriter Delete Indicator - D len 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2126) [INFO]: Writer: dsvwriter TX Begin Indicator - B len 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2133) [INFO]: Writer: dsvwriter TX Middle Indicator - M len 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2140) [INFO]: Writer: dsvwriter TX End Indicator - E len 1
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2147) [INFO]: Writer: dsvwriter TX Whole Indicator - 3 len 1
    2013-10-02 12:10:16: CSVFILEWRITER(csvfilewriter.c:47) [INFO]: Initializing CSV Writer: dsvwriter
    2013-10-02 12:10:16: CSVFILEWRITER(csvfilewriter.c:56) [INFO]: CSV Writer: dsvwriter Null Indicator - <NULL> len 6
    2013-10-02 12:10:16: CSVFILEWRITER(csvfilewriter.c:63) [INFO]: CSV Writer: dsvwriter Field Delimiter - | len 1
    2013-10-02 12:10:16: CSVFILEWRITER(csvfilewriter.c:70) [INFO]: CSV Writer: dsvwriter Line Delimiter -
    len 1
    2013-10-02 12:10:16: CSVFILEWRITER(csvfilewriter.c:77) [INFO]: CSV Writer: dsvwriter Quote Char - " len 1
    2013-10-02 12:10:16: CSVFILEWRITER(csvfilewriter.c:113) [INFO]: CSV Writer: dsvwriter Escaped Quote Char - "" len 2
    2013-10-02 12:10:16: CSVFILEWRITER(csvfilewriter.c:118) [INFO]: Property dsvwriter.dsv.onecolperline is not specified, defaulting to false
    2013-10-02 12:10:16: CSVFILEWRITER(csvfilewriter.c:125) [INFO]: Writer dsvwriter: Will output all columns on one line
    2013-10-02 12:10:16: CSVFILEWRITER(csvfilewriter.c:129) [INFO]: Property dsvwriter.dsv.quotealways is not specified, defaulting to false
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2176) [INFO]: Property dsvwriter.statistics.toreportfile is not specified, defaulting to false
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2185) [INFO]: Property dsvwriter.statistics.period is not specified, defaulting to onrollover
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2205) [INFO]: Property dsvwriter.statistics.time is not specified, defaulting to 60 secs
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2215) [INFO]: Property dsvwriter.statistics.overall is not specified, defaulting to false
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2223) [INFO]: Property dsvwriter.statistics.tosummaryfile is not specified, defaulting to false
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2230) [INFO]: Writer dsvwriter: Summary will not be output to stats file
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2295) [INFO]: Property dsvwriter.files.rolloveronshutdown is not specified, defaulting to false
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2300) [INFO]: Rollover on shutdown is: 0
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2304) [INFO]: Property dsvwriter.metacols.position.format is not specified, defaulting to hex
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2324) [INFO]: Using hex Position Format
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2339) [INFO]: Property dsvwriter.files.formatstring set to pump_%s_%t_%d_%05n
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2345) [INFO]: Property dsvwriter.writebuffer.size is not specified, defaulting to 8k
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2357) [INFO]: Property dsvwriter.files.rollover.multiple is not specified, defaulting to FALSE
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2369) [INFO]: Property dsvwriter.files.data.rollover.multiple is not specified, defaulting to FALSE
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2398) [INFO]: Owners file not found
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2410) [INFO]: Property dsvwriter.files.useownerfiles is not specified, defaulting to false
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2416) [INFO]: Writer dsvwriter: Owner files will not be created
    2013-10-02 12:10:16: FILEWRITER(filewriter.c:2428) [INFO]: Property dsvwriter.files.includeprocessname is not specified, defaulting to false
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:239) [INFO]: Property goldengate.userexit.buffertxs is not specified, defaulting to false
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:245) [INFO]: Transactions will not be buffered
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:249) [INFO]: Chars output as  ascii
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:253) [INFO]: Property goldengate.userexit.buffertxs is not specified, defaulting to ops
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:266) [INFO]: Property goldengate.userexit.timestamp is not specified, defaulting to Local Time
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:291) [INFO]: Checkpoint file prefix set to: ffwriter_
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:295) [INFO]: Property goldengate.userexit.chkpt.ontxend is not specified, defaulting to false
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:307) [INFO]: Property goldengate.userexit.datetime.removecolon is not specified, defaulting to false
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:313) [INFO]: Datetime colons will not be removed
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:317) [INFO]: Property goldengate.userexit.datetime.maxlen is not specified, defaulting to unlimited
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:326) [INFO]: Property goldengate.userexit.convertnchartoutf8 is not specified, defaulting to false
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:332) [INFO]: NCHARs will not be converted to UTF8
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:348) [INFO]: Property goldengate.userexit.utf8mode is not specified, defaulting to false
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:360) [INFO]: Output mode is ops
    2013-10-02 12:10:16: FFUSEREXIT(flatfileuserexit.c:375) [INFO]: Initialized User Exit
    2013-10-02 12:10:20: FILEWRITER(filewriter.c:3159) [INFO]: Checking for checkpoint file
    2013-10-02 12:10:20: FILEWRITER(filewriter.c:3203) [INFO]: Checkpoint file does not exist
    2013-10-02 12:10:20: FILEWRITER(filewriter.c:2590) [INFO]: Handling any existing temp files
    2013-10-02 12:10:20: FILEWRITER(filewriter.c:2591) [INFO]: Looking for temp files in ./dirout/

  • Issue with uploading flat file from App Server

    Hi,
    Im loading a flat file to an ODS.
    When I try to load in from my Local Workstation, it works fine.
    All data is loaded green.
    However, when I try to load the file after i copied it to my App Server, it cannot load.
    The error is get is:
    Error 2 while splitting CSV data: see long text
    Message no. RSDS_ACCESS011
    Diagnosis
    Error 2 occurred while splitting the CSV data string.
    1 = Could not find a closing escape character
    2 = Invalid escape character
    3 = Conversion error
    4 = OTHERS
    The thing is that it worked fine (exact same file no changes) when I loaded from my Desktop.
    Appreciate any help or input.
    Rgds,
    Gary.

    Gary,
    You can load it from the App server. Just check the file name whther you are giving it correctly and also check the readio button from App Server.
    Go to AL11 (Tcode) and cross check whther your file is there. See in which directory your file is there. Mention the same path in the extraction tab in IP.
    Thanks...
    Shambhu

  • Strange Behavior with gMSA in Server 2012 R2

    Greetings,
    I have been doing some testing with gMSA Accounts in a Server 2012 R2 environment (two separate environments, actually), and I have noticed something very strange that occurred in both environments, which does not appear to be occurring in one of our customer's
    self-managed environments.
    We created a Group Managed Service Account using the following article:
    http://blogs.technet.com/b/askpfeplat/archive/2012/12/17/windows-server-2012-group-managed-service-accounts.aspx
    Everything went smoothly, and the account installs/tests successfully on both of the hosts that we are testing on. I am able to set my services to run under the account, and most of them appear to work fine. I am having some issues with a few of my services,
    and I believe that the strange behavior I am seeing may have something to do with this - described below: 
    As soon as I set the service's Log On Account (via the Log On Tab under the Service's Properties), the entirety of the "Log On" tab changes to "greyed out," and I am unable to change the Log On account back via the GUI (Screenshot
    attached).
    I found that I am able to successfully change the account via Command Line using sc.exe, but the Log On tab remains greyed out! So far, I have found nothing to remedy this, but confirmed that it happens for any service I set to use the gMSA as the Logon
    Account, and that it happens in 2 separate test environments, but not in a Customer's production environment - very strange.
    All servers in this environment are running Server 2012 R2, and domain Functional Level is currently Server 2012.
    I have been unable to find any information online about this behavior, so I am hoping someone has seen this before, and can explain why this is happening.
    Nick

    VIvian,
    Yes, we used the Install-AdServiceAccount gMSA command on each host using the gMSA account, and then ran Test-AdServiceAccount gMSA, which returned "True."
    However, one thing I noticed is that if I run Test-ADServiceAccount gMSA as a Local Administrator, it fails with the following:
    PS C:\Users\Administrator> Test-AdServiceAccount gMSA$
    Test-AdServiceAccount : The server has rejected the client credentials.
    At line:1 char:1
    + Test-AdServiceAccount gMSA$
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : SecurityError: (:) [Test-ADServiceAccount], AuthenticationException
        + FullyQualifiedErrorId : ActiveDirectoryCmdlet:System.Security.Authentication.AuthenticationException,Microsoft.A
       ctiveDirectory.Management.Commands.TestADServiceAccount
    If I run Test-ADServiceAccount gMSA as Domain Administrator, it returns true:
    PS C:\Users\Administrator.<domainname>> Test-AdServiceAccount gMSA$
    True
    Is this normal?
    Overall, I think the issue I am running into is at the Application Level, and not a problem with the gMSA, as it appears to be working. (Can Start/Stop services without any issues). I will be investigating my issue further with 3rd-party vendors, unless
    you think there is something wrong with my gMSA accounts based on the information I have provided.
    Nick

  • Error while loading CSV Flat file

    Hi,
    I am getting the following errors while loading a flat file into the DataSource:
    1. Error 'Unit CS is not created in language EN...' at conversion exit CONVERSION_EXIT_CUNIT_INPUT (field UNIT record 1, value CS)
    2. Error 'The argument '9,018.00' cannot be interpreted as anumber' on assignment field /BIC/ZTVSA record 1 value 9,018.00
    What can I do to correct this?
    Thanks

    I am taking the following (Headers) fields in this order in a CSV file :
    0LOGSYS     ,0MATERIAL,0UNIT,0BASE_UOM,0COMP_CODE,0PLANT,0FISCPER,0FISCVARNT,
    0CURRENCY,0PRICE_TYPE,ZTVSAKF,ZVOTVSKF,0PRICE_CTRL,ZPRICE_STKF,0PRICE_BASE,
    0VAL_CLASS,0CURTYPE,0VALUATION
    I have added all these fields in the DataSource as well. T-Code CUNIT has CS as a Unit. 
    I deleted and recreated the DataSource and am getting this error now:
    Error 'Unit CS is not created in language EN...' at conversion exit CONVERSION_EXIT_CUNIT_INPUT (field UNIT record 1, value CS)
    Error 'The argument '1,398.00' cannot be interpreted asa number' on assignment field /BIC/ZTVSAKF record 1 value 1,398.00
    Error 'The argument '8,10.00' cannot be interpreted as anumber' on assignment field /BIC/ZTVSKF record 1 value 8,10.00
    Error 'Unit 0 is not created in language EN...' at conversion exit CONVERSION_EXIT_CUNIT_INPUT (field BASE_UOM record 1, value )
    Error 'Unit CS is not created in language EN...' at conversion exit CONVERSION_EXIT_CUNIT_INPUT (field UNIT record 1, value CS)
    Error 'The argument '5,50.00' cannot be interpreted as anumber' on assignment field /BIC/ZTVSAKF record 1 value 5,50.00
    Does it matter what order the columns are in?

  • [SOLVED] i3-wm strange behavior with feh

    greetings,
    I'm having problems with i3-wm, it seems to work pretty well but when I add a wallpaper through feh, it gives me this:
    [i3bar/src/xcb.c:903] ERROR: Cannot open display
    I tried all kind of setups, like, changing a jpg image to a new png image because I thought it was corrupted, removed some parameters from /etc/X11/xorg.conf and edited xinitrc several times but, unfortunately, not successful either.
    This is my ~/.xinitrc.
    exec /usr/bin/i3 -V >> ~/.i3/i3log 2>&1 &
    feh --bg-center /home/freesbies/Pictures/ctrl-esc.jpg
    This is my /etc/X11/xorg.conf (I need to work on "Files" section, since I need to add more fonts, but that's other issue that isn't a i3-wm relative problem for this topic ).
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc/"
    FontPath "/usr/share/fonts/TTF/"
    FontPath "/usr/share/fonts/OTF/"
    FontPath "/usr/share/fonts/Type1/"
    FontPath "/usr/share/fonts/100dpi/"
    FontPath "/usr/share/fonts/75dpi/"
    EndSection
    Section "Module"
    Load "extmod"
    Load "glx"
    Load "dbe"
    Load "dri"
    Load "dri2"
    Load "GLcore"
    Load "freetype"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    Option "DPMS"
    EndSection
    Section "Extensions"
    Option "composite" "Enable"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    Option "DRI" "on"
    Option "AGPMode" "8"
    Option "AGPFastWrite" "yes"
    Option "ColorTiling" "on"
    Option "ColorTiling2D" "on"
    Option "RenderAccel" "on"
    Option "AccelMethod" "EXA"
    Option "EXAVSync" "on"
    Option "EXAPixmaps" "on"
    Option "EnablePageFlip" "on"
    Identifier "Card0"
    Driver "radeon"
    BusID "PCI:1:5:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    This is my unfinished ~/.i3/config file.
    # This file has been auto-generated by i3-config-wizard(1).
    # It will not be overwritten, so edit it as you like.
    # Should you change your keyboard layout somewhen, delete
    # this file and re-run i3-config-wizard(1).
    # i3 config file (v4)
    # Please see http://i3wm.org/docs/userguide.html for a complete reference!
    set $mod Mod4
    # Font for window titles. Will also be used by the bar unless a different font
    # is used in the bar {} block below. ISO 10646 = Unicode
    # font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1
    # The font above is very space-efficient, that is, it looks good, sharp and
    # clear in small sizes. However, if you need a lot of unicode glyphs or
    # right-to-left text rendering, you should instead use pango for rendering and
    # chose a FreeType font, such as:
    font pango:DejaVu Sans Mono 10
    # Use Mouse+$mod to drag floating windows to their wanted position
    floating_modifier $mod
    # start a terminal
    bindsym $mod+Return exec i3-sensible-terminal
    # kill focused window
    bindsym $mod+Shift+q kill
    # start dmenu (a program launcher)
    bindsym $mod+d exec dmenu_run
    # There also is the (new) i3-dmenu-desktop which only displays applications
    # shipping a .desktop file. It is a wrapper around dmenu, so you need that
    # installed.
    # bindsym $mod+d exec --no-startup-id i3-dmenu-desktop
    # change focus
    bindsym $mod+j focus left
    bindsym $mod+k focus down
    bindsym $mod+l focus up
    bindsym $mod+semicolon focus right
    # alternatively, you can use the cursor keys:
    bindsym $mod+Left focus left
    bindsym $mod+Down focus down
    bindsym $mod+Up focus up
    bindsym $mod+Right focus right
    # move focused window
    bindsym $mod+Shift+j move left
    bindsym $mod+Shift+k move down
    bindsym $mod+Shift+l move up
    bindsym $mod+Shift+semicolon move right
    # alternatively, you can use the cursor keys:
    bindsym $mod+Shift+Left move left
    bindsym $mod+Shift+Down move down
    bindsym $mod+Shift+Up move up
    bindsym $mod+Shift+Right move right
    # split in horizontal orientation
    bindsym $mod+h split h
    # split in vertical orientation
    bindsym $mod+v split v
    # enter fullscreen mode for the focused container
    bindsym $mod+f fullscreen
    # change container layout (stacked, tabbed, toggle split)
    bindsym $mod+s layout stacking
    bindsym $mod+w layout tabbed
    bindsym $mod+e layout toggle split
    # toggle tiling / floating
    bindsym $mod+Shift+space floating toggle
    # change focus between tiling / floating windows
    bindsym $mod+space focus mode_toggle
    # focus the parent container
    bindsym $mod+a focus parent
    # focus the child container
    #bindsym $mod+d focus child
    # switch to workspace
    bindsym $mod+1 workspace Terminal
    bindsym $mod+2 workspace File
    bindsym $mod+3 workspace Editor
    bindsym $mod+4 workspace IDE
    bindsym $mod+5 workspace Browser
    bindsym $mod+6 workspace Mail
    bindsym $mod+7 workspace 7
    bindsym $mod+8 workspace 8
    bindsym $mod+9 workspace 9
    bindsym $mod+0 workspace 10
    # reload the configuration file
    bindsym $mod+Shift+c reload
    # restart i3 inplace (preserves your layout/session, can be used to upgrade i3)
    bindsym $mod+Shift+r restart
    # exit i3 (logs you out of your X session)
    bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
    # resize window (you can also use the mouse for that)
    mode "resize" {
    # These bindings trigger as soon as you enter the resize mode
    # Pressing left will shrink the window’s width.
    # Pressing right will grow the window’s width.
    # Pressing up will shrink the window’s height.
    # Pressing down will grow the window’s height.
    bindsym j resize shrink width 10 px or 10 ppt
    bindsym k resize grow height 10 px or 10 ppt
    bindsym l resize shrink height 10 px or 10 ppt
    bindsym semicolon resize grow width 10 px or 10 ppt
    # same bindings, but for the arrow keys
    bindsym Left resize shrink width 10 px or 10 ppt
    bindsym Down resize grow height 10 px or 10 ppt
    bindsym Up resize shrink height 10 px or 10 ppt
    bindsym Right resize grow width 10 px or 10 ppt
    # back to normal: Enter or Escape
    bindsym Return mode "default"
    bindsym Escape mode "default"
    bindsym $mod+r mode "resize"
    # Start i3bar to display a workspace bar (plus the system information i3status
    # finds out, if available)
    bar {
    colors {
    background #82826d
    statusline #ffffff
    separator #839091
    focused_workspace #000000 #826d78 #ffffff
    position top
    status_command i3status
    workspace_buttons yes
    tray_output primary
    This is ~/.i3/i3log file.
    21-10-2013 17:27:56 - i3 4.6 (2013-08-07, branch "tags/4.6") starting
    21-10-2013 17:27:56 - Parsing configfile /home/freesbies/.i3/config
    deciding for version 4 due to this line: # i3 config file (v4)
    21-10-2013 17:27:56 - [libi3] libi3/font.c Using Pango font DejaVu Sans Mono, size 10
    21-10-2013 17:27:56 - Used number -1 for workspace with name Terminal
    21-10-2013 17:27:56 - Starting bar process: i3bar --bar_id=bar-0 --socket="/run/user/1000/i3/ipc-socket.1033"
    21-10-2013 17:27:56 - executing: i3bar --bar_id=bar-0 --socket="/run/user/1000/i3/ipc-socket.1033"
    [i3bar/src/xcb.c:903] ERROR: Cannot open display
    This is what I get from xorg's prompt.
    X.Org X Server 1.14.3
    Release Date: 2013-09-12
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.11.1-1-ARCH i686
    Current Operating System: Linux bootnet 3.11.6-1-ARCH #1 SMP PREEMPT Sat Oct 19 00:29:46 CEST 2013 i686
    Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=538af765-2d19-4cf4-ba0f-7ae3f0428563 rw quiet
    Build Date: 08 October 2013 08:51:37PM
    Current version of pixman: 0.30.2
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Oct 21 17:27:55 2013
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) Using config directory: "/etc/X11/xorg.conf.d"
    (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    Initializing built-in extension Generic Event Extension
    Initializing built-in extension SHAPE
    Initializing built-in extension MIT-SHM
    Initializing built-in extension XInputExtension
    Initializing built-in extension XTEST
    Initializing built-in extension BIG-REQUESTS
    Initializing built-in extension SYNC
    Initializing built-in extension XKEYBOARD
    Initializing built-in extension XC-MISC
    Initializing built-in extension SECURITY
    Initializing built-in extension XINERAMA
    Initializing built-in extension XFIXES
    Initializing built-in extension RENDER
    Initializing built-in extension RANDR
    Initializing built-in extension COMPOSITE
    Initializing built-in extension DAMAGE
    Initializing built-in extension MIT-SCREEN-SAVER
    Initializing built-in extension DOUBLE-BUFFER
    Initializing built-in extension RECORD
    Initializing built-in extension DPMS
    Initializing built-in extension X-Resource
    Initializing built-in extension XVideo
    Initializing built-in extension XVideo-MotionCompensation
    Initializing built-in extension XFree86-VidModeExtension
    Initializing built-in extension XFree86-DGA
    Initializing built-in extension XFree86-DRI
    Initializing built-in extension DRI2
    Loading extension GLX
    (II) [KMS] Kernel modesetting enabled.
    xinit: connection to X server lost
    waiting for X server to shut down (EE) Server terminated successfully (0). Closing log file.
    And finally, this is /var/log/Xorg.0.log.
    [ 3939.905]
    X.Org X Server 1.14.3
    Release Date: 2013-09-12
    [ 3939.917] X Protocol Version 11, Revision 0
    [ 3939.922] Build Operating System: Linux 3.11.1-1-ARCH i686
    [ 3939.926] Current Operating System: Linux bootnet 3.11.6-1-ARCH #1 SMP PREEMPT Sat Oct 19 00:29:46 CEST 2013 i686
    [ 3939.926] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=538af765-2d19-4cf4-ba0f-7ae3f0428563 rw quiet
    [ 3939.936] Build Date: 08 October 2013 08:51:37PM
    [ 3939.941]
    [ 3939.947] Current version of pixman: 0.30.2
    [ 3939.957] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 3939.958] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 3939.982] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Oct 21 17:55:35 2013
    [ 3939.988] (==) Using config file: "/etc/X11/xorg.conf"
    [ 3939.995] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 3940.001] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 3940.002] (==) ServerLayout "X.org Configured"
    [ 3940.002] (**) |-->Screen "Screen0" (0)
    [ 3940.002] (**) | |-->Monitor "Monitor0"
    [ 3940.002] (**) | |-->Device "Card0"
    [ 3940.002] (**) |-->Input Device "Mouse0"
    [ 3940.002] (**) |-->Input Device "Keyboard0"
    [ 3940.002] (==) Automatically adding devices
    [ 3940.002] (==) Automatically enabling devices
    [ 3940.002] (==) Automatically adding GPU devices
    [ 3940.003] (**) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/,
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 3940.003] (**) ModulePath set to "/usr/lib/xorg/modules"
    [ 3940.003] (WW) Ignoring unrecognized extension "composite"
    [ 3940.003] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 3940.003] (WW) Disabling Mouse0
    [ 3940.003] (WW) Disabling Keyboard0
    [ 3940.003] (II) Loader magic: 0x8259620
    [ 3940.003] (II) Module ABI versions:
    [ 3940.003] X.Org ANSI C Emulation: 0.4
    [ 3940.003] X.Org Video Driver: 14.1
    [ 3940.003] X.Org XInput driver : 19.1
    [ 3940.003] X.Org Server Extension : 7.0
    [ 3940.004] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 3940.007] (--) PCI:*(0:1:5:0) 1002:4337:103c:0850 rev 0, Mem @ 0xd8000000/134217728, 0xd0300000/65536, I/O @ 0x00009000/256, BIOS @ 0x????????/131072
    [ 3940.013] Initializing built-in extension Generic Event Extension
    [ 3940.020] Initializing built-in extension SHAPE
    [ 3940.028] Initializing built-in extension MIT-SHM
    [ 3940.034] Initializing built-in extension XInputExtension
    [ 3940.040] Initializing built-in extension XTEST
    [ 3940.047] Initializing built-in extension BIG-REQUESTS
    [ 3940.052] Initializing built-in extension SYNC
    [ 3940.058] Initializing built-in extension XKEYBOARD
    [ 3940.064] Initializing built-in extension XC-MISC
    [ 3940.070] Initializing built-in extension SECURITY
    [ 3940.075] Initializing built-in extension XINERAMA
    [ 3940.081] Initializing built-in extension XFIXES
    [ 3940.086] Initializing built-in extension RENDER
    [ 3940.091] Initializing built-in extension RANDR
    [ 3940.096] Initializing built-in extension COMPOSITE
    [ 3940.101] Initializing built-in extension DAMAGE
    [ 3940.106] Initializing built-in extension MIT-SCREEN-SAVER
    [ 3940.111] Initializing built-in extension DOUBLE-BUFFER
    [ 3940.116] Initializing built-in extension RECORD
    [ 3940.121] Initializing built-in extension DPMS
    [ 3940.125] Initializing built-in extension X-Resource
    [ 3940.130] Initializing built-in extension XVideo
    [ 3940.134] Initializing built-in extension XVideo-MotionCompensation
    [ 3940.139] Initializing built-in extension XFree86-VidModeExtension
    [ 3940.143] Initializing built-in extension XFree86-DGA
    [ 3940.147] Initializing built-in extension XFree86-DRI
    [ 3940.151] Initializing built-in extension DRI2
    [ 3940.151] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [ 3940.151] (II) LoadModule: "extmod"
    [ 3940.152] (II) Module "extmod" already built-in
    [ 3940.152] (II) LoadModule: "glx"
    [ 3940.152] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 3940.152] (II) Module glx: vendor="X.Org Foundation"
    [ 3940.153] compiled for 1.14.3, module version = 1.0.0
    [ 3940.153] ABI class: X.Org Server Extension, version 7.0
    [ 3940.153] (==) AIGLX enabled
    [ 3940.157] Loading extension GLX
    [ 3940.157] (II) LoadModule: "dbe"
    [ 3940.157] (II) Module "dbe" already built-in
    [ 3940.157] (II) LoadModule: "dri"
    [ 3940.157] (II) Module "dri" already built-in
    [ 3940.157] (II) LoadModule: "dri2"
    [ 3940.157] (II) Module "dri2" already built-in
    [ 3940.157] (II) LoadModule: "radeon"
    [ 3940.157] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 3940.160] (II) Module radeon: vendor="X.Org Foundation"
    [ 3940.160] compiled for 1.14.2, module version = 7.2.0
    [ 3940.160] Module class: X.Org Video Driver
    [ 3940.160] ABI class: X.Org Video Driver, version 14.1
    [ 3940.160] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
    ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
    ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
    ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
    ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
    ATI Radeon 4100, ATI Mobility Radeon HD 4200,
    ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, PALM, PALM, PALM, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
    CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
    BARTS, BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, ARUBA,
    ARUBA, ARUBA, ARUBA, ARUBA, ARUBA, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI, TAHITI,
    TAHITI, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN, PITCAIRN,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE, VERDE,
    VERDE, VERDE, VERDE, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, OLAND,
    OLAND, OLAND, OLAND, OLAND, OLAND, OLAND, HAINAN, HAINAN, HAINAN,
    HAINAN, HAINAN, HAINAN, BONAIRE, BONAIRE, BONAIRE, BONAIRE, BONAIRE,
    BONAIRE, BONAIRE, BONAIRE, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI, KABINI,
    KABINI, KABINI, KABINI
    [ 3940.169] (++) using VT number 1
    [ 3940.169] (II) [KMS] Kernel modesetting enabled.
    [ 3940.169] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 3940.169] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 3940.169] (==) RADEON(0): Default visual is TrueColor
    [ 3940.170] (**) RADEON(0): Option "EnablePageFlip" "on"
    [ 3940.170] (**) RADEON(0): Option "ColorTiling" "on"
    [ 3940.170] (**) RADEON(0): Option "ColorTiling2D" "on"
    [ 3940.170] (**) RADEON(0): Option "RenderAccel" "on"
    [ 3940.170] (**) RADEON(0): Option "AccelMethod" "EXA"
    [ 3940.170] (**) RADEON(0): Option "EXAVSync" "on"
    [ 3940.170] (**) RADEON(0): Option "EXAPixmaps" "on"
    [ 3940.170] (==) RADEON(0): RGB weight 888
    [ 3940.170] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 3940.170] (--) RADEON(0): Chipset: "ATI Radeon IGP330M/340M/350M (U2) 4337" (ChipID = 0x4337)
    [ 3940.170] (II) Loading sub module "dri2"
    [ 3940.170] (II) LoadModule: "dri2"
    [ 3940.170] (II) Module "dri2" already built-in
    [ 3940.170] (II) Loading sub module "exa"
    [ 3940.170] (II) LoadModule: "exa"
    [ 3940.170] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 3940.171] (II) Module exa: vendor="X.Org Foundation"
    [ 3940.171] compiled for 1.14.3, module version = 2.6.0
    [ 3940.171] ABI class: X.Org Video Driver, version 14.1
    [ 3940.171] (II) RADEON(0): KMS Color Tiling: enabled
    [ 3940.171] (II) RADEON(0): KMS Color Tiling 2D: disabled
    [ 3940.171] (II) RADEON(0): KMS Pageflipping: enabled
    [ 3940.171] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 3940.207] (II) RADEON(0): Output VGA-0 using monitor section Monitor0
    [ 3940.207] (II) RADEON(0): Output LVDS has no monitor section
    [ 3940.213] (II) RADEON(0): Output S-video has no monitor section
    [ 3940.250] (II) RADEON(0): EDID for output VGA-0
    [ 3940.250] (II) RADEON(0): EDID for output LVDS
    [ 3940.250] (II) RADEON(0): Manufacturer: LGP Model: 657 Serial#: 0
    [ 3940.250] (II) RADEON(0): Year: 1990 Week: 0
    [ 3940.250] (II) RADEON(0): EDID Version: 1.3
    [ 3940.250] (II) RADEON(0): Digital Display Input
    [ 3940.250] (II) RADEON(0): Max Image Size [cm]: horiz.: 30 vert.: 23
    [ 3940.250] (II) RADEON(0): Gamma: 2.20
    [ 3940.250] (II) RADEON(0): No DPMS capabilities specified
    [ 3940.250] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 3940.250] (II) RADEON(0): First detailed timing is preferred mode
    [ 3940.250] (II) RADEON(0): redX: 0.587 redY: 0.343 greenX: 0.320 greenY: 0.529
    [ 3940.250] (II) RADEON(0): blueX: 0.158 blueY: 0.140 whiteX: 0.312 whiteY: 0.328
    [ 3940.250] (II) RADEON(0): Manufacturer's mask: 0
    [ 3940.250] (II) RADEON(0): Supported detailed timing:
    [ 3940.250] (II) RADEON(0): clock: 65.0 MHz Image Size: 304 x 228 mm
    [ 3940.250] (II) RADEON(0): h_active: 1024 h_sync: 1048 h_sync_end 1184 h_blank_end 1344 h_border: 0
    [ 3940.250] (II) RADEON(0): v_active: 768 v_sync: 771 v_sync_end 777 v_blanking: 806 v_border: 0
    [ 3940.250] (II) RADEON(0): Unknown vendor-specific block 0
    [ 3940.250] (II) RADEON(0): Unknown vendor-specific block 0
    [ 3940.250] (II) RADEON(0): EDID (in hex):
    [ 3940.250] (II) RADEON(0): 00ffffffffffff0030f0570600000000
    [ 3940.250] (II) RADEON(0): 00000103801e17780a72b09657528728
    [ 3940.250] (II) RADEON(0): 23505400000001010101010101010101
    [ 3940.250] (II) RADEON(0): 01010101010164190040410026301888
    [ 3940.250] (II) RADEON(0): 360030e4100000180000000000000000
    [ 3940.250] (II) RADEON(0): 0000000000000000000000000000004c
    [ 3940.250] (II) RADEON(0): 475068696c6970734c43440a00000000
    [ 3940.250] (II) RADEON(0): 004c503135305830382d413500000023
    [ 3940.250] (II) RADEON(0): Printing probed modes for output LVDS
    [ 3940.250] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz eP)
    [ 3940.250] (II) RADEON(0): Modeline "800x600"x59.9 38.25 800 832 912 1024 600 603 607 624 -hsync +vsync (37.4 kHz)
    [ 3940.250] (II) RADEON(0): Modeline "848x480"x59.7 31.50 848 872 952 1056 480 483 493 500 -hsync +vsync (29.8 kHz)
    [ 3940.250] (II) RADEON(0): Modeline "720x480"x59.7 26.75 720 744 808 896 480 483 493 500 -hsync +vsync (29.9 kHz)
    [ 3940.250] (II) RADEON(0): Modeline "640x480"x59.4 23.75 640 664 720 800 480 483 487 500 -hsync +vsync (29.7 kHz)
    [ 3940.256] (II) RADEON(0): EDID for output S-video
    [ 3940.256] (II) RADEON(0): Output VGA-0 disconnected
    [ 3940.256] (II) RADEON(0): Output LVDS connected
    [ 3940.256] (II) RADEON(0): Output S-video disconnected
    [ 3940.257] (II) RADEON(0): Using exact sizes for initial modes
    [ 3940.257] (II) RADEON(0): Output LVDS using initial mode 1024x768
    [ 3940.257] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 3940.257] (II) RADEON(0): mem size init: gart size :3dff000 vram size: s:4000000 visible:3cc0000
    [ 3940.257] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 3940.257] (==) RADEON(0): DPI set to (96, 96)
    [ 3940.257] (II) Loading sub module "fb"
    [ 3940.257] (II) LoadModule: "fb"
    [ 3940.257] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 3940.257] (II) Module fb: vendor="X.Org Foundation"
    [ 3940.258] compiled for 1.14.3, module version = 1.0.0
    [ 3940.258] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 3940.258] (II) Loading sub module "ramdac"
    [ 3940.258] (II) LoadModule: "ramdac"
    [ 3940.258] (II) Module "ramdac" already built-in
    [ 3940.258] (--) Depth 24 pixmap format is 32 bpp
    [ 3940.258] (II) RADEON(0): [DRI2] Setup complete
    [ 3940.258] (II) RADEON(0): [DRI2] DRI driver: radeon
    [ 3940.258] (II) RADEON(0): [DRI2] VDPAU driver: radeon
    [ 3940.258] (II) RADEON(0): Front buffer size: 3072K
    [ 3940.258] (II) RADEON(0): VRAM usage limit set to 53193K
    [ 3940.258] (==) RADEON(0): Backing store disabled
    [ 3940.258] (II) RADEON(0): Direct rendering enabled
    [ 3940.259] (II) RADEON(0): Render acceleration enabled for R100 type cards.
    [ 3940.259] (II) RADEON(0): EXA VSync enabled
    [ 3940.259] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 3940.259] (II) EXA(0): Driver registered support for the following operations:
    [ 3940.259] (II) Solid
    [ 3940.259] (II) Copy
    [ 3940.259] (II) Composite (RENDER acceleration)
    [ 3940.259] (II) UploadToScreen
    [ 3940.259] (II) DownloadFromScreen
    [ 3940.259] (II) RADEON(0): Acceleration enabled
    [ 3940.259] (**) RADEON(0): DPMS enabled
    [ 3940.259] (==) RADEON(0): Silken mouse enabled
    [ 3940.259] (II) RADEON(0): Set up textured video
    [ 3940.259] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 3940.259] (II) RADEON(0): [XvMC] Extension initialized.
    [ 3940.259] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 3940.259] (WW) RADEON(0): Option "DRI" is not used
    [ 3940.260] (WW) RADEON(0): Option "AGPMode" is not used
    [ 3940.260] (WW) RADEON(0): Option "AGPFastWrite" is not used
    [ 3940.260] (--) RandR disabled
    [ 3940.287] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 3940.287] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 3940.287] (II) AIGLX: enabled GLX_ARB_create_context
    [ 3940.287] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 3940.287] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 3940.287] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 3940.287] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 3940.288] (II) AIGLX: Loaded and initialized radeon
    [ 3940.288] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 3940.289] (II) RADEON(0): Setting screen physical size to 270 x 203
    [ 3940.601] (II) config/udev: Adding input device Power Button (/dev/input/event4)
    [ 3940.601] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 3940.602] (II) LoadModule: "evdev"
    [ 3940.602] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3940.602] (II) Module evdev: vendor="X.Org Foundation"
    [ 3940.602] compiled for 1.14.3, module version = 2.8.2
    [ 3940.602] Module class: X.Org XInput Driver
    [ 3940.602] ABI class: X.Org XInput driver, version 19.1
    [ 3940.602] (II) Using input driver 'evdev' for 'Power Button'
    [ 3940.602] (**) Power Button: always reports core events
    [ 3940.603] (**) evdev: Power Button: Device: "/dev/input/event4"
    [ 3940.603] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 3940.603] (--) evdev: Power Button: Found keys
    [ 3940.603] (II) evdev: Power Button: Configuring as keyboard
    [ 3940.603] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event4"
    [ 3940.603] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 3940.603] (**) Option "xkb_rules" "evdev"
    [ 3940.603] (**) Option "xkb_model" "pc104"
    [ 3940.603] (**) Option "xkb_layout" "us"
    [ 3940.647] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
    [ 3940.647] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 3940.648] (II) Using input driver 'evdev' for 'Video Bus'
    [ 3940.648] (**) Video Bus: always reports core events
    [ 3940.648] (**) evdev: Video Bus: Device: "/dev/input/event3"
    [ 3940.648] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 3940.648] (--) evdev: Video Bus: Found keys
    [ 3940.648] (II) evdev: Video Bus: Configuring as keyboard
    [ 3940.648] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A03:00/device:01/LNXVIDEO:00/input/input3/event3"
    [ 3940.648] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 3940.648] (**) Option "xkb_rules" "evdev"
    [ 3940.648] (**) Option "xkb_model" "pc104"
    [ 3940.648] (**) Option "xkb_layout" "us"
    [ 3940.649] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 3940.649] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 3940.649] (II) Using input driver 'evdev' for 'Power Button'
    [ 3940.649] (**) Power Button: always reports core events
    [ 3940.649] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 3940.649] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 3940.649] (--) evdev: Power Button: Found keys
    [ 3940.649] (II) evdev: Power Button: Configuring as keyboard
    [ 3940.649] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input1/event1"
    [ 3940.649] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 3940.649] (**) Option "xkb_rules" "evdev"
    [ 3940.649] (**) Option "xkb_model" "pc104"
    [ 3940.649] (**) Option "xkb_layout" "us"
    [ 3940.650] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
    [ 3940.650] (II) No input driver specified, ignoring this device.
    [ 3940.650] (II) This device may have been added with another device file.
    [ 3940.651] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 3940.651] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 3940.651] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 3940.651] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 3940.651] (**) AT Translated Set 2 keyboard: always reports core events
    [ 3940.651] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 3940.651] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 3940.651] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 3940.651] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 3940.652] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 3940.652] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 3940.652] (**) Option "xkb_rules" "evdev"
    [ 3940.652] (**) Option "xkb_model" "pc104"
    [ 3940.652] (**) Option "xkb_layout" "us"
    [ 3940.653] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
    [ 3940.653] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
    [ 3940.653] (II) Using input driver 'evdev' for 'SynPS/2 Synaptics TouchPad'
    [ 3940.653] (**) SynPS/2 Synaptics TouchPad: always reports core events
    [ 3940.653] (**) evdev: SynPS/2 Synaptics TouchPad: Device: "/dev/input/event6"
    [ 3940.653] (--) evdev: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
    [ 3940.653] (--) evdev: SynPS/2 Synaptics TouchPad: Found 3 mouse buttons
    [ 3940.653] (--) evdev: SynPS/2 Synaptics TouchPad: Found absolute axes
    [ 3940.653] (--) evdev: SynPS/2 Synaptics TouchPad: Found x and y absolute axes
    [ 3940.653] (--) evdev: SynPS/2 Synaptics TouchPad: Found absolute touchpad.
    [ 3940.653] (II) evdev: SynPS/2 Synaptics TouchPad: Configuring as touchpad
    [ 3940.653] (**) evdev: SynPS/2 Synaptics TouchPad: YAxisMapping: buttons 4 and 5
    [ 3940.653] (**) evdev: SynPS/2 Synaptics TouchPad: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 3940.653] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event6"
    [ 3940.653] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 10)
    [ 3940.653] (II) evdev: SynPS/2 Synaptics TouchPad: initialized for absolute axes.
    [ 3940.654] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    [ 3940.654] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 0
    [ 3940.654] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
    [ 3940.654] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
    [ 3940.654] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
    [ 3940.654] (II) No input driver specified, ignoring this device.
    [ 3940.654] (II) This device may have been added with another device file.
    [ 3940.655] (II) config/udev: Adding input device PC Speaker (/dev/input/event5)
    [ 3940.655] (II) No input driver specified, ignoring this device.
    [ 3940.655] (II) This device may have been added with another device file.
    [ 3941.474] (II) evdev: SynPS/2 Synaptics TouchPad: Close
    [ 3941.474] (II) UnloadModule: "evdev"
    [ 3941.474] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 3941.474] (II) UnloadModule: "evdev"
    [ 3941.474] (II) evdev: Power Button: Close
    [ 3941.475] (II) UnloadModule: "evdev"
    [ 3941.475] (II) evdev: Video Bus: Close
    [ 3941.475] (II) UnloadModule: "evdev"
    [ 3941.475] (II) evdev: Power Button: Close
    [ 3941.475] (II) UnloadModule: "evdev"
    [ 3941.517] (EE) Server terminated successfully (0). Closing log file.
    The funny part of this story is what I mentioned earlier before, i3-wm runs fine but when feh is called, it seems to spoil i3-wm natural behavior.
    I hope these are the all the logs you want.
    Thanks in advance.
    Last edited by freesbies (2013-10-21 17:05:22)

    Read what "exec" does (it's in bash(1), section Shell Builtin Commands).
    Also look at other .xinitrc's on the web. You'll see that exec line is always the last one.

  • Strange behavior with Zoom and Image control

    HELP - I have a strange behavior (bug?) with using Zoom
    effect on an Image that has been placed on a Canvas. I am using
    dynamically instantiated images which are placed on a canvas inside
    a panel. I then assign a Zoom IN and Zoom Out behavior to the
    image, triggered by ROLL_OVER and ROLL_OUT effect triggers. THE BUG
    is that the image jumps around on the Zoom OUT and lands on a
    random place on the canvas instead of coming back to the original
    spot. This is especially true if the mouse goes in and out of the
    image very quickly. HELP -- what am I doing wrong? Computer = Mac
    OS X 10.4.9 Flex 2.0.1
    Here's a simple demo of the bug -- be sure to move the mouse
    in and out rapidly:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute" creationComplete="setUp();">
    <mx:Script><![CDATA[
    import mx.events.EffectEvent;
    import mx.effects.Fade;
    import mx.effects.Zoom;
    import mx.rpc.events.ResultEvent;
    import flash.display.Sprite;
    import mx.core.UIComponent;
    import mx.controls.Image;
    private var zoomIn:Zoom;
    private var zoomOut:Zoom;
    private function setUp():void {
    var image:Image = new Image();
    image.id = "album_1_1";
    image.x = 200;
    image.y = 200;
    image.width = 64;
    image.height = 64;
    image.source = "
    http://s3.amazonaws.com/davidmccallie/album-128.jpg";
    image.addEventListener(MouseEvent.ROLL_OVER, doZoom);
    image.addEventListener(MouseEvent.ROLL_OUT, doZoom);
    myCanvas.addChild(image);
    zoomIn = new Zoom();
    zoomIn.zoomHeightTo = 2.0;
    zoomIn.zoomWidthTo = 2.0;
    zoomIn.captureRollEvents = true;
    zoomIn.suspendBackgroundProcessing = true;
    zoomOut = new Zoom();
    zoomOut.zoomHeightTo = 1.0;
    zoomOut.zoomWidthTo = 1.0;
    zoomOut.captureRollEvents = true;
    zoomOut.suspendBackgroundProcessing = true;
    private function doZoom(event:MouseEvent):void {
    var image:Image = Image(event.currentTarget);
    if (event.type == MouseEvent.ROLL_OVER) {
    zoomIn.target = event.currentTarget;
    zoomIn.play();
    } else if (event.type == MouseEvent.ROLL_OUT) {
    zoomOut.target = event.currentTarget;
    zoomOut.play();
    ]]>
    </mx:Script>
    <mx:Panel width="100%" height="100%"
    layout="absolute">
    <mx:Canvas id="myCanvas" width="100%" height="100%">
    </mx:Canvas>
    </mx:Panel>
    </mx:Application>

    There must be bugs in the Zoom effect code -- I changed the
    Zoom to Resize in the above code, and it works perfectly. Of
    course, Resize is not as nice as Zoom because you can't set the
    resize to be around the center of the image, but at least it works.
    Does anyone know about bugs in the Zoom effect?

Maybe you are looking for