How can I automatically refresh a Web Dynpro App every 5 minutes

Hello,
I have a web dynpro that is calling a web service. I need that this web dynpro app auto-refresh (recall the web service and update the information) without any user interaction every 5 minutes.
How can I do this?
Thanks & Regards
SU

you can use timedtrigger UI element to achieve it.
Edited by: John Wu on Jun 21, 2011 5:33 AM

Similar Messages

  • How to close portal page by Web Dynpro App

    Hi There,
    I would like to close a portal page by clicking a button of a Web Dynpro App which is inside an iView on that page.
    Is this possible or not?
    Bertil

    Bertil,
    First, it is very bad decision to make decisions instead of user. Just redirect him to logoff page and let close window himself.
    In WebDynpro you may use <b>Exit plug</b> on interface view with parameter <b>Url</b> (notice the case) of type string.
    Then you may previously fire this plug with JavaScript url: javascript:void(window.top.close())
    In recent versions of WD this will not work. So you have to redirect user via exit plug to some static html page, that contains in header <script>window.top.close();</script>
    VS

  • How can I copy a standard Web Dynpro Abap?

    I have to make changes to some texts in a standard web dynpro: FITV_FPM_START. One of the texts is "Description" ("Descripción" in Spanish), which seems to be protected in the OTR. So the only option I see is to copy the whole Web Dynpro, locate the component in which the text appears, and replace it for the new one. If there is a simplest way I'd be glad to know...
    I've copied the Web Dynpro and then all the Web Dynpro Applications, with their parameters and so on.
    When I verify one of them most of the things are not appearing on the screen. I can only see the buttons. What have I missed to copy?
    Thank you in advance.

    Hi,
    If you just want to change some OTR text, I do not think that you need to copy the whole application.  Just get the alias for this OTR text.  (I just tested changing an OTR text from SAP...it did not ask me for any keys...so I hope it will be alright in your case as well....)
    To get Alias, go to your webdynpro application, than go to menu "Goto", select "online text repository browser", than double click on the OTR text you want to change the text for.  This will open up a new window...the first line is Alias Name.
    take this Alias Name....go to transaction SOTR_EDIT
    on the screen which shows up, you have following
    Language: Pick English here
    Text: *
    Alias: here put the alias name you found
    Concept: leave it blank
    click on display.
    Now on this screen go to the "EDIT" menu -top of the screen-where you also see system and help menu. Follow the following path:
    Edit->Context->Change
    As soon as you will click on Change....you will see a pop up coming up with following fields:
    Country:
    Industry:
    close this pop up box without filling out anything there....just click on red x and close this pop up box.
    After you close the pop up box you will find that the "Language" field is open for editing....
    In this field choose the language you want your Alias to be translated into or leave it as English if you want English..
    In the text field...type in your new text....
    Save your work...
    That is all...no need to do anything else.....
    you can check if your Alias is being translated...
    go back to transaction SOTR_EDIT...and than choose language and put in the Alias Name
    you should see your changed text...
    I guess you are copying a FPM application...if that is the case, than you might be missing the configuration for that application...that is why you see things missing there.... try to search in forum for FPM guide....
    I hope this helps...
    Thanks...
    AS

  • How we can done background job in web dynpro abap

    Hi expert,
    my requriment is how i can set background job in web dynpro .
    regard's
    vikash

    The same way you do it in normal ABAP. There is nothing Web Dynpro ABAP specific about starting a background job.
    There are API Function modules that begin with the name JOB_*.  Have a look at the online help for samples:
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/fa/096d40543b11d1898e0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/fa/096d4d543b11d1898e0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/fa/096d67543b11d1898e0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/fa/096d74543b11d1898e0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/fa/096d8e543b11d1898e0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/fa/096ce5543b11d1898e0000e8322d00/frameset.htm

  • How can a webpage refresh automatically if some new data has entered the da

    hi,
    How can a webpage refresh automatically if some new data has entered the database.
    with thanks
    jp reddy

    There have been several discussions on related topics. HTTP/HTML is not a "push" protocol and therefore is not well suited for this type of application. I would recommend setting a reasonable refresh rate using a META tag or switching to another technology (i.e. Applets) that can provide a push environment.

  • How to pass the data from web dynpro to workflow.

    hi gurus,
    how to pass the data from web dynpro to workflow.
    Regards
    vijay

    Hi
    you can use function module
    data   ls_input_container  TYPE swr_cont.
    data   lt_input_container  TYPE TABLE OF  swr_cont.
    CALL FUNCTION 'SAP_WAPI_START_WORKFLOW'
        EXPORTING
          task            = ptask
        IMPORTING
          return_code     = lv_return_code
          new_status      = lv_new_status
        TABLES
          input_container = pinput_container
          message_lines   = lt_message_lines
          message_struct  = lt_message_struct.
    where you pass the data in imnternal table "pinput_container" as
      ls_input_container-element = 'KUNNR'.
      ls_input_container-value = ls_skna1-kunnr ."wd_this->lv_kunnr.
      APPEND ls_input_container TO lt_input_container .
      ls_input_container-element = 'CLUSER'.
      ls_input_container-value = lv_cluser.
      APPEND ls_input_container TO lt_input_container .
      ls_input_container-element = 'BUKRS'.
      ls_input_container-value = lv_bukrs. " youe value as per requirement.
      APPEND ls_input_container TO lt_input_container .
      ls_input_container-element = 'VKORG'.
      ls_input_container-value = ls_sknvv-vkorg. " youe value as per requirement
      APPEND ls_input_container TO lt_input_container .
      ls_input_container-element = 'VTWEG'.
      ls_input_container-value = ls_sknvv-vtweg. "youe value as per requirement.
      APPEND ls_input_container TO lt_input_container .
      ls_input_container-element = 'SPART'.
      ls_input_container-value = ls_sknvv-spart. "youe value as per requirement.
      APPEND ls_input_container TO lt_input_container .
    *Also Forgot to mention where ptask is your workflow ID *
    Regards,
    Arvind
    Edited by: Arvind Patel on May 14, 2010 7:38 AM

  • How to change the web page title of a web dynpro app?

    Hello,
    I would like to change the HTML page title of a web dynpro application without renaming the application component itself - but how?
    Thanks for your comments!

    Hi M Walter,
    Assuming you are using Web Dynpro Java, you can change the title of the Web Page for Web Dynpro App by adding the title to the main window of your app.
    Go to Windows and open the properties. There will be a field called 'title'. Give the title you want, save, build, DC->Build and deploy.
    The title you gave to this Window will be displayed as the title of your Web page.
    Regards,
    Ajay

  • How to send a mail through web dynpro application

    Hi
    How to send a mail through web dynpro application?
    Thanks

    Hi ,
      Please post some more details about your query .
    One way is to can use LinkToUrl UI element and in the reference property of the UI element , give it as mailto:mail addess
    Thanks.
    aditya.

  • How to put water mark in web dynpro abap Adobe forms

    Hi
    Can any body tell me how to put water mark in web dynpro Abap adobe forms ,
    actually I need to print water mark as back ground in gray color.
    Points will be rewarded of Helpful answer..!
    Regards,
    Sidram

    Hi,
    for more information about layout options in forms, go to your form in transaction SFP, layout view and choose Help -> Adobe LifeCycle Designer Help. There you find information on page layout, e.g. " Objects can be placed anywhere on a master page, inside or outside the content area. As a general rule, do not place objects inside the content area unless your intention is to have other objects laid down on top of the master page objects when the form is rendered. If you are setting up a watermark, place it inside the content area. "
    Besides, there's an Adobe forum where you might get more information for such Adobe questions.
    Regards, Heidi

  • How to decrease performane of a web dynpro abap application

    Hi Folks,
            I am new to web dynpro abap .pls tell me how to decrease performane of a web dynpro abap application but dont say by using icm tracking and wd_trace_tool.that are used to find out errors?

    >You mean to say we can use Runtime analysis and SQL trace in WDABAP?
    Yes, that is exactly what I mean.
    >I Thomas i need e learning tutorials created by you.I am new to WDABAP.if possible try to send URL of your e learning tutorials
    They are all available here on SCN in the Web Dynpro ABAP eLearning library:
    http://www.sdn.sap.com/irj/scn/webdynpro-elearning

  • How do I undeploy/delete Web Dynpro App

    Hi,
    I created a Web Dynpro App in NWDS for some testing. Now I want to delete this App from Server but I cannot find any button saying undeploy or delete.
    Can anyone tell me how I can delete a deployed Web Dynpro App?
    Cheers
    Christian

    Hi Christian,
    You definitely should! Keep in mind that the entries are NOT sorted alphabetically, so you have to go through the complete list!
    You also can try to remove it via VA, there via "Services" -- "Deploy" -- choose your app -- "Remove". I'm not sure if this really removes everything from the server. You may give it a try, but as said, removing it via SDM is the most original way.
    Hope it helps
    Detlev

  • How do I connect my netweaver web dynpro

    How do I connect my netweaver web dynpro to the portal? how do i arrange the iviews? how do i add the iviews?

    hi,
    You can create webdynpro iviews in portal in two ways. 
    1) from iview template &
    2) from webdynpro java applications.
    If you create from the 1st one, you have to provide two parameters of the  webdynpro application.
    i) namespace
    ii) application name
    you can find these namespace & application name from content admin --> webdynpro --> open your webdynpro project > open the application. you will find two columns.
    left side name is the namespace (eg: local/firstproject) & right side you will find application name.
    If you create iview from 2nd menthod, the following is the link contains creation of webdynpro iview.
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0c7b2f25-0c01-0010-f2a2-f8a65a9dcad9]
    hope this helps you
    regards,
    vv.

  • Can CVS be used with Web Dynpro Applications?

    Is it okay to use CVS as the source control system for Web Dynpro apps? Or does the DTR have to be used? How would you use CVS within NetWeaver Developer Studio?

    Hi Dora,
    I hope at this time there should not be any confusion, because JDI can be used for Webdynpro Applications,right from devlopment to production you can maintain the versioning.
    Please go through the following links and explore more on JDI.
    You need to install the JDI separately. Go to http://service.sap.com/patches -> Entry by Application Group -> SAP Net Weaver -> SAP NETWEAVER -> SAP NETWEAVER 04 -> NWDI -> JDI 6.40 -> #OS independent
    https://www.sdn.sap.com/sdn/downloaditem.sdn?res=/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/sap enterprise portal 6.0 sp4 netweaver stack 4 developer sneak preview download.abst
    https://media.sdn.sap.com/public/eclasses/nwbcil/Java_Development_Infrastructures_files/Default.htm#nopreload=1
    http://help.sap.com/saphelp_nw04/helpdata/en/01/9c4940d1ba6913e10000000a1550b0/content.htm
    i will be happy to join with you for any JDI related issues.
    hope this info helped you
    Regards,
    RK

  • How to pause automatic refresh in BI 7.0 analyzer?

    Hi,
    I have couple of questions about 'pause automatic refresh' in BI 7.0:
    1. How to pause automactic refresh in 7.0 analyzer? can i just click on the pause refresh icon and it will take of the rest by itself right?
    2.. How to pause automatic refresh of the query in portals?
    Thanks in advance
    Aslam.

    Hi,
    Yes, when just click on the refresh icon again it will pause the automatic refresh or use BEx Analyzer ->Pause Automatic Refresh in the menu.
    Regards,
    PB

  • How to browse local file using web dynpro

    hi everyone
    How can I browse local file using Web Dynpro?And read file names into Context or array. I have tried the following code but its not working
    String resourcePath = WDURLGenerator.getResourcePath();
    String depObjResourcePath = WDURLGenerator.getResourcePath(“Test”);
    WDDeployableObjectPart appPart = WDDeployableObject.getPart(“Test”, “TestApp”, WDDeployableObjectPart.APPLICATION);
    help required urgently
    Thanks & Regards
    Jaspreet Kaur

    Reply in
    how to browse local file using web dynpro
    Regards,
    Ashwani Kr Sharma

Maybe you are looking for

  • ADF column footer problem

    hi all, im using Jdev 11.1.1.0.0. I have an inline table on my jspx page. I calculate the sum of one column in a managed bean. I want to display this value in table's footer section. So I added an input text to the column's footer and set the value f

  • IPod Classic 2010

    Hi all. I thought I'd start a discussion on what people would like to see in the 2010 Classic refresh. Please limit this discussion to Classics. There are othr forums relating to Touch and Nano. What I want in 2010 Classic. 1. 250-360 GB HDD (I know

  • Fax or Email Integration

    Dear All, I have a requirement where as soon as the user adds the sales order, some specific details like item, quantity, price, etc should be automatically mailed or faxed to SAP users and Business Partner (depending upon email field or fax field is

  • Downloading Nikon NEF Raw into Photoshop CS3

    I recently changed from a Canon DSLR to a Nikon D5000.Like many other Nikon users I have hit a problem in trying to download Nikons NEF images into CS3 .On trying to open RAW images up comes the message "Unable to open document".I have checked on the

  • How to create Variants in Web Dynpro using ABAP

    Can anyone please tell how to create and save variants in a Web DynPro application using ABAP. Also state the steps involved in saving and loading the variants.