Auto update GUI from server

Goodmorning,
i have installed over server "SAP Setup Administrator server" for mantain a gui with centralized deployment.
I do some upgrade to packages.
For put this new version of package i see in documentation that i must insert an "SAP Automatic service update".
I not found this in marketplace, where are i can found?
thanks

Right click your gui icon in the desktop -> configure auto-update -> activate auto-update..
Hope that help
Juan

Similar Messages

  • How to control iTV GUI from server

    I wanna develop iTV like DVB-MHP Ref-Impl at devicetop.com, but I want to control the GUI from server not build the GUI at client. it's like if we build web page database. at client side will request page to server and server send the UI+database to client. but the client side is iTV from devicetop. can I realize this???
    what web server that can make it realize??

    Well, MHP doesn't explicitly support it, but if you can implement it, then it's allowed. Implementing it is the hard part :)
    The rest of this answer assumes that you're not using DVB-HTML (fairly safe, since no available platform that I know of currently supports it). If this isn';t the case, please ignore the rest of this.
    Narakrishna, why do you want to build the GUI on the server and not the client? Given the way that MHP is designed to operate (e.g. like writing any other Java code, where the client running the app handles everything), then doing this will get extremely complex. You're assuming that a return channel exists and is always on, which will not be the case for most users. Since most of the existing MHP implementations use PSTN modems for the return channel if they have one, using an application like this could get very expensive for the user. This situation isn't likely to change in the short term.
    It could also be more computationally expensive to render a GUI built on the server than to just build the GUI on the client, since the GUI would eventually have to be converted to Java objects to be displayed. It's much easier to simply build the GUI on the client from Java objects int he first place.
    One way of doing someting similar (at the expense of object carousel size and application loading time) would be to hold the descriptions of pre-built GUI components in the oject carousel. You can then update these when you need to. There's a couple of downsides to this approach though:
    1) the GUI components are the same for every user
    2) depending on what you wanted, you'd still need to do some customisation on the client.
    3) you need some way of turning the description in to a real Java GUI component. Maybe you could serialise Java objects for your GUI and do it that way, but I'm not sure.
    On the whole, I don't think that this is the best approach to building a GUI for MHP apps due to the limitations of the platform.

  • Auto update - upgrade from BPC 7.0 MS SP9 to SP10.

    Hi,
    I have upgraded from BPC 7.0 MS SP9 to SP10.
    I would like to execute auto update programm. I have the message ' update is OK' but the system does nothing
    NB : I closed all Office programms And internet Explorer before running this update programm.
    Do anyone else experience the same issue?
    Best regards
    Bastien

    Hi,
    Do have Vista or Windows 7 on your computer? If yes, then UAC may interfere. You may need to disable UAC or update client manually. To obtain client software installers please download them from your server as instructed here:
    Need details about BPC 7.5 MS Client Installation

  • Tiger Auto Update cannot find server

    I have not been able to go to auto update and download updates and have to do it manually. When every I press auto update is says Software update cannot connect to the update server. Check your internet connection (which is always checked to be ok and online all the tine) can someone help me.
    Not getting any errors just the above.
    G4 Quick Silver  Tiger Operating Software and otherwise running very well.

    Hi, that can be a stubborn one, but...
    Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions.
    Try trashing these files if they exist, but don't empty the trash yet...
    Library/Preferences/com.apple.SoftwareUpdate.plist
    Library/Caches/com.apple.SoftwareUpdate
    Users/YourUserName/Library/Preferences/ByHost/com.apple.SoftwareUpdate.(12 digit number).plist
    Users/YourUserName/Library/Caches/com.apple.SoftwareUpdate
    Users/YourUserName/Library/Preferences/com.apple.SoftwareUpdate.plist
    /Users/YourUserName/Library/Preferences/com.apple.systempreferences.plist
    Reboot.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    Might see these for Software Update not working...
    http://thinlight.org/2010/05/15/mac-software-update-not-working-solution/
    Or get Hostal to make it simple to edit the hosts file...
    http://www.versiontracker.com/dyn/moreinfo/macosx/9732

  • Auto update colors (from custom swatch library) in documents..

    Hi all,
    I searched the forums for all I could, but found no solution for this one...
    So here goes.
    Is there a way to use a 'user defined' swatch library to (auto)update colors in several artworks/files that use that specific swatch library.
    I know I could reload and 'merge' all the swatches from the library with the ones used in the file (with the same name).
    Select the one you want to keep and then the one you'd like to overwrite, merge!
    But here's what I tried and what I think should be possible..
    I have twelve files that all use colours from one 'user defined' swatch library ['Human'], so all twelve files have the same 'skin' colour where needed.
    Now I need the 'skin' colour (in alle twelve files) to be a shade darker...
    My idea was to open the swatch library 'Human' in Illustrator, change the swatch called 'skin' and save.... Presto! All twelve files using this 'skin'colour should now be one shade darker...
    But this doesn't seem to work...
    Swatches are set to 'global'..
    What am I missing or will this be in the 'features requests' part of these forums next?
    Oh and I'm working in:
    Illustrator CS5, windows 7, 64 bit
    Kind regards,
    Erik

    As far as I know color swatches are referenced from the file itself, they are not like a linked image that can update all files using it. So, with swatches you have to apply the change to each file. Probably should be possible to automate this with a script.

  • Making a jtable auto updates itself from a mysql table

    Pretty much what the title says. How can i auto update the jtable for every time my mysql table is updated in anyway? i am implementing this auto update function in my admin program which displays a list of users who are online etc. from the moment a user is offline/online or changes other details displayed in my jtable, i want it to auto update the jtable as soon as the actual mysql table has been updated with new data...
    I was thinking of re doing the whole jtable i made and create a thread for that table that has a infinite while loop that keeps repainting the jtable with the new updated data from a mysql table query eg select * from table and store the data into a resultset which then gets transferred into a vector. Load the vector into the jtbale and their ya go�.
    what you think of this approach? Is their a better way to do this?
    at the moment, as soon as my application opens, the jtable views all the data from my sql table, however if it doesnt auto updates itself, cheers

    i am implementing this auto update
    function in my admin program which displays a list of
    users who are online etc. from the moment a user is
    offline/online or changes other details displayed in
    my jtable, i want it to auto update the jtable as
    soon as the actual mysql table has been updated with
    new data...Well you can make some changes to make implementation easy
    Ex: Create a table to keep a log of the changes in the system the dmin program read the log and replicate the changes as specified in the log on the table model.
    When reading the log the admin program keep track of the sequence no of the last read log entry and it reads ony the entries which has larger seq numbers than the last read seq no
    I dont think that it is critical to make this to be cloase to real time. An Update once a 1 or 2 secs should be sufficient.

  • How to really, really disable auto-update popups from flash player?

    I have here a serious problem under 64bit Win7.
    More and more frequently a popup appears prompting me (or even start download without prompt!!)if a new flash player should be installed.
    When I proceed it shows the progress bar and downloads the package and installation started until the "done" button is shown.
    Then I re-open Internet Explorer 9 again and re-vist the last webpage and ....the download starts again.
    This is really annoying.
    How do I really, really stop forever update prompts for flash player plugins for Firefox and Internet Explorer?
    Peter

    Hi pxstein,
    Thanks for posting the screenshots, especially the one of the Process Explorer.  It indicates that this is not an auto-update install situation.  This type of installation is triggered via content on the page that requires a newer version of Flash Player (your screenshot indicates you have 11.8.800.94) and the content provider has decided to use this type of installation (we support several types that content providers can implement).  Since this type of installation is controlled by the content, there isn't a way to disable it.  Normally, IE displays a User Account Control dialog window or a dialog bar at the bottom of the page asking if you want to save/run the file.  I don't see these in your screenshots and you don't mention if they displayed or not.  If not, you may have disabled this warning at some point in time.
    Flash Player 11.8 is very old and very vulnerable to security issues and we've released many security updates since then.  My recommendation is to update Flash Player to the latest version, 15.0.0.167 for Internet Explorer (15.0.0.152 for non-IE browsers on Windows).  If you don't want the latest features available in Flash Player 15, you can install what we refer to as the Extended Support Release (ESR) version.  This is a previous stable version that we only release security updates for.  Currently this is 13.0.0.244 for both Internet Explorer and non-IE browsers on Windows.
    To download the latest version, go to https://get.adobe.com/flashplayer using Internet Explorer
    To download the ESR version, go to Adobe Flash Player Distribution | Adobe.  The links to download the FP 13 ESR version are at the bottom of the page.
    Maria

  • Installing GUI from Server.

    Hi,
    Can i install SAPGUI in my 100 clients from the server.
    What are the steps to be taken care before this?
    Regards,
    Lijo Joseph

    Hi Lijo,
    You can use the installation server to deploy your GUI. There is a guide explaining this on you sapgui cd.
    CD\GUI\WINDOWS\WIN32\setup\sapadmin.chm
    Best regards,
    Alwin

  • Auto-update Notification from a PM Work Order?

    Hi,
    Is there a way of automatically updating info on a Notification from a PM Work Order? For example, the operator who creates a Notification puts in a wrong functional location and this is carried over to the Work Order that is created from the notification. While, the work is being executed, the Work Order processor will change the Func. Location to indicate the right one. But this does not reflect on the Notification. I am sure this is not config. Is there any bapi that I can use? Please advise.
    Regards,
    Arun

    These are some related Function Modules:
    IQS0_CHANGE_NOTIFICATION
    ALM_ME_NOTIFICATION_CHANGE
    BAPI_ALM_NOTIF_DATA_MODIFY
    ALM_PM_MAINTNOT_MODIFY_DATA
    You may consult your ABAPer to identify and use to suit to your needs.
    Logic will be the code will match the F/Locn in Order and Notification everytime the Order is updated and use the above FM to update the Notification. Obviously you need to use this logic in a User-exit possibly IWO10009.
    KJogeswaraRao

  • Acrobat able to auto update document from a website?

    I am making a document that cites regulations  Regulations, obviously, can change.  I was wondering if there was a way to get Acrobat (I have version 8) to update the legislation if it changes?
    If Acrobat cannot do this, is there any other piece of software that can?
    Thanks

    Thank you so much for your reply.
    Unfortunately, I do not have the source document.  I work for a trade organization and we are putting together a document "tool kit" with important regulations for each state.  As each regulation changes (and there are many, many regulations) the hope was to have the document update as well lest it become randomly inaccurate as time goes on.  In addition, it would not be feasible to keep track of all the regulations for one state, let alone 50.
    One thing to note, is at least in some states, the regulations/statutes are listed in PDF format, not in HTML.
    I suspect I am asking for too much, but thought perhaps there was a way.  I am quite new to Acrobat.

  • IPS new auto update feature

    hi,
    the new 6.1 IPS ios has a new feature which is the auto update directly from cisco, but it seems its not working, i have entered my correct username and password , but the site already put by default for auto update seems to be not working.
    anyone tried it ?
    Thank you

    plz check below my auto update settings:
    secondary(config-hos-aut)# show settings
    auto-upgrade
    cisco-server
    enabled
    schedule-option
    calendar-schedule
    times-of-day (min: 1, max: 24, current: 1)
    time: 15:40:00
    days-of-week (min: 1, max: 7, current: 5)
    day: monday
    day: tuesday
    day: wednesday
    day: thursday
    day: friday
    user-name: i removed it
    password:
    cisco-url: https://198.133.219.25//cgi-bin/front.x/ida/locator/locator.pl default: https://198.133.219.25//cgi-bin/front.x/ida/locator/locator.pl
    user-server
    disabled
    now if this thing is fixed , i will have the other problem mentioned above and that is my username (which i removed) contains an @ in it.
    Thank you

  • WebStart app doesn't run after JRE auto-update

    Our JNLP-deployed app doesn't start if the JRE is auto-updated as part of the WebStart download. The JRE update completes successfully but the app doesn't start and the desktop shortcuts created by WebStart don't work (the path to the webstart app in the shortcuts appears to be invalid). The user has to go back to the webpage and click the link to the app's JNLP file again, then the shortcuts will have the correct path and the app will start.
    Currently, our app requires JRE 1.5.0, so typically the update is going from 1.4.2 to 1.5.0. As a test, I tried starting with 1.5.0 installed and having the app require 1.6.0 and everything works perfectly, the JRE gets auto-updated, desktop shortcuts are valid and our app starts immediately afterwards.
    This problem occurs whether the new JRE is auto-updated directly from Sun or from our own server (we're using the JREInstaller from the 1.5.0 JDK samples).
    Any idea what the problem is and how to correct it?

    Currently, our app requires JRE 1.5.0, so typically the update
    is going from 1.4.2 to 1.5.0. As a test, I tried starting with 1.5.0
    installed and having the app require 1.6.0 and everything works
    perfectly,..
    Any idea what the problem is ..No.
    .. and how to correct it? Does it work when the user upgrades direcly from
    1.4.2 to 1.6? If so, you might specify 1.6 is the
    minimum requirement. This is obviously not an
    ideal solution, but may get your users out of a bind,
    and they are probably better off using 1.6, in any case.

  • Auto update stats disabled for a user Database in Sql server

    While trying to improve the performance of few queries, we found via execution plan that there were lot of Index/Clustered index seeks. Therefore:
    First thing we did, was to check our Re-indexing and update stats job which runs weekly for this user DB ( Around 400 GB in size and is used 24*5). The job was running fine.
    Later when we ran SP_Blitz, we came to know that auto-update-stats is disabled for this user DB. We expected this to be a possible cause and change it from false to TRUE(Auto update stats)
    Also, per SP_blitz there are user-created statistics for this DB. When ran the query to check how many, we saw around 7K user stats out there.
    So my question would be 1) setting the Auto update stats to TRUE would require a reboot or once changed i need to track the performance and 2) Should we consider dropping those user created stats or manually look into them one by one.
    How should we proceed on this, please suggest, thanks!

    There may be good reasons for having auto-stats off, but those cases are not very common. It makes a little more sense to turn if off on table level. An example of the latter is a relatively small table, say < 100000 rows where not many new rows are added,
    but the existing rows are being updated frequently. This will trigger autostats, but probably without much benefit.
    But if you have a system which is very busy during peak times, you may not want autostats take resources during those hours. But if you turn off autostats, you will need to make sure that stats are updated in some other fashion.
    Here is a query that you can use review when your statistics last were updated:
    SELECT o.name, s.name, stats_date(o.object_id, s.stats_id) AS lastupdated
    FROM   sys.objects o
    JOIN   sys.stats s ON s.object_id = o.object_id
    --WHERE  s.user_created = 1
    ORDER BY lastupdated
    7000 user-created statistics sounds a little excessive, but I guess they were added to compensate for the autostats that SQL Server were not permitted to create. I would not recommend dropping these statistics, as SQL Server would spend cycles on recreating
    them.
    You should not have to restart SQL Server for the Auto-update stats setting to take effect; it takes effect immediately.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Updating the GUI from a background Thread: Platform.Runlater() Vs Tasks

    Hi Everyone,
    Hereby I would like to ask if anyone can enlighten me on the best practice for concurency with JAVAFX2. More precisely, if one has to update a Gui from a background Thread what should be the appropriate approach.
    I further explain my though:
    I have window with a text box in it and i receive some message on my network on the background, hence i want to update the scrolling textbox of my window with the incoming message. In that scenario what is the best appraoch.
    1- Shall i implement my my message receiver as thread in which i would then use a platform.RunLater() ?
    2- Or shall i use a Task ? In that case, which public property of the task shall take the message that i receive ? Are property of the task only those already defined, or any public property defined in subclass can be used to be binded in the graphical thread ?
    In general i would like to understand, what is the logic behind each method ?
    My understanding here, is that task property are only meant to update the gui with respect to the status of the task. However updating the Gui about information of change that have occured on the data model, requires Platform.RunLater to be used.
    Edited by: 987669 on Feb 12, 2013 12:12 PM

    Shall i implement my my message receiver as thread in which i would then use a platform.RunLater() ?Yes.
    Or shall i use a Task ?No.
    what is the logic behind each method?A general rule of thumb:
    a) If the operation is initiated by the client (e.g. fetch data from a server), use a Task for a one-off process (or a Service for a repeated process):
    - the extra facilities of a Task such as easier implementation of thread safety, work done and message properties, etc. are usually needed in this case.
    b) If the operation is initiated by the server (e.g. push data to the client), use Platform.runLater:
    - spin up a standard thread to listen for data (your network communication library will probably do this anyway) and to communicate results back to your UI.
    - likely you don't need the additional overhead and facilities of a Task in this case.
    Tasks and Platform.runLater are not mutually exclusive. For example if you want to update your GUI based on a partial result from an in-process task, then you can create the task and in the Task's call method, use a Platform.runLater to update the GUI as the task is executing. That's kind of a more advanced use-case and is documented in the Task documentation as "A Task Which Returns Partial Results" http://docs.oracle.com/javafx/2/api/javafx/concurrent/Task.html

  • My firefox recently updated. Now my pop mail server won't work. I did a 'restore' to last week, and it was fine. It has now auto updated. No mail server.

    I have read through several responses to others who are having problems following an update. I am not computer savvy enough to understand half of the recommended 'solutions'. I need clear and definitive instructions of what to do. (Instruction for 'dummies' is what I need.) I can not 'restore' my computer continuously, only to have the auto updates cause the pop mail server to stop working each time. If there is nothing I can do, I guess I will have to stop using Mozilla Firefox. Can you help?

    There is no solution for Firefox and POP. Firefox doesn't do email and has no need for a POP email server.
    If you are using Firefox to view and send "email", you are accessing a webmail service provider.
    http://en.wikipedia.org/wiki/Post_Office_Protocol

