Issue with BAPI_GOODSMVT_CREATE

Hi experts,
I am developing a program whereby I have to create GR from PO and post these documents. I have been able to use the BAPI_GOODSMVT_CREATE to create the GR. However I am facing an issue. After the BAPI_GOODSMVT_CREATE, I call the FM - BAPI_TRANSACTION_COMMIT to commit the BAPI, but it isn't working.
The bapi is only creating the GR and it isn't posting it. also, I have tried to use COMMIT WORK AND WAIT statement, but this too is not really posting the document. The only solution I have been able to find is to use WAIT UP TO 10 SECONDS. In terms of performance tough, this isn't the best solution.
I was wondering if anyone knows how I can force the commit to the BAPI or if there is another alternative to create and post GR from PO.
Thanks for your precious help.
Shabir

Hi,
try this way..Hope this will work and worked for us..
  CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
    EXPORTING
      goodsmvt_header       = t_goodsmvt_header
      goodsmvt_code         = t_goodsmvt_code
    IMPORTING
      goodsmvt_headret      = w_docret
      materialdocument      = w_docno
    TABLES
      goodsmvt_item         = t_goodsmvt_item
      goodsmvt_serialnumber = t_goodsmvt_slno
      return                = t_goodsmvt_ret.
  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
    EXPORTING
      wait   = 'W'
    IMPORTING
      return = wa_return2.
Prabhudas

