Substitution variable in BR Graphical Interface

Hi,
we have a business rule using a prompt that we would like to change to a subtitution variable. But we can't just enter "&AnCour" (for current year).
I didn't found any place where I could select my substitution variables (I can select prompts and local variables but not substitution variables).
If I go to the "Source" tab and use a standard script, it works, so I'm assuming that BR can use substitution variables but that the graphical interface can't. I always use standard scripting for administration BR, but our users don't want to let the graphical interface go for their own scripting.
Is there a way to use subtitution variables in a graphical BR ?
We are using System9 9.3.1
Thanks

So it works in a calc script and not a BR, I know BR's sometimes don't always act exactly the same as calc scripts and you occassionally hit issues like this.
What version are you using because I have a feeling I have tested this in the past and I am sure it worked.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • How to Access a BPM container variable in XI graphical  message mapping

    Hello XI BPM and Mapping experts,
    is it possible to access a BPM container variable from an graphical mapping?
    If yes, how ?
    We need this for the following scenario:
    IDOC to BPM.
    BPM  transforms and sends transformed IDOC to fileadapter
    If both steps are successful  a STATUS.SYSTAT01 IDOC should be send back to SAP-ISU with status 06.
    If one of these steps fails  the status in the SYSTAT01 should be set to 05. (Exception branch of block)
    We want to avoid to write 2 mapping programs for mapping the SYSTAT01.
    Instead we would like to use a BPM Container Variable which contains the status.
    In the mapping for the SYSTAT01 we want to use this Container Variable.
    Is this possible?
    Thanks for soon answers.
    Regards Marlies

    Hi Marlies,
       Is not possible to acces a BPM container variable from graphical mapping. For other hand, you can to use runtime variables for this purpose.
       You could create an abstract interface with a message type having a single node with the required value and using this message in other mapping.
    Best regards
    Ivá

  • How to use substitution variable in case of dim build

    Hi all,
    Lets say I have 3 sub vars - Prevmonth, prevmonth-1, prevmonth-2. These will change every quarter.
    I want to build a cube which will have which will have only the above 3 months in the Fiscal dimension. This will be used once at the end of quarter.
    How do I refer substitution variables in case of dim build rule files? I want automate the process. We have SQL dim build for other dims, only this dim can be built from flat file also.
    Or is there any other way to achieve this apart from using sub vars? I can try store the 3 variables in a table and then use them to build the cube, but want to see if we can avoid creating one more interface.
    Thanks.

    Actually using the values of subvars to build a dimension (which I believe is what you want) is a fun problem.  Here's an (Oracle) example that would do that, without requiring any additional table or flat file:
        SELECT 'FiscalPeriod' AS Parent,
               CASE Level
                  WHEN 1 THEN '&CurrMonth'
                  WHEN 2 THEN '&PrevMonth'
                  WHEN 3 THEN '&PrevMonthMinusOne'
               END AS Child
          FROM Dual
    CONNECT BY Level <= 3
    Here's how it looks in the load rule SQL dialog, and the data prep editor:
    It's fun because I've never thought about it before, but I don't actually recommend this - if you have other ETL going on in SQL I'd generate the values in a table / view there, and have a script that both updates the subvars and builds the dimension direct from that.

  • Substitution variables (DEFINE)

    First of all : thanks for this product!!!
    It would be appreciated to have the possibility of DEFINEing substitution variables in SQL scripts and to call scripts with their parameters.
    Thanks in advance.
    null

    In iSQL*Plus 9.2 there is a subtle interaction
    between the iSQL*Plus interface and SQL*Plus engine
    code. Both do some parsing for substitution
    variables. See:
    http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/server.920/a90842/ch6.htm#1007141
    In your example I would remove the DEFINE 'x' and 'y'
    variables and just use '&user' and '&password'
    everywhere in your script.
    -- CJ

  • Can we use Substitution variables in MAXL?

    Hi,
    Can we use substitution variables in MAXL script?
    I have to run this MAXL command for clearing a slice of ASO cube on V11.1.1.3.
    alter database Apname.DBname clear data in region 'CrossJoin({[2009]},{[Dec]})';
    I am planning to use Current_year & Current_month variables instead of hardcoding 2009 & Dec as I have to use this everymonth to clear the current months data.
    If it is allowed, what is the syntax?
    Is there any alternative apart from substitution variables?
    Appreciate your thoughts.
    Thanks,
    -Ethan.

    You would just use ampersand and the variable name instead of the hard coding e.g. &yearVar &periodVar.
    Not tried it on aso clears but in theory it should work as ...'CrossJoin({&yearVar},{&periodVar})';
    just change yearVar and periodVar for your substitution variable names.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Use varialbe as a value in substitution variable

    Hi there,I incrementaly update my cube day by day.And I set a user variable in autoexec.bat to get the current date,eg '2003-06-23'.Could I use such variable as a variable's value in substition variable ?My platform is 6.5 on w2k.Regards,luau

    You can use that in a MAXL script to set the substitution variable.the MAXL script would be something like:Alter database $4 drop variable $5;alter database $4 add variable $5 $7 ;where: $4 is the app.cub $5 is the substitution variable name $7 is the value of the subs. variableRich Sullivan - Beacon Analytics

  • How to use a substitution variable in a load rule?

    I need to use a substitution variable in a load rule in a column, as I will receive a parameter to fix the Month and Year values within the data loading, could somebody tell me if this is possible. I put an expresion "&Yearproc" in the column value but it is not working.

    If you're a member of ODTUG (or even if not, you can sign up for an associate membership for free) you can download Glenn's presentation from 2009 Kaliedoscope "Little Used Features of Essbase (Like Data Mining and Triggers)" -- there is a section in that presentation on substitution variables -- he does a really good job in showing how this works.
    Go to: www.odtug.com, then Tech Resources, then Essbase/Hyperion, and search for Schwartzberg. Currently it's the ninth presentation on the list -- I think this changes based on popularity of downloads.
    Regards,
    Cameron Lackpour

  • Error When Prompting for Substitution Variable

    Hi - I'm receiving an error when I try to run the following using the substitution variable - but only when I enter a string; when I enter a numeric value it runs fine.
    DECLARE
        l_SCR_Info            VARCHAR2(50) := '''SCR'||&SCR_NUM||'-'||'''';
    begin
    dbms_output.put_line(l_SCR_Info);
    end;Here is the error I receive when I supply a string value when prompted:
    ORA-06550: line 3, column 52:
    PLS-00201: identifier 'AB' must be declared
    ORA-06550: line 3, column 27:
    PL/SQL: Item ignored
    ORA-06550: line 10, column 22:
    PLS-00320: the declaration of the type of this expression is incomplete or malformed
    ORA-06550: line 10, column 1:
    PL/SQL: Statement ignoredCan anyone shed some light on what I'm missing here?
    Thanks!
    Christine

    Hi,
    It looks like you just want one string there:
    l_SCR_Info            VARCHAR2(50) := '''SCR&SCR_NUM-''';Remeber how substitution variables work: SQL*Plus replaces them with values before sending the code to the back end to be compiled.
    If you give a value like AB for the variable, the code you posted is equivalent to:
         l_SCR_Info            VARCHAR2(50) := '''SCR'|| AB ||'-'||'''';by the time it reaches the compiler. AB is not inside quotes, so the compiler looks for a variable or function called AB.
    If you gave a number:
         l_SCR_Info            VARCHAR2(50) := '''SCR'|| 123 ||'-'||'''';there's no problem; the compile knows what the literal number 123 is.

  • Conditional suppression using substitution variable in Hyperion financial r

    Hi all,
    Is there a way that I can suppress a column using substitution variable in hyperion financial reporting?
    For eg, i want to suppress the column if the value of the substitution variable curr_mnth = jun.
    Is there a way to do this? In conditional suprression dialog box, I dont find this option.
    Please suggest.
    Your response is appreciated.
    Thanks,
    Sirisha.

    Hi Sirisha
    In my earlier reply I think I may have mislead you as I thought that you could set the member name equal to that in a row/column and I've managed to get into a HFR studio session this morning and realised that the conditional suppression only allows you to suppress where member name = 'XXX' (specific text) so that doesn;t meet your requirement.
    Different people will have different ways of achieving what you want and everyones requirements are different. If it helps my preferred way of conditionally suppressing periodic data (for Planning/Essbase) is to add a dynamic calc account member called 'TP-Index' into the database, set up a formula so that each period returns a numeric value from 1 to 12 to match the fiscal/calendar year as required.
    Then in reporting bring the account and period dimensions into rows/columns so that you are able to retrieve data for the TP-Index account and the period as defined in your substitution variable. You can then choose how the suppression works based on a numeric value, commonly you may want to suppress if greater than, e.g. you have a multi-period report where your actual data is to June so you want to suppress everything from July onwards.
    I'm sure that a similar thing could be achieved in HFM as well if that is your underlying system instead of Essbase.
    Does that help?
    Stuart

  • Using substitution variable in sql -- Issue

    Hello All
    I am trying to do a sql operation from command prompt of my system and that sql requires substitution variable which i am passing it but when i pass the variable ( there are two) the first one assign as " \c" and second gets both what i am passing.
    I am not sure what exactly happening here, i have done this on AIX but here its not working any ideas?
    System : uname -a
    Linux ## 2.6.18-128.1.1.el5 #1 SMP Mon Jan 26 13:58:24 EST 2009 x86_64 x86_64 x86_64 GNU/Linux

    AIX and Linux are not the same. An output of "\c" may indicate a compatibility issue of your shell script with your current command line interpreter (shell). A \c can be used to suppress a newline with the echo command. Bash understands both formats echo -n and echo \c, but other shells like Ksh don't. Try to run your script under a Bash, which is the default under Linux. If the problem persists you will need to post your script for any further analysis.

  • Problems using substitution variable in Web Analysis

    Dear all,
    I have a Web Analysis report that I need to show a raking table with the current month.
    For that I create a variable in Essbase that is updated with that date (E.g.: varCurrentMonth).
    After that I use it as my substitution variable to filter my date dimension in a report data source (E.g.: Scr5, row: product, column: date dimension & measure):
    2008 (current month)
    Product $ qty.
    AAA 100 10
    BBB 90 7
    CCC 80 5
    The problem is that in our cube we need to use an alias in every dimension not to have duplicate members (E.g.: DT.Date, MS.Measure, PD.Product, etc). And when we use it we need to set up the variable in Essbase using that alias (E.g.: DT.Feb/05/08). And if we use that variable as a substitution variable in the report data source the label displayed is the DT.2008 and not 2008 as expected.
    Does anybody have an idea how to solve that?
    Many thanks,
    Thiago Gabriel

    You usually get this error message if you are trying to assign a value from a sub var to a member that does not exist.
    e.g. trying to put FY08 which is a year member against a period dimension
    or trying to use a sub var of FY09 which does not yet exist in the essbase, so say you added a new year in planning FY09 and used the sub var in the form but have not refreshed the database then it would fail because the year would not have been pushed down to essbase yet.
    or the value of the subvar does not match a member name exactly
    or using a sub var name that does not exist in essbase, e.g. using &nextYear but the sub var has not been created in essbase.
    You can definitely use subsitution variables in columns in the version you are using and prior version.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • [SOLVED] Graphical Interface doesn't start with Radeon HD 7670M

    Hi everyone!
    I just bought a new laptop: Toshiba Satellite L855-14Z with a Radeon HD 7670M graphic chip.
    I installed Arch Linux and everything works fine except the graphical interface.
    I have tried 3 options and all result in strange log files:
    1. KMS DISABLED / OPEN-SOURCE-DRIVER
    Output on screen:     Reached Graphical Interface
    Xorg.0.log:
    [ 8.777]
    X.Org X Server 1.13.2
    Release Date: 2013-01-24
    [ 8.777] X Protocol Version 11, Revision 0
    [ 8.777] Build Operating System: Linux 3.7.4-1-ARCH x86_64
    [ 8.777] Current Operating System: Linux march 3.7.5-1-ARCH #1 SMP PREEMPT Mon Jan 28 10:03:32 CET 2013 x86_64
    [ 8.777] Kernel command line: root=/dev/sda2 ro radeon.modeset=0 rootfstype=ext4 systemd.unit=graphical.target initrd=EFI\arch\initramfs-arch.img
    [ 8.777] Build Date: 25 January 2013 09:33:50AM
    [ 8.777]
    [ 8.777] Current version of pixman: 0.28.2
    [ 8.777] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 8.777] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 8.777] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 8 09:38:51 2013
    [ 8.812] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 8.839] (==) No Layout section. Using the first Screen section.
    [ 8.839] (==) No screen section available. Using defaults.
    [ 8.839] (**) |-->Screen "Default Screen Section" (0)
    [ 8.839] (**) | |-->Monitor "<default monitor>"
    [ 8.839] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 8.839] (==) Automatically adding devices
    [ 8.839] (==) Automatically enabling devices
    [ 8.839] (==) Automatically adding GPU devices
    [ 8.872] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 8.872] Entry deleted from font path.
    [ 8.893] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 8.893] Entry deleted from font path.
    [ 8.893] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 8.893] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 8.893] Entry deleted from font path.
    [ 8.893] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 8.893] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 8.893] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 8.893] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 8.894] (II) Loader magic: 0x7fcc40
    [ 8.894] (II) Module ABI versions:
    [ 8.894] X.Org ANSI C Emulation: 0.4
    [ 8.894] X.Org Video Driver: 13.1
    [ 8.894] X.Org XInput driver : 18.0
    [ 8.894] X.Org Server Extension : 7.0
    [ 8.894] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 8.897] (--) PCI:*(0:1:0:0) 1002:6840:1179:fb22 rev 0, Mem @ 0xb0000000/268435456, 0xc0000000/131072, I/O @ 0x00003000/256, BIOS @ 0x????????/131072
    [ 8.897] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 8.905] Initializing built-in extension Generic Event Extension
    [ 8.905] Initializing built-in extension SHAPE
    [ 8.906] Initializing built-in extension MIT-SHM
    [ 8.906] Initializing built-in extension XInputExtension
    [ 8.906] Initializing built-in extension XTEST
    [ 8.906] Initializing built-in extension BIG-REQUESTS
    [ 8.906] Initializing built-in extension SYNC
    [ 8.906] Initializing built-in extension XKEYBOARD
    [ 8.906] Initializing built-in extension XC-MISC
    [ 8.906] Initializing built-in extension SECURITY
    [ 8.906] Initializing built-in extension XINERAMA
    [ 8.906] Initializing built-in extension XFIXES
    [ 8.906] Initializing built-in extension RENDER
    [ 8.906] Initializing built-in extension RANDR
    [ 8.906] Initializing built-in extension COMPOSITE
    [ 8.906] Initializing built-in extension DAMAGE
    [ 8.906] Initializing built-in extension MIT-SCREEN-SAVER
    [ 8.906] Initializing built-in extension DOUBLE-BUFFER
    [ 8.906] Initializing built-in extension RECORD
    [ 8.906] Initializing built-in extension DPMS
    [ 8.906] Initializing built-in extension X-Resource
    [ 8.906] Initializing built-in extension XVideo
    [ 8.906] Initializing built-in extension XVideo-MotionCompensation
    [ 8.906] Initializing built-in extension XFree86-VidModeExtension
    [ 8.906] Initializing built-in extension XFree86-DGA
    [ 8.906] Initializing built-in extension XFree86-DRI
    [ 8.906] Initializing built-in extension DRI2
    [ 8.906] (II) LoadModule: "glx"
    [ 8.924] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 8.939] (II) Module glx: vendor="X.Org Foundation"
    [ 8.939] compiled for 1.13.2, module version = 1.0.0
    [ 8.939] ABI class: X.Org Server Extension, version 7.0
    [ 8.939] (==) AIGLX enabled
    [ 8.940] Loading extension GLX
    [ 8.940] (==) Matched ati as autoconfigured driver 0
    [ 8.940] (==) Matched ati as autoconfigured driver 1
    [ 8.940] (==) Matched vesa as autoconfigured driver 2
    [ 8.940] (==) Matched modesetting as autoconfigured driver 3
    [ 8.940] (==) Matched fbdev as autoconfigured driver 4
    [ 8.940] (==) Assigned the driver to the xf86ConfigLayout
    [ 8.940] (II) LoadModule: "ati"
    [ 8.940] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 8.948] (II) Module ati: vendor="X.Org Foundation"
    [ 8.948] compiled for 1.13.2, module version = 7.1.0
    [ 8.948] Module class: X.Org Video Driver
    [ 8.948] ABI class: X.Org Video Driver, version 13.1
    [ 8.948] (II) LoadModule: "radeon"
    [ 8.948] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 8.980] (II) Module radeon: vendor="X.Org Foundation"
    [ 8.980] compiled for 1.13.2, module version = 7.1.0
    [ 8.980] Module class: X.Org Video Driver
    [ 8.980] ABI class: X.Org Video Driver, version 13.1
    [ 8.980] (II) LoadModule: "vesa"
    [ 8.981] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 8.987] (II) Module vesa: vendor="X.Org Foundation"
    [ 8.987] compiled for 1.13.0, module version = 2.3.2
    [ 8.987] Module class: X.Org Video Driver
    [ 8.987] ABI class: X.Org Video Driver, version 13.0
    [ 8.987] (II) LoadModule: "modesetting"
    [ 8.987] (WW) Warning, couldn't open module modesetting
    [ 8.987] (II) UnloadModule: "modesetting"
    [ 8.987] (II) Unloading modesetting
    [ 8.987] (EE) Failed to load module "modesetting" (module does not exist, 0)
    [ 8.987] (II) LoadModule: "fbdev"
    [ 8.988] (WW) Warning, couldn't open module fbdev
    [ 8.988] (II) UnloadModule: "fbdev"
    [ 8.988] (II) Unloading fbdev
    [ 8.988] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 8.988] (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, 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
    [ 8.994] (II) VESA: driver for VESA chipsets: vesa
    [ 8.994] (++) using VT number 1
    [ 9.005] (II) [KMS] drm report modesetting isn't supported.
    [ 9.005] (II) [KMS] drm report modesetting isn't supported.
    [ 9.005] (II) [KMS] drm report modesetting isn't supported.
    [ 9.005] (II) [KMS] drm report modesetting isn't supported.
    [ 9.005] (II) [KMS] drm report modesetting isn't supported.
    [ 9.005] (EE) Screen 0 deleted because of no matching config section.
    [ 9.005] (II) UnloadModule: "radeon"
    [ 9.005] (EE) Screen 0 deleted because of no matching config section.
    [ 9.005] (II) UnloadModule: "radeon"
    [ 9.005] (EE) Screen 0 deleted because of no matching config section.
    [ 9.005] (II) UnloadModule: "radeon"
    [ 9.005] (EE) Screen 0 deleted because of no matching config section.
    [ 9.005] (II) UnloadModule: "radeon"
    [ 9.005] (II) Loading sub module "vbe"
    [ 9.005] (II) LoadModule: "vbe"
    [ 9.005] (II) Loading /usr/lib/xorg/modules/libvbe.so
    [ 9.013] (II) Module vbe: vendor="X.Org Foundation"
    [ 9.013] compiled for 1.13.2, module version = 1.1.0
    [ 9.013] ABI class: X.Org Video Driver, version 13.1
    [ 9.013] (II) Loading sub module "int10"
    [ 9.013] (II) LoadModule: "int10"
    [ 9.013] (II) Loading /usr/lib/xorg/modules/libint10.so
    [ 9.017] (II) Module int10: vendor="X.Org Foundation"
    [ 9.017] compiled for 1.13.2, module version = 1.0.0
    [ 9.017] ABI class: X.Org Video Driver, version 13.1
    [ 9.017] (II) VESA(0): initializing int10
    [ 9.017] (EE) VESA(0): Cannot read V_BIOS (3) Input/output error
    [ 9.017] (II) UnloadModule: "vesa"
    [ 9.017] (II) UnloadSubModule: "int10"
    [ 9.017] (II) Unloading int10
    [ 9.017] (II) UnloadSubModule: "vbe"
    [ 9.017] (II) Unloading vbe
    [ 9.017] (II) UnloadModule: "radeon"
    [ 9.018] (EE) Screen(s) found, but none have a usable configuration.
    [ 9.018]
    Fatal server error:
    [ 9.018] no screens found
    [ 9.018] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 9.018] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 9.018] (EE)
    [ 9.020] Server terminated with error (1). Closing log file.
    I have no "xinitrc" and no "xorg.conf".
    2. KMS ENABLED / OPEN-SOURCE-DRIVER
    This is the strangest: I just get a blank black screen with a little strip on top with the gnome 3 wallpaper in it. The height of the strip is only 2mm, but there is definetly a blue wallpaper.
    3. KMS DISABLED / PROPIETARY DRIVER
    Output on screen:     Reached Graphical Interface
    Xorg.0.log:
    [ 48.111]
    X.Org X Server 1.13.2
    Release Date: 2013-01-24
    [ 48.111] X Protocol Version 11, Revision 0
    [ 48.111] Build Operating System: Linux 3.7.4-1-ARCH x86_64
    [ 48.111] Current Operating System: Linux march 3.7.5-1-ARCH #1 SMP PREEMPT Mon Jan 28 10:03:32 CET 2013 x86_64
    [ 48.111] Kernel command line: root=/dev/sda2 ro nomodeset rootfstype=ext4 systemd.unit=graphical.target initrd=EFI\arch\initramfs-arch.img
    [ 48.112] Build Date: 25 January 2013 09:33:50AM
    [ 48.112]
    [ 48.112] Current version of pixman: 0.28.2
    [ 48.112] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 48.112] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 48.112] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Feb 8 10:19:07 2013
    [ 48.112] (==) Using config file: "/etc/X11/xorg.conf"
    [ 48.113] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 48.113] (==) ServerLayout "aticonfig Layout"
    [ 48.113] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
    [ 48.113] (**) | |-->Monitor "aticonfig-Monitor[0]-0"
    [ 48.113] (**) | |-->Device "aticonfig-Device[0]-0"
    [ 48.113] (==) Automatically adding devices
    [ 48.113] (==) Automatically enabling devices
    [ 48.113] (==) Automatically adding GPU devices
    [ 48.113] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 48.113] Entry deleted from font path.
    [ 48.113] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 48.113] Entry deleted from font path.
    [ 48.113] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 48.113] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 48.113] Entry deleted from font path.
    [ 48.113] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 48.113] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 48.113] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 48.113] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 48.113] (II) Loader magic: 0x7fcc40
    [ 48.113] (II) Module ABI versions:
    [ 48.113] X.Org ANSI C Emulation: 0.4
    [ 48.113] X.Org Video Driver: 13.1
    [ 48.113] X.Org XInput driver : 18.0
    [ 48.113] X.Org Server Extension : 7.0
    [ 48.115] (--) PCI:*(0:1:0:0) 1002:6840:1179:fb22 rev 0, Mem @ 0xb0000000/268435456, 0xc0000000/131072, I/O @ 0x00003000/256, BIOS @ 0x????????/131072
    [ 48.116] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 48.116] Initializing built-in extension Generic Event Extension
    [ 48.116] Initializing built-in extension SHAPE
    [ 48.116] Initializing built-in extension MIT-SHM
    [ 48.116] Initializing built-in extension XInputExtension
    [ 48.116] Initializing built-in extension XTEST
    [ 48.116] Initializing built-in extension BIG-REQUESTS
    [ 48.116] Initializing built-in extension SYNC
    [ 48.116] Initializing built-in extension XKEYBOARD
    [ 48.116] Initializing built-in extension XC-MISC
    [ 48.116] Initializing built-in extension SECURITY
    [ 48.116] Initializing built-in extension XINERAMA
    [ 48.116] Initializing built-in extension XFIXES
    [ 48.116] Initializing built-in extension RENDER
    [ 48.116] Initializing built-in extension RANDR
    [ 48.116] Initializing built-in extension COMPOSITE
    [ 48.116] Initializing built-in extension DAMAGE
    [ 48.117] Initializing built-in extension MIT-SCREEN-SAVER
    [ 48.117] Initializing built-in extension DOUBLE-BUFFER
    [ 48.118] Initializing built-in extension RECORD
    [ 48.118] Initializing built-in extension DPMS
    [ 48.119] Initializing built-in extension X-Resource
    [ 48.119] Initializing built-in extension XVideo
    [ 48.120] Initializing built-in extension XVideo-MotionCompensation
    [ 48.121] Initializing built-in extension XFree86-VidModeExtension
    [ 48.121] Initializing built-in extension XFree86-DGA
    [ 48.122] Initializing built-in extension XFree86-DRI
    [ 48.122] Initializing built-in extension DRI2
    [ 48.122] (II) "glx" will be loaded by default.
    [ 48.122] (II) LoadModule: "glx"
    [ 48.122] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 48.122] (II) Module glx: vendor="Advanced Micro Devices, Inc."
    [ 48.122] compiled for 6.9.0, module version = 1.0.0
    [ 48.123] Loading extension GLX
    [ 48.123] (II) LoadModule: "fglrx"
    [ 48.123] (II) Loading /usr/lib/xorg/modules/drivers/fglrx_drv.so
    [ 48.132] (II) Module fglrx: vendor="FireGL - AMD Technologies Inc."
    [ 48.132] compiled for 1.4.99.906, module version = 9.1.11
    [ 48.132] Module class: X.Org Video Driver
    [ 48.132] (II) Loading sub module "fglrxdrm"
    [ 48.132] (II) LoadModule: "fglrxdrm"
    [ 48.132] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 48.133] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
    [ 48.133] compiled for 1.4.99.906, module version = 9.1.11
    [ 48.133] (II) AMD Proprietary Linux Driver Version Identifier:9.01.11
    [ 48.133] (II) AMD Proprietary Linux Driver Release Identifier: 9.012
    [ 48.133] (II) AMD Proprietary Linux Driver Build Date: Dec 19 2012 14:41:10
    [ 48.133] (++) using VT number 2
    [ 48.133] (WW) Falling back to old probe method for fglrx
    [ 48.136] (II) Loading PCS database from /etc/ati/amdpcsdb /etc/ati/amdpcsdb.default
    [ 48.137] ukiDynamicMajor: failed to open /proc/ati/major
    [ 48.137] ukiDynamicMajor: failed to open /proc/ati/major
    [ 48.138] (--) Chipset Supported AMD Graphics Processor (0x6840) found
    [ 48.138] (WW) fglrx: No matching Device section for instance (BusID PCI:0@1:0:1) found
    [ 48.139] (II) AMD Video driver is running on a device belonging to a group targeted for this release
    [ 48.139] (II) AMD Video driver is signed
    [ 48.139] (II) fglrx(0): pEnt->device->identifier=0x102fb40
    [ 48.140] (II) fglrx(0): === [xdl_xs113_atiddxPreInit] === begin
    [ 48.140] (II) Loading sub module "vgahw"
    [ 48.140] (II) LoadModule: "vgahw"
    [ 48.140] (II) Loading /usr/lib/xorg/modules/libvgahw.so
    [ 48.140] (II) Module vgahw: vendor="X.Org Foundation"
    [ 48.140] compiled for 1.13.2, module version = 0.1.0
    [ 48.140] ABI class: X.Org Video Driver, version 13.1
    [ 48.140] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
    [ 48.140] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 48.140] (==) fglrx(0): Default visual is TrueColor
    [ 48.140] (**) fglrx(0): Option "DPMS" "true"
    [ 48.140] (==) fglrx(0): RGB weight 888
    [ 48.140] (II) fglrx(0): Using 8 bits per RGB
    [ 48.141] (==) fglrx(0): Buffer Tiling is ON
    [ 48.141] (II) Loading sub module "fglrxdrm"
    [ 48.141] (II) LoadModule: "fglrxdrm"
    [ 48.141] (II) Loading /usr/lib/xorg/modules/linux/libfglrxdrm.so
    [ 48.141] (II) Module fglrxdrm: vendor="FireGL - AMD Technologies Inc."
    [ 48.141] compiled for 1.4.99.906, module version = 9.1.11
    [ 48.142] ukiDynamicMajor: failed to open /proc/ati/major
    [ 48.142] ukiDynamicMajor: failed to open /proc/ati/major
    [ 48.143] (**) fglrx(0): NoAccel = NO
    [ 48.143] (**) fglrx(0): AMD 2D Acceleration Architecture enabled
    [ 48.143] (--) fglrx(0): Chipset: "AMD Radeon HD 7600M Series" (Chipset = 0x6840)
    [ 48.143] (--) fglrx(0): (PciSubVendor = 0x1179, PciSubDevice = 0xfb22)
    [ 48.143] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original AMD
    [ 48.143] (--) fglrx(0): Linear framebuffer (phys) at 0xb0000000
    [ 48.143] (--) fglrx(0): MMIO registers at 0xc0000000
    [ 48.143] (--) fglrx(0): I/O port at 0x00003000
    [ 48.143] (==) fglrx(0): ROM-BIOS at 0x000c0000
    [ 48.147] (EE) fglrx(0): V_BIOS address 0x0 out of range
    [ 48.147] (II) fglrx(0): Invalid ATI BIOS from int10, the adapter is not VGA-enabled
    [ 48.147] (EE) fglrx(0): Invalid video BIOS signature!
    [ 48.147] (EE) fglrx(0): GetBIOSParameter failed
    [ 48.147] (EE) fglrx(0): PreInitAdapter failed
    [ 48.147] (EE) fglrx(0): PreInit failed
    [ 48.147] (II) fglrx(0): === [xdl_xs113_atiddxPreInit] === end
    [ 48.149] (II) UnloadModule: "fglrx"
    [ 48.150] (II) UnloadSubModule: "fglrxdrm"
    [ 48.150] (II) Unloading fglrxdrm
    [ 48.150] (II) UnloadSubModule: "vgahw"
    [ 48.150] (II) Unloading vgahw
    [ 48.150] (II) UnloadSubModule: "fglrxdrm"
    [ 48.150] (EE) Screen(s) found, but none have a usable configuration.
    [ 48.150]
    Fatal server error:
    [ 48.150] no screens found
    [ 48.150] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 48.150] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 48.150] (EE)
    [ 48.157] Server terminated with error (1). Closing log file.
    xorg.conf:   
    Section "ServerLayout"
    Identifier "aticonfig Layout"
    Screen 0 "aticonfig-Screen[0]-0" 0 0
    EndSection
    Section "Module"
    EndSection
    Section "Monitor"
    Identifier "aticonfig-Monitor[0]-0"
    Option "VendorName" "ATI Proprietary Driver"
    Option "ModelName" "Generic Autodetecting Monitor"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "aticonfig-Device[0]-0"
    Driver "fglrx"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device "aticonfig-Device[0]-0"
    Monitor "aticonfig-Monitor[0]-0"
    DefaultDepth 24
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    And "fglrxinfo" gives me "Error: unable to open display (null)"
    Any help would be much appreciated!
    Last edited by mjb (2013-02-08 15:41:16)

    Yes I did, but it didn't help.
    I solved the problem now, but it was rather complicated and is only a workaround. If anyone is having the same problem:
    1) I installed the open source drivers and enabled KMS
    2) I copied the efi shell from the arch boot disk to the rEFInd folder
    3) Now everytime I start my laptop I have to start the EFI-Shell (v1) first. This somehow changes the resolution. I exit the shell and start arch. X works.
    I have no idea why this works, but it is the only thing that does. If anyone knows what this means, I'd appreciate your help.
    By the way: Step 3 also solves this issue

  • Error with define substitution variable in SQL

    Hi there,
    I am using PL/SQL developer and trying to define a substitution variable as follows:
    define freq = 'Weekly'
    Then later on, in my SQL statement, I used this variable in WHERE statement as follows:
    WHERE ... (&freq = 'Weekly') and ...
    But I got the "ORA-00904: "WEEKLY": invalid identifier" error.
    Where is the problem?
    Thanks in advance!

    I don't know about PL/SQL developer but in sqlplus you need single quotes around the variable.
    SQL> define freq = 'Weekly'
    SQL> select null from dual
      2  where &freq = 'Weekly';
    old   2: where &freq = 'Weekly'
    new   2: where Weekly = 'Weekly'
    where Weekly = 'Weekly'
    ERROR at line 2:
    ORA-00904: "WEEKLY": invalid identifier
    SQL> edi
    Wrote file afiedt.sql
      1  select null from dual
      2* where '&freq' = 'Weekly'
    SQL> /
    old   2: where '&freq' = 'Weekly'
    new   2: where 'Weekly' = 'Weekly'
    N
    SQL>

  • Substitution Variable in WA error

    Hi there,
    We have moved our server's IP beacuse we promoted developement (server07) to production (server08). Prior to that all reports worked fine. Now we're having some problems with the Substitution Variables, because everytime we select them, to include them in a report, it displays the following error:
    *"Actual_Month is not a valid substitution variable for dimension Period"*
    In fact I've tried to create a new variable with a new name and I get the same error. What intrigues me is that if we use the same variable for Dynamic Time Series let's say Y-T-D(Actual_Month) it works and displays a value.
    Maybe is there something in the connection but still with no clue how to fix it. Any database or setting at the config file to set?
    Thanks!

    I don't know about PL/SQL developer but in sqlplus you need single quotes around the variable.
    SQL> define freq = 'Weekly'
    SQL> select null from dual
      2  where &freq = 'Weekly';
    old   2: where &freq = 'Weekly'
    new   2: where Weekly = 'Weekly'
    where Weekly = 'Weekly'
    ERROR at line 2:
    ORA-00904: "WEEKLY": invalid identifier
    SQL> edi
    Wrote file afiedt.sql
      1  select null from dual
      2* where '&freq' = 'Weekly'
    SQL> /
    old   2: where '&freq' = 'Weekly'
    new   2: where 'Weekly' = 'Weekly'
    N
    SQL>

  • Assign substitution variable to another substitution variable with truncation of value

    I launch a sql*plus .sql script by way of a concurent job. The concurrent job provides a date paramenter to the script.  Job log shows the date passed to scrpit as:
    Arguments
    2013/09/01 00:00:00
    For cosmetic purposes in the ouput's heading, I want to convert/truncate the character string to an end-user format of 2013/09/01.
    Trying to simply change one substitution variable
    (below is not working, but hopefully telegraphs my intention:
    UnDefine Low_date
    Define Low_date = '2013-09-01 00:00:00'
    UnDefine Low_date_10
    Define Low_date_10 = 'yyyy-mm-ds'
    select substr('&Low_Date',1,10) into &Low_date_10 from dual;
    prompt "Variable value is: &Low_date_10"
    WHICH PRODUCES:
    old:select substr('&Low_Date',1,10) into &Low_date_10 from dual
    new:select substr('2013-09-01 00:00:00',1,10) into yyyy-mm-ds from dual
    Error starting at line 8 in command:
    select substr('2013-09-01 00:00:00',1,10) into yyyy-mm-ds from dual
    Error at Command Line:8 Column:55
    Error report:
    SQL Error: ORA-00905: missing keyword
    00905. 00000 -  "missing keyword"
    *Cause:   
    *Action:
    old:prompt "Variable value is: &Low_date_10"
    new:prompt "Variable value is: yyyy-mm-ds"
    "Variable value is: yyyy-mm-dd"
    "I need to get to "Variable value is: 2013/09/01"

    Hi,
    SELECT ... INTO only works in PL/SQL.
    In SQL*Plus, you can use COLUMN ... NEW_VALUE, like this:
    DEFINE  low_date = '2013-09-01 00:00:00'
    COLUMN low_date_10_col        NEW_VALUE  low_date_10
    SELECT  REPLACE ( SUBSTR ( '&Low_Date', 1, 10)
                    )    AS low_date_10_col
    FROM  dual;
    PROMPT  Variable value is: &Low_date_10

Maybe you are looking for

  • SAPSQL_ARRAY_INSERT_DUPREC in function module "ADDR_SAVE_INTERN"

    Hi , I am getting  an SAPSQL_ARRAY_INSERT_DUPREC in function module "ADDR_SAVE_INTERN" at line  WRITE_TO_DB  ADRT   while posting a customer ( DEBMAS IDOC  ) . Strange thing abt this error is that the same IDOC gets processed the second time . Any in

  • Performance in XI / PI ABAP mapping class

    Hi, I have to do some ABAP mapping for XI / PI scenarios. First of all number of messages is huge, messages can be very large, so my question is where to pay special attention because of performance. Is there some blog on net with suggestions? I saw

  • What version of iTunes is best for X.3.8?

    What's the best version of iTunes for X.3.8? After a brief try of X.3.9 after getting a new hard disk, I downgraded back to OS X.3.8 to get back to Safari 1.2 and to get rid of iTunes 6.0.2/.3 which had low volume issues compared to iTunes 4.7. From

  • Urgent!!!How to add a Dropdown in a Table View Iterator CLass?

    Hi All, I want to add a Drop Down List in the Table View Iterator Class. I am not able to do that. If any of you have done please reply, as it is very urgent. Please give the code extract possible (with data defination too) Regards, Dhaval Points wil

  • Reg : SDCCN / USMM tcode abap run time error

    Dear Friends, Runtime Errors : DBIF_RSQL_SQL_ERROR Exception : CX_SY_OPEN_SQL_DB When I run a T.Code SDCCN and USMM, got abap run time error "SQL error in the database when accessing a table" that errors are below. Internal Call code is ..........[RS