Maybe you are looking for

  • Travel to UK with iPhone next week. A few questions if you please!

    My daughter is going to visit the UK next week. She will be bringing her iPhone. I have bought her a plug adapter that does not convert voltage because it is my understanding that the Apple adaptor will take 220 fine. Also, the data roaming has been

  • Positive Value with Zero Stock

    hi Experts I noticed while doing a stock audit report that I had a positive value of £35.00 for a item code where the stock level was zero.   How can I get the amount down to zero too?  Stock Revaluation won't work because there is no stock and any i

  • Lost mobile functions after upgrade from Adobe PDF Pack to Creative Cloud

    I think mobile functions ar part of Creative Cloud (Student)  with respect to Acrobat Pro XI module: e.g. PDF conversion I have contacted Adobe Chat already and shall now contact this forum as very next step. However, my Reader App does not support P

  • Apprisal Document(Quick Criteria maintainance)

    Hi , I got requirement to create apprisal iview in portal i mapped my user to the backend user and it has apprisal documents but they are not visible in portal directly when open the iview instead they are comming when i go to "Quick Criteria maintai

  • How to set PONR in SOM

    Hi ,This is Manu here....... I am not able to find the solution for How to set PONR(Point of No Return) in case of in-flight Cancel/Revision Order. Order will be triggered from CRM for cancel order.