Error while opening gui app from commandline[SOLVED]

When I try to run a gui application from command line, I get following error:
# thunar
No protocol specified
Thunar: Cannot open display:
I have not been able to get info regarding this in the wiki.
Last edited by rnarch (2012-03-23 05:53:13)

You are trying to run thunar as root.  I really suggest you not run GUI stuff that can move and delete stuff with a mouse gesture as root.
I assume you are not running X as root.  If you are, allow me to redouble my previous admonition.   
In your example, are you running that from the command line, or from a terminal emulator under X?
If you must run as root, try MisterAnderson's suggestion, but note that the command is issued as a normal user.
You can also run thunar as root from a terminal by specifying the X session to which to attach, but I cannot put the incantation together off the top of my head.  If you are interested, let us know and someone will probably come up with help.

Similar Messages

  • Getting error while opening Excel document from SharePoint site

    Hello All,
    I am getting following error while opening Excel document from SharePoint site.
    This issue appears when we open Excel document from Windows>> Run using below mentioned command:
    Excel.exe "{File Name}"
    If once I go to Excel back stage and browse for the SharePoint location, then this problem disappears.
    I have a work around for this issue but main problem is that i do not have any work around when i need to open Exel document using Excel COM interop in C#.
    Thanks,
    Amit Bansal
    Amit Bansal http://www.oops4you.blogspot.com/

    Hi Amit Bansal,
    Thanks for posting in MSDN forum.
    This forum is for developers discussing developing issues involve Excel application.
    According to the description, you got an error when you open the document form SharePoint site.
    Based on my understanding, this issue maybe relative to the SharePoint, I would like move it to
    SharePoint 2013 - General Discussions and Questions forum.
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thanks for your understanding.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error while Opening PDF attachment from Mail

    Hi,
    We two Output Types created ZNEU and ZAUF. Two Smartforms are created for the same Output Types. The Issue now is, When ZNEU triggers and send a mail the document is properly decoded and gets opened but for ZAUF it doesn't. It says File damaged.
    This is the code we have used for sending mail.
    CONSTANTS:
              co_pdf(3) TYPE c VALUE 'PDF',
              co_raw(3) TYPE c VALUE 'RAW'.
      DATA:
            it_objbin TYPE STANDARD TABLE OF solisti1,
            wa_objbin TYPE solisti1.
      DATA:
             lv_filesize TYPE i.
      DATA:
            it_lines TYPE STANDARD TABLE OF tline.
      DATA:
            wa_mail_body TYPE solisti1,
            wa_receipients TYPE somlreci1.
      DATA:
           document           TYPE REF TO cl_document_bcs,
           content            TYPE solix_tab,
           wa_content         TYPE solix,
           send_request       TYPE REF TO cl_bcs,
           sender             TYPE REF TO if_sender_bcs,
           recipient          TYPE REF TO if_recipient_bcs,
           requested_status   TYPE REF TO bcs_rqst,
           status_mail        TYPE bcs_stml,
           bcs_exception      TYPE REF TO cx_bcs,
           lv_rec             TYPE adr6-smtp_addr.
      DATA:
             wa_attachx TYPE solix,
             l_pdf_len TYPE i,
             l_con_len TYPE i,
             l_pdf_pos TYPE i,
             l_con_pos TYPE i.
      FIELD-SYMBOLS: <fs_con> TYPE x.
      CLASS cl_cam_address_bcs     DEFINITION LOAD.
      CLASS cl_abap_char_utilities DEFINITION LOAD.
    * Get the PDF version of the OTF
      CALL FUNCTION 'CONVERT_OTF'
       EXPORTING
         format                      = 'PDF'
       IMPORTING
         bin_filesize                = lv_filesize
        TABLES
          otf                         = job_output_info-otfdata
          lines                       = it_lines
       EXCEPTIONS
         err_max_linewidth           = 1
         err_format                  = 2
         err_conv_not_possible       = 3
         err_bad_otf                 = 4
         OTHERS                      = 5.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Convert the PDF format to the table type required for the attachment.
      CALL FUNCTION 'QCE1_CONVERT'
        TABLES
          t_source_tab         = it_lines
          t_target_tab         = it_objbin
        EXCEPTIONS
          convert_not_possible = 1
          OTHERS               = 2.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Convert the data which is in text to binary
      l_con_pos = 0.
      DESCRIBE FIELD wa_objbin LENGTH l_pdf_len IN BYTE MODE.
      DESCRIBE FIELD wa_attachx LENGTH l_con_len IN BYTE MODE.
      LOOP AT it_objbin INTO wa_objbin.
        ASSIGN wa_objbin TO <fs_con> CASTING.
        CHECK sy-subrc EQ 0.
        DO l_pdf_len TIMES.
          l_pdf_pos = sy-index - 1.
          IF l_con_pos = l_con_len.
            APPEND wa_attachx TO content.
            FREE wa_attachx.
            l_con_pos = 0.
          ENDIF.
          MOVE <fs_con>+l_pdf_pos(1) TO wa_attachx-line+l_con_pos(1).
          ADD 1 TO l_con_pos.
        ENDDO.
      ENDLOOP.
      IF l_con_pos > 0.
        APPEND wa_attachx TO content.
      ENDIF.
      TRY .
    *     -------- create persistent send request ------------------------
          send_request = cl_bcs=>create_persistent( ).
    *     -------- create and set document with attachment ---------------
    *     create document from internal table with text
          document = cl_document_bcs=>create_document(
                        i_type    = 'RAW'
                        i_text    = mail_body_tab
                        i_subject = email_subject ).
    *     add attachment to document
          CALL METHOD document->add_attachment
            EXPORTING
              i_attachment_type    = 'PDF'
              i_attachment_subject = attachment_name
              i_att_content_hex    = content.
    *     add document to send request
          CALL METHOD send_request->set_document( document ).
    *    Set sender
          sender = cl_cam_address_bcs=>create_internet_address( sender_id ).
          CALL METHOD send_request->set_sender
            EXPORTING
              i_sender = sender.
    *     Receipients
          LOOP AT receipients_tab INTO wa_receipients .
            lv_rec = wa_receipients-receiver.
            recipient = cl_cam_address_bcs=>create_internet_address( lv_rec ).
    *       Add recipient with its respective attributes to send request
            CALL METHOD send_request->add_recipient
              EXPORTING
                i_recipient = recipient.
          ENDLOOP.
    * Set that you don't need a Return Status E-mail
          status_mail = 'N'.
          CALL METHOD send_request->set_status_attributes
            EXPORTING
              i_requested_status = 'N'
              i_status_mail      = status_mail.
    * set send immediately flag
          send_request->set_send_immediately( 'X' ).
    * Send document
          CALL METHOD send_request->send( ).
    *      COMMIT WORK.
        CATCH cx_bcs INTO bcs_exception.
          RAISE EXCEPTION bcs_exception.
    ENDTRY.
    This is in a Class which is been used in the print program for both the Output Types.
    Can somebody throw light upon this.
    Note: I tried using
    but it is not working properly.
    Thanks,
    Prashanth
    Edited by: Prashanth KR on Jan 5, 2010 6:20 AM

    Hi,
    Please paste the part of code where you are getting error.
    And if you are not clear about where the error is, try searching sdn or google with the error message that you are getting as this issue has been discussed many times earlier.
    Check this link.
    Error while opening PDF in mail attachment
    Hope it helps.
    Regards,
    Raj

  • Error while downloadin​g app from Blackberry app world.

    Hi,
    I have BB curve 9380 OS 7.0
    I always got an error while downloading app from appworld
    1.  Through my PC, BB 9380 connected through USB. The error is
    Your device is being accessed by another application on your computer. Please close all other browser windows and try again  I have tried a lot no progress.
    another error sometimes I used to get is Content protection enable disable it.
    2. Through my 9380, wifi configured, while accessing through smartphone web browser, after Login to appworld it prompts an error.  Cookies disabled in your browser. Please enable it to continue.
     But in browser options -> Accept Cookies -> check box is checked up.
    Request you guys please help me to get rid from this embarrassing errors. Since 8 months when I have brought this curve 9380 I haven't got an opportunity to install a single apps.
    Help is an part of appreciation.
    Thanx,
    Vikas Thakur

    Hi vikasthakur232 and welcome to the BlackBerry Support Community Forums!
    Have you tried installing BlackBerry App World via your BlackBerry Browser? You should be prompted to install it when accessing www.blackberry.com/appworld from your BlackBerry Brower.
    Thanks.
    -CptS
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Page not found Error while open install app

    I go through the all necessary steps to configure app domain & steps to create SharePoint hosted app still got 'page not found error'
    The final app URL that i got afte r open install app -"http://app-125e72eedbe144.domain name:9922/FirstApp/Pages/Default.aspx?SPHostUrl=http%3A%2F%2Fsp1%3A9922&SPLanguage=en-US&SPClientTag=6&SPProductNumber=15.0.4420.1017&SPAppWebUrl=http%3A%2F%2Fapp-125e72eedbe144.domainname%3A9922%2FFirstApp"
    i don't understand where i did mistake can any one help me to resolve that issue.

    Hi,
    According to your post, my understanding is that you get the “page not found” error while you open install app.
    You need to have a SharePoint Web Application that is bonded to port 80 without a host header.
    If you want to run it on https (SSL) then you also need to add an extra binding for SharePoint Hosted Apps to work.
    For more information, please refer to:
    Troubleshooting SharePoint 2013 Hosted Apps on-premises: “404 not found” error
    404 & 401 Errors with the App Management Service - SharePoint
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Error while opening a popup from managed bean

    Hi,
    I am trying to open a popup from bean, after another popup is closed. When I open the second popup either through ActionListener(on first popup button) or DialogListener(on first popup), I am getting the below error on browser status bar(!); and the second popup doesn't open. There is no error in the log.
    *'AdfPage.PAGE.findComponent(...)' is null or not an object.*
    Although the popup id is there on the jspx page.
    <af:popup id="confirmationStatus" binding="#{MyBean1.confirmationStatus}">
    <af:dialog cancelVisible="false"
    closeIconVisible="false" binding="#{MyBean1.d2}"
    title="Appointment Confirmation Status">
    <af:outputText value="Appointment is successfully confirmed"/>
    </af:dialog>
    </af:popup>
    public void confirmAppointment_dialogListener(DialogEvent dialogEvent) {
    FacesContext context = FacesContext.getCurrentInstance();
    ExtendedRenderKitService service = Service.getRenderKitService(context, ExtendedRenderKitService.class);
    String popupId = "confirmationStatus";
    service.addScript(context,"AdfPage.PAGE.findComponent('" + popupId + "').show();");
    Please tell me why my popup is not getting open from the managed bean and I am getting an error in below line.
    service.addScript(context,"AdfPage.PAGE.findComponent('" + popupId + "').show();");

    To find out the right address of a component related to an other component, open your page select the component you want to add a partial trigger, go to the partial trigger property, select the down arrow at the right end and select 'Edit'. Now look for the popup in the component tree shown on the left side. When you have found the popup shuffle it the the selected side and click OK. The string you see in the field is the full address of the popup related to he component you've selected. Try the string you see there in your bean code. Remove the string from the partial trigger property, it's just to get the correct path.
    One other thing to check is that your popup has the ClientComponent property set to true.
    Next thing to try, is to use AdfPage.PAGE.findComponentByAbsoluteId(...)
    Timo

  • Error while Opening the report  from template builder

    hi all,
    After log in in the BI publisher template builder, tried to Open the report from the report Template . Then the message is displayed as Error occurred: ‘Please check the settings and try again’.
    I am using the OBIEE 10.1.3.3 version and Ms-Office 2000......
    Please give me the solution very urgent............
    Regards

    Hi,
    I am having the same issue. I am not able to import Crystal Report.
    the error is "No matching records found  'Queries' (OUQR) (ODBC -2028)  [Message 131-183]"
    I have previewed the report using Preview external crystal report option and is running perfect.
    please guide ASAP.
    Regards
    Sonil

  • Small error while opening web app

    When i open my web app which was deployed in Prod mode,
    i get the following error when i open the link in the browser
    *(305) Internal Error - A fatal exception occurred. javax.transaction.HeuristicMixedException: (weblogic.jdbc.wrapper.JTSXAResourceImpl, HeuristicHazard, (javax.transaction.xa.XAException: Io exception: Software caused connection abort: socket write error))*
    null
    But the same application is working fine in QA Server.
    The env is weblogic 8.1.3 and windows. There is only one domain in the prod server and that domain has only 1 admin server and 1 application has been deployed to it. The application was working fine before, but from last week, i am getting the error specified above.
    Thanks in Advance

    Hi,
    Check the below thread...
    Web Application Designer Opening Error

  • Error while opening a report from worskpace

    I have created a report in WebAnalysis (http://server:19000/WebAnalysis) using analytical connection.
    When I try to open the same report from http://server:45000/worskpace following error is given
    'getContent' is null or not an object. click ok
    Required application module analyzer.reportview is not configured. Please contact your administrator.click ok
    http://server:45000/WebAnalysis/conf/AnalyzerConfig.xml
    Please can anybody help me out in this regard.
    Thanks,
    -Shantanu

    Hi,
    You can't access workspace directly through that port if you want to use other functionality, you should workspace through http://<workspace machine>:19000/workspace/
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Error while opening in-box from ESS

    We have a user in SAP, and he has 1200 unread  doc in his In-box. If this user tried to open his in-box from ESS, he will get an error
    Any idea How to resolve it ?
    Regards
    Suraj

    Suraj,
    Can you kindly post the error.
    James

  • HTTP error:while testing ADF11g app from external wls10.3

    Hi
    I deployed the ADF 11g App to external wls.
    when testing from browser i am getting only layouts of my page.
    i am not getting the table rows in my page.
    The error in domain log in server i got is:
    HTTP     Error     BEA-101017     [weblogic.servlet.internal.WebAppServletContext@539351 - appName: 'Chandra_ear_appl', name: 'Chandra_CR', context-path: '/Chandra_CR', spec-version: '2.5', request: weblogic.servlet.internal.ServletRequestImpl@1e99fae[ GET /Chandra_CR/faces/Dept_main.jspx?_adf.ctrl-state=2118804704_3 HTTP/1.1 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.1.17) Gecko/20080829 Firefox/2.0.0.17 Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 Accept-Language: en-us,en;q=0.5 Accept-Encoding: gzip,deflate Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 Keep-Alive: 300 Connection: keep-alive Cookie: ADMINCONSOLESESSION=tMBQJJpdyzVnCnXC2G8JLd9lghzzr8d25Ych1jphsdh2txT8QyKc!-594458642; JSESSIONID=Hk2YJJQbk4LhhrPJ9DJLlGBTcVCFqLWgZLnxfYk7nVjspT1DfgbP!-594458642 ]] Root cause of ServletException. java.lang.ClassCastException: oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding$FacesModel$2 cannot be cast to org.apache.myfaces.trinidad.model.RowKeySet at org.apache.myfaces.trinidad.component.UIXTable.getSelectedRowKeys(UIXTable.java:661) at org.apache.myfaces.trinidad.component.UIXTable.__init(UIXTable.java:558) at org.apache.myfaces.trinidad.component.UIXCollection._init(UIXCollection.java:1201) at org.apache.myfaces.trinidad.component.UIXCollection.encodeBegin(UIXCollection.java:505) at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:288) at oracle.adf.view.rich.render.RichRenderer.encodeStretchedChild(RichRenderer.java:1384) at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer._renderPane(PanelSplitterRenderer.java:937) at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer._renderFirstPane(PanelSplitterRenderer.java:807) at oracle.adfinternal.view.faces.renderkit.rich.PanelSplitterRenderer.encodeAll(PanelSplitterRenderer.java:143) at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1050) at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:224) at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:763) at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:304) at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeCenterFacet(PanelStretchLayoutRenderer.java:255) at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer._encodeCenterPane(PanelStretchLayoutRenderer.java:505) at oracle.adfinternal.view.faces.renderkit.rich.PanelStretchLayoutRenderer.encodeAll(PanelStretchLayoutRenderer.java:198) at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1050) at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:224) at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:763) at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:304) at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:321) at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:164) at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1050) at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:224) at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:763) at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:304) at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:321) at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:707) at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:1050) at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:224) at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:763) at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1351) at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:783) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:942) at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:273) at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:204) at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189) at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:188) at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:652) at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:243) at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:203) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292) at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42) at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:181) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42) at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:85) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:278) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:238) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:195) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:138) at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42) at oracle.security.jps.wls.JpsWlsFilter.doFilter(JpsWlsFilter.java:102) at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:65) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42) at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(Unknown Source) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201) at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
         Nov 7, 2008 6:39:07 PM EST     netuix     Warning     BEA-423420     Redirect is executed in begin or refresh action. Redirect url is /console/console.portal?_nfpb=true&_pageLabel=DiagnosticsViewDomainLogTablePage&DiagnosticsViewDomainLogTablePortlethandle=com.bea.console.handles.LogDispatchHandle%28%22AdminServer%3BDomainLog%22%29.
         Nov 7, 2008 6:42:45 PM EST     netuix     Warning     BEA-423420     Redirect is executed in begin or refresh action. Redirect url is /console/console.portal?_nfpb=true&_pageLabel=DiagnosticsViewDomainLogTablePage&DiagnosticsViewDomainLogTablePortlethandle=com.bea.console.handles.LogDispatchHandle%28%22AdminServer%3BDomainLog%22%29.
    Can anyone of you tell me where i did wrong.

    Hi,
    I am also facing the same error message in internal WLS come with Jdeveloper. Can you help me what's wrong? Below is the error stack I see in the Jdeveloper log.
    ]] Root cause of ServletException.
    java.lang.ClassCastException: oracle.adfinternal.view.faces.model.binding.FacesCtrlHierBinding$FacesModel$2 cannot be cast to org.apache.myfaces.trinidad.model.RowKeySet
         at org.apache.myfaces.trinidad.component.UIXTable.getSelectedRowKeys(UIXTable.java:661)
         at org.apache.myfaces.trinidad.component.UIXTable.__init(UIXTable.java:558)
         at org.apache.myfaces.trinidad.component.UIXCollection._init(UIXCollection.java:1201)
         at org.apache.myfaces.trinidad.component.UIXCollection.encodeBegin(UIXCollection.java:505)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:288)
         Truncated. see log file for complete stacktrace

  • Error while opening the report from Sap Business one

    Hi Experts,
    I am facing a Problem while importing a CrystalReport in SAPBusiness One, it displaying an erroru201CNo matching records found u2018Queriesu2019 (OUQR) (ODBC -2028) Message 131-183u201D , and there is no use of this table OUQR in the query.
    Kindly let me know the solution.

    Hi,
    I am having the same issue. I am not able to import Crystal Report.
    the error is "No matching records found  'Queries' (OUQR) (ODBC -2028)  [Message 131-183]"
    I have previewed the report using Preview external crystal report option and is running perfect.
    please guide ASAP.
    Regards
    Sonil

  • Error while Opening any Query from Query Monitor and Query Designer.

    Hill All,
    I was trying activate activate the Web templates for SRM, all the templates are activated and i am landed in a new problem. when ever i am trying to open a qery thru query Monitor(RSRT), i am popped with the Short dump.
    Short Dump Description:
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_RS_PERS_PHK================CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
        The following syntax error occurred in program "GP48WGGNR675NB9JBTAGV72K4CT "
         in include "GP48WGGNR675NB9JBTAGV72K4CT " in
        line 29:
        "The type "/BI0/APERS_BOD00" is unknown."
        The include has been created and last changed by:
        Created by: "CBI_BALAJID "
        Last changed by: "CBI_BALAJID "
    and when i try to debug the program "GP48WGGNR675NB9JBTAGV72K4CT"
    the error is shown at the code level:
    form pers_read
      tables   e_t_data  structure RSPER_S_RETSTRU_BOD
      using    i_maxrows type i
               i_t_sel   type rsper_t_select
      changing e_subrc   type sy-subrc.
      data: l_t_data type /BI0/APERS_BOD00 occurs 0.
      data: l_s_ft like /BI0/APERS_BOD00.
      data: l_s_sel type rsper_s_select.
      field-symbols: <l_s_data> type /BI0/APERS_BOD00.
    i am unable to find the info object APERS_BOD00. where as the error is pointing to sid table of the object.
    that's urgent,Some one Plese resolve the issue.Points will be rewarded for the usefull answers.
    Thanks in advance
    Balaji Donepudi.
    098266-89888

    Hi,
    Check for the consistency of the info object in RSRV.
    Check the info object status in cube like any data is available or not for that info object.
    Also check any parralel load is taking place in that particular cube.
    Please let me know if u face probelm
    Thanks
    Kind Regards,
    Shanbagavalli.S

  • Error while opening Fiori app on iPad

    I keep getting "Service XXXX failed. Contact your system administrator. Cannot call service with URL: /sap/opu/....." error on the iPad - both in the browser and the Fiori client. I am able to login to the launch pad and also see the apps, the error is triggered if I click one of the apps / tile.
    I believe this would be triggered if the service wasn't activated. In our case, the service is active and the application works well on the laptop browser via the launch pad. Strange that the same app isn't working on the iPad browser and gives this error. 
    Note - I have given the Fiori Launchpad URL in my laptop browser, iPad browser (tried with Chrome and Safari) and Fiori mobile client.
    Any tips on how to troubleshoot ?
    Regards,
    Parag.

    Both Gateway and ERP are Unicode. Dump details below:
    Category               Internal Kernel Error
    Runtime Errors         CALL_FUNCTION_SEND_ERROR
    Application Component  BC-ABA-LA
    Short text
        " " (I/O error)
    What happened?
        "CPIC-CALL: 'ThCMSEND' : cmRc=18 thRc=0#Statistics not active "
        An error occurred when executing a Remote Function Call.
    Error analysis
        An error occurred when executing a Remote Function Call.
        "CPIC-CALL: 'ThCMSEND' : cmRc=18 thRc=0#Statistics not active "
        Status of connection.... "CODE=CM_DEALLOCATED_NORMAL CM_SEND_RECEIVED
         CM_COMPLETE_DATA_RECEIVED SAPCODE=0 CONV=52753777"
        Internal error code.... "RFC_IO5"
        There is an error in the communication system. To clarify
        and resolve the error, contact your system administrator.
    Information on where terminated
        Termination occurred in the ABAP program "/IWBEP/SAPLFGR_MGW_CLIENT_IF" - in
         "/IWBEP/FM_MGW_MED_LOAD".
        The main program was "SAPMSSY1 ".
        In the source code you have the termination point in line 1
        of the (Include) program "/IWBEP/LFGR_MGW_CLIENT_IFU03".

  • Error 15. Installation error while downloading CS5 apps from creative cloud subscription.

    Help. I have tried everything (Troubleshooting). I keep getting installation fails. Error 15. I have a imac computer that is running mountain lion.

    Link for Download & Install & Setup & Activation problems may help
    -Chat http://www.adobe.com/support/download-install/supportinfo/
    OR
    Some download & install troubleshooting links
    -Comodo Security kills download http://forums.adobe.com/thread/1460361?tstart=0
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html
    -http://forums.adobe.com/community/download_install_setup
    -http://helpx.adobe.com/creative-cloud/kb/troubleshoot-cc-installation-download.html
    -http://helpx.adobe.com/x-productkb/global/errors-or-unexpected-behavior-websites.html
    -http://helpx.adobe.com/creative-cloud/kb/unknown-server-error-launching-cc.html
    -Server won't connect https://forums.adobe.com/thread/1233088
    -SPECIAL FOR MAC USERS
    -Mac 10.9.3 workaround https://forums.adobe.com/thread/1489922
    -more Mac 10.9.3 https://forums.adobe.com/thread/1491469
    -Enable Mac Root User https://forums.adobe.com/thread/1156604
    -more Root User http://forums.adobe.com/thread/879931
    -and more root user http://forums.adobe.com/thread/940869?tstart=0

