IPhone Safari

Any ideas how to make it work for Safari:
Error when processing your request
What has happened?
The URL http://myserver/sap/bc/gui/sap/its/webgui was not called due to an error.
Note
The following error text was processed in the system SID : This browser is not supported
The error occurred on the application server myserver and in the work process 0 .
The termination type was: ABORT_MESSAGE_STATE
The ABAP call stack was:
Function: ICF_ATTACH_ITS_PLUGIN of program SAPLHTTP_RUNTIME
Method: EXECUTE_REQUEST of program CL_HTTP_SERVER================CP
Function: HTTP_DISPATCH_REQUEST of program SAPLHTTP_RUNTIME
Module: %_HTTP_START of program SAPMHTTP
What can I do?
If the termination type was RABAX_STATE, then you can find more information on the cause of the termination in the system SID in transaction ST22.
If the termination type was ABORT_MESSAGE_STATE, then you can find more information on the cause of the termination on the application server myserver in transaction SM21.
If the termination type was ERROR_MESSAGE_STATE, then you can search for more information in the trace file for the work process 0 in transaction ST11 on the application server myserver . In some situations, you may also need to analyze the trace files of other work processes.
If you do not yet have a user ID, contact your system administrator.
Error code: ICF-IE-http -c: 001 -u: USER -l: E -s: SID -i: myserver -w: 0 -d: 20100527 -t: 104658 -v: ABORT_MESSAGE_STATE -e: This browser is not supported
HTTP 500 - Internal Server Error
Your SAP Internet Communication Framework Team

Hello,
Enter the Tx: SICF and complete the Service Path field to "/sap/bc/gui/sap/its/webgui"(without quotes) and run it, then double click on the item "WebGUI", click on the button to change then you will find within the tab "Service Data" a button called "GUI Configuration" press it, and add the following parameter "~ USERAGENTCHECK"(without quotes) and value "0"(without quotes), this will disable the verification of browsers.
regards

