ALV hotspot new window problem

Hi all,
   I have an problem. in alv list, there is a field with hotspot, after I click it, it should popup a new window with some text. But now I can't popup a new window. Look at some of my codes:
FORM user_command USING p_ucomm    LIKE sy-ucomm
                        lw_selfield TYPE slis_selfield. 
DATA: LW_HOTSPOT TYPE ZV_TAX_G_TIPP.
  IF p_ucomm = c_ic1.
    IF lw_selfield-fieldname = 'TYPE_DECL'.
      WINDOW STARTING AT 5 120
             ENDING AT   5 7.
     call SCREEN 1001 starting at 5 10
                     ENDING AT 5 7.
WINDOW STARTING AT  can't act on ALV???
when I replace window with call screen, but I don't know how to code in detail. Could you please help me?

Hi,
See this code,
TABLES KNA1.
START-OF-SELECTION.
  SELECT * FROM KNA1.
    WRITE / KNA1-KUNNR HOTSPOT ON.
  ENDSELECT.
AT LINE-SELECTION.
  WINDOW STARTING AT 10 10
         ENDING   AT 40 25.
  WRITE:/ 'Hi'.
Regards,
Vijay

Similar Messages

  • Opening new window problem

    Hi,
    I have a problem in my application when opening new window by clicking on the button ( window.open('http://....') ). After new window opens, "parent" window becomes dead - all session variables are lost and as a result it throws user to the login screen (default page).
    I noticed that URLs in both windows have the same CFIDs and different JSession IDs.
    Does anybody know how to handle this problem, another words how to make new window open with new CFID?
    I am not sure if this is the reason, but cannot imagine anything else.
    Thank you in advance,
    LKhodab.

    According to the HTTP protocol standard all requests are completely stateless and have absolutely no connection to any other reqeust that come before or after.
    To allow session state management, ColdFusion uses cookies to know when a new request should share data with some request that came before it.  These cookies can either be a pair named "CFID" and "CFTOKEN" or one named "JSESSIONID".
    When you use JavaScript to create a child window in a browser, ColdFusion knows nothing about this.  All it knows is that it is getting another request.  If this request does NOT contain valid cookies identifying it as belong to some existing session, ColdFusion is going to create a brand new session with completely new data.
    If you are seeing different JSESSIONID values when you open this child window, this is probably what is happening.

  • URL iview opening in new window problem

    Hi All,
    I am using customized top level navigation (developed using byEPCM method).
    I  created URL iview and pointed "http://www.google.com" . (Launch in New Window = Displaly in sepearte window)  .I have assigned this  iview to a role as delta link. When naigating this iview, it is opening in new window. But it is showing "Permission Denied script error". And also, it is not displaying url as "http://www.google.com" .
    If I navigate via standard top level navigation, it is working fine. Please help to solve this problem.
    Thanks,
    Venkatesh R

    Hi,
    Check authentication related properties of iView. Make sure all of them are set to lowest level or none
    Regards,
    Ganga

  • EP 7.0 PCUI Open Link in new Window Problem

    Hi all,
    we have recently upgraded our portal to EP 7.0. Now I have the impression that something has been changed regarding the link navigation in this version.
    E.g.: In the former version EP 6.0 it was possible to right click a Trans. No. and to say "Open in new window". Portal would jump to the correct navigation entry within the portal navigation structure.
    Now in EP 7.0 the exact same action leads to reloading the start page. This makes me assume that the portal can not resolve the link correctly. Although directly clicking the link opens the correct navigation entry within the portal navigation structure.
    Does anybody know what has changed within the EP 7.0 navigation process versus the EP 6.0 one?
    Users complain that they can no longer do what they did before....therefore I am looking for a solution/workaround.
    Thank you already very much for your input!
    Best regards,
    Helga

    ... one thing I bumped into during my research is the CRM table CRMC_PRT_CUSTOM which could be of use. I think the navigation issue has something to do with the CRM URL Dispatcher configuration which should be made in the above mentioned table.
    Unfortunately I have no idea which values are needed in this table in order to get the CRM URL DISPATCHER functionality work... .
    Any ideas are greatly appreciated :).
    Thanks in advance!
    Helga

  • Tabs only open in a new window. Ctl T opens a new window NOT a new tab help-last update this problem started. How do I set FF back to open tabs in 1 window

    Tabs only open in a new window. Ctl T opens a new window NOT a new tab help-last update this problem started 2 days ago. How do I set FF back to open tabs in 1 window?
    There is no plus sign and going into optins and changing settings has not worked. I have uninstall FF and reinstall-keeping my personalization-and that was no help.
    Right clicking on FF Icon to open a new tab, or going up to FF drop down tab and clicking on new tab both do not work.
    Help everything opens a new window not a new tab. there seems to be no way to reset this or to chose a different optin. I just downloaded new tabs at end addon and it didn't do a thing.

    as a first troubleshooting step - does it work like normally when you open & run firefox in [[Safe Mode|safemode]] by pressing the shift key while you open firefox (all other instances have to be closed before)...

  • Firefox will not open a new window for a website when it is supposed to and then will not close properly. I have un-installed and re-installed and problem persists, why? How is it solved?

    When I go on to some websites and click on certain things it wants to open a new window to display the information etc.
    I.E. On an agency job search site I click to do a detailed job search which should open in a new window, but this will not happen now on my Firefox.
    Firefox was working perfectly ok on Saturday 11th September but for some unknown reason has acted up since Sunday.
    There have been no Windows updates which could effect this and the laptop is otherwise working perfectly ok.
    Nothing has changed from Saturday Night to Sunday Night that I can see.
    I have even tried to do a system restore to solve the problem but with no success.

    I also have this problem. I cannot open links from a discussion board I frequent nor can I open links from my email. Also after opening my email, I cannot go to any other sites except my home page. I can then go no where else.
    When I close Firefox and try to reopen it, it does nothing! I have to bring up the Task Manager and end the Firefox process before I can get back in.
    To the best of my knowledge, this problem started with the new update to Ver. 3.6.9. I am running Windows XP Media Center 2005

  • Session problem in a new window created by window.open()

    hello,
    I have a drugsearch.jsp page, I sessioned an durgCollection object on this jsp page using session.setAttribute("drugCollection",drugCollection);
    there is a link on this jsp which will call a javascript to open a new window .
    here is the javascript to open another new window:
    function openReportWindow()
    window.open("/drug/Report.jsp","report", "toolbar,scrollbars,width=800,height=800,left=100,top=10");
    but in the Report.jsp, I won't be able to get the same session object as in the calling jsp ( drugsearch.jsp) by calling session.getAttribute("drugCollection").
    if I change the link on drugsearch.jsp to link to the Report.jsp directly instead of opening a new window, then I can get the same session object from the Report.jsp.
    what's the problem? can someone give me an advice?
    thanks

    A session is assosiated with one client(browser).
    when you open a new browser, a new session is created. In order to have common place for both the browsers, try storing the data in the 'Servlet Context'

  • Firefox opens a new window every time I click a link. I reset FF and it did not fix the problem.

    When I click on any link, the browser opens a new window. I have searched the browser options to fix this and have not found a place to select a different option. I have reset Firefox and checked all of my plugins and have not found anything that seem to be related to my problem. Sometimes, Firefox will work normally for the first few minutes of use and then start opening a window for everything.
    By normally, I mean that I click a link and it opens the link in the same tab that I'm browsing. Some links will open in a new tab, depending on the type of link. Mostly, they open in new windows no matter what.

    Boot the computer in Windows Safe mode with network support (press F8 on the boot screen) as a test to see if that helps.
    *http://www.bleepingcomputer.com/tutorials/how-to-start-windows-in-safe-mode/
    Do a malware check with several malware scanning programs on the Windows computer.
    Please scan with all programs because each program detects different malware.
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender:<br>http://windows.microsoft.com/en-us/windows/using-defender
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked
    *https://support.mozilla.org/kb/troubleshoot-firefox-issues-caused-malware

  • I'm getting a not-quite crash in which I lose ability to interact with the window at all. Is there any way to fix the problem itself? All I can do is an inconvenient "fix" in which I open a new window, and it works in the second window for some reason.

    I'm experiencing a not-quite-crash every time I attempt to open firefox on my new computer. What happens is that the menu bar (which I prefer to have visible instead of that orange single-button menu) has all the letters on it turn gray, and I lose my ability to click anywhere on the page, including to close it. If I attempt to close the page via the taskbar it doesn't let me. It does, however, let me open new windows via the taskbar which don't have the same problem, which allows for an easy-but-inconvenient fix. I've tried it out and it does not have the same problem in Safe Mode. As a result of not being a "true" crash I can't give a crash ID, so you won't be able to trace it that way, sorry.

    ''Problem:'' For whatever reason, NoScript is stopping Runescape Community Toolbar from working properly which freezes your first Firefox window.
    ''Fix:'' Uninstall the toolbar. Disable NoScript. Install the toolbar. Add your RS account to it and make sure it works, then Enable NoScript again.
    EDIT: Posted a fix earlier that was wrong. Corrected to the right one, sorry ^_^ Answer was on Runescape Forums.

  • Whenever I click on an active field in the browser, a new window with advertise opens. I want a solution on this problem.

    Whenever I click to start putting details in the active field on browser web page a new window opens with advertise. I have to close this every time.
    This happens also when I click on a youtube video link or any active tab.
    I am fed-up.. I have stopped all plug-ins and add-ons, installed the browser again... still the problem persists.
    Help!

    Sounds like a dose of Malware on that PC.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/viruses/disinfection/5350 Anti-Rootkit Utility - TDSSKiller]
    * [http://general-changelog-team.fr/en/downloads/viewdownload/20-outils-de-xplode/2-adwcleaner AdwCleaner] (for more info, see this [http://www.bleepingcomputer.com/download/adwcleaner/ alternate AdwCleaner download page])
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • I currently have an old version of Photoshop Elements, it is version 5.0.  I recently upgraded from my old Windows XP computer to a new Windows 7 computer.  My question is:  Can I install this version 5.0 on my new windows 7 computer without any problems?

    I currently have an old version of Photoshop Elements, it is version 5.0.  I recently upgraded from my old Windows XP computer to a new Windows 7 computer.  My question is:  Can I install this version 5.0 on my new Windows 7 computer without any problems?  my email is:  [email protected]  Thank you!

    Do not know about 5, but, just installed PE 6 on I7 64 bit and it works.

  • New problem, Lycos Mail is my home page. When I open a new window I usually get Google search, which is what I want. Now, somehow when I open a new window I get Yahoo search. How do I change it back to Google? Thank you, Randy

    New problem, Lycos Mail is my home page. When I open a new window I usually get Google search, which is what I want. Now, somehow when I open a new window I get Yahoo search. How do I change it back to Google?
    Thank you,
    Randy

    A new tab opens by default as a blank tab (about:blank).
    If that isn't the case then an extension has changed that behavior.
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    You can middle-click or hold down Ctrl and left-click the Home button on the Navigation toolbar to open the Home page in a new tab.
    You can look at this extension to set which page to open in a new tab:
    * NewTabURL : https://addons.mozilla.org/firefox/addon/newtaburl/

  • Problems installing update PS CS5 on new Windows 7 laptop w/ prior PS vers. already installed

    Hi,
    When I first got my new Windows 7 laptop, I tried loading PSCS5 onto it, but since it was an update disk, and previous versions weren't there, it didn't load. I finished my work during a 30-day trial period on a recent sabatical, I uninstalled it and all PS files except images saved, and have now gone through the following process in attempt to load it:
    1) Loaded PS 6.0 from a CD and serial number that I own--no problems
    2) Loaded PS CS2 from a CD and serial nuimber I own--no problems
    3) Loaded PSCS5 from an update CD also purchased, and got an error message saying something about CS4 needing to be uninstalled before CS4 could be properly loaded.
    Puzzling because A: I never loaded CS4, and B: was not trying to. So I uninstalled everything conceivably troubling from Adobe, even Flash Player, Patch files, but not ASA or Adobe Download Helper. Some Adobe files left behind I deleted and emptied the recycle bin and restarted over several different times. To my knowledge, my CS5 has only been used on one other computer. Do I need to de-activate it on the other one? I don't find it on a 3rd computer, but if it was simply uninstalled, without de-activation, would I need to re-install it to deactivate it on the 3rd one. I'm hoping somebody can help me tell how many computers have CS5 activation.
    Now, I've tried simply loading the CS2 disk and going to the PSCS5, and that failed, so I re-did steps 1-3 after purging also Lightroom3 and DreamWeaver CS3, thinking something from them might've been the culprit (though they earlier loaded flawlessly after a de-activation of DW on another computer). This time the Adobe Support box came up and after searching the system or whatever, said 'no problems could be found', and that I should contact Adobe Support. No FAQ's address this problem and a scan of forums was not helpful. So here I am.
    Any ideas? If it is lack of a Registry entry, it would be helpful to know exactly which one and how precisely to get it and patch that into Windows 7 for those of us who are not IT geeks. I'm guessing this might be a recurrent issue and it would be helpful to simply have that code to patch in, if it is known.
    Otherwise, I'm stuck using CS2, which while OK, is not CS5.
    All my Adobe products have been purchased originally purchased and activated by me.
    Thanks for any help,
    Michael J Kissane

    Hi Jeff,
    After reading your mail, I've un-installed the previous versions now
    (both 6.0 and CS2), including manually some files listed as
    impossible to uninstall under the PS 6.0 wizard (Adobe Program files
    x86, something). I restarted the computer (Lenovo running Windows 7
    Home Premium).
    I then tried to run the PS CS5 Upgrade disk directly and it failed
    with suggestion to go to the ASA, which said quickly "Inspection
    could not identify any issues. Please contact Adobe Support for
    further assistance"... and the website for same.
    I recall I did get a box with a request for the qualifying
    prerequisite's serial when I first tried this in December, but not
    having that on hand and after failing (I believe I even tried getting
    serials from 'My Adobe' resource) I punted and went for the trial
    period to finish my project. The rest I've written about in my forum posting.
    I'm hoping info from Maggie_8 from the forum
    http://forums.adobe.com/message/3880631#3880631 may get me through
    it. Otherwise, I don't know if I can save what's on the new laptop to
    an external HD and start all over after back tracking to a previous
    point (this was possible in older Windows OS, I recall, but one lost
    anything not saved elsewhere as the clock was turned back, so to speak)
    Frustrating...I had problems with Adobe Reader, too, and I hope I've purged it.
    Will persevere, but without wasting eons of time. Other fish to fry
    and all that...
    -Mike

  • System Settings - Problem: New Window occurs

    Hi all,
    can you help me? - If I start "Systemeinstellungen" (System settings?) and change to "Network" a new window occurs with the text: "Ihre Netzwerkeinstellungen wurden von einem anderen Programm geändert" (your network-settings were changed by a different programme). I can choose "OK" and the window disappeares but it will appear immediately again and again...
    What can I do to solve this problem?
    Thanks for your help

    This post by ejp1684 seems to have offer a solution:
    Once in the network prefs and the popup appears, place your mouse over the place where the "Show All" button is (behind the popup). Then, hit Return - which gets rid of the window and immediately the window is gone, click on the 'Show All" button. I then get a window asking me to save etc, the changes. You can click on any of them and you should be back in the prefs window. Then, when you select the Network prefs, you should be able to change things. If this doesn't work, I found that I had to use the mouse button to click on both the "OK" button on the popup, and then quickly switch to the "Show All" button - took me a few times to do it!
    Even if you can't change the settings, at least you won't have to do a hard shutdown.
    http://discussions.apple.com/thread.jspa?messageID=8112368&#8112368

  • Problem Opening document in New Window

    Hai all,
    in my JSP page i have a link. the link path i am getting from database which is actually a word document present in a local drive. to open the file in a new window i have written the code like this
    <a href="<%=docPath %>" target="_blank">Open New</a> Now problem is in IE file is opening in a new window but in Mozilla FireFox it is not opening.
    Thanks in Advance

    Here are some thoughts on this kind of thing: http://www.trilithium.com/johan/2005/03/target-blank/

