In ESS we are getting SAP GUI screens instead of web screens??

Hi,
How the problem has come up---
We have transferred the production data and OS into test server and changed the test server IP address to production IP address after shutting down the production server.
Which means that now ITS/ESS will be pointing to the new copied server. After this when this new server was shutdown and old production was started the ESS/ITS points back to the original production server.
Now the problem is that When we execute any transaction from ESS we are getting SAP GUI screen instead of Web screen.
Can somebody tell me why this is happening.
Any pointers to this will be highly appreciated.
Thanks and Regards,
Varun

First off...what version are you on (backend)? Also, how did you "switch" your ITS instance?A little more info and we will solve this for ya. =)

Similar Messages

  • Make BP Contact Sap GUI fields Available in Web UI

    Good day,
    I would like to make two fields available in the WebUI that are displayed in the SAP GUI in transaction BP
    The two fields exist in the BP - Contact
    When accessing txn BP, select a customer, select Relationships, double click "Has contact Person" under Relationship to BP.
    "Contact person relationship display; General Data" displays. On tab for General data we see the following screen -
    If I select one of the two highlighted fields, it has search help. For e.g. clicking on the search help for Function displays the following -
    In the Web UI, neither of these two fields are available.
    There are two fields available for Department and Function, but I think they are linked to the two fields under "Address Data" as seen in the first image. These are input fields in the GUI side and on the WebUI side.
    I can find 3 available fields for Function and two for Department in the WebUI.
    All of these are input fields.
    I think it is to be noted that we are working with an ECC backend.
    The requirement is that when the customer is created a Function and Dperatment are entered by search help and not an input field or free texts.
    This will enforce standardisation for functions and departments of contact persons.
    How do I make these two fields highlighted in the first image available in the WebUI?
    Thanks in advance for your help
    Kendal

    Hi Kendal,
    These are available in 'Contacts' AB in Account OVP. You are right in saying that there are many fields with name 'Function' and 'Department'.
    Click on 'Show Configurable Areas' in Account OVP, and then select 'Contacts' AB.
    In the resulting screen, select 'Show Technical Details'. Select 'Structure.Function' and 'Structure.Department' from 'Available Fields' and move them to 'Displayed Fields'.
    The fields already present in 'Displayed Fields' are Structure.FunctionName and Structure.DepartmentName, you can mark them 'hidden' to avoid confusion.
    Once you move the 'Structure.Department' and 'Structure.Function' fields, the relevant values can be seen in the Assignment Block as shown below:
    These fields are displayed as value help and will take values which you maintain under SPRO - SAP xRPM - Base System Interfaces - SAP HCM - SAP xRPM System Customizing for SAP HCM - SAP Business Partner - Business Partner Relationships - Contact Person - Define Functions
    Best Regards,
    MG

  • Search Help works in SAP GUI but not in WEB UI - CRM

    Hi,
    I have created a Search Help for creaing Complaints w/ref to Invoice and in the search help i have used standard data elements, so that it brings the standard Search Helps for the fields in the actual Search Help. I get the F4 values in the standard screen (CRMD_ORDER) in the SAP GUI, however i dont see the Searh Help values in WEB UI.
    Is there anything else i need to do for me to get the F4 option in the Web UI as well?
    Thanks
    Sri

    Hi sri tayi ,
    Can you just tell how you solve this problem ? I am also facing same problem . So , please kindly help for same.....
    Thank You ,

  • Executing SAP GUI Script From a Web Page

    I have an issue when trying to execute some javascript (sap gui script) from a webpage. 
    When the javascript is executed I get the message:
    automation server unable to create object. 
    However, this exact same javascript when placed in a text file and double-clicked executes just fine through the windows scripting host. 
    Does anyone have an example of gui script code executing from a webpage?  Or any ideas on why it isn't working from the webpage?  Both scenarios should be executing the code on the local machine through WSH.
    Below is the javascript as well as the webpage executing the javascript:
    SAPGUI SCRIPT
    if (typeof(application) == "undefined")
       sapgui      = GetObject("SAPGUI");
       application = sapgui.GetScriptingEngine;
    if (typeof(connection) == "undefined")
       connection = application.children(0);
    if (typeof(session) == "undefined")
       session = connection.children(0);
    if (typeof(WScript) != "undefined")
       WScript.connectObject(session, "on");
       WScript.connectObject(application, "on");
    session.findById("wnd[0]").maximize();
    session.findById("wnd[0]/tbar[0]/okcd").text = "/nzsd1067";
    session.findById("wnd[0]").sendVKey(0);
    session.findById("wnd[0]/usr/ctxtVBAK-KUNNR").text = "6343";
    session.findById("wnd[0]").sendVKey(0);
    WEBPAGE
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
         <head>
              <title></title>
              <meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
              <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
              <! INPUT PARAMETER SETTINGS:
              To Push data to Siebel or SAP the appropriate
              field below must be set = TRUE.
              Pop_SAP
              Pop_Siebel
              SIEBEL INPUT PARAMETER: When
              Pushing data to a Siebel screen the Query_Type should be set based on the type
              of lookup that is requested.
              Query_Type = 'SAP' -presents a screen based on a customer SAP Id.
              Query_Type = 'SR' -presents a screen based on a Service Request.
              Query_Type = '' or null -presents a search screen to locate the proper contact in Siebel
              APP_SAP_ID -SAP customer Id
              APP_SR_NUM -Siebel Service Request Number
              >
    <SCRIPT LANGUAGE="VBScript">
    Sub LoadContact()
            'Siebel Application Object
            Dim siebApp 'As SIEBELHTMLLib.ISiebelHTMLApplication
            Dim siebSvcs 'As SIEBELHTMLLib.ISiebelService
            Dim siebOutputPropSet 'As SIEBELHTMLLib.ISiebelPropertySet
            Dim siebInputPropSet 'As SIEBELHTMLLib.ISiebelPropertySet
            Dim bool 'As Boolean
            Dim errCode 'As Integer
            Dim errText 'As String
            Dim QueryType 'As String
         Dim PopSAP 'As String
         PopSiebel = "TRUE"
         If PopSiebel = "TRUE" Then
              QueryType = "SAP"
              If QueryType = "null" Then
                   QueryType = ""
              End If
                 'Create The SiebelHTML Object      
                 set siebApp = CreateObject("SiebelHTML.SiebelHTMLApplication.1")  
                 If Not siebApp Is Nothing Then
                     'Create A New Property Set
                     set siebInputPropSet = siebApp.NewPropertySet
                     set siebOutputPropSet = siebApp.NewPropertySet
                     If Not siebInputPropSet Is Nothing Then
                         siebInputPropSet.SetProperty "ANI", "9738986011"
                         siebInputPropSet.SetProperty "SAP_ID", "0000516616"
                         siebInputPropSet.SetProperty "SR_NUM", "null"
                         siebInputPropSet.SetProperty "Interaction_ID", "168608840053"
                         siebInputPropSet.SetProperty "Query_Type", QueryType
                     Else
                         errCode = siebApp.GetLastErrCode
                         errText = siebApp.GetLastErrText
                             MsgBox "Could not Create Siebel Property Set: " & errCode & "::" & errText
                     End If
                     'Get A Siebel Service
                     set siebSvcs = siebApp.GetService ("TAWBS")
                     If Not siebSvcs Is Nothing Then
                         siebSvcs.InvokeMethod "TAWPresentAccount", siebInputPropSet, siebOutputPropSet
                  Else
                         errCode = siebApp.GetLastErrCode
                         errText = siebApp.GetLastErrText
                   MsgBox "Could not Get Siebel Service: " & errCode & "::" & errText
                         End If
                     set siebApp = Nothing
                 End If
                 set siebInputPropSet = Nothing
                 set siebOutputPropSet = Nothing
                 set siebSvcs = Nothing
         End If 
    End Sub
    </SCRIPT>
    <SCRIPT LANGUAGE="javascript">
    function loadSAP()
         if (typeof(application) == "undefined")
              sapgui      = GetObject("SAPGUI");
              application = sapgui.GetScriptingEngine;
         if (typeof(connection) == "undefined")
              connection = application.children(0);
         if (typeof(session) == "undefined")
              session = connection.children(0);
         if (typeof(WScript) != "undefined")
              WScript.connectObject(session, "on");
              WScript.connectObject(application, "on");
         session.findById("wnd[0]").maximize();
         session.findById("wnd[0]/tbar[0]/okcd").text = "/nzsd1067";
         session.findById("wnd[0]").sendVKey(0);
         session.findById("wnd[0]/usr/ctxtVBAK-KUNNR").text = "0000516616";
         session.findById("wnd[0]").sendVKey(0);
    } // end
    </SCRIPT>
    </head>
         <body onload="loadSAP()">
              <H3><FONT face="Arial" size="5">Raytheon Integration Screen</FONT></H3>
              <HR style="WIDTH: 882px; HEIGHT: 8px" color="#3366cc" SIZE="8">
              <form id="ValidForm" onsubmit="LoadContact(); return false;" language="jscript">
                   <FONT face="Arial">Load Siebel Screen</FONT> <! <input name="Text1" TYPE="TEXT"
                   SIZE="10" ID="Text1"> <input name="Submit" TYPE="submit" VALUE="Submit" ID="Submit1">
              </form>
              <form id="Form1" onsubmit="loadSAP(); return false;" language="javascript">
                   <FONT face="Arial">Load SAP Screen</FONT>    <! <input
                   name="Text2" TYPE="TEXT" SIZE="10" ID="Text2"> <input name="Submit" TYPE="submit" VALUE="Submit" ID="Submit2">
              </form>
         </body>
    </html>

    Hi Bernd,
    the following code works in VBS. If you run saplogon.exe you'll get a message box saying '/app'.
    Set Wrp = CreateObject ("SapROTWr.SapROTWrapper")
    Set SapGui = Wrp.GetROTEntry ("SAPGUI")
    Set application = sapgui.GetScriptingEngine
    MsgBox application.id
    I haven't tried it on a web page, but I don't see why it shouldn't work there. Ok, maybe the MsgBox is command is not available.
    Best regards,
    Christian

  • Does SAP GUI 7.10 include Web Dynpro client?

    Hi all,
        I want to try out Web Dynpro client, My SAP GUI version is 7.10, I can't see the web dynpro client component when install SAP GUI,  and can't see the web dynpro application in logon ui too. Seem to Gui7.10 does not include web dynpro client. I search forum can see SAP GUI 6.40 include a beta version of web dynpro client, but the download of Web Dynpro Client was not work.
        Does anyone kown if the Web Dynpro Client can be integrated in Sap Gui 7.10 ? Or it was still in beta version not be released official.
    best regard
    reefish
    Edited by: Ree Fish on Nov 18, 2008 5:33 PM
    Edited by: Ree Fish on Nov 18, 2008 5:34 PM

    Hi Martin ,
    I think your answer resolve our problem. But i can not get get installation document after login MarketPlace account. The page show blank.
    [SAP NetWeaver Business Client (with PCD Connection) |http://help.sap.com/saphelp_nw70/helpdata/en/46/4185faf54e2f90e10000000a1553f6/frameset.htm]  (Service Market Place Login Required)
    Documentation on installation, configuration and use of the SAP NetWeaver Business Client.
    I Search the download service and can't find NWBC installation file, is it a independent client?
    best regard
    reefish

  • Getting blank screen instead of login screen for workspace

    Hi,
    i am trying to login into workspace, once i click the launch application, i am getting the Blank screen? i am not getting the login screen.
    what is the possible reason for this error?
    Thanks in advance
    Kiran

    Hi John,
    Thanks for response.
    if proxy settings are wrong not able to connect to any web related or we can not access only particular?
    john, is there any chance java related problem for getting blank login popup browser.
    Thanks in advance

  • Getting blank screen instead of login screen for HFM

    Hi,
    i am trying to login into HFM, once i click the launch application, i am getting the Blank screen? i am not getting the login screen.
    what is the possible reason for this error?
    Thanks in advance
    Kiran

    Are you able to see the log in screen of Shared Services?
    Rgds
    Payous999

  • Garbage on the screen instead of setup screen

    Hi
    My son's wrt54g2 v1.5 linksys router was working fine.  WPA2 mode was setup also, working correctly, until he came home one night and wasn't able to use wifi.  Computers, phones etc., that were setup with the security code could not logon.
    I had him try to use his browser and connect using 192.168.1.1, but, all that came up with was a screen full of garbled characters instead of the setup screen.
    Next I had him try to reset the router, holding in the reset button for 30 seconds, then coldbooting the router.  Unfortunately, the same garbled character screen reappeared.  Fortunately, it did reset the security, so he can use the router without security. 
    We really don't want to leave the router running without WPA2, and, would like to once again access the routers setup, so, If someone has any ideas, I'd appreciate suggestions.  We've already reset the router 4 times, and, it works connecting to the internet fine, we just can't get into the routers firmware to reset passwords or setup WPA2.  Tried connecting using both Firefox and Chrome, his laptop uses Windows, mine Linux.  Tried accessing using wifi and using ethernet.  Did I cover it all?
    Thanks in advance
    Tom

    Thanks again for responding.  And no, there are no firewalls on the computers I used for testing.  We use the router as our firewall.  Today, I used my "siduction" install (Debian Sid) to see if I could come up with anything interesting, which needless to say, I didn't.  I'm one of the Core members of "siduction", and, we don't install a firewall by default.  It's up to the user to install it if they deem it necessary.  I also use a Linksys E2500 for my own home network, and the same laptop worked perfectly fine bringing up my router's setup screen before I used it to test my son's router.  I also use Fedora, which comes with an automatic firewall, and, that install also had no trouble with the setup screen.  I also have openSUSE on my network, along with a few Windows dual boot laptops.  All of my machines bring up my 192.168.1.1 without incident. 
    Is there anyway to test the RAM and/or firmware without being able to access the linksys using 192.168.1.1?  I'm starting to think that the router is just suffering from old age and there might be a hardware problem.  Its also possible that he might have had a power line drop or surge that might have affected the router.  While I have all my electronics plugged in to UPS's, he had his router plugged directly in to the outlet.
    It's funny, everything the router is supposed to do, it is doing well.  It's supplying IP addresses, accepting multiple wifi logins, and asking for a password to enter setup.  It just won't show me the setup screen.

  • Black screen instead of post screen om GX620

    here what happened:
    i activated some file.
    and i saw a message: bios verification/ deleting bios.
    and after some time it wrote: bios is write protected, and the machine shut down.
    all i can see is black screen.
    its not starting, how i can fix it?
    please help me, i don't know what to do.

    Quote from: Vana on 29-April-11, 23:53:40
    Yea its not from MSI, its from the ASUS or DFI or something, it was my brother "MOTHERBOARD FLASH BACKUP ****".
    If i know what i going to "execute". no way i will even connect this usb stick into my laptop.
    In two more days local reseller will become online, i will try to contact him for RMA or repairing.
    Tnx LIGHT (or WORLD), it was pleasurably speaking with you.
    Quote
    Tnx LIGHT (or WORLD), it was pleasurably speaking with you.
      The 1st one
    Quote from: Vana on 29-April-11, 23:53:40
    Yea its not from MSI, its from the ASUS or DFI or something, it was my brother "MOTHERBOARD FLASH BACKUP ****".
    If i know what i going to "execute". no way i will even connect this usb stick into my laptop.
    In two more days local reseller will become online, i will try to contact him for RMA or repairing.
    Yes do this.
    In meantime you can try BIOS recovery, there is a good chance to recover since BIOS is really corrupted and damaged and recovery can kick off.
    Download the BIOS for your notebook from MSI web: http://msi.com/service/download/bios-8539.html
    Extract it, then rename A1651IMS.114 to A1651IMS.ROM
    Then copy the A1651IMS.ROM to diskette and place it to the USB Floppy and connect the USB floppy with corespond diskette inside which contain A1651IMS.ROM to the an free USB port to the notebook.
    Remove the notebook battery and leave only AC Power cord connected.
    Then turn it on,[with battery disconnected and USB FDD attached with diskette inside] and leave it in that way for a 10 minutes.
    If process is successfully, the notebook should bring back to the live itself after 10 minutes.

  • SAP GUI 602 logon error

    Dear Experts:
    we are having SAP GUI logon problem as follow:
    SAP GUI 620
    partner not reached (host prd.uaes.com, service sapdp03)
    time     Wed Nov 26 15:56:03 2008
    componet   NI (Network interface)
    Release     620
    version 36
    Module ninti.c
    Line  881
    Method    NiPConnect
    Return Code -10
    System Call connect
    Error No 10055
    Error Text WSAENOBUFS: No buffer space available
    Counter 1
    does anybody have idea about above error?
    thank you.
    regards, Mao

    Hello Sergo Beradze,
    yes. the SAP system in prd.uaes.com host is 32bit server. we install SAP R3 4.6c sr2 version with it.
    most of time the SAP PC user can connect to SAP smoothly. but sometimes some part of sap users will get the above error message which I have posted.
    regards, Mao

  • SAP GUI Scripting Wizzard Windows7 does not work

    Dear Experts,
    I am quite a novice when it comes to SAP GUI scripting (let alone any other development), therefore my question might be rather stupid. After my PC was migrated from XP to Windows 7 it is no longer possible to use the SAP GUI scripting wizzard. When you select it from the menue, simply nothing happens.
    Does anyone have an idea what I need to do to have this useful tool back on my PC?
    We are running SAP GUi 7.1
    Thanks for your help
    Theo

      Here is SAP GUI wizard replacement tool...its in auto IT - enjoy
    http://www.autoitscript.com/forum/topic/149540-sapwizardudf/
    I had the tech guys here install ,  the latest GUI patch level 15,
    and the script development tools not working issue has been fixed
    They (SAP?) removed the 'script development tools' menu option!?
    I have not installed the MS hotfix, but
    My question is,  it true the 'Script development tools' is gone?
    Other methods
    a) This (free) non SAP solution seems to work however...any other ideas?
    Scripting Tracker Lite
    http://scn.sap.com/docs/DOC-32728
    b) The Activate GuiXT tool in SAP GUI also does give you some clues in the element window
    and could be an alternative way , to get control names.
    eg a radio button is R[P_CONTROL_ID] when it should be radP_CONTROL_ID
    c) The SAP script recording and playback ,  to a vbs script will give you the control names also, if you edit the script.
    You must of course have GUI scripting on in rz11
    I can't read this note https://service.sap.com/sap/support/notes/1633639 - need a password!

  • Connect to SAP R/3  using SAP GUI for HTML through saprouter

    Hello,
    I have my system running on my intranet, but I need to connect some support enginners through an Internet connection. Nowadays some users can connect to QAS and PRO systems using SAP GUI for windows and java with the saprouter string,  but the support enginners are using SAP GUI for HTML, do I need a special string or configuration so html users can connect to my system from the Internet?
    Thanks in advance.

    thanks, I can get the data from SAP R/3 to crystal report.
    but still dont know how to do the second question mentioned in previous message:
    once the table I want to get the data from is a cluster, and have found the mapping data dictionary of this data cluster, which displayed in crystal report connection as well, however, the data is not what I wanted.

  • Display problem in some t code in SAP gui 710

    Hello experts
    we are using SAP gui 710,
    some users facing display problem when they run some t code like CS11/MB51 etc.
    the data grid show some rows in disordered manner, however if we download this into excel
    its shows perfect data.
    if user scroll the report as they appear than also many rows goes disturb.
    i can't understand why this happen.
    this is occurring on many front end system or on many tcods.
    plz help me to resolve this.
    Best Regards
    Deepak Singh

    Hi,
    You can check the screen resolution of the user desktop. I feel this could be a reason.
    Regards,
    Deepak Kori

  • Advantages of sap gui over sap web

    hi experts,
    currently we are using sap gui. but we experiencing some slowing especially on peak working hours where users are making use of many transactions. I know that this is normal on those cases. My question is, if we are going for sap web. will it be more faster? efficient to use than the sap gui? this will be in terms of exporting reports and transactions. We havent tried the sap web yet. But we assume that, if we have it on web, it will be faster since only the data will be loaded and no more application gui.
    Please suggest.
    Thank you in advance

    Hi,
    I don't think it will give best result from performance point of view.
    In your case, it's problem with huge load during peak hours, not with GUI you are using. Slowness during peak hours can be reduced by tunning your system from memory and resource point of view. SAP GUI and SAP WEB do not make big difference in terms of performance and response.
    There are more disadvantages than advantages. SAP WEB needs more network capacity and graphics do not look good.
    Hope it helps.
    Thanks,
    Siva Kumar

  • SAP GUI call from Web Dynpro Abap

    Hi all,
    I heard about the possibility to call the SAP GUI directly from my Web Dynpro Abap Application, so that the GUI is integrated in my web browser. But i could not find any information about that.
    Maybe you can help me.
    Thanks,
    Johannes

    Hi Johannes,
    Its not possible to directly call your R/3 GUI from your WDA. You can try the "Screen Design Time Conversion" tool in SAP. You can go through this [link|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/30/f2156a26fb4b4d86c5b0ce9f86bfb3/frameset.htm] for further details regarding it.
    But please also pay heed to Thomas's advise in [here|Is there a converter for classic dynpros?;.
    Regards,
    Uday

Maybe you are looking for