How to bring SOLMAN Systemmonitoring on mobile devices

Dear all,
looking for a possibility to bring Solution Monitoring and/or Systemmonitoring on an iOS or android mobile device.
Has anyone experienced this? looking for tools or describtion how to realize it.
Thank you very much
I´m grateful for every hint...
Thomas

Hi Thomas,
there have  been some successful stories of SAP in iPad.
http://en.sap.info/sap-on-ipad-it%E2%80%99s-all-going-mobile/32788
So far I didn´t hear of SAP for Android.
regards, Javier

Similar Messages

  • TS1567 How do I start my apple mobile device service

    How do I start the apple mobile device service

    Depends on what version of windows you're running to give an accurate response... but it looks like you've posted the how to article as the title.... so i guess i'm a little confused as to why you're asking.
    Windows XP
    Close iTunes and disconnect the iPhone, iPad, or iPod touch.
    Choose Start > Control Panel.
    Inside the Control Panel, open Administrative Tools.
    Open Services.
    Select Apple Mobile Device and click Stop the service as shown below:
    After the service has stopped, click Start the service.
    After the Apple Mobile Device service has started again, open iTunes and connect the device.
    Windows Vista or Windows 7
    Close iTunes and disconnect the iPhone, iPad, or iPod touch.
    Click the Windows Start button .
    In the Start Search field type Services.
    In the Programs section of the search results, Click "Services".
    Select Apple Mobile Device and click Stop the service as shown below:
    After the service has stopped, click Start the service.
    After the Apple Mobile Device service has started again, open iTunes and connect the device.

  • TS1567 How do you get  the apple mobile device service started

    How do you get the apple mobile device service started

    http://support.apple.com/kb/ts1567
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    Next see:
    iOS: Device not recognized in iTunes for Windows

  • How do i print from my mobile device

    how do i print from my mobile device?

    Hi,
    Your question can take many days to answer because this depends on your printer and also your mobile device(s).
    1. Firstly, you need to have a printer which supports this. You can check from the following list:
       http://h10025.www1.hp.com/ewfrf/wc/document?cc=hr&dlc=hr&docname=c02814760&lang=hr&lc=en&product=391...
    2. Secondly, your mobile device(s) must also support this. Please use information from the following link:
      http://www8.hp.com/us/en/products/smart-phones-handhelds-calculators/mobile-apps/app_details.html?ap... 
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to use filters on ios mobile devices (iPhone/iPad) using GPU rendering (Solved)

    Many moons ago I asked a question here on the forums about how to use filters (specifically a glow filter) on a mobile devices (specifically the iPhone) when using GPU rendering and high resolution.
    At the time, there was no answer... filters were unsupported. Period.
    Well, Thanks to a buddy of mine, this problem has been solved and I can report that I have gotten a color matrix filter for desaturation AND a glow filter working on the iPhone and the iPad using GPU rendering and high resolution.
    The solution, in a nut shell is as follows:
    1: Create your display object... ie: a sprite.
    2. Apply your filter to the sprite like you normally would.
    3. Create a new bitmapdata and then draw that display object into the bitmap data.
    4. Put the new bitmapdata into a bitmap and then put it on the stage or do what you want.
    When you draw the display object into the bitmapdata, it will draw it WITH THE FILTER!
    So even if you put your display object onto the stage, the filter will not be visible, but the new bitmapdata will!
    Here is a sample app I created and tested on the iphone and ipad
    var bm:Bitmap;
    // temp bitmap object
    var bmData:BitmapData;
    // temp bitmapData object
    var m:Matrix;
    // temp matrix object
    var gl:GlowFilter;
    // the glow filter we are going to use
    var sprGL:Sprite;
    // the source sprite we are going to apply the filter too
    var sprGL2:Sprite;
    // the sprite that will hold our final bitmapdata containing the original sprite with a filter.
    // create the filters we are going to use.
    gl = new GlowFilter(0xFF0000, 0.9, 10, 10, 5, 2, false, false);
    // create the source sprite that will use our glow filter.
    sprGL = new Sprite();
    // create a bitmap with any image from our library to place into our source sprite.
    bm = new Bitmap(new Msgbox_Background(), "auto", true);
    // add the bitmap to our source sprite.
    sprGL.addChild(bm);
    // add the glow filter to the source sprite.
    sprGL.filters = [gl];
    // create the bitmapdata that will draw our glowing sprite.
    sprGL2 = new Sprite();
    // create the bitmap data to hold our new image... remember, with glow filters, you need to add the padding for the flow manually. Should be double the blur size
    bmData = new BitmapData(sprGL.width+20, sprGL.height+20, true, 0);
    // create a matrix to translate our source image when we draw it. Should be the same as our filter blur size.
    m = new Matrix(1,0,0,1, 10, 10);
    // draw the source sprite containing the filter into our bitmap data
    bmData.draw(sprGL, m);
    // put the new bitmap data into a bitmap so we can see it on screen.
    bm = new Bitmap(bmData, "auto", true);
    // put the new bitmap into a sprite - this is just because the rest of my test app needed it, you can probably just put the bitmap right on the screen directly.
    sprGL2.addChild(bm);
    // put the source sprite with the filter on the stage. It should draw, but you will not see the filter.
    sprGL.x = 100;
    sprGL.y = 50;
    this.addChild(sprGL);
    // put the filtered sprite on the stage. it shoudl appear like the source sprite, but a little bigger (because of the glow padding)
    // and unlike the source sprite, the flow filter should acutally be visible now!
    sprGL2.x = 300;
    sprGL2.y = 50;
    this.addChild(sprGL2);

    Great stuff dave
    I currently have a slider which changes the hue of an image in a movieclip, I need it to move through he full range -180 to 180.
    I desperately need to get this working on a tablet but cant get the filters to work in GPU mode. My application works too slow in cpu mode.
    var Mcolor:AdjustColor = new AdjustColor();   //This object will hold the color properties
    var Mfilter:ColorMatrixFilter;                           //Will store the modified color filter to change the image
    var markerSli:SliderUI = new SliderUI(stage, "x", markerSli.track_mc, markerSli.slider_mc, -180, 180, 0, 1);   //using slider from http://evolve.reintroducing.com
    Mcolor.brightness = 0;  Mcolor.contrast = 0; Mcolor.hue = 0; Mcolor.saturation = 0;            // Set initial value for filter
    markerSli.addEventListener(SliderUIEvent.ON_UPDATE, markerSlider);                          // listen for slider changes
    function markerSlider($evt:SliderUIEvent):void {
        Mcolor.hue = $evt.currentValue;                        
        updateM();
    function updateM():void{
        Mfilter = new ColorMatrixFilter(Mcolor.CalculateFinalFlatArray());
        all.marker.filters = [Mfilter];
    how would I use your solution in my case
    many thanks.

  • ActiveSync, how to show more attributes on mobile devices

    We are currently running Exchange 2010 SP3 and have a large iOS population.  We also populate the manager attribute in Active Directory.  When users browse the GAL from within Outlook they can see the manager attribute and can see who there manager
    is.  A request has come in to be able to see this on the iOS devices, but can't seem to figure out how or if this is even possible.  Any ideas?  We only see the basics.  This is true on Windows Mobile, Android, and iOS.  I must be
    missing something.
    d

    The attribute is fine in Active Directory we just want to be able to see the users in the GAL managers on mobile devices.  Also as mentioned searching the GAL within Outlook works just fine we an see the users managers.  Right now when you look
    up someone on your mobile device you get there Display Name, Email Address, phone numbers.  We would like to see who the users manager is.
    d

  • How do I fix this Apple Mobile Device issue?

    When I tried to update Itunes today it keeps telling me that something wasn't installed properly and Itunes won't work. I uninstalled Itunes then tried to reinstall it, now it keeps telling me that the "Service Apple Mobile Device failed to start" and its asking me to verify the system to activate but I have no idea what it wants me to do. I don't know how to verify the service or anything.

    Follow the directions of tt2 in: https://discussions.apple.com/thread/5822086

  • How to disable Create Order in Mobile Device

    Hi All,
    How to disable create order in the mobile device. We implemented MAM3.0 scenario, we just wanted to maintain Edit Order, Display Order in the Order Management. We don't want Create Order functionality in the mobile device. How can we achieve this?
    Please through some light.
    Thanks and Regards,
    Ameer.

    Hi,
    You can find all relevant enhancement documents for MAM30 at:
    http://service.sap.com -> Under Sap support portal -> software download ->Sap Installations And Upgrades -> Installation and Upgrade guides ->SAP xApps -> SAP xApps for Mobile Business -> SAP xMAM -> There you can find for both xMAM 3.0 (For NW 04 and 04s).
    You can see the Enhancemnt guide for Frontend for more details.
    Hope this helps.
    Best Regards,
    Siva.
    PS: Reward with some points if you find the post useful.

  • I am having trouble connecting my Iphone to Itunes. How do you turn on apple mobile device on a window computer

    Anyone know how to turn on Apple mobile device on a windows computer. I connected my phone and it was recognized initially then when I performed an update to Itunes it no longer recognized my phone.

    Have a look at this support document, it may help http://support.apple.com/kb/TS1567

  • How do i restore iphone witg mobile device support?

    how to restore without mobile ****, i dont know how to acces mobile support to restore iphone PLEASE HELP

    Try here:
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    then try the AMDS topic of:
    'iOS: Device not recognized in iTunes for Windows

  • How do I start my apple mobile device service.

    My Iphone is not recognized in Itunes.  I get a message that I need to start my apple mobile device service.  My daughters Iphone works in I tunes so I know it is not the PC or tunes or the port or cable. 

    close itunes and disconnect your device
    click the start button
    right above it type in services in the search field
    in the programs section click services with the gear next to it
    on the right click applemobiledevice
    to the right click start the service
    if the service is already started then click stop and after it stops click start
    open itunes and connect your device and wallahhhhh

  • HT4236 How do I start the Apple Mobile Device Service?

    iPad stopped syncing photo stream. When connected, I get the message, "This iPad cannot be used becamse the Apple Mobile Device Service is not started".

    AMDS for Mac   http://support.apple.com/kb/ht1747
    AMDS for Windows   http://support.apple.com/kb/TS1567

  • How do I fix alignment on mobile device?

    Website is aligned perfectly on a laptop or desktop computer but on any mobile device the entire website is off center. Also plugging in hyperlinks is not working. Any help would be appreciated! Thanks!

    The most common reason is an empty box or text box on the page. In your mobile master pages and pages that are effected, do a select all and you will probably see an empty page element that is forcing your layout to shift.

  • How to Avoid Multiple Submits (In Mobile Device Browsers)

    All,
    We have a custom Application(developed using OAF) which is used Mobile Device browsers.
    Once the user enters the Data, he will click on Submit Button, In the PFR, we are calling a pl/sql procedure,
    that might take few seconds to come back depending upon the number of records he entered for submission.
    In between the user thinks the button is not pressed, and when he try to press the submit button again the pl/sql will be called again with the same data.
    We would like to avoid/ignore the second submit.
    1) We tried ((OABodyBean)body).setBlockOnEverySubmit(true);
    But which is not supported in Mobile/PDA.
    2) Used TransactionHelper start/end, but when the page is getting transferred the transaction need to be ended, but that time if the
    user submit again, we lost the control again.
    Is there any workaround to solve this issue,
    This is one of the show stopper for the client.
    With Regards,
    Kali.
    OSSI.

    I haven't tried it before but it should help.
    [https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/cda3992d-0e01-0010-90b2-c4e1f899ac01|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/cda3992d-0e01-0010-90b2-c4e1f899ac01]

  • How I can start the apple mobile device?

    i install itunes 10.5 "I think" and I get a yellow icon that reads: "You can not use this ipod because it has not started the service for Apple's mobile devices"I do now?

    Ho thank you very much hope it works

Maybe you are looking for

  • Track levels suddenly much higher than normal. ?!?!?

    Need some help friends... I have a problem that I can't seem to fix; When I boot up an existing song or project, the levels shown on most of my tracks are peaking but the sound isn't clipping. The faders were all well below zero normally but for some

  • How to Protect Contacts Before Servicing iMac

    I need to upgrade my iMac's RAM. I am concerned that I have confidential information in my Contacts app (like passwords). Is there a way to wipe clean the contents of Contacts before taking my iMac in for service, and then later syncing it with my iP

  • I saw an iPod that came from Taiwan

    This iPod supports music, video and pictures. It is not wide like the new one it is narrow like the 2nd gen. at the bottom of the window it says iPod, it is black with a white dial. It has no port like the others it only has a USB connector. It also

  • Duplicate threads of execution in WLS92 MP2

    I was advised to re-post my question to this forum:           Hi,           I am working on migrating our EAR application from WLs91 to WLS92 MP2 on Windows, and I found the following issues:           1. when starting WLS, the following warning show

  • Is there a way to sync my saved user ids and passwords between Mac and iPhone using iCloud?

    Is there a way to sync my saved user ids and passwords in Safari between Mac and iPhone using iCloud? Like I can do using Chrome for Mac and iOS...