Maybe you are looking for

  • No Daily Sales/Trend Report for today?

    Has anyone received your iTunes Connect Daily Sales/Trend Report for today (1/25/10)? I have not received mine yet. First time it hasn't been up at this hour. It usually arrives at 2:30am (it's 9:30am here now) or if it's delayed, usually in another

  • Contact with same first name as previous, overwrit...

    PC Suite 6.84. When I create a new contact with the same first name as an existing contact in PC Suite, and then I save it to the phone, the new contact info overwrites the old! For example: first name: Airlines last name: United So that entry is the

  • Interactive swf-Import fails....

    Hi! This might be a silly question.....But I am confused. I created a little interactive game in flash and imported the game into my captivate projekt (Captivate 4). But after publishing the game will not start (it should start with a mouse-click on

  • Need to cancel the schedule line

    Dear all, Please advice me, for stock model meaning SO stock is not tied with SO, it will be in Unrest, stock. this scenario i need to cancel the Schedule line qty for confirmed SO & need to assign for Unconfirmed SO which delivery date is near to th

  • IPhone 3GS: problem with address book changes after 5.0.1 upgrade

    Hello World, I upgrade my and my Wife iPhones 3GS to 5.0.1, my Wife's one has a big problem: - in the address book/contact menu disappears + sign (upper right) in order to add or modify contact I tried to search in some forums, but I didn't find any