Similar Messages

  • Locking issue with BAPI_GOODSMVT_CREATE

    Hello,
    Has anybody ran across a problem of lock objects (related to materials) not getting released when BAPI_GOODSMVT_CREATE fails?
    Here is the sequence of events:
    1. I run my function (which calls BAPI_GOODSMVT_CREATE) in SE37 and force an error (i.e. return table contains entries). I do NOT leave SE37.
    2. In another session I run the same test again (but with correct data). I get error M3 897 (The plant data of the material 3319 is locked by user USCLXH90).
    By looking in SM12 after step 1 is finished, I have noticed that 2 lock entries do not get released. These lock entries subsequently cause the error in step 2.
    Lock Object: ENQARRAY
    Tables: MARC, MBEW
    Arguments: material and plant used in my test
    IMPORTANT NOTES:
    A. These lock objects do finally get released once I completely exit SE37.
    B. These lock objects get released immediately and automatically if step 1 is successful (in other words, it's only when there is an error do the lock objects remain!)
    C. I do call BAPI_TRANSACTION_COMMIT. I have also tried using SET UPDATE TASK LOCAL. Neither makes any difference (I think these are irrelevant b/c there are no db updates anyway in step 1 b/c of the error I force).
    D. We have seen this specific problem occur when calling the function via RFC from our web front end.
    I couldn't find any OSS note that describes this problem. Anybody know how to guarantee that all lock objects get released in the case where BAPI_GOODSMVT_CREATE fails?
    p.s. I am a doing a 541 movement type (although I don't think this problem is specific to movement types).
    Thanks for any suggestions or insights anybody might have.
    Regards,
    Lee

    Thanks Rich... this make work for me, but one question -
    Do you know if this function releases all lock objects for the user system wide or only for the current session? My concern is that if it is system wide, then I could be releasing lock objects for other sessions unintentionally. For example, if there are multiple RFC calls in parallel for the same function and same user then I could be destroying lock entries that I shouldn't be! I am hoping that it removes lock entries only for the current session...
    any ideas?
    Regards,
    Lee
    > I've used this BAPI in many of my programs,  and
    > always after the call, I code.....
    >
    >
    >
    >     commit work and wait.
    >     call function 'DEQUEUE_ALL'.
    >
    >
    >
    > The DEQUEUE_ALL show release any/all locks.
    >
    >
    > Regards,
    > Rich Heilman

  • Locking issue with BAPI_GOODSMVT_CREATE in userexit_save_document

    Hello All,
    I am performing a separate goods movement for one of the materials in the delivery userexit_save_document during PGI. I have an issue. We might have multiple users trying to PGI deliveries and thereby performing the goods movement for the same material through the BAPI in the userexit_save_document.
    How do I prevent the locking issue when say two users go through the BAPI for goods movement for the same material data at the same time.
    Any answer in this regards is highly appreciated.
    Thanks,
    Mathangi

    Thanks Rich... this make work for me, but one question -
    Do you know if this function releases all lock objects for the user system wide or only for the current session? My concern is that if it is system wide, then I could be releasing lock objects for other sessions unintentionally. For example, if there are multiple RFC calls in parallel for the same function and same user then I could be destroying lock entries that I shouldn't be! I am hoping that it removes lock entries only for the current session...
    any ideas?
    Regards,
    Lee
    > I've used this BAPI in many of my programs,  and
    > always after the call, I code.....
    >
    >
    >
    >     commit work and wait.
    >     call function 'DEQUEUE_ALL'.
    >
    >
    >
    > The DEQUEUE_ALL show release any/all locks.
    >
    >
    > Regards,
    > Rich Heilman

  • Goods Issue using BAPI_GOODSMVT_CREATE movement type 541

    Hi
        According to my requirement I need to do Post goods issue using BAPI_GOODSMVT_CREATE. But I am unable to do PGI . how to consume BOM details if batches are changed. please let me know what values I need to pass to BAPI . give with an example.
    Its an urgent requirement.

    are you passing batch number to the BAPI?
    if not try pass the batch number the rest of the things bapi will take care of.
    bi

  • Problem with BAPI_GOODSMVT_CREATE not updating Reservation

    Hi,
    When i do a manual MB1A 'Goods issue' with reference to Work Order it is posting the goods issue and updating the RESB ,but when i do the same through the bapi code 03 Table i was not able to post the goods issue at all. am i missing a input field in the bapi .Plz help me out.
    My code.
    gf_goodsmvt_code-gm_code       = '03'. "GI
      gf_goodsmvt_header-pstng_date  = sy-datum.
      gf_goodsmvt_header-doc_date    = sy-datum.
      LOOP AT it_details INTO gf_details .
        MOVE :gf_details-matnr TO gf_goods-material,
              gf_details-werks TO gf_goods-plant,
              rm07m-lgort      TO gf_goods-stge_loc,
              gf_details-charg TO gf_goods-batch,
              rm07m-bwart      TO gf_goods-move_type.
          MOVE gf_details-issue_qty TO gf_goods-entry_qnt .
          MOVE gf_details-meins TO gf_goods-entry_uom.
       gf_goods-mvt_ind = 'F'.
        gf_goods-reserv_no = gf_details-rsnum.
        gf_goods-res_item = gf_details-posnr.
        gf_goods-res_type = gf_details-rsart.
        gf_goods-withdrawn = 'X'.
       gf_goods-orderid = rm07m-aufnr.
       gf_goods-order_itno = 1.
        APPEND gf_goods TO it_goodsmvt_item.
        CLEAR gf_goods.
      ENDLOOP.
      IF NOT it_goodsmvt_item[] IS INITIAL.
        CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
          EXPORTING
            goodsmvt_header             = gf_goodsmvt_header
            goodsmvt_code               = gf_goodsmvt_code
      TESTRUN                     = ' '
         IMPORTING
      GOODSMVT_HEADRET            =
           materialdocument            = g_mat_doc
      MATDOCUMENTYEAR             =
          TABLES
            goodsmvt_item               = it_goodsmvt_item
      GOODSMVT_SERIALNUMBER       = 'X'
            return                      = it_return.

    check below Threads :
    Issue related to EXIT statement
    and see the sample program :
    Structures for BAPI
    data: gdsmt_header   like bapi2017_gm_head_01.
    data: gdsmt_code like bapi2017_gm_code.
    data: gdsmt_headret like bapi2017_gm_head_ret.
    data: gdsmt_item like bapi2017_gm_item_create occurs 1 with header line.
    data: return like bapiret2 occurs 0.
    data: retmatdoc like bapi2017_gm_head_ret-mat_doc.
    Setup BAPI header data.
      gdsmt_header-pstng_date = sy-datum.
      gdsmt_header-doc_date = sy-datum.
      gdsmt_code-gm_code = '06'.                                " MB11
    Write 262 movement to table.
      clear gdsmt_item.
      move '262'         to gdsmt_item-move_type.
      move i_resb-matnr  to gdsmt_item-material.
      move p_bdmng      to gdsmt_item-entry_qnt.
      move i_resb-meins to gdsmt_item-entry_uom.
      move i_resb-werks to gdsmt_item-plant.
      move i_resb-lgort to gdsmt_item-stge_loc.
      move i_afko-aufnr to gdsmt_item-orderid.
      append gdsmt_item.
    Determine cost center
        move '0000041430' to gdsmt_item-costcenter.
      append gdsmt_item.
    Call goods movement BAPI
      call function 'BAPI_GOODSMVT_CREATE'
           exporting
                goodsmvt_header  = gdsmt_header
                goodsmvt_code    = gdsmt_code
           importing
                goodsmvt_headret = gdsmt_headret
                materialdocument = retmatdoc
           tables
                goodsmvt_item    = gdsmt_item
                return           = return.
    Reward Points if it is helpful
    Thanks
    Seshu

  • Post Goods issue using bapi_goodsmvt_create

    hi,
    Iam trying to do post goods issue using bapi_goodsmvt_create. please let me know what are the mandatory fields to be passed?

    hi,
    *& Report  ZRPT_SUB_KO01GOODSMOVEMENT
    REPORT  ZRPT_SUB_KO01GOODSMOVEMENT.
    PARAMETERS : P_BAG(17)  TYPE C,
                 P_ZZORG LIKE zaUFK-ZZORG,
                 P_MATNR LIKE MARA-MATNR,
                 P_WERKS LIKE AUFK-WERKS,
                 P_WERK LIKE AFPO-PWERK,
                 P_DATE LIKE MKPF-BUDAT,
                 P_LGORT LIKE GOITEM-LGOBE.
    DATA : BDC_DATA TYPE STANDARD TABLE OF BDCDATA. "internla table for bdc data
      DATA : WA_BDC_DATA TYPE BDCDATA .                "work area for bdc data
      DATA : T_XMSEG TYPE   MSEG.
      DATA : T_XMKPF TYPE MKPF.
      DATA : V_BAGS1(17) TYPE C.
    DATA : BEGIN OF WA_MB1B,
           ZZGCODE TYPE ZMIGO-ZZGCODE,
           ZZGBAGS TYPE ZMIGO-ZZGBAGS,
           WERKS TYPE AUFK-WERKS,
           LGORT TYPE VBRP-LGORT,
           ZZORG TYPE zAUFK-ZZORG,
           END OF WA_MB1B.
    DATA : V_MATERIAL TYPE BAPI2017_GM_HEAD_RET-MAT_DOC.
    data : v_date(10) type c.
    DATA : T_GOODSMVT_HEADER TYPE BAPI2017_GM_HEAD_01,
           T_GOODSMVT_CODE TYPE BAPI2017_GM_CODE,
           T_GOODSMVT_ITEM TYPE STANDARD TABLE OF BAPI2017_GM_ITEM_CREATE,
           T_RETURN LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    DATA : WA_GOODSMVT_ITEM TYPE BAPI2017_GM_ITEM_CREATE.
    DATA : BEGIN OF S_MARA,
           MEINS LIKE MARA-MEINS,
           END OF S_MARA.
    DATA : MATERIALDOCUMENT TYPE BAPI2017_GM_HEAD_RET-MAT_DOC.
    *FORM GOODSMOVEMENT TABLES T_RETURN
                             USING WA_MB1B LIKE WA_MB1B.
    SELECT SINGLE  MEINS
                   FROM MARA
                   INTO S_MARA
                   WHERE MATNR = P_MATNR.
       CONCATENATE p_date6(2) p_date4(2) p_date+0(4) INTO V_DATE SEPARATED BY '.'.
        T_GOODSMVT_HEADER-PSTNG_DATE = P_DATE.
        T_GOODSMVT_HEADER-DOC_DATE = P_DATE.
        T_GOODSMVT_CODE-GM_CODE = '04'.
        WA_GOODSMVT_ITEM-MATERIAL =      P_MATNR.                    "'000000000000001556'.
        WA_GOODSMVT_ITEM-PLANT  =        P_WERK.                     " '1000'.
        WA_GOODSMVT_ITEM-STGE_LOC =      P_LGORT.                    " '0001'.
        WA_GOODSMVT_ITEM-MOVE_TYPE =     'Z42'.
        WA_GOODSMVT_ITEM-VENDOR =         P_ZZORG.                   "'0000100224'.
        WA_GOODSMVT_ITEM-ENTRY_QNT =      P_BAG.                   " '1'.
        WA_GOODSMVT_ITEM-ENTRY_UOM =     S_MARA-MEINS.
        WA_GOODSMVT_ITEM-ENTRY_UOM_ISO = S_MARA-MEINS.
        WA_GOODSMVT_ITEM-MOVE_PLANT = P_WERKS.
        APPEND WA_GOODSMVT_ITEM TO T_GOODSMVT_ITEM.
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
    EXPORTING
          GOODSMVT_HEADER          = T_GOODSMVT_HEADER
          GOODSMVT_CODE            = T_GOODSMVT_CODE
    IMPORTING
        MATERIALDOCUMENT           = V_MATERIAL
    TABLES
          GOODSMVT_ITEM            = T_GOODSMVT_ITEM
    RETURN                        = T_RETURN.
    BREAK shailajaa.
               EXPORT t_return  to MEMORY ID '123'.
               EXPORT V_MATERIAL TO MEMORY ID 'MAT'.
                CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
         EXPORTING
           WAIT          = ' '.
    *ENDFORM.

  • Bapi for partial good issue with ref to reservation

    I have check the bapi for goods issue with ref to reservation. But how to take care scenario where good issue qty is less than reservation qty. How to map this in bapi.
    Please provide input its urgent
    Thanks
    JENA

    Hi Jena,
    Implement a check in your program calling  BAPI_GOODSMVT_CREATE.
    If you call BAPI_GOODSMVT_CREATE in your own program you have to fill the interface of it (GOODSMVT_HEADER, GOODSMVT_ITEM ...).
    So in the first step you have to select/colect all the required data for the interface. If you want to post a goods-issue with
    reference to a reservation you can implement a quantity-check in you own program similar to the checks in transaction MB1A or transaction MIGO which lead to message M7064. All the required informations are stored in the table "RESB - Items of reservation".
    This is the quantity-check implemented in transaction MIGO (... see note 409754):
    Take only reservation items with open quantity > 0 or
       or flag 'propose all items' is set (->default settings)
         l_open_quantity = ls_resitem-bdmng - ls_resitem-enmng.   >(1)
         CHECK l_open_quantity > 0 OR
                s_defaults-propose_all_items = abap_true.
    l_open_quantity  = open quantity -> is calulated here
    ls_resitem-bdmng = Requirement Quantity ->
                        table RESB / field BDMNG
    ls_resitem-enmng = Quantity withdrawn ->
                        table RESB / field ENMNG
    Furthermore you could check, whether the quantity you want to post now is larger than the (remaining) open quantity. If this
    not the case you could add this item to the interface-data. Otherwise you can ignore it and send a corresponding message or add the item to an error-log.
    After the check has been carried out and the interface has been filled with the valid items you can call BAPI_GOODSMVT_CREATE.
    In the customizing-transaction OMCQ you can maintain the category of messages. If you set the message M7 362 to the category "E - error message" the BAPI_GOODSMVT_CREATE will return with   this (error-)message as soon as the requirement quantity is exceeded by the goods-issue("Reserved quantity exceeded by ...").
    But: other processes/applications are using these settings too.
    This means: these processes/applications might have a different behaviour after your changes (error-message instead of a warning-  message ... for example).
    I hope this helps,
    Elaine.

  • Prob with BAPI_GOODSMVT_CREATE when creating wrt  Reservation Number

    Hi to all,
    I have to create Goods Issue with reference to a reservation.I am using the BAPI  BAPI_GOODSMVT_CREATE .
    But when I am running the BAPI, It is giving the Error  'For reservation 0000001395   0001, no movements can be posted'.
    I have pased all the parameters as per the Documentation of the FM, But still I am not able to create Goods Issue.  Can any One help me How to achieve this.
    GOODSMVT_HEADER
    PSTNG_DATE                  10.08.2009
    DOC_DATE                      10.08.2009
    REF_DOC_NO                  1394
    GOODSMVT_CODE-GM_CODE                   = 03
    GOODSMVT_ITEM 
    MATERIAL                            MAT1
    PLANT                                  2001
    STGE_LOC                           0001
    MOVE_TYPE                        201
    ENTRY_QNT                        2
    ENTRY_UOM                       EA
    ENTRY_UOM_ISO               EA
    RESERV_NO                      1394
    RES_ITEM                           0001
    RES_TYPE                          X 
    Can any one help me whether the data I have Provided is Correct or not.If not Plese help me in Succesfully creating the Goods Issue.
    Thanks and Regards
    Meshack Appikatla.

    Hi,
    If you want to do Goods Issue against Reservation, try below mentioned:
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
    EXPORTING
    goodsmvt_header = wa_header
    goodsmvt_code = c_mvt_code "Movement code-03
    IMPORTING
    materialdocument = v_matdoc
    TABLES
    goodsmvt_item = it_items
    return = it_return.
    where :
    wa_header-pstng_date = sy-datum. "Posting Date
    wa_header-doc_date = sy-datum. "Document Date
    wa_header-ref_doc_no = <Reservation Number >. "Reference Doc number
    In item data:
    wa_items-material = < Material Number >. "Material Number
    wa_items-plant = <Plant>. "Plant
    wa_items-stge_loc = <Storage Location > "Storage Location
    wa_items-move_type =261. "Movement Type - '261'
    wa_items-orderid = <Order Number from Reservation RESB-AUFNR>
    wa_items-reserv_no = <Reservation Number RESB-RSNUM>
    wa_items-res_item = <Reservation Item No RESB-RSPOS>
    wa_items-res_type = < Record Type RESB-RSART >
    wa_items-entry_qnt = quantity
    append wa_items to it_items
    Hope it helps.
    Regards
    Hiren K.Chitalia

  • Issues with Creative Cloud for teams deployment workflow

    The Adobe Creative Cloud for teams IT Deployment Guide lists out steps for IT admins to deploy the CS6 applications and then have their end-users license the trial software with their Adobe IDs once they have been invited to the team. There are two major issues with this document.
    First, the media that is on the FTP is not for North American English. We are working to get that posted on the FTP site ASAP. In the meantime, you can find the CS6 MC media from: http://www.adobe.com/downloads/
    [Note: Getting media from that page requires the use of the Adobe Download Assistant which is very consumer focused. Sorry about that.]
    Second, in order to have the ability to login properly with a Creative Cloud for Teams account the system needs to have the latest copy of Adobe Application Manager installed. If you do not do this step the end user will be prompted for a serial number.
    Unfortunately the Adobe Application Manager can’t be packaged with AAMEE nor is it a native installer. I know, I know! Here are the links to the Adobe Application Manager installers:
    Windows: http://www.adobe.com/support/downloads/detail.jsp?ftpID=4773
    Mac: http://www.adobe.com/support/downloads/detail.jsp?ftpID=4774
    It can be installed from command line by:
    Win: <Path to Setup.exe>Set-up.exe –mode=silent –action=install
    Mac: <path to ASU> /ASU/Install.app/Contents/MacOS/Install –mode=silent –action=install
    Jody Rodgers | Sr. Product Manager | Creative Cloud for Enterprise | Adobe Systems

    Hi Boncker,
    I see that you have an active Subscription under your account . Please launch any of the installed product and when you get the trial prompt , please click on License this software and then Enter the Adobe Id & Password for the account that you have accepted the invite .
    Please do let us know if that worked for you or not .
    Cheers,
    Kartikay Sharma

  • Issue with magsafe/charging (blinks green, amber, off)

    Having a quirky issue with my mid-2009 Macbook Pro.
    A month or so ago, I began having an issue with my macbook charging. When the computer is up and running and I plug in the magsafe it will say "Calculating..." and then say "Not Charging" and then switch to battery use. It constantly does this as long as the magsafe is connected. The lights on the magsafe will constantly cycle from green to amber to no light.
    At first, it would do it a few times then it would start charging. Now it constantly does this without ever stopping. I was editing video the other day for a while and it never stopped the cycle.
    Thinking it was the battery, I took it into the Apple Store last week and got a new battery because it had been saying "Service battery" for a while and the battery would only last about 20 minutes on a charge. So I just thought the battery finally refused to charge.
    But the problem still exists.
    The magsafe is new (only 3 months old) and here's the quirky thing: the computer will charge if it's asleep (lid closed) or shut down completely. No blinking lights at all. It will charge as long as it's asleep or shut down. So I don't think it's the charger. But as soon as you hit the power button to starting booting up, it will blink.
    I have reset the SMC a couple times actually, but no change.
    Is there something software/firmware related that I haven't tried? Any insight or suggestions would be greatly appreciated before I take it back to the Apple Store (which is about an hour away).
    Thanks!

    Try resetting the system management controller
    http://support.apple.com/kb/HT3964?viewlocale=en_US
    If that did nothing for you,  try resetting the NVRAM
    https://support.apple.com/kb/HT1379

  • Issue With Page Break When Sorting is also applied on group

    Hi
    I am facing an issue with Page break only when I have sorting applied on the grouping that I have in the template.
    The following is the sample XML
    <ROWSET>
    <ROW>
    <GRE>org1</GRE>
    <ORGANIZATION>Accounts</ORGANIZATION>
    <FULL_NAME>test1,</FULL_NAME>
    <ELEMENT_NAME>TEST BONUS</ELEMENT_NAME>
    <CLASSIFICATION>Supplemental Earnings</CLASSIFICATION>
    <RUN_VALUE>250</RUN_VALUE>
    <MONTH_VALUE>500</MONTH_VALUE>
    <QUARTER_VALUE>500</QUARTER_VALUE>
    <YEAR_VALUE>500</YEAR_VALUE>
    </ROW>
    <ROW>
    <GRE>org1</GRE>
    <ORGANIZATION>Finance</ORGANIZATION>
    <FULL_NAME>test2</FULL_NAME>
    <ELEMENT_NAME>VOLUNTARY AD AND D</ELEMENT_NAME>
    <CLASSIFICATION>Voluntary Deductions</CLASSIFICATION>
    <RUN_VALUE>5.19</RUN_VALUE>
    <MONTH_VALUE>10.38</MONTH_VALUE>
    <QUARTER_VALUE>10.38</QUARTER_VALUE>
    <YEAR_VALUE>10.38</YEAR_VALUE>
    </ROW>
    <ROW>
    <GRE>org1</GRE>
    <ORGANIZATION>Finance</ORGANIZATION>
    <FULL_NAME>test3</FULL_NAME>
    <ELEMENT_NAME>HMO MEDICAL</ELEMENT_NAME>
    <CLASSIFICATION>Pre-Tax Deductions</CLASSIFICATION>
    <RUN_VALUE>19.67</RUN_VALUE>
    <MONTH_VALUE>39.34</MONTH_VALUE>
    <QUARTER_VALUE>39.34</QUARTER_VALUE>
    <YEAR_VALUE>39.34</YEAR_VALUE>
    </ROW>
    <ROW>
    <GRE>org1</GRE>
    <ORGANIZATION>Finance</ORGANIZATION>
    <FULL_NAME>test4</FULL_NAME>
    <ELEMENT_NAME>PENSION NR DC</ELEMENT_NAME>
    <CLASSIFICATION>Pre-Tax Deductions</CLASSIFICATION>
    <RUN_VALUE>0</RUN_VALUE>
    <MONTH_VALUE>360</MONTH_VALUE>
    <QUARTER_VALUE>360</QUARTER_VALUE>
    <YEAR_VALUE>360</YEAR_VALUE>
    </ROW>
    </ROWSET>
    In the template I group the data based on CLASSIFICATION and then sort on the same column CLASSIFICATION. I have a page-break applied for every group.
    When I generate the PDF, I am not getting the page-breaks for every group. Instead some of them are displayed in the same page.
    But when I remove the sorting that I had in the template on the column CLASSIFICATION, I am getting the output in the desired way but not in a sorted order.
    kumar

    Hi All,
    I am using MS-WORD 2007 and BI Publisher desktop 10.1.3.3.3.
    When I use split-by-page-break, splitting is performed for every line .. but not for group of lines.
    Can anybody throw some light on this?
    FYI...
    I am using this code:
    ?if: position() mod 6= 0?
    ?split-by-page-break:?
    ?end if?
    (Of course with in tags)
    in G_LINES loop.
    Can anybody help me out :-(
    --Saritha                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Issue with PTO (Paid Time Off) quota generation

    Hi All,
    We have an issue with quota generation of PTO for our employees.
    The issue goes like this:
    We have a Paid time off for employees 5weeks( 200 hrs) for employees who have worked less than 5 years.
    we have  paid time off for employees 6 weeks ( 240 hrs) for employees who have worked more than 5 years.
    we have the following logic that has to go in this config:
    -- Our fiscal year starts on Feb 1st and ends on Jan end or Feb starts which has a full week of working days. ( ex: if 01/31/2012 falls on a Thursday the following Monday which has full 5 day working week would be the end of the fiscal year).
    -- Depending on the working hours of  the employees and the date of joining for the first year ( for new hires)0041 info type the eligibility gets varied and reduced. Ex( employees who joins on start of fiscal year and works 40hrs per week schedules is eligible for 200hrs of PTO. Employees who join in the month of august and works for 35 hrs per week ( i.e mid of fiscal year) would get 91 hrs of PTO.
    I need to put this in the system. I am thinking this could be done with out tweaking PCR.I need help in configuring this in Absence quotas as to what are the things i need change in system config and how do i do it. Please help with some screen shots if possible.  I really need this to get it done ASAP. Looking forward for help.
    Thanks,
    Chowdary.

    We use TM00 schema. Can i call TS15 and TS 12  rules into TM00 acheieve my issue of quota entilements?
    Iam doing this because my businees needs to see if an employee chages his work schedule from 40 to 30 or 20 etc.. the PTO has to vary accordingly.
    As the minimum eligibility is to work for 20 hrs to avail the PTO days. If at any point the employee drops it under 20 he will not be eligible till he work any this >= 20hrs per month so the evaluation has to check periodically to update the quota availability.... I need help plz suggest ...

  • Issues with iMessage when switching data carrier (wifi - cellular)

    So I have had this issue with my 5S and now my 6+ in iMessage. Not *always* but often enough I've run into issues sending messages via iMessage when I associate with wifi in that they don't send. I'll get an error message saying "not delivered" and it will stack as many outgoing messages I try to send. However, if I force the first message to send as text, subsequent messages will go through afterwards without issue. If I go from wifi to cellular I have no issues whatsoever and when I have these issues on wifi, my data works fine (incoming emails, Facebook notifications, etc.). I used to run cellular data only because I had unlimited but now I have a cap so I intend on using wifi when possible...but to have to send my first message as a text just so I can use iMessage is annoying...

    Hi there BigDogg795,
    I would recommend taking a look at the troubleshooting steps for iMessage found in the article below. 
    iOS: Troubleshooting Messages - Apple Support
    To resolve issues with sending and receiving iMessages, follow these steps
    Check iMessage system status for current service issues.
    Go to Settings > Messages > Send & Receive and make sure that you registered iMessage with your phone number or Apple ID and that you selected iMessage for use. If the phone number or Apple ID isn't available for use, troubleshoot iMessage registration.
    Open Safari and navigate to www.apple.com to verify data connectivity. If a data connection isn't available, troubleshoot cellular data or a Wi-Fi connection.
    iMessage over cellular data might not be available while you're on a call. Only 3G and faster GSM networks support simultaneous data and voice calls. Learn which network your phone supports. If your network doesn't support simultaneous data and voice calls, go to Settings > Wi-Fi and turn Wi-Fi on to use iMessage while you're on a call.
    Restart your device.
    Tap Settings > General > Reset > Reset Network Settings on your iPhone.
    If you still can't send or receive an iMessage, follow these steps
    Make sure that the contact trying to message you isn't blocked in Settings > Messages > Blocked.
    Make sure that the contact you're trying to send a message to is registered with iMessage.
    If the issue occurs with a specific contact or contacts, back up or forward important messages and delete your current messaging threads with the contact. Create a new message to the contact and try again.
    If the issue occurs with a specific contact or contacts, delete and recreate the contact in the Contacts app. Create a new message to the newly created contact and try again.
    Back up and restore your device as new.
    -Griff W.

  • Issues with WebForm performance

    Hi,
    We had migrated a new application from UAT to PROD and we encounter webform performance issues with the following actions..
    After login, the first form you open it is
    always slow. After this you can switch from one form to another without a
    delay.
    Then once you change any data – the next time
    you access a form it gets delayed.
    The point to be noted is, it doesnt have any performance issues in the UAT environment and the configuration settings,essbase cache settings are all the same. We did try to move the EPM system to a new server to see if this is a hardware issue but no luck, the performance issues still exist. The consumption of the CPU/memory has been checked and it is proved that the form opening delay has nothing to do with lack of memory.
    The JVM head settings is set up at 4GB which is infact higher than that of the UAT environment(2GB).
    runs on Windows server2008,11.1.2.1.600 EPM serve, has planning,reporting,foundation on one server (32GB ram) and essbase on another server (32GB ram). Any help is appreciated.
    Please find attached the planning logs below and there is nothing mentioned in the hyperionplanning error logs.-----------------------------------------------------------------------------------------------------------------------------------------------------------------
    <Nov 5, 2013 8:05:43 PM CET> <Info> <Security> <BEA-090905> <Disabling CryptoJ JCE Provider self-integrity check for better startup performance. To enable this check, specify -Dweblogic.security.allowCryptoJDefaultJCEVerification=true>
    <Nov 5, 2013 8:05:43 PM CET> <Info> <Security> <BEA-090906> <Changing the default Random Number Generator in RSA CryptoJ from ECDRBG to FIPS186PRNG. To disable this change, specify -Dweblogic.security.allowCryptoJDefaultPRNG=true>
    <Nov 5, 2013 8:05:44 PM CET> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Oracle JRockit(R) Version R28.0.2-11-135406-1.6.0_20-20100624-2119-windows-x86_64 from Oracle Corporation>
    <Nov 5, 2013 8:05:46 PM CET> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.4.0  Fri Dec 17 20:47:33 PST 2010 1384255 >
    <Nov 5, 2013 8:05:48 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Nov 5, 2013 8:05:48 PM CET> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Nov 5, 2013 8:05:48 PM CET> <Notice> <Log Management> <BEA-170019> <The server log file C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\Planning0\logs\Planning0.log is opened. All server side log events will be written to this file.>
    <Nov 5, 2013 8:06:22 PM CET> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Nov 5, 2013 8:06:28 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Nov 5, 2013 8:06:28 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
    Calling getDomainConfiguration()
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
    Calling getRuntimeService()
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
      return com.bea:Name=RuntimeService,Type=weblogic.management.mbeanservers.runtime.RuntimeServiceMBean
      return com.bea:Name=EPMSystem,Type=Domain
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
    Domain location is 'C:\Oracle\Middleware\user_projects\domains\EPMSystem'
    Calling getRuntimeService()
      return com.bea:Name=RuntimeService,Type=weblogic.management.mbeanservers.runtime.RuntimeServiceMBean
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
    Calling getConnection()
      return weblogic.management.jmx.mbeanserver.WLSMBeanServer@327b36fb
    Checking C:\Oracle\Middleware\user_projects\domains\EPMSystem\servers\Planning0\registry_update.xml file
    EPM_ORACLE_HOME: C:\Oracle\Middleware\EPMSystem11R1
    Template for PLANNING#11.1.2.0: C:\Oracle\Middleware\EPMSystem11R1\common\templates\applications\epm_planning_11.1.2.1.jar
    Dependencies for C:\Oracle\Middleware\EPMSystem11R1\common\templates\applications\epm_planning_11.1.2.1.jar: []
    BPMUI shared webapp not referenced from PLANNING#11.1.2.0
    Application name: PLANNING#11.1.2.0
    Application source: HyperionPlanning.ear
    Server name: Planning0
    Server port: 8300
    Server SSL port: 8343
    Application context: HyperionPlanning
    Registry product type: PLANNING_PRODUCT
    Registry physical web application type: PLANNING_WEBAPP
    weblogic.Name property is 'Planning0', seems to be WebLogic mode
    registry.isRegistryDatabaseCreated()true
    Registry was initialized sucessfully
    Executing pre custom update for PLANNING#11.1.2.0
    EPM_ORACLE_INSTANCE: C:\Oracle\Middleware\user_projects\epmsystem1
    Physical Web App found
    Web app already linked to some application server: false
    The registry was not modifyed because it already containse all sturctures
    Web app is already linked to the logical web app
    No needs to run custom updater for PLANNING#11.1.2.0
    loggingUpdatePLANNING.block file exist or the system is running in the Fusion mode, skipping logging.xml configuration
    Planning locale: en_US
    <Nov 5, 2013 8:06:39 PM CET> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Nov 5, 2013 8:06:39 PM CET> <Notice> <Cluster> <BEA-000197> <Listening for announcements from cluster using unicast cluster messaging>
    <Nov 5, 2013 8:06:39 PM CET> <Notice> <Cluster> <BEA-000133> <Waiting to synchronize with other running members of Planning.>
    <Nov 5, 2013 8:07:09 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Nov 5, 2013 8:07:09 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Nov 5, 2013 8:07:09 PM CET> <Notice> <Cluster> <BEA-000162> <Starting "async" replication service with remote cluster address "null">
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090171> <Loading the identity certificate and private key stored under the alias DemoIdentity from the jks keystore file C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoIdentity.jks.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\DemoTrust.jks.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090169> <Loading trusted certificates from the jks keystore file C:\Oracle\Middleware\jrockit_160_20\jre\lib\security\cacerts.>
    <Nov 5, 2013 8:07:10 PM CET> <Alert> <Security> <BEA-090152> <Demo trusted CA certificate is being used in production mode: [
      Version: V3
      Subject: CN=CACERT, OU=FOR TESTING ONLY, O=MyOrganization, L=MyTown, ST=MyState, C=US
      Signature Algorithm: MD5withRSA, OID = 1.2.840.113549.1.1.4
      Key:  Sun RSA public key, 512 bits
      modulus: 9550192877869244258838480703390456015046425375252278279190673063544122510925482179963329236052146047356415957587628011282484772458983977898996276815440753
      public exponent: 65537
      Validity: [From: Thu Mar 21 21:12:27 CET 2002,
                   To: Tue Mar 22 21:12:27 CET 2022]
      Issuer: CN=CACERT, OU=FOR TESTING ONLY, O=MyOrganization, L=MyTown, ST=MyState, C=US
      SerialNumber: [    33f10648 fcde0deb 4199921f d64537f4]
    Certificate Extensions: 1
    [1]: ObjectId: 2.5.29.15 Criticality=true
    KeyUsage [
      Key_CertSign
      Algorithm: [MD5withRSA]
      Signature:
    0000: 9D 26 4C 29 C8 91 C3 A7   06 C3 24 6F AE B4 F8 82  .&L)......$o....
    0010: 80 4D AA CB 7C 79 46 84   81 C4 66 95 F4 1E D8 C4  .M...yF...f.....
    0020: E9 B7 D9 7C E2 23 33 A4   B7 21 E0 AA 54 2B 4A FF  .....#3..!..T+J.
    0030: CB 21 20 88 81 21 DB AC   90 54 D8 7D 79 63 23 3C  .! ..!...T..yc#<
    ] The system is vulnerable to security attacks, since it trusts certificates signed by the demo trusted CA.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=thawte Primary Root CA - G3,OU=(c) 2008 thawte\, Inc. - For authorized use only,OU=Certification Services Division,O=thawte\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 3,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=T-TeleSec GlobalRoot Class 2,OU=T-Systems Trust Center,O=T-Systems Enterprise Services GmbH,C=DE". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GlobalSign,O=GlobalSign,OU=GlobalSign Root CA - R3". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "OU=Security Communication RootCA2,O=SECOM Trust Systems CO.\,LTD.,C=JP". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=VeriSign Universal Root Certification Authority,OU=(c) 2008 VeriSign\, Inc. - For authorized use only,OU=VeriSign Trust Network,O=VeriSign\, Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=KEYNECTIS ROOT CA,OU=ROOT,O=KEYNECTIS,C=FR". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Security> <BEA-090898> <Ignoring the trusted CA certificate "CN=GeoTrust Primary Certification Authority - G3,OU=(c) 2008 GeoTrust Inc. - For authorized use only,O=GeoTrust Inc.,C=US". The loading of the trusted certificate list raised a certificate parsing exception PKIX: Unsupported OID in the AlgorithmIdentifier object: 1.2.840.113549.1.1.11.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[3]" is now listening on 127.0.0.1:8343 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[1]" is now listening on fe80:0:0:0:0:5efe:a53:4816:8343 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[4]" is now listening on 0:0:0:0:0:0:0:1:8343 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 10.83.72.22:8300 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "Default[3]" is now listening on 127.0.0.1:8300 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "Default[4]" is now listening on 0:0:0:0:0:0:0:1:8300 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on fe80:0:0:0:0:ffff:ffff:fffe:8300 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on fe80:0:0:0:0:5efe:a53:4816:8300 for protocols iiop, t3, CLUSTER-BROADCAST, ldap, snmp, http.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure[2]" is now listening on fe80:0:0:0:0:ffff:ffff:fffe:8343 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <Server> <BEA-002613> <Channel "DefaultSecure" is now listening on 10.83.72.22:8343 for protocols iiops, t3s, CLUSTER-BROADCAST-SECURE, ldaps, https.>
    <Nov 5, 2013 8:07:10 PM CET> <Warning> <Server> <BEA-002611> <Hostname "WIPLPRD01.svc.unicc.org", maps to multiple IP addresses: 10.83.72.22, 0:0:0:0:0:0:0:1>
    <Nov 5, 2013 8:07:10 PM CET> <Notice> <WebLogicServer> <BEA-000330> <Started WebLogic Managed Server "Planning0" for domain "EPMSystem" running in Production Mode>
    <Nov 5, 2013 8:07:12 PM CET> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Nov 5, 2013 8:07:12 PM CET> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    using java.library.path: C:\Oracle\Middleware\EPMSystem11R1/products/Planning/lib64;C:\Oracle\Middleware\EPMSystem11R1/bin;C:\Oracle\Middleware\EPMSystem11R1/common/EssbaseRTC-64/11.1.2.0/bin;C:\Oracle\MIDDLE~1\patch_wls1034\profiles\default\native;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\x64;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\bin;C:\Oracle\MIDDLE~1\modules\ORGAPA~1.1\bin;C:\Oracle\MIDDLE~1\JROCKI~1\jre\bin;C:\Oracle\MIDDLE~1\JROCKI~1\bin;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\native\win\x64\oci920_8
    EPM_ORACLE_HOME (C:\Oracle\Middleware\EPMSystem11R1) is set from JVM property "EPM_ORACLE_HOME".
    using Java property for Hyperion Home C:\Oracle\Middleware\EPMSystem11R1
    EPM_ORACLE_INSTANCE (C:\Oracle\Middleware\user_projects\epmsystem1) is set from JVM property[EPM_ORACLE_INSTANCE].
    Reaquired task list lease: Tue Nov 05 20:11:49 CET 2013: 1383678709156
    Seeking ESAPI.properties
      Found in 'org.owasp.esapi.resources' directory: C:\Oracle\Middleware\EPMSystem11R1\products\Planning\config\esapi\ESAPI.properties
    Loaded 'ESAPI.properties' properties file
    Seeking validation.properties
      Found in 'org.owasp.esapi.resources' directory: C:\Oracle\Middleware\EPMSystem11R1\products\Planning\config\esapi\validation.properties
    Loaded 'validation.properties' properties file
    Seeking antisamy-esapi.xml
      Found in 'org.owasp.esapi.resources' directory: C:\Oracle\Middleware\EPMSystem11R1\products\Planning\config\esapi\antisamy-esapi.xml
    EnterData_Inner Processing Time:424
    2013-11-05 20:14:47,454 INFO Thread-51 calcmgr.launch - Date/Time Started: 2013/11/05:20:14:47.452 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: WPA_Count By Planning user: wipoadmin Values entered for run-time prompts: [Variable] Wrk_Scenario:"Work_Plan_2014"[Variable] Funds:"Regular"[Variable] Units:"0001"
    - Date/Time Started: 2013/11/05:20:14:47.452 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: WPA_Count By Planning user: wipoadmin Values entered for run-time prompts: [Variable] Wrk_Scenario:"Work_Plan_2014"[Variable] Funds:"Regular"[Variable] Units:"0001"
    2013-11-05 20:14:54,066 INFO Thread-51 calcmgr.launch - Date/Time Ended: 2013/11/05:20:14:54.066 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: WPA_Count By Planning user: wipoadmin.
    - Date/Time Ended: 2013/11/05:20:14:54.066 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: WPA_Count By Planning user: wipoadmin.
    EnterData_Inner Processing Time:64
    EnterData_Inner Processing Time:15
    EnterData_Inner Processing Time:359
    EnterData_Inner Processing Time:2
    EnterData_Inner Processing Time:53
    EnterData_Inner Processing Time:4
    EnterData_Inner Processing Time:7
    EPM_ORACLE_INSTANCE (C:\Oracle\Middleware\user_projects\epmsystem1) is set from JVM property[EPM_ORACLE_INSTANCE].
    EPM_ORACLE_INSTANCE (C:\Oracle\Middleware\user_projects\epmsystem1) is set from JVM property[EPM_ORACLE_INSTANCE].
    EPM_ORACLE_INSTANCE (C:\Oracle\Middleware\user_projects\epmsystem1) is set from JVM property[EPM_ORACLE_INSTANCE].
    Setting HBR Mode to: 2
    In lookupBRLWA()
    Found HBR product = ESSBASE_PRODUCT
    Found HBR product = ESSBASE_PRODUCT
    Found HBR product = ESSBASE_PRODUCT
    HBR LWA Component = Default
    Default HBR = http://WIPLPRD01.svc.unicc.org:19000/eas
    In getDBDetails()
    Found HBR product = ESSBASE_PRODUCT
    In lookupBRLWA()
    Found HBR product = ESSBASE_PRODUCT
    Found HBR product = ESSBASE_PRODUCT
    =2013-11-05 20:35:08,234 WARN [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' com.hyperion.hbr.security.HbrSecurityAPI - Error retrieving user by identity
    - Error retrieving user by identity
    Embedded HBR initialized.
    EnterData_Inner Processing Time:6
    EnterData_Inner Processing Time:867
    [Tue Nov 05 20:35:33 CET 2013] Planning successfully notified HBR repository.
    EnterData_Inner Processing Time:7
    2013-11-05 20:40:38,613 INFO Thread-67 calcmgr.launch - Date/Time Started: 2013/11/05:20:40:38.606 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: NonPersonnel_Calc By Planning user: wipoadmin Values entered for run-time prompts: [Variable] Funds:"Regular"[Variable] Units:"0001"[Variable] Wrk_Scenario:"Work_Plan_2014"
    - Date/Time Started: 2013/11/05:20:40:38.606 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: NonPersonnel_Calc By Planning user: wipoadmin Values entered for run-time prompts: [Variable] Funds:"Regular"[Variable] Units:"0001"[Variable] Wrk_Scenario:"Work_Plan_2014"
    2013-11-05 20:40:47,241 INFO Thread-67 calcmgr.launch - Date/Time Ended: 2013/11/05:20:40:47.241 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: NonPersonnel_Calc By Planning user: wipoadmin.
    - Date/Time Ended: 2013/11/05:20:40:47.241 CET Server/Application/Database: localhost/1415_WP/AWP Business Rule Name: NonPersonnel_Calc By Planning user: wipoadmin.
    EnterData_Inner Processing Time:44
    EnterData_Inner Processing Time:2
    EnterData_Inner Processing Time:525
    EnterData_Inner Processing Time:1
    Reaquired task list lease: Tue Nov 05 20:41:49 CET 2013: 1383680509246

    I already replied there but it seems no moderator is willing to approve my reply so it never shows up.
    So I'll try replying in here instead:
    I never thought it could be an emulator issue, I thought I had done something wrong to begin with. So I take having performance issues with tiled layer is not a common problem I suppose?
    I'm using MOTODEV SDK platform, A1200 model (motorola).

  • Issues with using 3 monitors on 2 external gpu

    Hi,
    I have some issues with configuring Xorg to use 3 monitors. I have 2 external graphic cards (same model, no SLI). Monitors connected to the first gpu are recognized ok but I can't configure my 3rd monitor conencted to the second gpu via HDMI nor DVI.
    1st is recognized as DVI-I-1, 2nd is DP-1 in first card, 3rd monitor is in second card (bus 22:00.0) as DP-1-2 (also tried connecting as DVI-I-2). I can see them in Xorg log but I can't configure my 3rd monitor via kscreen nor xrandr. :-/
    lspci |grep VGA:
    03:00.0 VGA compatible controller: NVIDIA Corporation GF108GL [Quadro 600] (rev a1)
    22:00.0 VGA compatible controller: NVIDIA Corporation GF108GL [Quadro 600] (rev a1)
    xrandr:
    Screen 0: minimum 320 x 200, current 3840 x 1080, maximum 8192 x 8192
    DVI-I-1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 527mm x 297mm
    1920x1080 60.0*+
    1600x900 60.0
    1280x1024 75.0 60.0
    1152x864 75.0
    1024x768 75.1 60.0
    800x600 75.0 60.3
    640x480 75.0 60.0
    720x400 70.1
    DP-1 connected 1920x1080+1920+0 (normal left inverted right x axis y axis) 527mm x 297mm
    1920x1080 60.0*+
    1600x900 60.0
    1280x1024 75.0 60.0
    1152x864 75.0
    1024x768 75.1 60.0
    800x600 75.0 60.3
    640x480 75.0 60.0
    720x400 70.1
    Xorg config (autoconfig enable only 2 monitors, I generated config and tried to edit it with no luck, I noticed there is PCI:34:0:0 generated by Xorg so I also tried to change it to 22:0:0, I also tried to add that option "Monitor-<output>" but same result):
    Section "ServerLayout"
    Identifier "X.org Configured"
    #Screen 0 "Screen0" 0 0
    #Screen 1 "Screen1" RightOf "Screen0"
    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 "glx"
    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 "DELL"
    Option "Monitor-DVI-I-1" "DVI-I-1"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "DELL"
    Option "Monitor-DP-1" "DP-1"
    EndSection
    Section "Monitor"
    Identifier "Monitor2"
    VendorName "DELL"
    Option "Monitor-DP-1-2" "DP-1-2"
    EndSection
    Section "Device"
    Identifier "Card0"
    Driver "nouveau"
    BusID "PCI:3:0:0"
    Option "Monitor-DVI-I-1"
    Option "Monitor-DP-1"
    EndSection
    Section "Device"
    Identifier "Card1"
    Driver "nouveau"
    BusID "PCI:34:0:0"
    Option "Monitor-DP-1-2"
    EndSection
    Xorg log (I can see that monitor at time 1767.316):
    [ 1766.959]
    X.Org X Server 1.14.5
    Release Date: 2013-12-12
    [ 1766.960] X Protocol Version 11, Revision 0
    [ 1766.960] Build Operating System: Linux 3.12.5-1-ARCH x86_64
    [ 1766.960] Current Operating System: Linux CZ09DT1XM5002 3.12.5-1-ARCH #1 SMP PREEMPT Thu Dec 12 12:57:31 CET 2013 x86_64
    [ 1766.960] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=e2c593e5-b0f4-4c74-84fd-5a88db345ca4 rw quiet
    [ 1766.961] Build Date: 13 December 2013 03:11:42PM
    [ 1766.962]
    [ 1766.962] Current version of pixman: 0.32.4
    [ 1766.963] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 1766.963] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 1766.965] (==) Log file: "/var/log/Xorg.1.log", Time: Thu Jan 2 12:43:56 2014
    [ 1766.965] (++) Using config file: "/etc/X11/xorg.conf.d/20-multimonitor.conf"
    [ 1766.966] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 1766.966] (==) ServerLayout "X.org Configured"
    [ 1766.966] (==) No screen section available. Using defaults.
    [ 1766.966] (**) |-->Screen "Default Screen Section" (0)
    [ 1766.966] (**) | |-->Monitor "<default monitor>"
    [ 1766.966] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 1766.966] (**) | |-->Device "Card0"
    [ 1766.966] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 1766.966] (**) |-->Input Device "Mouse0"
    [ 1766.966] (**) |-->Input Device "Keyboard0"
    [ 1766.966] (==) Automatically adding devices
    [ 1766.966] (==) Automatically enabling devices
    [ 1766.966] (==) Automatically adding GPU devices
    [ 1766.966] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 1766.966] Entry deleted from font path.
    [ 1766.966] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 1766.966] Entry deleted from font path.
    [ 1766.966] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 1766.966] Entry deleted from font path.
    [ 1766.966] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 1766.967] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 1766.967] Entry deleted from font path.
    [ 1766.967] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 1766.967] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 1766.967] Entry deleted from font path.
    [ 1766.967] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 1766.967] Entry deleted from font path.
    [ 1766.967] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 1766.967] Entry deleted from font path.
    [ 1766.967] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 1766.967] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 1766.967] Entry deleted from font path.
    [ 1766.967] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 1766.967] (**) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 1766.967] (**) ModulePath set to "/usr/lib/xorg/modules"
    [ 1766.967] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 1766.967] (WW) Disabling Mouse0
    [ 1766.967] (WW) Disabling Keyboard0
    [ 1766.967] (II) Loader magic: 0x7fec20
    [ 1766.967] (II) Module ABI versions:
    [ 1766.967] X.Org ANSI C Emulation: 0.4
    [ 1766.967] X.Org Video Driver: 14.1
    [ 1766.967] X.Org XInput driver : 19.1
    [ 1766.967] X.Org Server Extension : 7.0
    [ 1766.967] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 1766.967] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 1767.169] (--) PCI:*(0:3:0:0) 10de:0df8:10de:0835 rev 161, Mem @ 0xc6000000/16777216, 0xc8000000/134217728, 0xd0000000/33554432, I/O @ 0x00007000/128, BIOS @ 0x????????/524288
    [ 1767.169] (--) PCI: (0:34:0:0) 10de:0df8:10de:0835 rev 161, Mem @ 0xfa000000/16777216, 0xf0000000/134217728, 0xf8000000/33554432, I/O @ 0x0000f000/128, BIOS @ 0x????????/524288
    [ 1767.169] Initializing built-in extension Generic Event Extension
    [ 1767.170] Initializing built-in extension SHAPE
    [ 1767.170] Initializing built-in extension MIT-SHM
    [ 1767.170] Initializing built-in extension XInputExtension
    [ 1767.171] Initializing built-in extension XTEST
    [ 1767.171] Initializing built-in extension BIG-REQUESTS
    [ 1767.172] Initializing built-in extension SYNC
    [ 1767.172] Initializing built-in extension XKEYBOARD
    [ 1767.172] Initializing built-in extension XC-MISC
    [ 1767.173] Initializing built-in extension SECURITY
    [ 1767.173] Initializing built-in extension XINERAMA
    [ 1767.174] Initializing built-in extension XFIXES
    [ 1767.174] Initializing built-in extension RENDER
    [ 1767.174] Initializing built-in extension RANDR
    [ 1767.175] Initializing built-in extension COMPOSITE
    [ 1767.175] Initializing built-in extension DAMAGE
    [ 1767.175] Initializing built-in extension MIT-SCREEN-SAVER
    [ 1767.176] Initializing built-in extension DOUBLE-BUFFER
    [ 1767.176] Initializing built-in extension RECORD
    [ 1767.176] Initializing built-in extension DPMS
    [ 1767.177] Initializing built-in extension X-Resource
    [ 1767.177] Initializing built-in extension XVideo
    [ 1767.177] Initializing built-in extension XVideo-MotionCompensation
    [ 1767.178] Initializing built-in extension XFree86-VidModeExtension
    [ 1767.178] Initializing built-in extension XFree86-DGA
    [ 1767.178] Initializing built-in extension XFree86-DRI
    [ 1767.179] Initializing built-in extension DRI2
    [ 1767.179] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [ 1767.179] (II) LoadModule: "glx"
    [ 1767.179] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 1767.179] (II) Module glx: vendor="X.Org Foundation"
    [ 1767.179] compiled for 1.14.5, module version = 1.0.0
    [ 1767.179] ABI class: X.Org Server Extension, version 7.0
    [ 1767.179] (==) AIGLX enabled
    [ 1767.180] Loading extension GLX
    [ 1767.180] (II) LoadModule: "nouveau"
    [ 1767.180] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
    [ 1767.180] (II) Module nouveau: vendor="X.Org Foundation"
    [ 1767.180] compiled for 1.14.4, module version = 1.0.10
    [ 1767.180] Module class: X.Org Video Driver
    [ 1767.180] ABI class: X.Org Video Driver, version 14.1
    [ 1767.180] (II) NOUVEAU driver
    [ 1767.180] (II) NOUVEAU driver for NVIDIA chipset families :
    [ 1767.180] RIVA TNT (NV04)
    [ 1767.180] RIVA TNT2 (NV05)
    [ 1767.180] GeForce 256 (NV10)
    [ 1767.180] GeForce 2 (NV11, NV15)
    [ 1767.180] GeForce 4MX (NV17, NV18)
    [ 1767.180] GeForce 3 (NV20)
    [ 1767.180] GeForce 4Ti (NV25, NV28)
    [ 1767.180] GeForce FX (NV3x)
    [ 1767.180] GeForce 6 (NV4x)
    [ 1767.180] GeForce 7 (G7x)
    [ 1767.180] GeForce 8 (G8x)
    [ 1767.180] GeForce GTX 200 (NVA0)
    [ 1767.180] GeForce GTX 400 (NVC0)
    [ 1767.180] (--) using VT number 3
    [ 1767.182] (II) [drm] nouveau interface version: 1.1.1
    [ 1767.183] (II) [drm] nouveau interface version: 1.1.1
    [ 1767.183] (II) Loading sub module "dri2"
    [ 1767.183] (II) LoadModule: "dri2"
    [ 1767.183] (II) Module "dri2" already built-in
    [ 1767.183] (--) NOUVEAU(0): Chipset: "NVIDIA NVC1"
    [ 1767.183] (II) NOUVEAU(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 1767.183] (==) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32
    [ 1767.183] (==) NOUVEAU(0): RGB weight 888
    [ 1767.183] (==) NOUVEAU(0): Default visual is TrueColor
    [ 1767.183] (==) NOUVEAU(0): Using HW cursor
    [ 1767.183] (==) NOUVEAU(0): GLX sync to VBlank disabled.
    [ 1767.183] (==) NOUVEAU(0): Page flipping enabled
    [ 1767.183] (==) NOUVEAU(0): Swap limit set to 2 [Max allowed 2]
    [ 1767.222] (II) NOUVEAU(0): Output DVI-I-1 has no monitor section
    [ 1767.230] (II) NOUVEAU(0): Output DP-1 has no monitor section
    [ 1767.265] (II) NOUVEAU(0): EDID for output DVI-I-1
    [ 1767.265] (II) NOUVEAU(0): Manufacturer: DEL Model: a09b Serial#: 827608652
    [ 1767.265] (II) NOUVEAU(0): Year: 2013 Week: 41
    [ 1767.265] (II) NOUVEAU(0): EDID Version: 1.3
    [ 1767.265] (II) NOUVEAU(0): Digital Display Input
    [ 1767.265] (II) NOUVEAU(0): Max Image Size [cm]: horiz.: 53 vert.: 30
    [ 1767.265] (II) NOUVEAU(0): Gamma: 2.20
    [ 1767.265] (II) NOUVEAU(0): DPMS capabilities: StandBy Suspend Off
    [ 1767.265] (II) NOUVEAU(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 1767.265] (II) NOUVEAU(0): First detailed timing is preferred mode
    [ 1767.265] (II) NOUVEAU(0): redX: 0.650 redY: 0.338 greenX: 0.320 greenY: 0.613
    [ 1767.265] (II) NOUVEAU(0): blueX: 0.154 blueY: 0.061 whiteX: 0.313 whiteY: 0.329
    [ 1767.265] (II) NOUVEAU(0): Supported established timings:
    [ 1767.265] (II) NOUVEAU(0): 720x400@70Hz
    [ 1767.265] (II) NOUVEAU(0): 640x480@60Hz
    [ 1767.265] (II) NOUVEAU(0): 640x480@75Hz
    [ 1767.265] (II) NOUVEAU(0): 800x600@60Hz
    [ 1767.265] (II) NOUVEAU(0): 800x600@75Hz
    [ 1767.265] (II) NOUVEAU(0): 1024x768@60Hz
    [ 1767.265] (II) NOUVEAU(0): 1024x768@75Hz
    [ 1767.265] (II) NOUVEAU(0): 1280x1024@75Hz
    [ 1767.265] (II) NOUVEAU(0): Manufacturer's mask: 0
    [ 1767.265] (II) NOUVEAU(0): Supported standard timings:
    [ 1767.265] (II) NOUVEAU(0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 1767.265] (II) NOUVEAU(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 1767.265] (II) NOUVEAU(0): #2: hsize: 1600 vsize 900 refresh: 60 vid: 49321
    [ 1767.265] (II) NOUVEAU(0): #3: hsize: 1920 vsize 1080 refresh: 60 vid: 49361
    [ 1767.265] (II) NOUVEAU(0): Supported detailed timing:
    [ 1767.265] (II) NOUVEAU(0): clock: 148.5 MHz Image Size: 527 x 297 mm
    [ 1767.265] (II) NOUVEAU(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 1767.265] (II) NOUVEAU(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 1767.265] (II) NOUVEAU(0): Serial No: 36WJX3A91TNL
    [ 1767.265] (II) NOUVEAU(0): Monitor name: DELL P2414H
    [ 1767.265] (II) NOUVEAU(0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
    [ 1767.265] (II) NOUVEAU(0): EDID (in hex):
    [ 1767.265] (II) NOUVEAU(0): 00ffffffffffff0010ac9ba04c4e5431
    [ 1767.265] (II) NOUVEAU(0): 2917010380351e78eaa0a5a656529d27
    [ 1767.265] (II) NOUVEAU(0): 0f5054a54b00714f8180a9c0d1c00101
    [ 1767.265] (II) NOUVEAU(0): 010101010101023a801871382d40582c
    [ 1767.265] (II) NOUVEAU(0): 45000f292100001e000000ff00333657
    [ 1767.265] (II) NOUVEAU(0): 4a5833413931544e4c0a000000fc0044
    [ 1767.265] (II) NOUVEAU(0): 454c4c205032343134480a20000000fd
    [ 1767.265] (II) NOUVEAU(0): 00384c1e5311000a20202020202000c2
    [ 1767.265] (II) NOUVEAU(0): Printing probed modes for output DVI-I-1
    [ 1767.265] (II) NOUVEAU(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 1767.265] (II) NOUVEAU(0): Modeline "1600x900"x60.0 118.96 1600 1696 1864 2128 900 901 904 932 -hsync +vsync (55.9 kHz)
    [ 1767.265] (II) NOUVEAU(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 1767.265] (II) NOUVEAU(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 1767.265] (II) NOUVEAU(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 1767.265] (II) NOUVEAU(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 1767.265] (II) NOUVEAU(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 1767.265] (II) NOUVEAU(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 1767.265] (II) NOUVEAU(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 1767.265] (II) NOUVEAU(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 1767.265] (II) NOUVEAU(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 1767.265] (II) NOUVEAU(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 1767.273] (II) NOUVEAU(0): EDID for output DP-1
    [ 1767.273] (II) NOUVEAU(0): Manufacturer: DEL Model: a09a Serial#: 844123724
    [ 1767.273] (II) NOUVEAU(0): Year: 2013 Week: 41
    [ 1767.273] (II) NOUVEAU(0): EDID Version: 1.4
    [ 1767.273] (II) NOUVEAU(0): Digital Display Input
    [ 1767.273] (II) NOUVEAU(0): 8 bits per channel
    [ 1767.273] (II) NOUVEAU(0): Digital interface is DisplayPort
    [ 1767.273] (II) NOUVEAU(0): Max Image Size [cm]: horiz.: 53 vert.: 30
    [ 1767.273] (II) NOUVEAU(0): Gamma: 2.20
    [ 1767.273] (II) NOUVEAU(0): DPMS capabilities: Off
    [ 1767.273] (II) NOUVEAU(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 YCrCb 4:2:2
    [ 1767.273] (II) NOUVEAU(0): First detailed timing is preferred mode
    [ 1767.273] (II) NOUVEAU(0): Preferred mode is native pixel format and refresh rate
    [ 1767.273] (II) NOUVEAU(0): redX: 0.650 redY: 0.338 greenX: 0.320 greenY: 0.613
    [ 1767.273] (II) NOUVEAU(0): blueX: 0.154 blueY: 0.061 whiteX: 0.313 whiteY: 0.329
    [ 1767.273] (II) NOUVEAU(0): Supported established timings:
    [ 1767.273] (II) NOUVEAU(0): 720x400@70Hz
    [ 1767.273] (II) NOUVEAU(0): 640x480@60Hz
    [ 1767.273] (II) NOUVEAU(0): 640x480@75Hz
    [ 1767.273] (II) NOUVEAU(0): 800x600@60Hz
    [ 1767.273] (II) NOUVEAU(0): 800x600@75Hz
    [ 1767.273] (II) NOUVEAU(0): 1024x768@60Hz
    [ 1767.273] (II) NOUVEAU(0): 1024x768@75Hz
    [ 1767.273] (II) NOUVEAU(0): 1280x1024@75Hz
    [ 1767.273] (II) NOUVEAU(0): Manufacturer's mask: 0
    [ 1767.273] (II) NOUVEAU(0): Supported standard timings:
    [ 1767.273] (II) NOUVEAU(0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 1767.273] (II) NOUVEAU(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 1767.273] (II) NOUVEAU(0): #2: hsize: 1600 vsize 900 refresh: 60 vid: 49321
    [ 1767.273] (II) NOUVEAU(0): #3: hsize: 1920 vsize 1080 refresh: 60 vid: 49361
    [ 1767.273] (II) NOUVEAU(0): Supported detailed timing:
    [ 1767.273] (II) NOUVEAU(0): clock: 148.5 MHz Image Size: 527 x 297 mm
    [ 1767.273] (II) NOUVEAU(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 1767.273] (II) NOUVEAU(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 1767.273] (II) NOUVEAU(0): Serial No: 36WJX3A92PNL
    [ 1767.273] (II) NOUVEAU(0): Monitor name: DELL P2414H
    [ 1767.273] (II) NOUVEAU(0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
    [ 1767.273] (II) NOUVEAU(0): EDID (in hex):
    [ 1767.273] (II) NOUVEAU(0): 00ffffffffffff0010ac9aa04c4e5032
    [ 1767.273] (II) NOUVEAU(0): 29170104a5351e783aa0a5a656529d27
    [ 1767.273] (II) NOUVEAU(0): 0f5054a54b00714f8180a9c0d1c00101
    [ 1767.273] (II) NOUVEAU(0): 010101010101023a801871382d40582c
    [ 1767.273] (II) NOUVEAU(0): 45000f292100001e000000ff00333657
    [ 1767.273] (II) NOUVEAU(0): 4a5833413932504e4c0a000000fc0044
    [ 1767.273] (II) NOUVEAU(0): 454c4c205032343134480a20000000fd
    [ 1767.273] (II) NOUVEAU(0): 00384c1e5311000a2020202020200053
    [ 1767.273] (II) NOUVEAU(0): Printing probed modes for output DP-1
    [ 1767.273] (II) NOUVEAU(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 1767.273] (II) NOUVEAU(0): Modeline "1600x900"x60.0 118.96 1600 1696 1864 2128 900 901 904 932 -hsync +vsync (55.9 kHz)
    [ 1767.273] (II) NOUVEAU(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 1767.273] (II) NOUVEAU(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 1767.273] (II) NOUVEAU(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 1767.273] (II) NOUVEAU(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 1767.273] (II) NOUVEAU(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 1767.273] (II) NOUVEAU(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 1767.273] (II) NOUVEAU(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 1767.273] (II) NOUVEAU(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 1767.273] (II) NOUVEAU(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 1767.273] (II) NOUVEAU(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 1767.273] (II) NOUVEAU(0): Output DVI-I-1 connected
    [ 1767.273] (II) NOUVEAU(0): Output DP-1 connected
    [ 1767.273] (II) NOUVEAU(0): Using exact sizes for initial modes
    [ 1767.273] (II) NOUVEAU(0): Output DVI-I-1 using initial mode 1920x1080
    [ 1767.273] (II) NOUVEAU(0): Output DP-1 using initial mode 1920x1080
    [ 1767.273] (II) NOUVEAU(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 1767.274] (--) NOUVEAU(0): Virtual size is 1920x1080 (pitch 0)
    [ 1767.274] (**) NOUVEAU(0): Driver mode "1920x1080": 148.5 MHz (scaled from 0.0 MHz), 67.5 kHz, 60.0 Hz
    [ 1767.274] (II) NOUVEAU(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 1767.274] (**) NOUVEAU(0): Mode "1600x900": 119.0 MHz (scaled from 0.0 MHz), 55.9 kHz, 60.0 Hz
    [ 1767.274] (II) NOUVEAU(0): Modeline "1600x900"x60.0 118.96 1600 1696 1864 2128 900 901 904 932 -hsync +vsync (55.9 kHz)
    [ 1767.274] (**) NOUVEAU(0): Driver mode "1280x1024": 135.0 MHz (scaled from 0.0 MHz), 80.0 kHz, 75.0 Hz
    [ 1767.274] (II) NOUVEAU(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 1767.274] (**) NOUVEAU(0): Driver mode "1280x1024": 108.0 MHz (scaled from 0.0 MHz), 64.0 kHz, 60.0 Hz
    [ 1767.274] (II) NOUVEAU(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 1767.274] (**) NOUVEAU(0): Driver mode "1152x864": 108.0 MHz (scaled from 0.0 MHz), 67.5 kHz, 75.0 Hz
    [ 1767.274] (II) NOUVEAU(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 1767.274] (**) NOUVEAU(0): Driver mode "1024x768": 78.8 MHz (scaled from 0.0 MHz), 60.1 kHz, 75.1 Hz
    [ 1767.274] (II) NOUVEAU(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 1767.274] (**) NOUVEAU(0): Driver mode "1024x768": 65.0 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz
    [ 1767.274] (II) NOUVEAU(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 1767.274] (**) NOUVEAU(0): Driver mode "800x600": 49.5 MHz (scaled from 0.0 MHz), 46.9 kHz, 75.0 Hz
    [ 1767.274] (II) NOUVEAU(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 1767.274] (**) NOUVEAU(0): Driver mode "800x600": 40.0 MHz (scaled from 0.0 MHz), 37.9 kHz, 60.3 Hz
    [ 1767.274] (II) NOUVEAU(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 1767.274] (**) NOUVEAU(0): Driver mode "640x480": 31.5 MHz (scaled from 0.0 MHz), 37.5 kHz, 75.0 Hz
    [ 1767.274] (II) NOUVEAU(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 1767.274] (**) NOUVEAU(0): Driver mode "640x480": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
    [ 1767.274] (II) NOUVEAU(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 1767.274] (**) NOUVEAU(0): Driver mode "720x400": 28.3 MHz (scaled from 0.0 MHz), 31.5 kHz, 70.1 Hz
    [ 1767.274] (II) NOUVEAU(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 1767.274] (==) NOUVEAU(0): DPI set to (96, 96)
    [ 1767.274] (II) Loading sub module "fb"
    [ 1767.274] (II) LoadModule: "fb"
    [ 1767.274] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 1767.274] (II) Module fb: vendor="X.Org Foundation"
    [ 1767.274] compiled for 1.14.5, module version = 1.0.0
    [ 1767.274] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1767.274] (II) Loading sub module "exa"
    [ 1767.274] (II) LoadModule: "exa"
    [ 1767.274] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 1767.274] (II) Module exa: vendor="X.Org Foundation"
    [ 1767.274] compiled for 1.14.5, module version = 2.6.0
    [ 1767.274] ABI class: X.Org Video Driver, version 14.1
    [ 1767.274] (II) Loading sub module "shadowfb"
    [ 1767.274] (II) LoadModule: "shadowfb"
    [ 1767.274] (II) Loading /usr/lib/xorg/modules/libshadowfb.so
    [ 1767.274] (II) Module shadowfb: vendor="X.Org Foundation"
    [ 1767.274] compiled for 1.14.5, module version = 1.0.0
    [ 1767.274] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1767.274] (II) Loading sub module "dri2"
    [ 1767.274] (II) LoadModule: "dri2"
    [ 1767.274] (II) Module "dri2" already built-in
    [ 1767.274] (--) NOUVEAU(G0): Chipset: "NVIDIA NVC1"
    [ 1767.275] (==) NOUVEAU(G0): Depth 24, (--) framebuffer bpp 32
    [ 1767.275] (==) NOUVEAU(G0): RGB weight 888
    [ 1767.275] (==) NOUVEAU(G0): Default visual is TrueColor
    [ 1767.275] (==) NOUVEAU(G0): Using HW cursor
    [ 1767.275] (==) NOUVEAU(G0): GLX sync to VBlank disabled.
    [ 1767.275] (==) NOUVEAU(G0): Page flipping enabled
    [ 1767.275] (==) NOUVEAU(G0): Swap limit set to 2 [Max allowed 2]
    [ 1767.308] (II) NOUVEAU(G0): Output DVI-I-1-2 has no monitor section
    [ 1767.316] (II) NOUVEAU(G0): Output DP-1-2 has no monitor section
    [ 1767.339] (II) NOUVEAU(G0): EDID for output DVI-I-1-2
    [ 1767.347] (II) NOUVEAU(G0): EDID for output DP-1-2
    [ 1767.347] (II) NOUVEAU(G0): Manufacturer: DEL Model: a09a Serial#: 844124236
    [ 1767.347] (II) NOUVEAU(G0): Year: 2013 Week: 41
    [ 1767.347] (II) NOUVEAU(G0): EDID Version: 1.4
    [ 1767.347] (II) NOUVEAU(G0): Digital Display Input
    [ 1767.347] (II) NOUVEAU(G0): 8 bits per channel
    [ 1767.347] (II) NOUVEAU(G0): Digital interface is DisplayPort
    [ 1767.347] (II) NOUVEAU(G0): Max Image Size [cm]: horiz.: 53 vert.: 30
    [ 1767.347] (II) NOUVEAU(G0): Gamma: 2.20
    [ 1767.347] (II) NOUVEAU(G0): DPMS capabilities: Off
    [ 1767.347] (II) NOUVEAU(G0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 YCrCb 4:2:2
    [ 1767.347] (II) NOUVEAU(G0): First detailed timing is preferred mode
    [ 1767.347] (II) NOUVEAU(G0): Preferred mode is native pixel format and refresh rate
    [ 1767.347] (II) NOUVEAU(G0): redX: 0.650 redY: 0.338 greenX: 0.320 greenY: 0.613
    [ 1767.347] (II) NOUVEAU(G0): blueX: 0.154 blueY: 0.061 whiteX: 0.313 whiteY: 0.329
    [ 1767.347] (II) NOUVEAU(G0): Supported established timings:
    [ 1767.347] (II) NOUVEAU(G0): 720x400@70Hz
    [ 1767.347] (II) NOUVEAU(G0): 640x480@60Hz
    [ 1767.347] (II) NOUVEAU(G0): 640x480@75Hz
    [ 1767.347] (II) NOUVEAU(G0): 800x600@60Hz
    [ 1767.347] (II) NOUVEAU(G0): 800x600@75Hz
    [ 1767.347] (II) NOUVEAU(G0): 1024x768@60Hz
    [ 1767.347] (II) NOUVEAU(G0): 1024x768@75Hz
    [ 1767.347] (II) NOUVEAU(G0): 1280x1024@75Hz
    [ 1767.348] (II) NOUVEAU(G0): Manufacturer's mask: 0
    [ 1767.348] (II) NOUVEAU(G0): Supported standard timings:
    [ 1767.348] (II) NOUVEAU(G0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 1767.348] (II) NOUVEAU(G0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 1767.348] (II) NOUVEAU(G0): #2: hsize: 1600 vsize 900 refresh: 60 vid: 49321
    [ 1767.348] (II) NOUVEAU(G0): #3: hsize: 1920 vsize 1080 refresh: 60 vid: 49361
    [ 1767.348] (II) NOUVEAU(G0): Supported detailed timing:
    [ 1767.348] (II) NOUVEAU(G0): clock: 148.5 MHz Image Size: 527 x 297 mm
    [ 1767.348] (II) NOUVEAU(G0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 1767.348] (II) NOUVEAU(G0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 1767.348] (II) NOUVEAU(G0): Serial No: 36WJX3A92PPL
    [ 1767.348] (II) NOUVEAU(G0): Monitor name: DELL P2414H
    [ 1767.348] (II) NOUVEAU(G0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
    [ 1767.348] (II) NOUVEAU(G0): EDID (in hex):
    [ 1767.348] (II) NOUVEAU(G0): 00ffffffffffff0010ac9aa04c505032
    [ 1767.348] (II) NOUVEAU(G0): 29170104a5351e783aa0a5a656529d27
    [ 1767.348] (II) NOUVEAU(G0): 0f5054a54b00714f8180a9c0d1c00101
    [ 1767.348] (II) NOUVEAU(G0): 010101010101023a801871382d40582c
    [ 1767.348] (II) NOUVEAU(G0): 45000f292100001e000000ff00333657
    [ 1767.348] (II) NOUVEAU(G0): 4a583341393250504c0a000000fc0044
    [ 1767.348] (II) NOUVEAU(G0): 454c4c205032343134480a20000000fd
    [ 1767.348] (II) NOUVEAU(G0): 00384c1e5311000a202020202020004f
    [ 1767.348] (II) NOUVEAU(G0): Printing probed modes for output DP-1-2
    [ 1767.348] (II) NOUVEAU(G0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 1767.348] (II) NOUVEAU(G0): Modeline "1600x900"x60.0 118.96 1600 1696 1864 2128 900 901 904 932 -hsync +vsync (55.9 kHz)
    [ 1767.348] (II) NOUVEAU(G0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 1767.348] (II) NOUVEAU(G0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 1767.348] (II) NOUVEAU(G0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 1767.348] (II) NOUVEAU(G0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 1767.348] (II) NOUVEAU(G0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 1767.348] (II) NOUVEAU(G0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 1767.348] (II) NOUVEAU(G0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 1767.348] (II) NOUVEAU(G0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 1767.348] (II) NOUVEAU(G0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 1767.348] (II) NOUVEAU(G0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 1767.348] (II) NOUVEAU(G0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 1767.348] (--) NOUVEAU(G0): Virtual size is 1024x768 (pitch 0)
    [ 1767.348] (**) NOUVEAU(G0): Mode "1920x1080": 173.0 MHz (scaled from 0.0 MHz), 67.2 kHz, 60.0 Hz
    [ 1767.348] (II) NOUVEAU(G0): Modeline "1920x1080"x60.0 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync (67.2 kHz)
    [ 1767.348] (==) NOUVEAU(G0): DPI set to (96, 96)
    [ 1767.348] (II) Loading sub module "fb"
    [ 1767.348] (II) LoadModule: "fb"
    [ 1767.348] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 1767.348] (II) Module fb: vendor="X.Org Foundation"
    [ 1767.348] compiled for 1.14.5, module version = 1.0.0
    [ 1767.348] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1767.348] (II) Loading sub module "exa"
    [ 1767.348] (II) LoadModule: "exa"
    [ 1767.348] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 1767.348] (II) Module exa: vendor="X.Org Foundation"
    [ 1767.348] compiled for 1.14.5, module version = 2.6.0
    [ 1767.348] ABI class: X.Org Video Driver, version 14.1
    [ 1767.348] (II) Loading sub module "shadowfb"
    [ 1767.348] (II) LoadModule: "shadowfb"
    [ 1767.348] (II) Loading /usr/lib/xorg/modules/libshadowfb.so
    [ 1767.348] (II) Module shadowfb: vendor="X.Org Foundation"
    [ 1767.348] compiled for 1.14.5, module version = 1.0.0
    [ 1767.348] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1767.348] (--) Depth 24 pixmap format is 32 bpp
    [ 1767.351] (II) NOUVEAU(G0): Opened GPU channel 0
    [ 1767.359] (II) NOUVEAU(G0): [DRI2] Setup complete
    [ 1767.359] (II) NOUVEAU(G0): [DRI2] DRI driver: nouveau
    [ 1767.359] (II) NOUVEAU(G0): [DRI2] VDPAU driver: nouveau
    [ 1767.360] (II) EXA(256): Driver allocated offscreen pixmaps
    [ 1767.360] (II) EXA(256): Driver registered support for the following operations:
    [ 1767.360] (II) Solid
    [ 1767.360] (II) Copy
    [ 1767.360] (II) Composite (RENDER acceleration)
    [ 1767.360] (II) UploadToScreen
    [ 1767.360] (II) DownloadFromScreen
    [ 1767.360] (==) NOUVEAU(G0): Backing store disabled
    [ 1767.360] (==) NOUVEAU(G0): Silken mouse enabled
    [ 1767.360] (II) NOUVEAU(G0): [XvMC] Associated with Nouveau GeForce 8/9 Textured Video.
    [ 1767.360] (II) NOUVEAU(G0): [XvMC] Extension initialized.
    [ 1767.360] (==) NOUVEAU(G0): DPMS enabled
    [ 1767.360] (II) NOUVEAU(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 1767.360] (WW) NOUVEAU(G0): Option "Monitor-DVI-I-1" is not used
    [ 1767.360] (WW) NOUVEAU(G0): Option "Monitor-DP-1" is not used
    [ 1767.362] (II) NOUVEAU(0): Opened GPU channel 0
    [ 1767.366] (II) NOUVEAU(0): [DRI2] Setup complete
    [ 1767.366] (II) NOUVEAU(0): [DRI2] DRI driver: nouveau
    [ 1767.366] (II) NOUVEAU(0): [DRI2] VDPAU driver: nouveau
    [ 1767.366] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 1767.366] (II) EXA(0): Driver registered support for the following operations:
    [ 1767.366] (II) Solid
    [ 1767.366] (II) Copy
    [ 1767.366] (II) Composite (RENDER acceleration)
    [ 1767.366] (II) UploadToScreen
    [ 1767.366] (II) DownloadFromScreen
    [ 1767.366] (==) NOUVEAU(0): Backing store disabled
    [ 1767.366] (==) NOUVEAU(0): Silken mouse enabled
    [ 1767.366] (II) NOUVEAU(0): [XvMC] Associated with Nouveau GeForce 8/9 Textured Video.
    [ 1767.366] (II) NOUVEAU(0): [XvMC] Extension initialized.
    [ 1767.366] (==) NOUVEAU(0): DPMS enabled
    [ 1767.366] (II) NOUVEAU(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 1767.366] (--) RandR disabled
    [ 1767.388] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 1767.388] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 1767.388] (II) AIGLX: enabled GLX_ARB_create_context
    [ 1767.388] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 1767.388] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 1767.388] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 1767.388] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 1767.389] (II) AIGLX: Loaded and initialized nouveau
    [ 1767.389] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 1767.390] (II) NOUVEAU(G0): NVEnterVT is called.
    [ 1767.393] (II) NOUVEAU(0): NVEnterVT is called.
    [ 1767.444] (II) NOUVEAU(0): Setting screen physical size to 508 x 285
    [ 1767.444] resize called 1920 1080
    [ 1767.479] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 1767.479] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 1767.479] (II) LoadModule: "evdev"
    [ 1767.479] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 1767.479] (II) Module evdev: vendor="X.Org Foundation"
    [ 1767.479] compiled for 1.14.3, module version = 2.8.2
    [ 1767.479] Module class: X.Org XInput Driver
    [ 1767.479] ABI class: X.Org XInput driver, version 19.1
    [ 1767.479] (II) Using input driver 'evdev' for 'Power Button'
    [ 1767.479] (**) Power Button: always reports core events
    [ 1767.479] (**) evdev: Power Button: Device: "/dev/input/event2"
    [ 1767.479] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 1767.479] (--) evdev: Power Button: Found keys
    [ 1767.479] (II) evdev: Power Button: Configuring as keyboard
    [ 1767.479] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event2"
    [ 1767.479] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 1767.479] (**) Option "xkb_rules" "evdev"
    [ 1767.479] (**) Option "xkb_model" "pc104"
    [ 1767.479] (**) Option "xkb_layout" "us"
    [ 1767.499] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 1767.499] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 1767.499] (II) Using input driver 'evdev' for 'Power Button'
    [ 1767.500] (**) Power Button: always reports core events
    [ 1767.500] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 1767.500] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 1767.500] (--) evdev: Power Button: Found keys
    [ 1767.500] (II) evdev: Power Button: Configuring as keyboard
    [ 1767.500] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event1"
    [ 1767.500] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 1767.500] (**) Option "xkb_rules" "evdev"
    [ 1767.500] (**) Option "xkb_model" "pc104"
    [ 1767.500] (**) Option "xkb_layout" "us"
    [ 1767.500] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 1767.500] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event14)
    [ 1767.500] (II) No input driver specified, ignoring this device.
    [ 1767.500] (II) This device may have been added with another device file.
    [ 1767.500] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event13)
    [ 1767.500] (II) No input driver specified, ignoring this device.
    [ 1767.500] (II) This device may have been added with another device file.
    [ 1767.500] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event12)
    [ 1767.501] (II) No input driver specified, ignoring this device.
    [ 1767.501] (II) This device may have been added with another device file.
    [ 1767.501] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event11)
    [ 1767.501] (II) No input driver specified, ignoring this device.
    [ 1767.501] (II) This device may have been added with another device file.
    [ 1767.501] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event6)
    [ 1767.501] (II) No input driver specified, ignoring this device.
    [ 1767.501] (II) This device may have been added with another device file.
    [ 1767.501] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event9)
    [ 1767.501] (II) No input driver specified, ignoring this device.
    [ 1767.501] (II) This device may have been added with another device file.
    [ 1767.501] (II) config/udev: Adding input device HDA Intel PCH Line Out (/dev/input/event8)
    [ 1767.501] (II) No input driver specified, ignoring this device.
    [ 1767.501] (II) This device may have been added with another device file.
    [ 1767.501] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event7)
    [ 1767.501] (II) No input driver specified, ignoring this device.
    [ 1767.501] (II) This device may have been added with another device file.
    [ 1767.502] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event10)
    [ 1767.502] (II) No input driver specified, ignoring this device.
    [ 1767.502] (II) This device may have been added with another device file.
    [ 1767.502] (II) config/udev: Adding input device DELL Dell USB Entry Keyboard (/dev/input/event4)
    [ 1767.502] (**) DELL Dell USB Entry Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 1767.502] (II) Using input driver 'evdev' for 'DELL Dell USB Entry Keyboard'
    [ 1767.502] (**) DELL Dell USB Entry Keyboard: always reports core events
    [ 1767.502] (**) evdev: DELL Dell USB Entry Keyboard: Device: "/dev/input/event4"
    [ 1767.502] (--) evdev: DELL Dell USB Entry Keyboard: Vendor 0x413c Product 0x2107
    [ 1767.502] (--) evdev: DELL Dell USB Entry Keyboard: Found keys
    [ 1767.502] (II) evdev: DELL Dell USB Entry Keyboard: Configuring as keyboard
    [ 1767.502] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.5/4-1.5:1.0/input/input5/event4"
    [ 1767.502] (II) XINPUT: Adding extended input device "DELL Dell USB Entry Keyboard" (type: KEYBOARD, id 8)
    [ 1767.502] (**) Option "xkb_rules" "evdev"
    [ 1767.502] (**) Option "xkb_model" "pc104"
    [ 1767.502] (**) Option "xkb_layout" "us"
    [ 1767.502] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event5)
    [ 1767.502] (**) Logitech USB Optical Mouse: Applying InputClass "evdev pointer catchall"
    [ 1767.502] (II) Using input driver 'evdev' for 'Logitech USB Optical Mouse'
    [ 1767.502] (**) Logitech USB Optical Mouse: always reports core events
    [ 1767.502] (**) evdev: Logitech USB Optical Mouse: Device: "/dev/input/event5"
    [ 1767.502] (--) evdev: Logitech USB Optical Mouse: Vendor 0x46d Product 0xc077
    [ 1767.502] (--) evdev: Logitech USB Optical Mouse: Found 12 mouse buttons
    [ 1767.502] (--) evdev: Logitech USB Optical Mouse: Found scroll wheel(s)
    [ 1767.502] (--) evdev: Logitech USB Optical Mouse: Found relative axes
    [ 1767.502] (--) evdev: Logitech USB Optical Mouse: Found x and y relative axes
    [ 1767.502] (II) evdev: Logitech USB Optical Mouse: Configuring as mouse
    [ 1767.502] (II) evdev: Logitech USB Optical Mouse: Adding scrollwheel support
    [ 1767.503] (**) evdev: Logitech USB Optical Mouse: YAxisMapping: buttons 4 and 5
    [ 1767.503] (**) evdev: Logitech USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 1767.503] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.6/4-1.6:1.0/input/input6/event5"
    [ 1767.503] (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 9)
    [ 1767.503] (II) evdev: Logitech USB Optical Mouse: initialized for relative axes.
    [ 1767.503] (**) Logitech USB Optical Mouse: (accel) keeping acceleration scheme 1
    [ 1767.503] (**) Logitech USB Optical Mouse: (accel) acceleration profile 0
    [ 1767.503] (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
    [ 1767.503] (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
    [ 1767.503] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse0)
    [ 1767.503] (II) No input driver specified, ignoring this device.
    [ 1767.503] (II) This device may have been added with another device file.
    [ 1767.503] (II) config/udev: Adding drm device (/dev/dri/card1)
    [ 1767.503] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event18)
    [ 1767.503] (II) No input driver specified, ignoring this device.
    [ 1767.503] (II) This device may have been added with another device file.
    [ 1767.504] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event17)
    [ 1767.504] (II) No input driver specified, ignoring this device.
    [ 1767.504] (II) This device may have been added with another device file.
    [ 1767.504] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event16)
    [ 1767.504] (II) No input driver specified, ignoring this device.
    [ 1767.504] (II) This device may have been added with another device file.
    [ 1767.504] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event15)
    [ 1767.504] (II) No input driver specified, ignoring this device.
    [ 1767.504] (II) This device may have been added with another device file.
    [ 1767.504] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 1767.504] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 1767.504] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 1767.504] (**) AT Translated Set 2 keyboard: always reports core events
    [ 1767.504] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 1767.504] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [ 1767.504] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [ 1767.504] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [ 1767.504] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 1767.504] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
    [ 1767.504] (**) Option "xkb_rules" "evdev"
    [ 1767.504] (**) Option "xkb_model" "pc104"
    [ 1767.504] (**) Option "xkb_layout" "us"
    [ 1767.505] (II) config/udev: Adding input device PS/2 Generic Mouse (/dev/input/event19)
    [ 1767.505] (**) PS/2 Generic Mouse: Applying InputClass "evdev pointer catchall"
    [ 1767.505] (II) Using input driver 'evdev' for 'PS/2 Generic Mouse'
    [ 1767.505] (**) PS/2 Generic Mouse: always reports core events
    [ 1767.505] (**) evdev: PS/2 Generic Mouse: Device: "/dev/input/event19"
    [ 1767.505] (--) evdev: PS/2 Generic Mouse: Vendor 0x2 Product 0x1
    [ 1767.505] (--) evdev: PS/2 Generic Mouse: Found 3 mouse buttons
    [ 1767.505] (--) evdev: PS/2 Generic Mouse: Found relative axes
    [ 1767.505] (--) evdev: PS/2 Generic Mouse: Found x and y relative axes
    [ 1767.505] (II) evdev: PS/2 Generic Mouse: Configuring as mouse
    [ 1767.505] (**) evdev: PS/2 Generic Mouse: YAxisMapping: buttons 4 and 5
    [ 1767.505] (**) evdev: PS/2 Generic Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 1767.505] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input7/event19"
    [ 1767.505] (II) XINPUT: Adding extended input device "PS/2 Generic Mouse" (type: MOUSE, id 11)
    [ 1767.505] (II) evdev: PS/2 Generic Mouse: initialized for relative axes.
    [ 1767.505] (**) PS/2 Generic Mouse: (accel) keeping acceleration scheme 1
    [ 1767.505] (**) PS/2 Generic Mouse: (accel) acceleration profile 0
    [ 1767.505] (**) PS/2 Generic Mouse: (accel) acceleration factor: 2.000
    [ 1767.505] (**) PS/2 Generic Mouse: (accel) acceleration threshold: 4
    [ 1767.505] (II) config/udev: Adding input device PS/2 Generic Mouse (/dev/input/mouse1)
    [ 1767.505] (II) No input driver specified, ignoring this device.
    [ 1767.505] (II) This device may have been added with another device file.
    [ 1767.505] (II) config/udev: Adding input device PC Speaker (/dev/input/event3)
    [ 1767.505] (II) No input driver specified, ignoring this device.
    [ 1767.505] (II) This device may have been added with another device file.
    [ 1774.230] (II) AIGLX: Suspending AIGLX clients for VT switch
    [ 1774.230] (II) NOUVEAU(0): NVLeaveVT is called.
    [ 1774.230] (II) NOUVEAU(G0): NVLeaveVT is called.
    [ 1779.499] (II) evdev: PS/2 Generic Mouse: Close
    [ 1779.499] (II) UnloadModule: "evdev"
    [ 1779.499] (II) evdev: AT Translated Set 2 keyboard: Close
    [ 1779.499] (II) UnloadModule: "evdev"
    [ 1779.499] (II) evdev: Logitech USB Optical Mouse: Close
    [ 1779.499] (II) UnloadModule: "evdev"
    [ 1779.499] (II) evdev: DELL Dell USB Entry Keyboard: Close
    [ 1779.499] (II) UnloadModule: "evdev"
    [ 1779.499] (II) evdev: Power Button: Close
    [ 1779.499] (II) UnloadModule: "evdev"
    [ 1779.499] (II) evdev: Power Button: Close
    [ 1779.499] (II) UnloadModule: "evdev"
    [ 1779.499] (II) NOUVEAU(G0): NVLeaveVT is called.
    [ 1780.500] Error dropping master: -22(Invalid argument)
    [ 1780.501] (II) NOUVEAU(G0): Closed GPU channel 0
    [ 1780.503] (II) NOUVEAU(0): Closed GPU channel 0
    [ 1780.503] (EE) Server terminated successfully (0). Closing log file.
    Thanks for any help!

    I have  a similar issue except with two ATI cards and four monitors.
    I have a working xorg.conf that uses Xinerama and all 4 work but have been trying to get xrandr to work since xinerama is deprecated supposedly.
    I would like to switch to xrandr but there is some kind of magic voodoo I have with my current xorg.conf that doesn't even work on an exact same machine and cards that I tried to setup for a co-worker.
    lspci:
    01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] RV610 [Radeon HD 2400 PRO/XT]
    04:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] RV610 [Radeon HD 2400 PRO/XT]
    My xorg.conf:
    Section "Device"
    Identifier "ATI0"
    Driver "radeon"
    BusID "PCI:1:0:0"
    Option "ZaphodHeads" "DVI-0"
    Screen 0
    EndSection
    Section "Device"
    Identifier "ATI1"
    Driver "radeon"
    BusID "PCI:1:0:0"
    Option "ZaphodHeads" "DVI-1"
    Screen 1
    EndSection
    Section "Device"
    Identifier "ATI2"
    Driver "radeon"
    BusID "PCI:4:0:0"
    Option "ZaphodHeads" "DVI-2"
    Screen 0
    EndSection
    Section "Device"
    Identifier "ATI3"
    Driver "radeon"
    BusID "PCI:4:0:0"
    Option "ZaphodHeads" "DVI-3"
    Screen 1
    EndSection
    Section "Monitor"
    Identifier "DVI-0"
    Option "Primary" "On"
    Option "DPMS" "true"
    Option "PreferredMode" "1920x1080"
    Option "TargetRefresh" "60"
    EndSection
    Section "Monitor"
    Identifier "DVI-1"
    Option "DPMS" "true"
    Option "PreferredMode" "1920x1080"
    Option "TargetRefresh" "60"
    EndSection
    Section "Monitor"
    Identifier "DVI-2"
    Option "DPMS" "true"
    Option "PreferredMode" "1920x1080"
    Option "TargetRefresh" "60"
    EndSection
    Section "Monitor"
    Identifier "DVI-3"
    Option "DPMS" "true"
    Option "PreferredMode" "1920x1080"
    Option "TargetRefresh" "60"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "ATI0"
    Monitor "DVI-0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1920x1080"
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "ATI1"
    Monitor "DVI-1"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1920x1080"
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen2"
    Device "ATI2"
    Monitor "DVI-2"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1920x1080"
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen3"
    Device "ATI3"
    Monitor "DVI-3"
    DefaultDepth 24
    Subsection "Display"
    Depth 24
    Modes "1920x1080"
    EndSubSection
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "ServerLayout"
    Identifier "Default Layout"
    Screen "Screen0" 0 0
    Screen "Screen1" RightOf "Screen0"
    Screen "Screen2" Above "Screen1"
    Screen "Screen3" Above "Screen0"
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    Option "Xinerama" "1"
    EndSection
    My Xorg.0.log shows all the DVI connections when I don't use a xorg.conf file but only two are "connected"
    I see DVI-0 and DVI-1 connected and in "xrandr -q" but in Xorg.0.log I see DVI-1-2 and DVI-1-3.
    xrandr --listproviders show the two cards as well.
    Tried "xrandr --setprovideroutputsource 1 0" and they show up in KDE but as clones and then X crashes eventually.
    "xrandr --setprovideroutputsource 0 1" just plain crashes X

Maybe you are looking for

  • Microsoft Internet Explorer will disable all Active X objects

    I wonder if Macromedia have an offical response to this? Basically, all future versions of Internet Explorer will disable the active x flash player!!! http://developer.apple.com/internet/ieembedfaq.html

  • Event handling with cl_gui_alv_tree_simple

    Hi all... When i register some event for object cl_gui_alv_tree_simple it's work fine, but on the screen, only if i register a event (item_double_click), the 3rd level don't open (my tree has 4 levels).... Some help?!

  • Different CPU utilization on ESX VMware servers of Netweaver Portal

    Hello, we are running an Enterprise Portal NW 7.0, SPS20. The application servers are running on 6 ESX VMware servers. Although all application servers have almost the same amount of user sessions and the same processes on all servers, always one of

  • Limit the number of executions

    Hello, As we all know, it is possible to test multiple instances at the same time using one sequence file.  However, I do not want this, and want to disable this feature. So only one test can be run at the same time. Does anyone knows how to do this?

  • Can't re install CS5.5 - please help!

    I am trying to reinstall CS5.5 (I use Windows) I uninstalled it because i have no space on my hard drive, and I now have CC. I can now no longer open any InDesign files despite having In Design CC. I've tried to re install CS5.5 with the disk but aft