Refresh the screen after a ALV hotspot click

I have a value type I painted on my screen, i wan it to be updated after i trigger the hotspot click on my ALV list. How to do refresh the value on the screen?Because hotspot click does not update the screen for the latest value.

Hello Lai
I trigger PAI in the event handler method using the following coding:
*   Trigger PAI
    CALL METHOD cl_gui_cfw=>set_new_ok_code
      EXPORTING
        new_code = e_ucomm
*      IMPORTING
*        rc       =
When you are at PAI you can do all kinds of refreshing your ALV list before displaying it again. For an example see thread
Blanking values on ALV Grid Row Duplicate
Regards
  Uwe

Similar Messages

  • Refresh the screen after a long calculation

              Hi,
              I have a problem here:
              After I click a submit button, I want start a long process(running a stored procedure
              in
              database for about 20 mins) and after it is finished, screen will refresh automatically
              to reflect
              changes. I was using a thread to do the calculation but not able to refresh the
              browser after calculation is finished. Any one knows how to do it?
              Thanks.
              Kim
              

    Kim,
              It was just pseudo-code to hand you an idea of using Refresh.
              As for the piece you provided, it has some problems:
              1. It looks like you start marginServer() Every time there is a refresh
              2. It looks like you have marginServer as a field in the servlet, which
              is not correct as it's not guaranteed that the same instance will serve
              the next request. You'd better keep in HttpSession.
              HTH.
              Regards,
              Slava Imeshev
              "Kim" <[email protected]> wrote in message news:[email protected]...
              >
              > Hi Slava,
              > Thanks for helping.
              > I tried your code but got some error . Here is the code:
              > public class LongRunningTaskRefresh extends HttpServlet {
              > public void doGet(HttpServletRequest request, HttpServletResponse response)throws
              > ServletException, IOException {
              > stillRunning =true;
              > marginServer.start(); //this is the thread with long
              > process. In the end of it, it will set stillRunning to false
              >
              > response.setContentType("text/plain");
              > PrintWriter out = response.getWriter();
              > if (stillRunning) {
              > response.setHeader("Refresh", "5");
              > out.println("Your request is being processed" );
              > }
              > else {
              > rd = request.getRequestDispatcher("MarginSummary.jsp");
              > rd.forward(request,response);
              > }
              > }
              > }
              >
              > Do I do anything wrong?
              >
              > THanks again!
              >
              > Kim
              >
              

  • Time trigger for refreshing the screen

    Hi all,
    How to implement the time trigger for refreshing the screen after some time interval .
    Thanks in advance .

    hello Naval ,
    set the delay propert Eg : 10
    in the on action of the Time trigger Ui
    invalidate the node of table .
    write the select query for retrivig the PO from table into Itab .
    bind the internal table to the node ...
    But for your requirement it will efficient if you implement POWL query .
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60f1d5ee-84ab-2c10-ce97-97dfd89bc238?quicklink=index&overridelayout=true]
    Regards
    Chinnaiya  P

  • When using rogers.yahoo mail, I need to refresh my screen after every 2-3 actions.

    While using Rogers.yahoo mail in FireFox, the screen freezes after every 2-3 actions (read email, delete email, respond to email, move email to folder etc.). I have to refresh the screen and then it goes along for another 2-3 actions and I have to refresh again. Very frustrating. I opened the same email account in Google Chrome and IE and it works fine there. This started happening yesterday.
    In perhaps an unrelated thing, I get this error message every day, once, when I start up my PC for the past 2 months:
    Microsoft.NET Framework
    Unhanded exception has occurred in your application If you click Continue, the application will ignore this error and attempt to continue. If you click Quit, the application will close immediately. Unable to load DLL 'hppatusg01.dll': The specified module could not be found (Exception from HRESULT:0x8007007E)

    No problem.
    If the above does not fix the issue, '''try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    Thank you.

  • No matter what I do, I cannot figure out how to refresh the screen, and so I can't even see what's new on my own website!

    I cannot refresh the screen, no matter what I try. The "restore" is not the same thing. So I always get old versions of websites, including my own. I cannot see a new version of any website I have visited previously. I need to know how to REFRESH my screen, and there is no way to do it!!!!!

    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (MAC)
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > Cookies: "Show Cookies"

  • Refreshing the Output Table in ALV

    Hi All,
    Please let me know how to refresh the output table using refresh button in ALV.
    Thanks & Regards,
    Priya.
    Edited by: SathyaPriya Neelagaru on Jun 26, 2008 7:00 AM

    Hi,
    We can refresh the output table for ALV by below code :
    CLEAR  : g_wa_outtab.
    REFRESH: g_t_outtab.
    When we append something to output table of ALV we need to clear the workarea for that table.
    APPEND g_wa_outtab TO g_t_outtab.
    CLEAR g_wa_outtab.
    If you are using object oreinted concept we have
    CALL METHOD g_alv_grid_9001->refresh_table_display.
    In case you have to use your own PF Status - Always copy the standard GUI status
    (Program : SAPLSLVC_FULLSCREEN,
    Status : STANDARD_FULLSCREEN )
    For REFRESH - Include parameter for "USER_COMMAND" in the Function module interface.
    Inside the User command subroutine - set
    "RS_SELFIELD-REFRESH" = "X".
    It will automatically refresh the ALV and there is no requirement to call ALV again.
    Or else if u have a Refresh button on screen.
    we can have
    WHEN 'REFRESH'.
          CLEAR : g_wa_outtab.         
          REFRESH : g_t_outtab.
    Hope this helps you.
    Plz reward if useful.
    Thanks,
    Dhanashri
    Edited by: Dhanashri Pawar on Jun 26, 2008 7:08 AM
    Edited by: Dhanashri Pawar on Jun 26, 2008 7:14 AM
    Edited by: Dhanashri Pawar on Jun 26, 2008 7:15 AM

  • HT1365 How can I get my iPhone 4 to update my updates from my app store of it keeps telling me error 3150 or it tell me to refresh the page after updates and the updates are still there asking me to update them again

    How can I get my iPhone 4 to update my updates from my app store of it keeps telling me error 3150 or it tell me to refresh the page after updates and the updates are still there asking me to update them again?

    Make sure iTunes on the computer is logged into the account on the phone.
    Plug the iPhone in.
    In the popup window warning about wiping your phone, hit cancel.
    In the left pane of iTunes, the phone icon should be there.
    Right click on it, select transfer purchases.
    Note: this will only transfer music bought from iTunes. Not mp3's from amazon or ripped from CD's.

  • Refresh the table after closing the Popup iView

    Hi all,
    I have list of survey in my table. In that table i have toolbar button(DELETE) for deleting the survey. While deleting the survey it asks the confirmation. If we click Ok it delete the selected survey and close the popup also. what I want is I should refresh the table after closing the Popup.How can i achieve this?
    Help me in this regard.
    Thanks & Regards,
    Hemalatha J

    Hi Hema,
    Check this link.
    Visual Composer - You can do anything....
    In this blog, they are used 'Refresh' Button and a Hidden 'Plain text' message to solve this problem. If you are satisfy with this you can take this solution.
    Or you can try to trigger the 'Submit' action of 'Input form' once again from the 'Popup window' when the 'Delete' button is clicked.
    Hope it helps...
    Regards
    Basheer
    Edited by: Basheer on Dec 23, 2008 8:03 PM

  • When I open an email, my computer won't go to the link listed, or when I am doing research the same thing, then I see a ALLOW in the upper right hand corner of the screen and I have to click on that. What happened and how do I fix this?

    Somehow my settings have changed. When I open an email and there is a link, my computer won't allow it, also when I am doing a search, my computer won't allow certain links to open.
    What I see is "ALLOW" in the upper right hand corner of the screen, and I have to click on that in order to continue my email or do a search. How did this suddenly happen and how do I change it back to being able to roam the Internet without having to click on ALLOW all the time?
    Also, I set up Google as my home page, but it won't list Email or any other options. I have to type in Google in the Google box, then Email appears. How do I get the right Google set up as my home page so I can access Email without jumping through hoops.
    Thanking you so much for your time and consideration.
    Sincerely,
    [email protected]

    Sign out of the iTunes Store. Sign in again.
    tt2

  • My new iphone 5 is frozen, with the cord to computer symbol on the screen after failing to finish updating to ios 7.  iTunes no longer sees the phone. I've tried rebooting the computer, rebooting the iPhone, but iTunes still doesn't see the iPhone.

    my new iphone 5 is frozen, with the cord to computer symbol on the screen after failing to finish updating to ios 7.  iTunes no longer sees the phone. I've tried rebooting the computer, rebooting the iPhone, but iTunes still doesn't see the iPhone.

    If your computer doesn't see the phone when you plug it in, you may have to take it to an Apple Store.

  • Images burn into the screen after being there for only a few minutes?

    What's wrong with my mac if images burn into the screen after being there for only a few minutes?
    I can have an icon, like a folder or something, on my desktop for only a few minutes and then when I move it an image of it will be burned into the screen for another few minutes. Same thing happens with having a webpage open for a few minutes or word document. What part of my computer is malfunctioning and is Apple responsible for repairing it?

    Hi,
    Does it happen on all desktops applications as well as Modern UI Apps? Since this issue only happened recently, I suspect a newly-installed third party program causes this issue, please check these programs if possible.
    We can also boot into clean boot mode, test the issue.
    http://support.microsoft.com/KB/929135
    Run a virus scan to eliminate some malware\virus
    Similiar issue
    https://social.technet.microsoft.com/Forums/en-US/125204a0-937e-4bc6-bb60-8fe3244b4514/all-windowsapplications-keep-minimizing-on-their-own-windows-81?forum=w8itprogeneral 
    Yolanda Zhu
    TechNet Community Support

  • I cannot get Adobe ExportPDF to work. The screen is blank when I click on Select PDF files to Export.  I use windows 7.

    I cannot get Adobe ExportPDF to work. The screen is blank when I click on Select PDF files to Export.  I use windows 7. I also tried to export a document directly from Adobe Reader using the tool, but it gave me an error message. Any suggestions?

    Hi,
    Try to use different browser.
    Would it be possible for you to send me the document so that i can take a look at my end?
    You can email me at:[email protected]
    Regards,
    Florence

  • Since Yosemite my Macbook 11inch mid 2011 does not see second thunderbolt display anymore. My MacBookPro 13inch Early 2013 works fine, but it swaps the screens after an (re)boot

    Since Yosemite my Macbook 11inch mid 2011 (supports Thunderbolt) does not see the second thunderbolt display anymore.
    My MacBookPro 13inch Early 2013 works fine, but it swaps the screens after an (re)boot.
    Does anyone else experience these problems and/or have solutions

    Hello ROBLAHAY,
    I'm sorry to hear you are having this issue with your MacBook Air. I also apologize, I'm a bit unclear on the exact configuration you are describing. If you are talking about using two external Thunderbolt displays (in addition to the internal display) with your Mid 2011 MacBook Air 11-inch, you may want to be aware that only a single external Thunderbolt display is supported on that model, as noted in the following article:
    3. How many Apple Thunderbolt Displays can I use with my Mac in OS X?
    The table below indicates how many Thunderbolt displays can be connected to Thunderbolt-capable Mac computers in OS X.
    Computer
    Maximum connected displays
    Thunderbolt-capable Macs with Intel HD Graphics 3000 integrated graphics can support one connected Apple Thunderbolt Display (27-inch).
    MacBook Air (Mid 2011)
    MacBook Pro (13-inch, Early 2011) and (13-inch, Late 2011)1
    Mac mini (Mid 2011), 2.3 GHz
    Mac mini with Lion Server (Mid 2011)
    One Thunderbolt display
    Thunderbolt ports and displays: Frequently asked questions (FAQ) - Apple Support
    If you are using just a single external display and still having issues, you may find the troubleshooting steps outlined in the this article helpful:
    Apple computers: Troubleshooting issues with video on internal or external displays - Apple Support
    Sincerely,
    - Brenden

  • How to enable the screen after triggering the error message

    Hi All,
    we have a tcode IW31, in that one field(WBS element -PROID) is not mandatory. so we have written the following code to make it mandatory in a user exit EXIT_SAPLCOIH_010.It's triggering the error message, but it is going into disable mode. Please sugget me how to enable the screen after getting the error message triggering.
    if not caufvd_imp-proid is initial.
      select single * from t350 into wa_t350
              where  auart    = caufvd_imp-auart
                and  imord    = 'X'.
      if sy-subrc is initial.
        pspel = caufvd_imp-proid.
      else.
        call function 'CONVERSION_EXIT_ABPSP_OUTPUT'
             exporting
                  input  = caufvd_imp-proid
             importing
                  output = l_posid.
        concatenate text-t10 l_posid text-t11
                    into l_textline1 separated by space.
        message i208(00) with l_textline1.
      endif.
    else.
      message e208(00) with 'Please maintain WBS element in Location Tab'.
    endif.
    Thanks

    Hi,
    Instead of error message use status message like
    message s208(00) with 'Please maintain WBS element in Location Tab'.
    Leave to screen sy-synnr.
    This will allow to move to the screen and have in enable mode.
    WIth Regards,
    Dwaraka.S
    Edited by: Dwarakanath Sankarayogi on Feb 13, 2009 7:46 AM

  • HT1430 My Ipad won't start up.  The apple logo appears and just stays on the screen. after a while it starts blinking every minute

    My Ipad won't start up.  The apple logo appears and just stays on the screen. after a while it starts blinking every minute

    Try recovery mode as described here.
    Note you may have to try to enter recovery mode more than one time to succeed.
    HT1808

Maybe you are looking for

  • Problem with Change Doc BANF for BUS2009

    Hi,   The scenario of mine is to trigger the REJECTION_STOP event of BUS2009  when a PR rejection is cancelled for that I am using Change documents. I have created an entry in SWEC for change doc object BANFand BO BUS2009- REJECTION_STOP. The problem

  • ITunes lags when iPod is connected...

    I currently have iTunes 7.1.1 and am running Windows XP, when I open iTunes, it is fine and can play songs and all that jazz. The problem however is when I connect my iPod 5th Gen. to the computer. iTunes suddenly freezes up and nothing is accessible

  • Oracle Business Intelligence 11.1.1.7 installation - Creating Domain error

    Hi, I am trying to install OBI 11.1.1.7. I already have OBI 10g installed in my machine. I have taken care of the following things like 1) Configuring the Microsoft LoopBack Adapter 2) Configuring Static IP 3) Installing RCU 4) JDK1.7 I have tried to

  • Nano acting up...

    My nano was working fine, but when I plugged it into the computer the screen froze, and is stuck in the hold position. What can I do to fix this? I've tried reseting it, changed the USB port, restarted my computer and updated my software. Any help wo

  • I install ios 6 in iphone 4g.how to install cydia

    My Friends How Show Facbook Download Photo. How To Install Cydia In Iphone 4G IOS6