Maybe you are looking for

  • Magsafe intermittent? freeze it!

    If your magsafe adapter is being intermittent, then try cooling it in the fridge/freezer. This worked for me in a hot climate where the local power was not so clean. Sometimes it would cut out after a power out or brown out, sometimes I would get a s

  • My iTunes account money is gone!!

    I was about to purchase a CD on iTunes, so I re-logged into my account. When I did, I didn't have any money left, which shouldn't have happened because I had $9 and some cents just a few days ago, and I haven't made any purchases since January 23, 20

  • Illustrator 10 and Mac OS 10.6.7 compatibility

    I have just purchased an iMac and have previously been running Illustrator 10 on my iBook. I tried to install Illustrator 10 on my iMac and when I just after I enter the serial number a box comes up saying that VISE installer has unexpectedly quit an

  • [solved] Cannot launch cinnamon-settings - missing image module

    Hello, When I try to run `cinnamon-settings` it fails with the following message: [orschiro@thinkpad ~]$ cinnamon-settings No module named Image However, I seem to have installed all relevant packages: :: python2-imaging and python2-pillow are in con

  • Enabling the option column in Edit menu of the Program  SAPLSRT2

    hi , kindly suggest any setting is available or role needs to be added to enable the the EDIT->COLUMN->on/Off in the   program SAPLSRT2 of the transaction START_REPORT. Edited by: Shantha Sheela on Oct 31, 2011 12:19 PM