Generate a new SAP mode maximized and active working with Excel or Word

Hello!
We have an event that it generates a new SAP mode in the desktop. This mode is generated ok (maximized and active) if the user is working in other SAP mode in this moment.
But this mode is generated minimized if the user is working with a Word or Excel Microsoft document in this moment.
We need to generate this new mode: ACTIVE and MAXIMIZED when the user is working wiht any non SAP tool in that moment. Is this possible??
We have checked the following functions module with  failed results:
NAVIGATION_EXECUTE_OBJECT
ECATT_START_GUI_REMOTE
TH_CREATE_MODE
Thanks in advance!!
Regards,
Message was edited by:
        Elisa Villellas

Could you try disabling graphics hardware acceleration? (I'm having trouble determining from your "More system information" whether it's enabled or disabled.) Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
You usually need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
orange Firefox button ''or'' classic Tools menu > Options > Advanced
On the "General" mini-tab, uncheck the box for "Use hardware acceleration when available"
If you restart Firefox, is the issue resolved?

Similar Messages

  • Will the new Apple wireless keyboard and mouse work with my Macbook Pro?

    Looking at purchasing a wireless keyboard and mouse for my Macbook Pro. Figured the one made by apple will work, but not sure... Any suggestions on a good wireless keyboard and mouse, or knowledge on whether Apples will work or not?

    keyboard: http://eshop.macsales.com/item/Apple/MC184LLANB/
    magic mouse: http://eshop.macsales.com/item/Apple/MB829LLABB/
    I just got them last week and the keyboard is new and the mouse is used but looks brand new.  And you get a free pair of AA bateries with the mouse.  And you can get 2AA batteries for the keyboard for an extra $1.29 I highly recommend going this route as I did very recently and am very pleased.

  • Are the newer ipod classics (80GB and above) compatible with docks for the older ipod classics (20GB)?)

    are the newer ipod classics (80GB and above) compatible with docks for the older ipod classics (20GB)?)

    I have an iPod Touch 2 with iOS 4.2.1.  This is the highest version that works on this device.  I checked it once and it had to do with iOS 4.3 and above only supporting the higher RAM CPUs on newer devices.
    Apple does make it harder than it needs to be.  There still remain a number of apps available on iTunes that will work but they are hard to find because you must manually look at each app specs to see if the app supports an iOS below 4.3
    App backups are your friend since iTunes has no way to keep older version of apps.

  • Create new child accounts under an active account with transactions

    Hi experts,
    I've searched on the forums but could't get to a definitive conclusion.
    Is there a way to create new child accounts under an active account with transactions?
    I have an account 6226 with transactions.
    The customer would like to divide this account in 4 new accounts:
    62261, 62262, 62263, 62264.
    B1 gives an error when I try to change the account to title which is undestandable but I imagine that should be a way to do this beacause with time the customers needs can change...
    Thanks everyone!

    Hi,
    Welcome you post on the forum.
    B1 has only one level for active account. You can get the definitive conclusion that it is not possible to have child active account.
    Thanks,
    Gordon

  • I have bought a new iPad 2 charger and it works absolutely fine but then I wanted to upload some pictures on the computer so I put the wire in the right places but it doesn't work so I tried my iPhone and it worked fine?

    I have bought a new iPad 2 charger and it works absolutely fine but then I wanted to upload some pictures on the computer so I put the wire in the right places but it doesn't work so I tried my iPhone and it worked fine?

    Plz answer as soon as possible

  • Any news to the copy and paste problem with osx 10.9 ms rdc client?

    we have a new macmini with 10.9 and we work with microsoft remote desktop client 8.0.5,
    since we use this combination, we can´t copy and paste text between both systems...
    regards
    shift_f7

    Hi,
    Yes, it is not supported in the current versions.
    The workaround is to use folder redirection.
    Folder redirection enables access local folders during the remote session. Click the + button at the bottom of the dialog and choose a folder you want to have redirected.
    Configure Folder Redirection
    1. Click the + button.
    2. In the Add Local Folder window, enter the following information:
    • Name: Set a name for the folder to be available during the remote session.
    • Path: Select the path to the folder to be available during the remote session.
    3. Click the exit button to save the remote desktop.
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • Will the Google Docs app in the iTunes store work with my new iMac? Description states it works with the iPod, iPhone and iPad.

    Will the Google Docs app in the iTunes store work with my new iMac? Description states it works with the iPod, iPhone and iPad.

    There's iOS apps for iOS which is what iPods, iPads, and iPhones use.  Then there are Mac Apps (which is a different store) which is what run on a computer with OSX.

  • Anyone been able to get the sap.ca.ui.FileUpload control working with a Gateway OData service?

    Hi,
    I have been trying to get the sap.ca.ui.FileUpload control working with an OData Gateway service, specifically /IWPGW/TASKPROCESSING which is the service used by both Fiori Approve Requests and the Unified Inbox.
    I have looked at the sample application in the Explored at SAPUI5 Explored
    I have managed to replicate that and get it to work, but as soon as I switch it from a JSONModel to an ODataModel I get javascript errors from within the setModel method of the control. I have redefined that method and corrected the errors, which enables me to get a bit further, but then I hit more errors, and other strange behaviour.
    Either I am doing something completely wrong, or to me it appears as if this control is still extremely buggy and maybe either not designed to work with an ODataModel, or just hasn't been tested using an ODataModel. I'm hoping it is my mistake.
    So has anybody out there successfully managed to use this control connecting it to a Gateway OData service? If so please share your experience.
    Thanks,
    Brad

    Hi Pauline,
    Same issue I had, I switched to using a sap.m.list and handling the press as follows:
    attachmentsList.bindItems(workItemPath + "/Attachments", new sap.m.StandardListItem({
                               type: sap.m.ListType.Active,
                               title: "{FileName}",
                               description: "{CreatedByName}",
                               icon: "sap-icon://doc-attachment",
    //                         counter: "{FileSize}",
                          info: {path : "CreatedAt", formatter: dateTimeFormatter},
                          tap: function(oEvent){
                                var oContext = oEvent.getSource().getBindingContext();
                                var media_src = oContext.getProperty().__metadata.media_src;
                                sap.m.URLHelper.redirect(media_src, true);
                        }), new sap.ui.model.Sorter("CreatedAt", true));
    So sap.m.URLHelper.redirect(media_src, true); is what loads the attachment.
    See the full function handler:
    function(oEvent){
    function(oEvent){
                  var oContext = oEvent.getSource().getBindingContext();
                  var media_src = oContext.getProperty().__metadata.media_src;
            sap.m.URLHelper.redirect(media_src, true);
    This should be enough if you only want to list and display the attachments, then you don't really need the FileUploader control as that is more advanced and handles upload, display, change and deletion of files.
    I only needed to upload and display files, so I used a list to display it and created a separate upload button using the sap.ui.unified.FileUploader control.
    Hope that helps.
    Cheers,
    Brad

  • Ipod doesn't work on speakers but headphones are fine and speaker works with iPhone. Possible connector issue? Any thoughts on how I can get the fixed?

    ipod doesn't work on speakers but headphones are fine and speaker works with iPhone. Possible connector issue? Any thoughts on how I can get the fixed?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:       
    iOS: How to back up           
    - Restore to factory settings/new iOS device.

  • My iPhone 5 its running IOS6.4 and just work with wifi, when I use 3G I can't send or receive any data

    My iPhone 5 its running IOS6.4 and just work with wifi, when I use 3G I can't send or receive any data

    Try resetting all network settings, or turn the airplane mode on then off, or restarting the device itself
    if all else fails, do a restore (Back-up everything before doing this)
    if it still fails, contact apple or your wireless carrier.

  • What apple software allows me to open and work with excel files?

    What Apple software allows me to open and work with Excel files?

    Numbers, OpenOffice, Microsoft Office 2008 or newer, or similar products. Microsoft Office 2004 doesn't work in 10.7.
    (86805)

  • When working on document in numbers and saving it I then try to open on iPad. It is not syncing what do I have to do after using on Mac to then be able to upload on iPad.  I have set cloud up and it works with keynote

    When working on document in numbers and saving it I then try to open on iPad. It is not syncing what do I have to do after using on Mac to then be able to upload on iPad.  I have set cloud up and it works with keynote

    Welcome to the Apple Community.
    I have seen previous versions mentioned in a pop up message before on iCloud.com, but I'm not really sure at all how it would help, as I couldn't get it to do anything.
    The best advice I have at this time is to back up your work on your iOS device by regularly saving it to iTunes, if anything goes wrong you can then either load it into the numbers app again on the device or recover it via iTunes on your computer.
    My syncs are immediate, I never get chance to see if it works in the background, sorry.

  • 2 pluggins read disabled and cant work with firefox.. How do I fix that..

    2 pluggins read disabled and cant work with firefox..I followed instructions and cant figure out what to do. How do I fix that..

    I think your options are to update the plugins or to find alternatives. Which ones are they?

  • Does tilt and rotate work with the Magic TrackPad?

    Does tilt and rotate work with the Magic TrackPad? I am a gamer. So this capability is very important.

    Basically, yes. But I think this also depends on the game's settings.

  • Can I upgrade to maverick, and still working with windows partitions without any problem?

    I have a MacBook Pro runing Mac Os 10.6.8, and a partition runing windows 7, I want to Upgrade to Maverick.
    Can I upgrade to maverick, and still working with windows partitions without any problem?

    yeah I installed win7 64bit pro on lion and have since upgraded osx to mtn lion and then mavericks
    and the windows partition to win8 and then win8.1 never done a reinstall of anything

Maybe you are looking for

  • Auto-refresh search result (for activities)

    Hi all, we've got a customer requirement to implement a auto-refresh function for the search result for activities, means, the search result table should automatically be updated every x minutes. In component BT126S_APPT, view layout ApptSQ.htm, I've

  • Name of server in a cluster

              IS there a way to get the name of the managed server in a cluster thats currently           servicing a request? I looked at the JMX API and couldnt find anything obvious           that would let me know the name of the server in a cluster

  • IPod classic won't turn off when plugged into a home theater dock; what's up? will it hurt to leave it on all the time?

    I bought a new iPod Classic and it won't turn off when plugged into a home theater dock. Is this normal and will it hurt the iPod if i leave it on all the time?

  • Recovering Outlook 2013 from crashed disk

    My Windows 7 Ultimate system recently crashed while installing updates during a power failure.  Can't get the disk to boot, but it does come up as a secondary drive.  Got a new main disk and reloaded Office 2013.  I copied my old PST file to the new

  • Problems scanning with hp printer

    I use HP Photosmart B110 all in one and after changing wifi network have had nothing but trouble. Having lost any connection between mac mini and printer eventual i got the printer function to wok - problem is the scan function is inaccessible now. A