Similar Messages

  • IPhone Safari doesn't open links in new page

    Under iPhone Safari Settings, I've got it set to Open Links In New Page, but when I click on links in Safari, that doesn't happen. When I set it to Open Links In Background, that doesn't happen either. Links open in the same page no matter what the setting.
    Anyone know how this can be fixed? Thanks.
    (iPhone 4S running IO5)

    It depends on the website. Some websites have it set up to take you to a new tab, some do it in the same tab.

  • How do I stop iPhone Safari from dynamically resizing the visual viewport?

    Sorry I post this here, but I couldn't access the developer forums (no error given, it just keeps returning me to this page https://developer.apple.com/devforums/) I'm not even sure wether that's been moved here and it's just the redirection non working.
    I need to Stop iPhone Safari from dynamically resizing the visual viewport, or in other words, to stop it from trying to "fit" the layout into the viewport.
    Why?
    Because any recalculation javascript does on absolutely positioned elements makes the whole site super IRRESPONSIVE.
    I don't know wether the issue is the element going out the already-set layout viewport (which triggers the page resizing to fit the visual viewport) or just the calculations being made constantly, but I can stop the calculations from happening when not "touching" the screen, but I need a way to stop the page resizing.
    I tried setting the viewport width to 1040px, as my layout width, and it fixed the header's width being narrower than the body (or shifted left?), but the whole page is still resized with every motion-frame (one every 3 seconds, due to overloading the redrawing engine)
    Is there a way to prevent that?

    No, that link doesn't solve it. It just says the same is found everywhere online.
    There's probably no way to do it, as per their way they "accidentally" omitted the oposite case: the page being wider than 980. They only mention what to do if the site is narrower. Something I learned is big companies (with reputation management) could let you run in circles for years no answer rather than telling you something is not possible.
    I'm the developer (can't access the dev forums, don't know why) and I DID setup the viewport, scale and other properties but none of them stopped from re-fitting the new re-sized layout in the viewport. They just ensure the "initial" view.
    I think the feature I'm looking for must be achieved with some JavaScript function targeting Safari-proprietary variable/property… if even possible.
    I just had to make things never reaching the edge until somebody contributes something useful

  • IPhone Safari block all calls

    iPhone Safari block all calls
    When i goin to internet in Safari or AppStore at iPhone, people dont colled me..
    Internet(1) + phone talk(2) = only (1) or (2)!
    I buy iphone becose i ned internet and i must every minute talkin by phone, when people call to me
    But iphone dont work as telephone when i use Internet!
    I`m from russia, my mobile operator MTS
    Letter from MTS operator:
    You may use your iphone only for internet surfing or only use as phone at one time
    iPhone is innovation device of Class B, becouse calls and internet you may use only as 1 and 2... but no 1+2 at once time
    iPhone not device of Class A, and its problem of Apple, who create iPhone,
    sorry but we dont help you.
    People! please help me! =) Pleese>>>
    Say.. When you in Safari, you recieve calls?
    Its really problem of iphone or its problem of my mobile operator? (russia, MTS)
    Thanks

    Thanks for info.. =)
    In russia 3G is comin, in my region 3G and EDGE coming soon.. after NewYear =)
    Now in my region work only gprs... =)
    but 3g is coming..
    SO my operator say, that iphone is a B class phone and its work only with voice only with internet... and dont say about 3g work graet with voice and internet..
    thanks very much =)
    Message was edited by: stek

  • IPhone - Safari parent window focus problem

    Hi All,
    I am having a peculiar problem with a website i am developing. The problem *only* happens on the iPhone(safari).
    My setup is as follows.
    1) I have a CLIENT page - shows an initial page, and has a login button.
    2) User clicks on the LOGIN button, and is shown a LOGIN popup/new-window  (this is created by posting a form using jquery 'submit' function with target='_blank')
    ====
    CLIENT.html
    var formData = '<form style="display: none; margin: 0; padding: 0; border-width: 0; overflow: hidden;" id="MyFormId" action="https://MYSERVER.COM/v2/widgets" method="POST" target="_blank"><input type="hidden" name="action" value="connect"/><input type="hidden" name="referringURL" value="http://MYCLIENT.com/ClientPage.html"/><input type="hidden" name="cartOwnerId" value="A2R6QUFKT17A1O"/></form>';
    CBA.jQuery("#"+this.getLocation()).append(formData);
    jQuery("#"+formIdName).submit();                                                                                                                                
    ====
    3) User enters credentials on LOGIN window, and submits. A call is made to the SERVER to authenticate. On SUCCESSFUL authentication, we want to
       * CLOSE the LOGIN window
       * REDIRECT Client page to new URL
    4) Everything works as planned, EXCEPT that the Client window (that created the LOGIN popup/new window), does not return to full-screen (after the LOGIN window closed).
    If i try to put a window.opener.focus() in the LOGIN page javascript, i get focus on the CLIENT page, but the LOGIN page does not close(even if i put window.close before the window.opener.focus())
    ====
    LOGIN html
    jQuery(document).ready(function() {
            var messageToOpener = true;
            var fullMessage = PURCHASE_CONTRACT_ID_PREFIX + "${viewer.purchaseContractId}";
            CBA.Checkout.sendMsg( messageToOpener, fullMessage, '<c:out value="${viewer.merchantUrl}"/>');
            window.close();
            window.opener.focus()
    ====
    Is there any tips on how i can close the LOGIN window, and redirect the client page to a new URL, and make the Client window full screen?
    Any tips would be appreciated.
    Thanks

    I have made  a static script that I try and use to do something similar - it works everywhere else just not on the iphone..
    <script>
    (function(){
    do something to make 'tok'..the following post message sends the original script 'tok' it just isnt working only on iphone
    window.opener.postMessage(tok,"http://gamerdj.net.gridhosted.co.uk/");
    alert('wois '+window.opener);
    self.close();
    </script>
    I use the above after authenticating with google and getting a token back in this case tok and this needs passing back to the original app. I would prefer not to launch a new window and have this mess but becasue the google API wont accept a proper route url for angular I cant get that to work. This way was the closest that I got.

  • IPhone Safari cannot open PDF in iBook

    I retrieved a PDF file online with iPhone Safari, while tapping on the "open in iBooks" tap at the top right side, I found out that it was not working as before, is it a bug in iOS 5?

    Well, no luck after the updates. PDF problem still persists.
    Beside this, it seems to have other compatible issues with website like ims.netiquette.com.sg too. A bug is preventing me tapping and keying in directly onto web form boxes , after I make item selection from drop-down menu.
    This is truly a disaster...

  • IPhone Safari Font Sizes are bad

    Anyone else notice the bad font sizes in iPhone Safari?
    I am writing a web site and am having trouble getting safari to render fonts on the iphone the same way they are rendered on safari... I tried changing the font-family to Verdana and Arial since those are supposed to be supported on both the iPhone and Mac Safari but that did not fix it...
    As a great example go to google and search for something on your iphone.
    The word "Sign in" on the top right is too large...
    The word "Web" (right under the search box) is too small...
    The other words in the blue bar with "Web" are also too large...
    Right now my current solution is to pin point things that are too small and too large and on a case by case basis change the font sizes for those elements... This is pretty ridiculous when you have a large site and lots of pages...

    Sweet your thing wasnt right but pointed me to the right location:
    I just needed:
    html {-webkit-text-size-adjust:none}
    http://developer.apple.com/documentation/AppleApplications/Reference/SafariWebCo ntent/AdjustingtheTextSize/chapter5_section_3.html#//appleref/doc/uid/TP40006510-SW16

  • My iphone safari history, my 'reading list' shows visits and sites that I have never frequented. A few months back the same thing happened with my youtube history.  My phone is pass protected, so its just me using it. any ideas?

    My iphone safari history, my 'reading list' shows visits and sites that I have never frequented. A few months back the same thing happened with my youtube history.
    My phone is pass protected, and its just me using it, phone with me all the time. any ideas?
    How can things be added to my reading list/youtube???

    Try:                                               
    - iOS: Not responding or does not turn on           
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable                     
    - Try on another computer                                                       
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar
    The missing apps could have been done by setting the Restrictions that can hid those apps. If the backup was made with those retrictions set the the Restrictions are also restored.
    Thus, if you get it to work restore to factory settings/new iPod, not from backup                               
    You can redownload most iTunes purchases by:        
      Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Why is my iphone safari not working?

    Why is my iphone safari not working?

    Everytime i click safari, it shows ( Do you want to change your search engine to yahoo?) I did click cancel or ok but nothing happened. Just block

  • IPhone Safari does not support CitiBank Online banking

    I have tried repeatedly to access my online banking account without success. I just got off the phone with CitiBank. The iPhone Safari is not compatible with their online banking system. Reminds me very much of the first beta version of Safari which did not support online banking either. Apple please update Safari for the iPhone.

    I have tried repeatedly to access my online banking
    account without success. I just got off the phone
    with CitiBank. The iPhone Safari is not compatible
    with their online banking system. Reminds me very
    much of the first beta version of Safari which did
    not support online banking either. Apple please
    update Safari for the iPhone.
    Safari for iPhone fully supports what Citibank is doing. It is Citibank that is choosing to only allow specific browsers, if they are blocking you.
    It is Citibank that needs to allow iPhone Safari; there is nothing Apple can do technically to change this.

  • HT5372 I can't see my iPhone safari tabs in iCloud on my Macbook.

    I can't see my iPhone safari tabs in iCloud on my Macbook. How can I fix this?
    I'm logged into iCloud on all my devices, I can see tabs from my iMac on my Macbook. Just not from my iPhone.

    The Safari tabs feature with iCloud will not be available until iOS 6 is available for iPhone.

  • IPhone safari v/s Adobe Flash upgrade

    iPhone safari will not allow Adobe Flash upgrade. Any thoughts or suggestions?

    Any thoughts or suggestions?
    None. Flash can't be used on an iPhone or iPod touch at this time.
    (47437)

  • Quicktime in Iphone Safari (Formats?)

    What format does a movie file have to be, compression etc, to run properly in the iphone safari browser?
    Thanks in advance

    Not to lurk, didn't see the other posting on this please direct comments to the following thread:
    http://discussions.apple.com/thread.jspa?threadID=1038599&tstart=15
    iphone   Mac OS X (10.4.10)  

  • IPhones Safari keeps crashing Apple please fix this.

    I know there is another top posted about this... if you google the 3 words... "iPhone, Safari, and Crash" in google or yahoo search hundreds of results of people complaining and apple still hasn't acknowledged the problem. I used the 1st generation iPhone for a year. My girlfriend still uses a 1st gen iPhone. I now use the iPhone 3g and I bought it in hopes that apple fixed how often safari crashes. Safari crashes all the time while loading a page safari will just launch me back to the home screen. This happens on 100% of everybody's iPhone I have ever tested. It happens mostly in forums while typing such as this one. I tried and failed twice to post in this forum with my iPhone because safari crashed and it was so frustrating. I have had an Iphone now for a year and a half and my girlfriend has as well. It is time you recognize this problem apple and do something about it. If you don't believe me log on to this very forum and reply to this message with your iPhone and see if it doesn't lag until you are just about frozen and then kick you back to the home screen. Apple I give you until December to fix this problem. Otherwise I will ebay my phones and then buy either the LG Dare, Samsung Instinct, T-mobiles new Google Android phone, or a windows mobile. PLEASE FIX SAFARI

    The only reason I thought the new iphone would make some sort of difference is because in other maps such as SMS/MAPS/SETTINGS/AIM/MYSPACE mobile and many more the screen runs smoother and is more responsive. I have compared it to my 1st gen iPhone, my friends iPhone, and my girls iPhone. The new 3g just glides through everything a little smoother so I hoped maybe safari was more stable on the new platform. I was wrong. Regardless SAFARI should work perfectly on both iPhones that is, to alot of people, the most important application of all. It crashes more than any other 10 fold.

  • Webpage searches (FB, IMDB) crash iPad/iPhone Safari

    Facebook live search or IMDB live search on their respective websites always crash my ipad and iphone safari. Solution?
    By live search I mean when you enter letters, it starts bringing up results immediately. Strangely the google one doesn't crash Safari.

    Can you explain how you enable live searches on these sites? Can you upgrade your iOS to the latest version (4.3)? No use troubleshooting an out-of-date OS.
    --Sam

  • Execution on Mobile (iPhone) safari browser in UFT 12.0

    Execution on Mobile (iPhone) safari browser - We need to automate our website and test on the iPhone inbuilt browser(safari).Does UFT 12.0 version supports this and if yes then what procedure/settings we need to follow to automate our website.

    Hi, You need an add-on app/software:      https://experitest.com/uft/ Regards.

Maybe you are looking for

  • HT204074 Why can only ONE Apple ID be associated with a computer every 90 days?

    We have 3 family members who all sync our iPhones/iPads/iPods to the same computer.  My son can't access and download past purchases from his iTunes acct to our computer, because it says ONLY ONE Apple ID can be associated with the computer every 90

  • Access shares through quickvpn

    Please excuse if this has been covered before. Links to other related posts welcome. I am attempting to setup the RV042 with quickvpn. 2 systems both running XP pro (another running 7 on the local side, but I'm not concerned about that one being visi

  • Engineering Software on MacBook Air, help?

    Hey there! I want to buy a new laptop easy to travel with (because I'll be taking it to college everyday) and people keep telling me I should a MacBook Air because it's light and it does everything. Unfortunately, I'm concerned about: 1. I need to in

  • Storage unit number wise UD posting

    Hi All, Can we do QM-UD posting storage unit wise. for eg :- If we have Handling Unit(HU), then we can have UD for individual HUs numbers. Similarly Can I have UD posting Storage Unit wise i.e. for individual SU Number??. Thanks, Ravi Davda

  • Reset Primary Key Column

    hi i have a table named users which have a ID column as primary key(is identity=true). when i add some data to table everything is ok but when delete some of them, the deleted IDs cause Irregularity in ID column.i want to reset the ID column to begin