Strange window popup on every roundtrip to server

hello
i have 2004s web dynpro application outside the portal (via url address).
sometimes when user change lead selection of a table or making any other action that requires roundtrip to the server, i see a little pop up window that starts and close. it appears only for 2 seconds, but still very annoying.
anyone knows why its happening and how can i suppress that window popup?
thanks,
Roni

Hi,
I have noticed this popup window too. But it doesnt appear at every roundtrip time.
You can make out whether it is present or not, just by lookint at bottom right of your current browser,
If you want to see how it is affecting the performance of your application,
enter: <b>sap-wd-showInfo=X</b> in <i>Window-Preferences-WebDynpro-Server</i>.
It provides details about the roundtrip time, time taken at the J2EE and R/3 of your server, etc
For more details about the same, visit the blog: /people/bertram.ganz/blog/2006/11/21/analyzing-web-dynpro-java-application-performance-with-a-simple-url-parameter
I hope this is of some use to you.
Regards,
hanoz

Similar Messages

  • Window popup issue in WD ABAP

    Hello Techies,
    In one of our application in WD ABAP we are facing issue while opening window popup. Window screen is not opened in popup screen but displayed in same screen at the bottom. Also we are not able to do any operation. Like putting value in input field & clicking on button. This issue doesn't appear in test system. Also this is an issue in IE7 , IE8 whereas it works fine with IE6. Also this is specific to this window, all other windows are working fine in application. Any clue?
    Thanks & Regards,
    Lakshman

    Hi Sap user
                          transfer the data from popup screen to another view make a serve side cookies. call the method set_server_ cookies from the class cl_bsp_server_sde_cookies in   Onmanipulation event. And call the method get_server_cookies from the class cl_bsp_server_side_cookies in Onrequest event.
    this will transfer the data from popu to main page.
    Thanks
    Vishwas Sahu

  • How to avoid roundtrip to server on value select in dropdown box in ALV cel

    Dear Experts,
    I have WD ALV table where user edits values in the cels using dropdown by key element.
    Then after edit he saves whole table. When value is changed in dropdown box the roundtrip to server occurs and it takes noticable time for every cell. My dropdown lists are fixed and are the same for all rows. It is not pleasant user experience and is annoying for user.
    Is there a way to disable this roundtrip for each value selection for each cell and transfer all the data for whole ALV table only when I save whole table (separate button "Save")?
    Help very much appreciated.
    Dmitry

    A lot of enterprises, however, actively avoid systems which are locked down to a particular server for very legitimate reasons. If my data center dies in the middle of the night, I sure don't want to have to call your mobile phone so that you can get to a computer, log in to the office network, and get me a new key so that I can finish my emergency failover. If I've got dozens of applications, I absolutely don't want to do that with dozens of different vendors.
    It sounds like your problem, though, isn't that users are installing your software on multiple computers it's that they are accessing functionality they haven't licensed. That is generally a much easier problem to solve and doesn't require you to lock anything down to a particular machine. You can create a table LICENSED_CONTENT, for example,
    CREATE TABLE licensed_content (
      client_id    NUMBER,
      content_type VARCHAR2(30),
      key          RAW(128)
    )In this case, KEY is, say, a hash (using the DBMS_CRYPTO or DBMS_OBFUSCATION_TOOLKIT packages if you'd like) of the client_id, content_type, and a bit of salt (i.e. a fixed string that only you know). When you sell a license to manage diamond content, you provide a script that inserts the appropriate row in the LICENSED_CONTENT table. When your application starts up, it reads the LICENSED_CONTENT table and verifies the hash before allowing users to access that type of content. This allows legitimate customers to move the software from one system to another but prevents them from accessing new functionality without a new license.
    Justin

  • Window popup doesn't open in a build .exe application

    Hello. I wrote code in order to open a VI as a windows popup.
    Running it in labview, it works fine. If I build the application (host side) and I run it in windows (win 7) it doesn't open any popup.
    I'm sure that:
    1) both the main and popup VIs are included inside the source files during the build steps.
    2) the popup is not running behind the main window.
    3) popup VI window appearance is "modal"
    Here my code:
    Does anyone know what to do?
    thank you
    fpia

    Thank you Mark and josborne.
    It seems all you suggested me it's ok. I mean:
    The path of my VIs are correct. I selected the startup VI (and I can see it inside this section) and in "Always Included" section there is the right VI popup.
    The front panel is not removed from the VI popup. I can see it in the "source file settings" section.
    josborn, I tryed to put error handing in my code, and I got some errors but I think thery are unuseful in my specific case. Here they are:
    Built Application or Shared Library (DLL): Make sure all dynamically loaded VIs were properly included in the build specification for the application or shared library.
    LabVIEW Real-Time: VIs built into executables cannot be accessed through VI Server calls. Use Source Distributions to dynamically call VIs on Real-Time targets.
    I got this error from the "Open VI reference" function. But...
    About the first line, I'm sure all the involved VIs are included. I see the VI caller as "Startup VI" and the VI popup as "Always Included".
    About the second line, I'm not testing it with a Real-Time target. I'm running this simple project just in a windows 7 environment. Anyway my VI server is running and setted in according with NI documentation.
    I attach the project. Could you please be so kind to give a glance to it? It is very small and simple.
    Thank you.
    fpia
    Attachments:
    VIPopup.zip ‏81 KB

  • Window popup close issue in jsf

    I am having add/edit functionlaity in window popup and when i close the window by calling javascript:window.close.
    The following exception comes at server. Kindly tell me how i can avoid this exception at server.
    <2005-08-25 12:20:09.708> ERROR [Web-Worker-Thread : 5] taglib.core.ViewTag - Error writing endDocum
    ent
    java.net.SocketException: Connection reset by peer: socket write error
    at java.net.SocketOutputStream.socketWrite0(Native Method)
    at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
    at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:66)
    at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:124)

    You need to submit the form from the parent window, not from the popup window. When the window will be closed, all processing requests will be stopped immediately. Hence the "connection reset by peer" error message (which roughly means as "the other side has aborted the connection, we can't send a response anymore").

  • Window popup in agent's session whenever user clicks button in his session

    How can I make a window popup in agent's session whenever a user clicks on a button in his session?
    I need to add a functionality in my web application which pops up a window in a particular agent' session whenever a user clicks on a particular button in his session. That is when a user clicks on the button it signifies a request and an agent is notified of user's request and he should get a screen popup to show user's info.
    Could any tell how can I achieve this functionality?
    My web application uses following technologies:
    JAVA, JSP, STRUTS, TILES, HIBERNATE
    TOMCAT as server and MySql as Database.
    Thanks,
    Rajiv

    What is the name of the session variable that you are creating on login? When he clicks logout, set that session variable to null. Like session.setAttribute("userName",null); and check for non-null condition before proceeding with any functionality in your jsp's.
    What is the second question? You want to prevent duplicate logins from different systems? You would have to maintain a static datastructure like a HashMap for instance. Everytime a user logs in, put an entry into the HashMap...like userMap.put("userName","userName"); If an entry already exists, throw a message saying that user already logged in from another machine...

  • Some letters in website are double underline and when cursor move over, there is small window popup - how to fix

    Some letters in website are double underline and when I move a cursor over these letter, there is a small window popup which contains that letter and "Click here". when I move a cursor over letter Click here, it will redirect web site to another strange website. How can I stop it? Please help

    You might find installed along with this:
    --- IB Updater Service http://botcrawl.com/how-to-remove-ib-updater/
    --- Linksicle Linkside.com
    --- TidyNetwork.com
    --- RISE Editor RiseToBloom.com
    equally abhorent malware.
    I have Norton running and it let me install these without the usual warning!
    None of them show up as "running" on the windows process list.

  • Whenever I try to download an app [from the app store on the computer], a popup message appears saying 'A server with the specified hostname could not be found'. What could I do to resolve this?

    Whenever I try to download an app [from the app store on the computer], a popup message appears saying 'A server with the specified hostname could not be found'. What could I do to resolve this? I am using a MacBook Pro laptop. There is around 250 gb of free space. Please help

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Click the Clear Display icon in the toolbar. Then try to update. Select any lines that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name or email address, may appear in the log. Anonymize before posting.
    When you post the log extract, you might see an error message on the web page: "You have included content in your post that is not permitted," or "The message contains invalid characters." That's a bug in the forum software. Please post the text on Pastebin, then post a link here to the page you created.

  • New Icloud Terms and Conditions window pops up every time I try to check my email, or when I open setting. My email doesn't load because of this, so I haven't been able to check my email for months.

    'New Icloud Terms and Conditions' window pops up every time I try to check my email, or when I open setting. My email doesn't load because of this, so I haven't been able to check my email for months. When I click, 'view terms' it takes me to my Icloud section in settings, but the terms don't pop up. I plugged it into my iTunes to see if it would pop up, but that didn't work either. My phone is updated, and I'm pretty sure I already accepted the new terms and conditions on the last update a few months back.

    Hi munaxnight,
    If you are having issues with your iPhone continuing to ask you to accept terms and conditions, you may want to try some things to troubleshoot.
    First, quit all running applications and test again -
    Force an app to close in iOS
    Next, I would try restarting and if needed resetting the iPhone -
    Restart or reset your iPhone, iPad, or iPod touch
    If the issue is still present, you may want to restore the iPhone as a new device -
    How to erase your iOS device and then set it up as a new device or restore it from backups
    Thanks for using Apple Support Communities.
    Best,
    Brett L  

  • I keep getting a popup error message in Ical "server does not recognize name/password

    I keep getting a popup error message in Ical "server does not recognize name/password"  This started after they did the change to Icloud and extended our subcriptions. 
    Tricia

    I guess that the server name is incorrect, then.
    Did it ever work?
    Delete the account, reboot the phone, then add it back and be sure you choose Yahoo as the mail server type. Everthing should then fill in automatically except your user name and password.

  • I install windows 8.1 on my macmini server

    i install windows 8.1 on my macmini server and when i install it i choosed to erase the disk and install windows and now i cant reach boot even when i press command+r
    please help

    So that just indicates that you erased the OS X partition also
    It appears you will have to reformat the disk again
    Install OS X again
    Then using BootCamp create a partition for Windows
    Then install Windows into that partition
    Allan

  • Why can't i update itunes on windows xp? It says update server could not be contacted but internet is working fine. I'm trying to go from itunes 10 to itunes version 11

    why can't i update itunes on windows xp? It says update server could not be contacted but internet is working fine. I'm trying to go from itunes 10 to itunes version 11

    Windows System Requirements
    PC with a 1GHz Intel or AMD processor and 512MB of RAM
    Windows XP Service Pack 2 or later, 32-bit editions of Windows Vista, Windows 7, or Windows 8
    64-bit editions of Windows Vista, Windows 7, or Windows 8 require the iTunes 64-bit installer
    400MB of available disk space
    Broadband Internet connection to use the iTunes Store
    See Here  >  http://support.apple.com/kb/TS3125
    From Here  >  http://www.apple.com/support/itunes/troubleshooting/

  • Attempted to perform an unauthorized operation error on windows 8.1 while installing SQL server 2008

    Hi,
    I am getting the error "Attempted to perform an unauthorized operation" on windows 8.1 while installing
    SQL server 2008.
    The specific error is The error is Attempted to perform an unauthorized operation."
    at stepSqlBrowserConfigAction_install_ConfigNonRC_Cpu32 .
    I have tried everything from copying to the C drive. I am the admin on the machine. I also checked access in registry. It already has acesss to HKLM\System\CurrentControlSet\Control\WMI\security
    Can someone comment on how to resolve this issue. I also tried NT
    AUTHORITY\SYSTEM but getting the same error.
    Any help would be appreciated.

    Hello,
    Please note that SQL Server 2008 requires Service Pack 3 (SP3) to make it compatible with
    Windows 8.1. Please perform an slipstream installation of SQL Server 2008 + SP3:
    http://support.microsoft.com/kb/955392
    If it fails again, please share with us the Summary.txt log file and the details.txt log file. The following article
    may help you locate those files on disk::
    http://msdn.microsoft.com/en-us/library/ms143702(v=sql.100).aspx
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • How to set two radius servers one is window NPS another is cisco radius server

    how to set two radius servers one is window NPS another is cisco radius server
    when i try the following command, once window priority is first , i type cisco radius user name, it authenticated fail
    i can not use both at the same time
    radius-server host 192.168.1.3  is window NPS
    radius-server host 192.168.1.1 is cisco radius
    http://blog.skufel.net/2012/06/how-to-integrating-cisco-devices-access-with-microsoft-npsradius/
    conf t
    no aaa authentication login default line
    no aaa authentication login local group radius
    no aaa authorization exec default group radius if-authenticated
    no aaa authorization network default group radius
    no aaa accounting connection default start-stop group radius
    aaa new-model
    aaa group server radius IAS
     server 192.168.1.1 auth-port 1812 acct-port 1813
     server 192.168.1.3 auth-port 1812 acct-port 1813
    aaa authentication login userAuthentication local group IAS
    aaa authorization exec userAuthorization local group IAS if-authenticated
    aaa authorization network userAuthorization local group IAS
    aaa accounting exec default start-stop group IAS
    aaa accounting system default start-stop group IAS
    aaa session-id common
    radius-server host 192.168.1.1 auth-port 1812 acct-port 1813
    radius-server host 192.168.1.2 auth-port 1812 acct-port 1813
    radius-server host 192.168.1.3 auth-port 1645 acct-port 1646
    radius-server host 192.168.1.3 auth-port 1812 acct-port 1813
    privilege exec level 1 show config
    ip radius source-interface Gi0/1
    line vty 0 4
     authorization exec userAuthorization
     login authentication userAuthentication
     transport input telnet
    line vty 5 15
     authorization exec userAuthorization
     login authentication userAuthentication
     transport input telnet
    end
    conf t
    aaa group server radius IAS
     server 192.168.1.3 auth-port 1812 acct-port 1813
     server 192.168.1.1 auth-port 1812 acct-port 1813
    end

    The first AAA server listed in your config will always be used unless/until it becomes unavailable. At that point the NAD would move down to the next AAA server defined on the list and use that one until it becomes unavailable and then move to third one, and so on. 
    If you want to use two AAA servers at the same time then you will need to put a load balancer in front of them. Then the virtual IP (vip) will be listed in the NADs vs the individual AAA servers' IPs. 
    I hope this helps!
    Thank you for rating helpful posts!

  • How do I set up a POP3 server to open with Firefox 3.6.13 so that it's not using windows live but the POP3 email server?

    When i browse websites with Mozilla Firefox 3.6.13 and click on a link to send email to someone, Mozilla opens windows live instead of my POP3 server. How do I tell Mozilla to open the right email server to start a new thread?

    See this: <br />
    http://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox

Maybe you are looking for

  • IOS7 upgrade and can no longer choose

    just upgraded my iPhone4 to ios7 from 6.x and lost functionality within podcast app Used to be able to select audio output source via an icon at bottom right of screen - speaker, headset, bluetooth speakers etc. Now I get the wording "dock connector"

  • My ipad has multi-colored lines on it how do i fix it?

    My iPad Mini has mutli-colored lines across it how do i fix it? i tried turning it on n off i restored it but nothing will work

  • Character encoding in Web Dynpro source code

    Hi all, I want to use special characters like "äüß" in Web Dynpro java code and can't find a possibility to specify the character encoding (ISO-8859-1) for Developer Studio Web Dynpro source editor. After rebuilding or compiling the code looks like "

  • Where can I find my Vendor ID now that ITC is down?

    I need to run the sales report for my app but I need the Vendor ID and I cannot retrieve it because the only place that I know I can find it is itunesconnect, which will not work for a week. Anybody can help??? Thank you!!!!!!!!!

  • Photoshop CS5.1 printing issue

    I am unable to print anything in Photoshop. I just upgraded to CS5.1, 64-bit, from CS3. When I use the print command I get the message "The saved printer information is not compatible with this version of Photoshop, or the saved printer is no longer