Presentation Server 4.5 - Warning Balloon Display Issue

Hi all,
We're experiencing an issue within one of our apps being hosted via Presentation Server/XenApp 4.5. This issue is only happening to a select users, regardless of which server the app is hosted on. For this app, it's being hosted on 2 servers. Other users using this app on either server are being displayed properly.
Has anyone seen this issue before?
This topic first appeared in the Spiceworks Community

Good evening to every one, I have the next question,I gota DellPower EdgeT710 Server, in this server I have 2 HDwithRaid Level1(00:00 and 00:01) but one of those (00:01) is damage, my concern is about a failure in the main one (Main 00:00-HD 2TB Dell Win ad sv2012R2 and it hassome programs anddatabases).So the question is if I buy a new hard drive with the same specs for replace my damage HD:- Can I Install it to initialize and virtualize for the Raid Level 1 ? is this possible ?-If the above question is possible after this what I have to do for synchronize or obtain an exact copy of my OS andall the information of the main drive to the new one? I have to clone it?OrThis is not possible and I have to replace the hard drive, format, initialize, virtualize, Fix RIAD1,install my OS, programs and restore mydatabases fromback up, copyfiles...

Similar Messages

  • Issue in material master update from presentation server  using BAPI....

    Hi Guru's...
    i am trying to change the material master from presentation server (desktop flat file)
    using BAPI(BAPI_MATERIAL_SAVEDATA) ....
    while executing my program i am getting the message like material had changed...
    but while in mm02 i am un able to fine the updates...
    please find below program logic and correct me if any mistakes....
    thanks in advance...
    *& Report  ZAREPAS36
    REPORT  zarepas36.
    DATA : gs_bapimathead             TYPE  bapimathead,
           gs_clientdata              TYPE  bapi_mara,
           gs_clientdatax             TYPE  bapi_marax.
    TYPES : BEGIN OF gty_itab1,
            matnr(18),
            matkl(9),
            spart(2),
            ntgew(13),
            gewei(3),
            meins(3),
            END OF gty_itab1.
    DATA : gt_itab1 TYPE STANDARD TABLE OF gty_itab1,
           gwa_itab1 TYPE gty_itab1.
    TYPES: BEGIN OF gty_itab2,
           abc(132),
           END OF gty_itab2.
    DATA: gt_itab2 TYPE STANDARD TABLE OF gty_itab2,
          gwa_itab2 TYPE gty_itab2.
    flat file at selection screen
    PARAMETERS: p_files TYPE string.
    CALL METHOD cl_gui_frontend_services=>gui_upload
      EXPORTING
        filename = p_files
        filetype = 'ASC'
      CHANGING
        data_tab = gt_itab2
      EXCEPTIONS
        OTHERS   = 8.
    LOOP AT gt_itab2 INTO gwa_itab2.
      IF gwa_itab2-abc(1) = 'S'.
        gwa_itab1 = gwa_itab2-abc(132).
        APPEND gwa_itab1 TO gt_itab1.
      ENDIF.
    ENDLOOP.
    loop at gt_itab1 into gwa_itab1.
    *Material
    gs_bapimathead-material    = gwa_itab1-matnr.
    *Material details at client data
    *material group.
    gs_clientdata-matl_group = gwa_itab1-matkl.
    gs_clientdatax-matl_group = 'X'.
    *Division
    gs_clientdata-division = gwa_itab1-spart.
    gs_clientdatax-division = 'X'.
    *Net Weight
    gs_clientdata-net_weight = gwa_itab1-ntgew.
    gs_clientdatax-net_weight = 'X'.
    *Unit of Weight
    gs_clientdata-unit_of_wt = gwa_itab1-gewei.
    gs_clientdatax-unit_of_wt = 'X'.
    *Base Unit of Measure
    gs_clientdata-base_uom = gwa_itab1-meins.
    gs_clientdatax-base_uom = 'X'.
    endloop.
    *calling BAPI for making changes in material and saving thru BAPI.
    CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
      EXPORTING
        headdata    = gs_bapimathead
        clientdata  = gs_clientdata
        clientdatax = gs_clientdatax.
    IF sy-subrc NE 0.
      CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
      WRITE: / 'Error occured while changing material'.
    ELSE.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      WRITE: / 'material',gs_bapimathead-material,'changed'.
    ENDIF.

    hi hello Guru's
    i resolved the issuee..
    pleaso go thru the below proram logic for your reference..........
    *& Report  ZAREPAS36
    REPORT  zarepas36.
    DATA : gs_bapimathead             TYPE  bapimathead,
           gs_clientdata              TYPE  bapi_mara,
           gs_clientdatax             TYPE  bapi_marax.
    TYPES : BEGIN OF gty_itab1,
            matnr(18),
            matkl(9),
            spart(2),
            ntgew(13),
            gewei(3),
            meins(3),
            END OF gty_itab1.
    DATA : gt_itab1 TYPE STANDARD TABLE OF gty_itab1,
           gwa_itab1 TYPE gty_itab1.
    TYPES: BEGIN OF gty_itab2,
           abc(132),
           END OF gty_itab2.
    DATA: gt_itab2 TYPE STANDARD TABLE OF gty_itab2,
          gwa_itab2 TYPE gty_itab2.
    DATA:ls_return         TYPE bapiret2,
         lt_bapiret2       TYPE standard table of bapiret2.
    flat file at selection screen
    PARAMETERS: p_files TYPE string.
    CALL METHOD cl_gui_frontend_services=>gui_upload
      EXPORTING
        filename = p_files
        filetype = 'ASC'
      CHANGING
        data_tab = gt_itab2
      EXCEPTIONS
        OTHERS   = 8.
    LOOP AT gt_itab2 INTO gwa_itab2.
      IF gwa_itab2-abc(1) = 'S'.
        gwa_itab1 = gwa_itab2-abc(132).
        APPEND gwa_itab1 TO gt_itab1.
      ENDIF.
    ENDLOOP.
    LOOP AT gt_itab1 INTO gwa_itab1.
    *Material
      gs_bapimathead-material    = gwa_itab1-matnr.
    *Material details at client data
    *material group.
      gs_clientdata-matl_group = gwa_itab1-matkl.
      gs_clientdatax-matl_group = 'X'.
    *Division
      gs_clientdata-division = gwa_itab1-spart.
      gs_clientdatax-division = 'X'.
    *Net Weight
      gs_clientdata-net_weight = gwa_itab1-ntgew.
      gs_clientdatax-net_weight = 'X'.
    *Unit of Weight
      gs_clientdata-unit_of_wt = gwa_itab1-gewei.
      gs_clientdatax-unit_of_wt = 'X'.
    *Base Unit of Measure
      gs_clientdata-base_uom = gwa_itab1-meins.
      gs_clientdatax-base_uom = 'X'.
    ENDLOOP.
    *calling BAPI for making changes in material and saving thru BAPI.
    CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'
      EXPORTING
        headdata    = gs_bapimathead
        clientdata  = gs_clientdata
        clientdatax = gs_clientdatax
      IMPORTING
        return      = ls_return.
    LOOP AT lt_bapiret2 INTO ls_return.
      EXIT.
    ENDLOOP.
    IF sy-subrc = 0.
      CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
      WRITE: / 'Error occured while changing material'.
    ELSE.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      WRITE: / 'material',gs_bapimathead-material,'changed'.
    ENDIF.

  • Presentation Server Issue

    Hi All
    The BI server logs me out when I try to modify existing report without throwing an error.
    --> Steps
    I tried re naming a report using catalog manager i.e
    here i didn't check this option for reference.
    -->Preserve references to old name of this item.
    Now once this is renamed now try to modify the report(renamed one) and then try to save it.
    The presentation server logs me out of the server.
    'Not Logged In
    You are not currently logged in to the Oracle BI Server.
    I have checked the nqserver.log and saw.log files for errors, but no luck
    Can some body help me out with this ?

    Have tried the renaming operations in the Presentation Services Admin Panel.
    Under "Settings" - "Administration"

  • ICR process for Open item recon.(003) - Report Display issue

    Hi All,
    I am facing a problem in the data reconciliation report display.The document number "1212121212" doesn't not exist in the SAP system.But "1212121212" is used as the reference number in the another document which is created in the SAP.
    Legacy data file.
    RCOMP RASSC       DOCNR                ATYPE        RACCT      RTCUR     TSL
    L001     U001     1212121212     C     CCU001     USD     200
    In the data selection process, i am using the following inputs.
    Company code - L001, U001.
    Vendor - CCU001,CCL001.
    Customer - CCU001,CCL001.
    In the data assignment process, i am using the following inputs.
    Company - L001, U001.
    Trading Partner - L001, U001.
    Rule - 300, 400.
    Rule - 300 config.
    200     DOCNR     Document Number     Equal     DOCNR     Document Number
    Rule - 400 config.
    200     DOCNR     Document Number     Equal     REFNR     Reference Number
    In the reconciliation report display (right side bottom page),
    U001->L001->Payables or other way around L001->U001->Receivables (Top Left side).In the either of the two display am able to see two items.
    first item (not expected in the report display, bcoz there is no relevant data present in the legacy file).
    TR.PT PRT.DOC.NO  PR.CUR Amount DGC  Difference  Reference no
    U001 1700036236      USD       500       USD   500          TEST
    The first item exist in the SAP and it is getting selected during the data selection process.
    second item (reconciled and expected in the report display)
    L001     U001     1212121212     C     CCU001     USD     200
    Kindly help.
    Thanks in advance
    Regards,
    Karthik

    Hi Ralph,
    Yes we are having two company codes.your understanding on this point is rite.
    I am using the standard file upload functionality from the presentation server for uploading the non-sap company data.since in the earlier thread i had explained very detail level, so now had made it short.
    The only issue that I am having is that I have just one line item in my upload file and it is from non sap company L001 for trading partner u001. File gets loaded (data selected 1 correctly), Then after all the steps when I am in the last step (reconciliation) I see that line getting reconciled with other line available in U001 with zero difference. That looks good because it is matching as per my rule. but I am also seeing some other open items in U001 that are also getting reconciled with no lines in file with difference equal to their values. They should not show up in the bottom part of reconciliation part at all as they are still open in U001 and should not get reconciled until I put their offsetting lines in upload file from L001. So they should stay at the top right side in simple words I am seeing open items as well in reconciliation portion bottom one even I do not have any lines to reconcile them and they are showing a balance in them as well.
    Thanks in advance.
    Let me know, if you need any more details.
    Regards,
    Karthik

  • XML file download to presentation server.

    Hi Experts,
    Here I have a question regarding file download to desktop.
    I have a report which will generate xml file. Once it is generated i would like to download to desktop.
    I tried with 'GUI_DOWNLOAD', but it is not working. It means the file is downlaoded to presentation server but when i opened it 'Page can't be displayed' message is comming.
    Could you pleas help me to solve this issue.
    Thanks in advance.
    Regards,
    Anil.G

    Hello,
    For processing XMLs always try to make use of the class CL_XML_DOCUMENT.
    You can download the XML stream to a local file using the method of EXPORT_TO_FILE class CL_XML_DOCUMENT.
    Further reading: [/people/uwe.schieferstein/blog/2010/10/17/visualizing-any-kind-of-xml-data-using-class-clxmldocument]
    BR,
    Suhas

  • Retrieving records to presentation server after Background Job.

    Hi Friends,
    Here i am working on a data updation program.I am passing the data in an excel and after updation all the error records are populating into another Excel file whose path also i am providing in the selection scree. This error excel file i am storing in the presentation server(user workstation).
    Its working fine in foreground and creating error file in case of errors successfully.Initially i did not have a background execution option as its communicating presentation server.
    but now user wants it to run in background, so i have given a background radiobutton on selecting this it will SUBMIT the same program again as a job.
    This also working fine but as a batch job could not create the error log file in the front end.
    So now i am thnking of a logic :    I ll write the error log records in the Application server.  Then i ll check whether the file has written completely in the application server by giving some delay (in 15 seconds it will check the appl server if the dataset has been created successfully).
    Eg ;
    Code for delay setting that i would like to know from you .
    OPEN DATASET ERRLOG........
    If sy-subrc EQ 0.
    Loop.
    Put the values into an internal table.
    ENDLOOP.
    Using GUI_DOWNLOAD download the content of int table to Excel file.
    As of now i am having this logic to go further.
    Already started R&D .
    Would like to know from you how far this will be feasible and the way to set the delay to read the Error from appl server?
    If you have any other idea please let me know.
    Ask me on any clariffication on this issue.
    Thanks & Regards,
    SAM.

    Hi!
    You can't see a presentation server while your program is running in the background. It is, because in this case there is no presentation, no user-display for the results. So all GUI related functions are unreachable, downloading also.
    You might try to send the log, in email, or like a sapoffice mail.
    You might try to set up a directory on a shared file server, and put the file there into user specified directories.
    But forget downloading into presentation server.
    Regards
    Tamá

  • Cannot start the presentation server

    Linux OS
    OBIEE 11.1.1.5.0
    Weblogic Server 10.3.5.0
    OBIEE gurus,
    I cannot start the presentation server via EM or via the command line ./opmnctl startproc ias-component=coreapplication_obips1.
    I get the error in the comman line:
    opmnctl startproc: starting opmn managed processes...
    ================================================================================
    opmn id=****:9501
        0 of 1 processes started.
    ias-instance id=instance1
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
        coreapplication_obips1/OracleBIPresentationServicesComponent/coreapplication_obips1/
    Error
    --> Process (index=1,uid=2107403675,pid=27813)
        failed to start a managed process after the maximum retry limit
        Log:
        $ORACLE_INSTANCE/diagnostics/logs/OracleBIPresentationServicesComponent/coreapplication_obips1/console~coreapplication_obips1~1.log
    I have checked the log above which contains:
    13/07/18 15:27:07 Start process
    13/07/18 15:27:14 Start process
    13/07/18 15:58:53 Start process
    13/07/18 15:59:00 Start process
    Not very helpful!
    I have checked the OPMN log at $ORACLE_INSTANCE/diagnostics/logs/OPMN/opmn/opmn.log which has the following errors:
    [2013-07-18T15:58:54][opmn][TRACE:1][][OPMN][code:libopmncustom]Process Ping Failed: coreapplication_obips1~OracleBIPresentationServicesComponent~coreapplication_obips1~1 (2107403675:27799) [No addresses matched the properties for the request.]
    [2013-07-18T15:58:54][opmn][TRACE:1][][OPMN][code:libopmncustom]Process Ping Failed: coreapplication_obips1~OracleBIPresentationServicesComponent~coreapplication_obips1~1 (2107403675:27799)
    [2013-07-18T15:58:54][opmn][TRACE:1][][OPMN][code:libopmncustom]Ping failed in Ready callback for proc:2107403675
    [2013-07-18T15:58:56][opmn][TRACE:1][][OPMN][code:libopmncustom]Process Ping Failed: coreapplication_obips1~OracleBIPresentationServicesComponent~coreapplication_obips1~1 (2107403675:27799) [No addresses matched the properties for the request.]
    [2013-07-18T15:58:56][opmn][TRACE:1][][OPMN][code:libopmncustom]Process Ping Failed: coreapplication_obips1~OracleBIPresentationServicesComponent~coreapplication_obips1~1 (2107403675:27799)
    [2013-07-18T15:58:56][opmn][TRACE:1][][OPMN][code:libopmncustom]Ping failed in Ready callback for proc:2107403675
    [2013-07-18T15:58:58][opmn][TRACE:1][][OPMN][code:libopmncustom]Process Ping Failed: coreapplication_obips1~OracleBIPresentationServicesComponent~coreapplication_obips1~1 (2107403675:27799) [No addresses matched the properties for the request.]
    I have tried refreshing the user GUIDS, loading another rpd file in through EM that I know works fine in another environment, cleaning the permissions in the web catalog but all so dar have not resulted in me being able to start the presentation server.
    I would welcome any feedback on this as it is driving me crazy!
    Thanks in anticipation.

    Hi ,
    I tried it but no use. That thread had some errors displayed in it. But i get just a warning.
    Pls help
    Type: Information
    Severity: 30
    Time: Tue Apr 06 10:39:41 2010
    File: project/sawserver/sawserver.cpp Line: 604
    Properties: ThreadID-1532
    Location:
         saw.sawserver
         saw.sawserver.terminatesawserver
         saw.threads
    Oracle BI Presentation Services are shutting down.
    Type: Information
    Severity: 30
    Time: Tue Apr 06 10:39:43 2010
    File: project/sawserver/sawserver.cpp Line: 386
    Properties: ThreadID-968
    Location:
         saw.sawserver
         saw.sawserver.initializesawserver
         saw.threads
    Oracle BI Presentation Services 10.1.3.4.1 (Build 090414.1900) are starting up.
    Type: Warning
    Severity: 30
    Time: Tue Apr 06 10:39:43 2010
    File: project/websubsystems/webextensionbase.cpp Line: 380
    Properties: ThreadID-968
    Location:
         saw.webextensionbase.init.workstationCheck
         saw.webextensionbase.init
         saw.sawserver
         saw.sawserver.initializesawserver
         saw.threads
    WARNING: The Oracle BI Presentation Server is running on a workstation class machine (Windows 2000 Workstation, Windows XP Professional, etc.). Number of concurrent users may be severely limited by the operating system.
    Type: Information
    Severity: 30
    Time: Tue Apr 06 10:39:43 2010
    File: project/sawserver/sawserver.cpp Line: 459
    Properties: ThreadID-968
    Location:
         saw.sawserver
         saw.sawserver.initializesawserver
         saw.threads
    Oracle BI Presentation Services have started successfully.
    Thanks
    Jaan

  • Extentrix Unleashes the Power of Citrix Presentation Server

    Extentrix Web Services 2.0 – Application Edition Enhances Access to Citrix Published Applications.
    RAK, UAE. -- 10/10/2007 -- -- Extentrix Systems, FZE a leading software development company specializing in infrastructure solutions for Microsoft Terminal Services and Citrix application delivery products, announced the release of the Extentrix Web Services 2.0 – Application Edition.
    Extentrix Web Services 2.0 – Application Edition provides an extensive set of web services APIs that allows developers to integrate Citrix published applications into their products and portals. It enables users to access the Citrix application delivery platform by invoking open standard web services APIs.
    It works closely with Extentrix Web Services 1.0 -Management Edition which gives developers unlimited power to manage Citrix Presentation Servers Farms through standard protocols.
    Extentrix Web Services 2.0 – Application Edition fully supports the latest Citrix Web Interface 4.6 protocol, packaged with Citrix Presentation Server 4.5 and Web Interface 4.6 and supports all features added in Feature Pack 1 (FP1) for Windows Server 2003.
    Extentrix Web Services APIs communicate directly with the Citrix XML service which enables it to deliver enhanced performance over the previous version. The APIs provide similar functionality as those provided by Citrix Web Interface, but allow for greater integration with ISV and custom applications.
    “Building on the fundamental open Web services standards, Extentrix has developed a great product that unlocks Citrix Application Delivery platform” said Matt Lull, Director of Global SAP Alliance. “Citrix is working Extentrix to utilize this great technology by developing new ways for SAP customers to access Citrix Published applications”
    “Extentrix has come up with innovative ways to unleash the power of Citrix Presentation Server and Extentrix Web Services 2.0 – Application Edition is the fruit of our extensive effort” said Alaaeddin Jallad, Extentrix President and Founder “We are very encouraged by the success of our first release of Extentrix Web Services, which lead us to work on a more advanced version to fully implement the latest Citrix Web Interface 4.6 protocol”
    “Building on open Web services standards, Extentrix has developed a fascinating product that extends Citrix’s Application Delivery platform” said Matt Lull, Director, Global SAP Alliance. “Citrix is working with Extentrix to demonstrate how SAP customers can seamlessly integrate their legacy applications with their NetWeaver Portal and composite applications”
    Additionally Extentrix’s Widget 2.0 with Citrix Presentation Server supports the new released Web Services for easier access to applications and is available for download at http://www.extentrix.com/CPAW.
    A whitepaper outlining how to modify the Web Interface 4.6 to use Extentrix web services can be found at resources’ page.
    Extentrix Web Services 2.0 – Application Edition for Citrix Presentation Server provides the following features:
    ● Enhanced Performance
    Performance is enhanced by connecting directly to Citrix XML service rather than using intermediate hubs like PNAgent site.
    ● Extra APIs
    Provide an enhanced list of APIs which grant functionality on par with Citrix Web Interface 4.6. New APIs include capabilities that help developers validate users’ credentials, get customizable information about published applications, launch them and more.
    ● Enhanced Error Handling Mechanism
    Say goodbye for unknown error exceptions. Errors returned back from the server are fully reported detailing the reasons. Implementing an effective error handling strategy ensures solving many issues like errors do no go undetected; applications do not terminate abruptly without warning or explanation, application stability is restored after an error, etc...
    ● Platform Independent and Simple to Integrate
    Since it is based on open standard protocols; it is simple to integrate it with any application written on any programming language, running on any platform.
    ● Simple Management Console
    Comes with an easy to manage Microsoft MMC snap-in console which helps users create new web services, edit existing ones, and browse & manage their web services. It functions as one management tool that is provided for both Extentrix Web Services Application and Management editions; it simplifies management mechanisms and enhances administration of Extentrix Products.
    A White Paper about Extentrix Web Services 2.0 – Application Edition is available on the product’s page.
    Extentrix Web Services 2.0 – Application Edition is available for download at Extentrix Site. Extentrix also provides developers with a test drive as well as examples to help them experience the power of Extentrix Web Services 2.0 – Application Edition.
    Extentrix has created a forum for the newly released Web services on its site; Extentrix Forum to encourage customers to share their experiences and problems for better support. Extentrix support will monitor the forum and answer developers’ issues.
    About Extentrix
    Founded in 2006, Extentrix Systems is a leading software development company specializing in virtualization and developing software solutions for Microsoft and Citrix platforms. Established by former software engineers at Citrix, Extentrix have developed access solutions that simplify and speed users’ access to Microsoft Terminal Services and Citrix Application Delivery platforms.
    Extentrix Systems is privately held with company headquarters in RAK, UAE. For more information, please visit the company’s Web site at www.extentrix.com or call +971-4-211-5490.
    Citrix® and Citrix Presentation Server™ Client are trademarks of Citrix Systems, Inc. and/or one or more of its subsidiaries, and may be registered in the U.S. Patent and Trademark Office and in other countries.

    Hi Nicholas (is it?)
    I'm afraid I never completed the testing, a long story but the client thought allowing Citrix access over the Internet to non corporate machines was too unsecure.
    I'm curious though as to why your set up does work even if it is for a short time.
    I'm enabled Smart tunneling and this did provide the correct IP address of the Citrix Farm head, instead of the ASA acting as a proxy, you might want to try that
    Sorry I couldn't help more
    Cheers Tony

  • How to exreact multiple pdf files from a zip files from application server to presentation server

    Hello exprts,
    I am passing one pdf file and one text file to zip file in apllication server through my custom program and then downloading it using standard function module to my desktop. its working fine. Then I added  another pdf file to my zip file. But only single pdf file is getting download . So can you please help me regardiong this issue? 

    Dear Experts ,
    I finded out the way to extrcat pdf files in presentation server. But now my problem is that I am not able to add multiple pdf files in a zip file. When I am adding new pdf file then older one is not coming in read data set. So please kindly tell me how can I add multiple pdf file in my zip file and again I can get all the pdf files from here.

  • Windows 7 or Windows Server 2008 R2 domain join displays error "Changing the Primary Domain DNS name of this computer to "" failed...."

    Hi,
    Windows 7 or Windows Server 2008 R2 domain join displays error "Changing the Primary Domain DNS name of this computer to "" failed...."
    DC:windows Server 2008 R2
    Domain functional level:Windows Server 2003
    When Winxp join domain, have no this error message.
    I checked http://support.microsoft.com/kb/2018583?wa=wsignin1.0 does't work.
    There have 3 suggestion in this article:
    1.The "Disable NetBIOS over TCP/IP" checkbox has been disabled in the IPv4 properties of the computer being joined.
    Doesnt's work.
    2.Connectivity over UDP port 137 is blocked between client and the helper DC servicing the join operation in the target domain.
    On my DC, I run netstat -an, reslut as below:
     UDP    192.168.20.3:137       *:*
    3.The TCP/IPv4 protocol has been disabled so that the client being joined or the DC in the destination domain targeted by the LDAP BIND is running TCP/IPv6 only.
    We are not using IPV6.
    This server recently updated from Windows Server 2003 to Windows Server 2008 R2. Before upgrade, when Win7 and Win2008 join this domain, also have the same error message.
    Please help to check this issue.
    Thank you very much.
    BR
    Guo YingHui 

    Hi Guo Ying,
    I have faced this critical error which makes over-writes the host names in the domain when you join.
    For example: Already you had a host name called as PC.domain.com in the domain.com Domain.
    When you try to add the another host name called as PC in the domain.com Domain, it doesn't give you the duplicate name error on the network it does over-write the existing host name called as PC.domain.com & it will add the new host name into the domain.
    Host name which got over-written will get removed from the domain. I faced this issue in my project. My DPM host name got removed from the Domain & new host name got joined into the domain which halted my backups for one day.
    Final Resolution is as follows:
    You need to start the dns console on the DC & drop down the domain name.
    Select the _msdcs when you click on _msdcs it will show the Name Server's list on the right hand side.
    You need to add the Domain Naming Master under the _msdcs or add all the domain controllers which you had.
    After you add the Name server's try joining the PC OR Laptop to the domain which is successfully joins it.
    Regards
    Anand S
    Thanks & Regards Anand Sunka MCSA+CCNA+MCTS

  • How to search file from presentation server

    Hi All,
    In a ABAP program i want to display a dialog box which will help me to find out any file from presentation server.That dialog box should be display after clicking on parameter on selection screen.Parameter is a simple variable,not a field from any internal table. so i can not use function module F4IF_INT_TABLE_VALUE_REQUEST
    Please suggest me any function module which will satisfy my requirement.
    Thank you.

    Hi,
    Check this example..
    DATA: T_FILETABLE TYPE FILETABLE.
    DATA: RC TYPE I.
    DATA: USER_ACTION TYPE I.
    CALL METHOD cl_gui_frontend_services=>file_open_dialog
      CHANGING
        file_table              = T_FILETABLE
        rc                      = RC
        USER_ACTION             = USER_ACTION
      EXCEPTIONS
        FILE_OPEN_DIALOG_FAILED = 1
        CNTL_ERROR              = 2
        ERROR_NO_GUI            = 3
        others                  = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Thanks,
    Naren

  • [SOLVED] "Server is already active for display 0" in Terminals

    So far, my searches haven't yielded any solutions to this.
    When my system starts, it boots to a console login prompt (no gdm, etc...) and I have 'startx' in my .bashrc to start my desktop. The desktop starts and functions fine (or so it seems).
    Problem 1: Anytime I open a Terminal window (or open new tabs inside a Terminal) I am greeted with the following:
    Fatal server error:
    Server is already active for display 0
        If this server is no longer running, remove /tmp/.X0-lock
        and start again.
    Please consult the The X.Org Foundation support
         at http://wiki.x.org
    for help.
    xinit:  Server error.
    Sometimes the last line is:
    xinit:  unexpected signal 2
    Usually I just ^C to get a working prompt and go about my business, but this is getting really annoying.
    Problem 2: I use Guake terminal and have it set to autostart in my .bashrc, but it doesn't work until I manually open a Terminal window. And if I close that (manually opened) window, Guake stops working. If I open another one manually, it works again...etc. I have a hunch this is related to the first problem.
    Any nudges in the right direction would be appreciated.
    My environment:
    DE = Xfce4
    Kernel = 2.6.31-ARCH
    Xorg = xorg-server 1.7.3.901-1
    Video = xf86-video-ati 6.12.99.git20091014-1
    /etc/X11/xorg.conf:
    Section "ServerFlags"
    Option "AutoAddDevices" "True"
    Endsection
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "glx"
    Load "extmod"
    Load "dri2"
    Load "dbe"
    Load "dri"
    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"
    #DisplaySize 340 190 # mm
    Identifier "Monitor0"
    VendorName "AUO"
    ModelName "10ec"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "SWcursor" # [<bool>]
    #Option "Dac6Bit" # [<bool>]
    #Option "Dac8Bit" # [<bool>]
    #Option "BusType" # [<str>]
    #Option "CPPIOMode" # [<bool>]
    #Option "CPusecTimeout" # <i>
    #Option "AGPMode" # <i>
    #Option "AGPFastWrite" # [<bool>]
    #Option "AGPSize" # <i>
    #Option "GARTSize" # <i>
    #Option "RingSize" # <i>
    #Option "BufferSize" # <i>
    #Option "EnableDepthMoves" # [<bool>]
    #Option "EnablePageFlip" # [<bool>]
    #Option "NoBackBuffer" # [<bool>]
    #Option "DMAForXv" # [<bool>]
    #Option "FBTexPercent" # <i>
    #Option "DepthBits" # <i>
    #Option "PCIAPERSize" # <i>
    #Option "AccelDFS" # [<bool>]
    #Option "IgnoreEDID" # [<bool>]
    #Option "CustomEDID" # [<str>]
    #Option "DisplayPriority" # [<str>]
    #Option "PanelSize" # [<str>]
    #Option "ForceMinDotClock" # <freq>
    #Option "ColorTiling" # [<bool>]
    #Option "VideoKey" # <i>
    #Option "RageTheatreCrystal" # <i>
    #Option "RageTheatreTunerPort" # <i>
    #Option "RageTheatreCompositePort" # <i>
    #Option "RageTheatreSVideoPort" # <i>
    #Option "TunerType" # <i>
    #Option "RageTheatreMicrocPath" # <str>
    #Option "RageTheatreMicrocType" # <str>
    #Option "ScalerWidth" # <i>
    #Option "RenderAccel" # [<bool>]
    #Option "SubPixelOrder" # [<str>]
    #Option "ShowCache" # [<bool>]
    #Option "ClockGating" # [<bool>]
    #Option "VGAAccess" # [<bool>]
    #Option "ReverseDDC" # [<bool>]
    #Option "LVDSProbePLL" # [<bool>]
    #Option "AccelMethod" # <str>
    #Option "DRI" "True" # [<bool>]
    #Option "ConnectorTable" # <str>
    #Option "DefaultConnectorTable" # [<bool>]
    #Option "DefaultTMDSPLL" # [<bool>]
    #Option "TVDACLoadDetect" # [<bool>]
    #Option "ForceTVOut" # [<bool>]
    #Option "TVStandard" # <str>
    #Option "IgnoreLidStatus" # [<bool>]
    #Option "DefaultTVDACAdj" # [<bool>]
    #Option "Int10" # [<bool>]
    #Option "EXAVSync" # [<bool>]
    #Option "ATOMTVOut" # [<bool>]
    #Option "R4xxATOM" # [<bool>]
    #Option "ForceLowPowerMode" # [<bool>]
    #Option "DynamicPM" # [<bool>]
    Identifier "Card0"
    Driver "radeon"
    VendorName "ATI Technologies Inc"
    BoardName "RS780M/RS780MN [Radeon HD 3200 Graphics]"
    BusID "PCI:1:5:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    /var/log/Xorg.0.log (filtered through grep for (WW) and (EE)):
    (EE) RADEON(0): [dri] RADEONDRIGetVersion failed to open the DRM
    (EE) RADEON(0): Acceleration initialization failed
    (WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    (WW) Disabling Mouse0
    (WW) Disabling Keyboard0
    (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
    (WW) RADEON(0): LVDS Info:
    (WW) RADEON(0): Direct rendering disabled
    ~/.xsession-errors:
    /etc/gdm/Xsession: Beginning session setup...
    /etc/gdm/Xsession: ssh-agent not found!
    /etc/gdm/Xsession: Setup done, will execute: gnome-session
    gnome-session[28618]: WARNING: Could not parse desktop file /home/jon/.config/autostart/xfce4-tips-autostart.desktop: Key file does not have key 'Name'
    gnome-session[28618]: WARNING: could not read /home/jon/.config/autostart/xfce4-tips-autostart.desktop
    gnome-session[28618]: WARNING: Could not parse desktop file /home/jon/.config/autostart/xfce4-settings-helper-autostart.desktop: Key file does not have key 'Name'
    gnome-session[28618]: WARNING: could not read /home/jon/.config/autostart/xfce4-settings-helper-autostart.desktop
    gnome-session[28618]: EggSMClient-WARNING: Invalid Version string '0.9.4' in /home/jon/.config/autostart/wicd.desktop
    gnome-session[28618]: WARNING: Unable to find provider 'metacity' of required component 'windowmanager'
    gnome-session[28618]: WARNING: Unable to find provider 'nautilus' of required component 'filemanager'
    GNOME_KEYRING_SOCKET=/tmp/keyring-6lpdg3/socket
    SSH_AUTH_SOCK=/tmp/keyring-6lpdg3/socket.ssh
    (gnome-panel:28681): Gtk-CRITICAL **: gtk_accelerator_parse: assertion `accelerator != NULL' failed
    ** (gnome-panel:28681): WARNING **: Unable to parse mouse modifier '(null)'
    tput: No value for $TERM and no -T specified
    tput: No value for $TERM and no -T specified
    tput: No value for $TERM and no -T specified
    Can't locate XML/Parser.pm in @INC (@INC contains: /usr/lib/perl5/site_perl/5.10.1 /usr/share/perl5/site_perl/5.10.1 /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/core_perl /usr/share/perl5/core_perl /usr/lib/perl5/current /usr/lib/perl5/site_perl/current .) at /usr/lib/xfce4/xfconf-migration/xfconf-migration-4.6.pl line 20.
    BEGIN failed--compilation aborted at /usr/lib/xfce4/xfconf-migration/xfconf-migration-4.6.pl line 20.
    (polkit-gnome-authentication-agent-1:28707): GLib-GObject-WARNING **: cannot register existing type `_PolkitError'
    (polkit-gnome-authentication-agent-1:28707): GLib-CRITICAL **: g_once_init_leave: assertion `initialization_value != 0' failed
    tput: No value for $TERM and no -T specified
    tput: No value for $TERM and no -T specified
    tput: No value for $TERM and no -T specified
    Unable to open desktop file epiphany.desktop for panel launcher
    Unable to open desktop file evolution.desktop for panel launcher
    /usr/lib/python2.6/site-packages/wicd/gui.py:151: GtkWarning: gtk_toolbar_set_icon_size: assertion `icon_size != GTK_ICON_SIZE_INVALID' failed
    self.wTree = gtk.glade.XML(gladefile)
    ERROR:dbus.proxies:Introspect error on :1.70:/org/wicd/daemon: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Message did not receive a reply (timeout by message bus)
    ERROR:dbus.proxies:Introspect error on :1.70:/org/wicd/daemon: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Message did not receive a reply (timeout by message bus)
    ERROR:dbus.proxies:Introspect error on :1.70:/org/wicd/daemon: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Message did not receive a reply (timeout by message bus)
    Importing pynotify failed, notifications disabled.
    Has notifications support False
    Loading...
    Connecting to daemon...
    Can't connect to the daemon, trying to start it automatically...
    Connected.
    warning: ignoring exception org.freedesktop.DBus.Error.ServiceUnknown: The name :1.70 was not provided by any .service files
    warning: ignoring exception org.freedesktop.DBus.Error.ServiceUnknown: The name :1.70 was not provided by any .service files
    Importing pynotify failed, notifications disabled.
    Has notifications support False
    Loading...
    Connecting to daemon...
    Can't connect to the daemon, trying to start it automatically...
    Connected.
    warning: ignoring exception org.freedesktop.DBus.Error.ServiceUnknown: The name :1.70 was not provided by any .service files
    (firefox:30931): GLib-WARNING **: g_set_prgname() called multiple times
    Registering '@mozilla.org/module-loader/python;1' (libpyloader.so)
    Registering '@mozilla.org/network/protocol/about;1?what=python' (pyabout.py)
    (Terminal:32576): Terminal-WARNING **: Unable to load terminal preferences.
    (firefox:1968): GLib-WARNING **: g_set_prgname() called multiple times
    (Terminal:5816): Terminal-WARNING **: Unable to load terminal preferences.
    (Terminal:9027): Terminal-WARNING **: Unable to load terminal preferences.
    (Terminal:9027): Gtk-CRITICAL **: gtk_widget_realize: assertion `GTK_WIDGET_ANCHORED (widget) || GTK_IS_INVISIBLE (widget)' failed
    (Terminal:9027): Gtk-CRITICAL **: gtk_widget_realize: assertion `GTK_WIDGET_ANCHORED (widget) || GTK_IS_INVISIBLE (widget)' failed
    (Terminal:9027): Gdk-CRITICAL **: gdk_drawable_get_screen: assertion `GDK_IS_DRAWABLE (drawable)' failed
    polkit-gnome-authentication-agent-1: Fatal IO error 11 (Resource temporarily unavailable) on X server :1.0.
    firefox: Fatal IO error 2 (No such file or directory) on X server :1.0.
    Thanks,
    Munky
    Last edited by munkyeetr (2010-01-13 20:26:51)

    In bashrc try something like
    [ -z "$DISPLAY" ] && startx && {sleep 5; DISPLAY=0:0 setsid Guake; }

  • Urgent: loading a pdf file  to presentation server at the end of the day

    hi
    I got a requirement like smartform will be converted into pdf file and it will loaded into application server, at the End of the day all the pdf files which are generated on that day will be loaded to in file at presentation server ,
    so please help me out regarding
    Thanks in advance
    regards
    krishna

    Hi Chris,
    this problems are in fact new to me, but I'm just starting on a new workplace where they have these issues since forever.
    I'm hoping that new point of view may find a solution to it ;-)
    I'll try to watch the traffic - it could be related to the particular network we have. Will ask and post some more info tomorrow.
    Thank you!
    /best
    /j

  • Download File from BSP to presentation server.

    Hi all,
    We have a requirement to Download and Upload a file in Standard BSP application HRECM_BDG_MAINT.
    Flow of the logic is : 
    1.  On click on Download button.  A Save file dialog should come and then user will select the path for saving the file.  Then the internal table sholud be save in excel on the presentation server.
    2.  User will modify the excel file.
    3   on click of upload button again the open dialog should come and then user will select the excel file from the presentation server and then file will be uploaded into the BSP application.
    Note : We are very much clear with the functionality.  Over main concern is to get the file dialog popup on the BSP application.
    Changes in the layout (Download & Upload Button) has been created.
    Actually HRECM_BDG_MAINT call another BSP application HR_ECM_BDG_SRV02.
    Controller class of of page budget_details.bsp (HR_ECM_BDG_SRV02) is CL_HRECM00_BSP_BDG_DETAILS.
    All the button displayed in this BSP page are created at runtime in class (CL_HRECM00_BSP_BDG_DETAILS) in method DO_REQUEST.  We have used enhancement spot and added two more buttons (Download and Upload).
    Now our main problem is to get file dialog popup on the BSP screen when we click on that button.
    Kindly help
    Ankit Gupta

    Hello
    I have a BSP that shows all the client data and generate a file when a boton is push.
    What I need to know is; how can i made that the system generate a file for each client without having the internet explorer pup-up for download each time, furthermore, I want that these files to be located at the local unit C:\.
    The code i have is as follow:
    DATA: fichero TYPE string.
      CONCATENATE 'F' vnomfich '.xls' INTO vnomfich.
    some Browsers have caching problems when loading Excel format
      response->delete_header_field( name = if_http_header_fields=>cache_control ).
      response->delete_header_field( name = if_http_header_fields=>expires ).
      response->delete_header_field( name = if_http_header_fields=>pragma ).
    start Excel viewer either in the Browser or as a separate window
      response->set_header_field( name  = if_http_header_fields=>content_type
                                  value = 'application/vnd.ms-excel' ).
      CONCATENATE ' attachment; filename= ' vnomfich INTO fichero.
      response->set_header_field( name  = 'Content-Disposition'
                                  value = fichero ).
    finally display Excel format in Browser
      response->set_cdata( data = l_output ).
    do not process Layout, response has been rendered
      navigation->response_complete( ).

  • When I build a web photo gallery and upload to my server, the web page as displayed by browsers is blank.  With preview, insid Bridge, the slideshow works fine.

    I have been building web photo galleries with Bridge for a few years and everything worked fine until my latest two builds.  Now when I build a gallery and upload the folder to my web server, it's not getting displayed by browsers.  When you hit the index file of the gallery, the page is blank with no written errors.
    When I use the "preview in browser" feature in Bridge, the slide show works as expected.
    I'm creating the gallery and saving to my local hard drive.  When that's complete, I ftp the entire folder to the server and then point to the index.htm file.  I've been doing this for two years with good results.  All of a sudden, I can't get a gallery to display on-line.

    I am experiencing the exact same problem; the gallery displays and functions perfectly when viewed locally but not when uploaded to the web server. I am wondering if it is also a Dreamweaver issue as each time I upload I receive an error report e.g. some files did not upload et cetera.

Maybe you are looking for

  • Blind cRIO project upgrade: 8.2.1 to 2011 problems

    Hello, I have been working on an old cRIO project of ours, a cRIO project originially written in 8.0, and targeted to a cRIO-9004 on a 9104 chassis.  It contains several network-published shared variables to talk to a host VI, so I was interesting in

  • For wi fi not working...

    sir i have show the massage in the i phone3gs 32gb cannot open page safari could not open the page because the server stopped responding.

  • Photoshop CS5 does not function in OS Mavericks 10.9

    Please help me I am not a technical minded guy .. just a user ... Thanks

  • Where did "Line Out" go?

    I have no sound on my MacBook. The volume keys don't work at all, and there is no sound. When I go into System Prefs-->Sound, for my audio out, the only option is "Digital Out". For audio in, I see "Line In" and "Digital In". In other words, my compu

  • HT1338 iMac with an OS X 10.5.8 version from 2009.

    I am try to upgrade it but so far I have not been able and it says it can not be done. For that reason I am getting problems with some programmes like Chrome, Flash and Firefox. Can I do anything about?