SLD browser incompatibility

Hi.
Has anyone already used PI and its tools (including SLD) in a Mac OS X Lion?
I'm able to run the Java tools but not SLD (although I do can use alt the RWB features). The logon page shows up, but after
providing the logon credentions, it falls on this error:
com.sap.tc.useragent.UnsupportedUserAgentException: User Agent (Safari, NaN, NaN) is not supported!
Is it just a matter of browser incompatibility, given that I tried to access by using Firefox, Safari and Chrome?
Although I think that this question it's more to the Webdynpro forum than to a PI, I wanted to post here to ask for PI experts' opinion.
Thanks for your help.
Rafael.

Let's base our answer in facts or formal documents. Or just by saying "I think" to let people know that what is being said is not the last word. It would save us a lot of time.
Mac OS X Lion (as well as Leopard) DOES support SLD.
Please find details in my thread opened in webdynpro forum.
Visualization on Mac OSX Lion
Tks for your help Agasthuri.
Rafael.

Similar Messages

  • JavaScript Cross Browser Incompatibility

    Hi All,
    I would like to know the list of JavaScript methods that won't work properly or dosen't support in Internet Explorer v6.0, 7 and Mozilla Firefox v2.0 browsers.
    Best Regards,
    Suresh

    I think you have to ask IE-support and Firefox-Support via mail.
    It's because every single update changes this list. You also have to think, that there are a mass of Plugins/Addons and Configuration-Settings, that are important to this list. I think you have to test your projects with both browsers and perhaps check for the browser-type at the beginning to, for example, create 2 different style.css-files (for styles.css you have to create one for IE and one for Firefox, 'cause they are a little bit different).
    X--spYro--X

  • Browser Incompatibility

    Hi;
    How is it that my swf files are suffering from browser incompatibilities? How do I rectify the situation? I'm frankly surprised to encounter this issue, since I would have thought a swf file would be generated such that it wouldn't have these problems. Here are two examples;
    http://globalsolutionsgroup.vi/
    This works fine in Safari, but not in my Mac version of FF (latest of both). In the latter the swf files don't ever display. It works well in (I believe) IE 7 for Windoze but not in IE 8 for Windoze. In the latter it never goes to the index page from the preloader, and when I surf there directly, it doesn't display the swf that "covers" (then disappears from) the main template page, which also has a swf, and in the latter swf one of the graphics never loads.
    http://angrynates.com/perfection/
    This swf plays differently on all sorts of different browsers. On some, such as my Safari, it plays exactly as desired. In my FF, the hands momentarily disappear. In certain Windoze/IE configurations, it gets all screwed up and looks awful.
    What is going on inside the swf files that it displays so differently, and how do I counteract these problems?
    TIA,
    beno

    These DO work in SOME browsers, as I wrote in my first post (please reference). Here is the embedded code for globalsolutionsgroup:
    index.html
    <html><head>
    <SCRIPT language="JavaScript">
    <!--
    window.location="preload.py?width=" + screen.width;
    //-->
    </SCRIPT>
    </head></html>
    preload.py
    // This is a cheat. It's not a real preloader. I use this to simply load my assets which are used in both swf files.
    #!/usr/bin/python
    import cgitb; cgitb.enable()
    import cgi
    import sys,os
    sys.path.append(os.getcwd())
    form = cgi.FieldStorage()
    width = form.getfirst('width','800')
    lines = '''#!/usr/bin/python
    return "%s"''' % width
    f = 'width.py'
    try:
      os.remove(f)
    except OSError:
      pass
    f = open(f, 'w')
    f.writelines(lines)
    f.close()
    os.chmod('width.py', 0755)
    print "Content-Type: text/html"
    print
    print '''
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
    <head xmlns="http://www.w3.org/1999/xhtml">
    <meta http-equiv="REFRESH" content="0;url=index.py" />
    </head>
    </html>
    index.py
    // important only because it loads the template
    #!/usr/bin/python
    import string
    import cgitb; cgitb.enable()
    import cgi
    import sys,os
    sys.path.append(os.getcwd())
    from template import template
    ourFile = string.split(__file__, "/")
    page = ourFile[len(ourFile) - 1][:-3]
    template(page)
    template.py
    #!/usr/bin/python
    import cgitb; cgitb.enable()
    import cgi
    import sys,os
    sys.path.append(os.getcwd())
    import time
    from threading import Timer
    from width import width
    p = 'template'
    def template(page):
      w = int(width())
      wn = w/1024
      print "Content-Type: text/html"
      print
      print '''
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
    <head xmlns="http://www.w3.org/1999/xhtml">
    <style type='text/css'>
    .splash { position:absolute; left:0px; top:0px; z-index:2 }
    .page { position:absolute; left:0px; top:0px; z-index:1 }
    .text {  font-family: Arial, Helvetica, sans-serif; font-size: 16px; text-decoration: none; text-align: justify}
    </style>
    <title>Global Solutions Group</title>
    <meta http-equiv="distribution" content="Global" />
    <meta http-equiv="robots" content="index all, follow all" />
    <meta name="author" content="This web site developed by beno. You may reach him at his web site [beno.vi], or by dialing 340-773-0687 and asking for room 102." />
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_preloadImages() { //v3.0
    var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_swapImgRestore() { //v3.0
    var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
    var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
    if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
    for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
    if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
    var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
    if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    function rem() {
        var t = document.getElementById('splash');
        t.parentNode.removeChild(t);
    //-->
    </script>
    </head>
    <body onload="setTimeout('rem()', 2000)" onload="MM_preloadImages('images/office-supplies-on.jpg','images/catalog-on.jpg','images/ customer-template-on.jpg','images/forms-on.jpg','images/about-on.jpg','images/contact-on.j pg')">'''
    NOTICE HERE THAT IF THE PAGE IS "index" THAT IT WILL LOAD THE SPLASH PAGE
      if page == 'index':
        print '<div class="splash" id="splash">'
        print '<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" WIDTH="%s" HEIGHT="%s" id="myMovieName">' % (str(wn*1008), str(wn*785))
        print '''
    <PARAM NAME=movie VALUE="globalSolutionsSplash.swf">
    <PARAM NAME=quality VALUE=high>
    <PARAM NAME=bgcolor VALUE=#FFFFFF>'''
        print '<EMBED href="/support/flash/ts/documents/globalSolutionsSplash.swf" quality=high bgcolor=#FFFFFF WIDTH="%s" HEIGHT="%s" NAME="myMovieName" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>' % (str(wn*1008), str(wn*785))
        print '</OBJECT>'
        print '</div>'
    NOTE HERE THAT IT WILL LOAD "page" IRRESPECTIVE OF WHETHER IT IS THE INDEX PAGE
      print '''<div class='page'>
    <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
    WIDTH="1008" HEIGHT="200" id="globaloilcounter_external1">
    <PARAM NAME=movie VALUE="GlobalSolutions.swf">
    <PARAM NAME=quality VALUE=high>
    <PARAM NAME=bgcolor VALUE=#FFFFFF>
    <EMBED href="GlobalSolutions.swf" quality=high bgcolor=#FFFFFF WIDTH="1008" HEIGHT="200" NAME="GlobalSolutions" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>
    </OBJECT>
    </div>
    <script language="JavaScript1.2" src="quickmenu/sample_data.js"></script>
    <script language="JavaScript1.2" src="quickmenu/dqm_script.js"></script>'''
    The rest doesn't matter.
    Here is Perfection Jewelers:
    <html><head>
    <SCRIPT language="JavaScript">
    <!--
    window.location="preload.py?width=" + screen.width;
    //-->
    </SCRIPT>
    </head></html>
    #!/usr/bin/python
    import cgitb; cgitb.enable()
    import cgi
    import sys,os
    sys.path.append(os.getcwd())
    form = cgi.FieldStorage()
    width = form.getfirst('width','800')
    lines = '''#!/usr/bin/python
    def width():
      return "%s"
    if __name__ == '__main__':
      width
    ''' % width
    f = 'width.py'
    try:
      os.remove(f)
    except OSError:
      pass
    f = open(f, 'w')
    f.writelines(lines)
    f.close()
    os.chmod('width.py', 0755)
    print "Content-Type: text/html"
    print
    print '''
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
    <head xmlns="http://www.w3.org/1999/xhtml">
    <meta http-equiv="REFRESH" content="0;url=preloader.swf" />
    </head>
    </html>
    So we see that all this code is doing is loading the preloader.swf directly and nothing else.
    If these don't work in any browsers, then there's a chance the swf's are  not properly designed.  USually browser incompatibilites stem from the  embedding code that is used in the html page.  If you show that it may  be determinable.

  • How do I fix this browser incompatability?

    This is my first web site with DW. and I have it finished...but...when I used the browser compatability check , I came up with an erro in line 32 dealing with spry menu bar that affects 8 browsers. I don't know how to correct it since I use design view. I am trying to learn code, but I have no idea how to correct this. Please help!
    Line 32 reads:
    <link href="SpryAssets/SpryMenuBarHorizontal. css" rel="stylesheet"
    Trying 2

    Thank you. I am trying to learn all of this and at times, it is too 
    much...I have gone through books and videos, etc.
    In a message dated 7/27/2009 10:55:13 P.M. Central Daylight Time, 
    [email protected] writes:
    First  thing you need to do is learn html and CSS. Once you've done that
    then remove  the space between . and css, add a type for the link, and close
    the  tag.
    <link href="SpryAssets/SpryMenuBarHorizontal.css"  rel="stylesheet"  
    type="text/css"

  • Browser Incompatibility (?) - Published Site

    Good Morning,
    I published a site for a friend's business yesterday and out
    of 50 responses I have one viewer whose browser is not viewing the
    site properly. He is using IE. I had tested the site on IE, Firefox
    and Netscape.
    On this viewers computer all of the content under the
    navigation bar is dropping below the sidebar so that the page is
    displaying as empty until you scroll the length of the sidebar. It
    is only happening on the pages where there is Flash content.
    Is it just that the math is not adding up for the flash area
    and so it is bumping it down past the sidebar?
    I resized the flash center by 4 pixels to give it lots of
    room and sent this viewer to the new page that was posted on a
    different domain name. He is still seeing the problem. I resized in
    dreamweaver and did not actually make alternations to the swf
    itself. This wouldn't be the problem would it?
    I remember when I was designing in the beginning there was a
    three-pixel jog warning. I thought it was no longer there because
    it was not coming up in site reports.
    Please look at this site and tell me how it is viewing. Is
    the content being pushed to the bottom of the page on your browser
    too?
    www.bancroftgolfcourse.ca

    Hello,
    It's a float drop in IE6. Looks fine in IE7.
    Your maincontent area is a little too wide. IE6 is adding to
    the width,
    probably one of the bugs like the jog or double float margin.
    The maincontent plus the sidebar is wider than the container.
    As a test, you can add to the container width in increments
    until the float
    drop stops to get an idea of how much IE is adding to the
    content.
    Then, make your flash and the big image below it less wide by
    that amount,
    reset the container to 1000px and test again in IE6.
    Take care,
    Tim
    "divdecoder" <[email protected]> wrote in
    message
    news:gpdt52$925$[email protected]..
    > Good Morning,
    >
    > I published a site for a friend's business yesterday and
    out of 50
    > responses I
    > have one viewer whose browser is not viewing the site
    properly. He is
    > using IE.
    > I had tested the site on IE, Firefox and Netscape.
    >
    > On this viewers computer all of the content under the
    navigation bar is
    > dropping below the sidebar so that the page is
    displaying as empty until
    > you
    > scroll the length of the sidebar. It is only happening
    on the pages where
    > there
    > is Flash content.
    >
    > Is it just that the math is not adding up for the flash
    area and so it is
    > bumping it down past the sidebar?
    > I resized the flash center by 4 pixels to give it lots
    of room and sent
    > this
    > viewer to the new page that was posted on a different
    domain name. He is
    > still
    > seeing the problem. I resized in dreamweaver and did not
    actually make
    > alternations to the swf itself. This wouldn't be the
    problem would it?
    >
    > I remember when I was designing in the beginning there
    was a three-pixel
    > jog
    > warning. I thought it was no longer there because it was
    not coming up in
    > site
    > reports.
    > Please look at this site and tell me how it is viewing.
    Is the content
    > being
    > pushed to the bottom of the page on your browser too?
    >
    >
    > www.bancroftgolfcourse.ca
    >
    >

  • Error - browser incompatibility?

    I've huge query and it's placed in a function and region calls this function and returns query string. When I login first time, it gives the following error, but after refresh and subsequent page visits it works fine. This is the problem ONLY on IE 6.0 for ONLY some users, but works with Mozilla!. Any ideas are appreiated?
    failed to parse SQL query:
    The query can not be parsed, the cursor is not yet open or a function returning a SQL query returned without a value.
    thanks,
    Surya

    just another update of the problem. I get this error when I remove the exception. The function returning sql query works fine for most users on IE. but few users get this message for fitst time only . After the page refresh the region query works fine again. This looks weird, any suggestions/ideas are appreciated please ...
    Error ERR-1101 Unable to process function body returning query.
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small

  • SLD error - Please see my problem letter by letter.

    HI Masters,
    before see this error , first of all read my doubt line by line. then only You can understand.
    I have three doubts.
    first one is :
    when i am login to http://hostname:portno/sld browser , it showing error message in red color. Please check it .
    1) You do not have permission to view to SLD. Min required : UME role with permission com.sap.lcr.lcruser and j2ee role lcruser.see the sld post-installtion guide for details.
    2) SLD not configured. Configure SLD in Adminsitration First.
    It showing these above  two error messages.
    in go.bat file  after click on cim client test , i click on trigger sld data transfer, it showing error message.
    OPERATION FAILED ! FAILED TO COLLECT DATA . THERE IS NO PROCESS TO READ DATA  WRITTEN TO A PIPE..
    perform standard user group  to role assignment also failed.
    Second one is :
    I log in to go.bat file and gave correct host name , port no, userid- SLDDSUSER and password in area of cim client test and http settings tab:
    after then when i click on CIM CLIENT test . The test conection is failed.
    But with j2ee_admin user id in http setting tab and cim client test tab , then click on cim client test.
    the test is succeed.
    my doubt is generally by using user id - slddsuser in cimclient test and http settings tabs , even then also cim client test will succeed. but in my case with only j2ee_admin user id, only then cim client test is succeed.
    why it's happend with only j2ee_admin user only cim client test is succeed. why this one not succeed with SLDDSUSER.
    , i click on trigger sld data transfer, it showing error message.
    OPERATION FAILED ! FAILED TO COLLECT DATA . THERE IS NO PROCESS TO READ DATA  WRITTEN TO A PIPE..
    perform standard user group  to role assignment also failed.
    THIRD DOUBT IS :
    I am not finding the roles and users related to SLD and NWDI.
    Please give reply . reply will highly appreciated .
    Edited by: sujana mullapudi on Nov 4, 2009 1:21 PM

    Hi
    Please check documentation at System Landscape Directory (SLD) in particular the SLD Post Installation Guide
    chapter "Configuring SLD Security Roles"
    The SLD users may not be delivered with default authorizations - customers have to select the appropriate or as required roles
    Best regards
    Stuart

  • SLD-Bridge / Data Supplier Bridge and new technical systems

    Hi,
    The data supplier (data collection process) periodically sends data to the SLD bridge. This SLD bridge provides this information to the SLD.
    My question: Will new technical systems be created(!) and updated automatically in the SLD by using SLD bridge??
    Or do I have to create new technical systems allways manually by SLD browser??
    Thanks and regards!

    How about the "creation" process of technical systems??
    I am confused of the idea of the SLD bridge. The idea sounds great to me, but how is the link between the technical systems and all these collected data passed to the SLD realized??
    The online documentation is not very helpful...

  • Awt browser incompability

    I'm doing an applet gui (pure AWT). I have a Canvas inside a ScrollPane. The canvas displays pictures or text of different sizes dynamically, so I reset its size before every paint() with setSize(), then validate(), then getParent().validate() to make sure the ScrollPane resets the scrollbars.
    This works fine with the Netscape 6 browser, the scrollbars appear when needed, according to the size of the Canvas.
    But it doesn't work with MS IE5: scrollbars don't appear. I fear a browser incompatibility! Suggestions anyone?
    miguel

    Hi Miguel
    I'm doing almost exactly this. I'm adding an array of objects (SimpleCanvas) which extends java.awt.Canvas into ScrollPane. SimpleCanvas can display Images and Text of different sizes dynamically. This works fine in AppletViewer (JDK1.3) But when I run it in browser, The images are not displayed in both IE 5.0 and Netscape 4.7.
    You are able to see your applet in NS6 because NS6 directly comes with Java Plugin and IE does not.
    Please email me when you solve this problem.
    [email protected]
    Regards,
    Harsha
    Here is the message on the java console:
    <NETSCAPE 4.7 Java Console>
    java.lang.NullPointerException
    at sun.awt.windows.WToolkit.checkScrImage(Compiled Code)
    at sun.awt.windows.WComponentPeer.checkImage(Compiled Code)
    at java.awt.Component.checkImage(Compiled Code)
    at java.awt.ImageMediaEntry.getStatus(Compiled Code)
    at java.awt.MediaTracker.checkAll(Compiled Code)
    at java.awt.MediaTracker.checkAll(Compiled Code)
    at SimpleCanvas3.paint(Compiled Code)
    at java.awt.Component.dispatchEventImpl(Compiled Code)
    * at java.awt.Component.dispatchEvent(Compiled Code)
    at java.awt.EventDispatchThread$EventPump.dispatchEvents(Compiled Code)
    at java.awt.EventDispatchThread.run(Compiled Code)
    at netscape.applet.DerivedAppletFrame$AppletEventDispatchThread.run(Compiled Code)
    </NETSCAPE 4.7 Java Console>
    <IE 5.0 Java Console>
    java.lang.NullPointerException
         at com/ms/awt/WToolkit.checkScrImage
         at com/ms/awt/WComponentPeer.checkImage
         at java/awt/Component.checkImage
         at java/awt/ImageMediaEntry.getStatus
         at java/awt/MediaTracker.checkAll
         at java/awt/MediaTracker.checkAll
         at SimpleCanvas3.paint
         at com/ms/awt/WComponentPeer.doClearAndPaint
         at com/ms/awt/WComponentPeer.paintNode
         at com/ms/ui/windowmanager/PaintRequest.run
         at com/ms/ui/windowmanager/RunnableMessage.run
         at com/ms/awt/WSystemQueue.getMessage
         at com/ms/awt/WEventQueue.getNextEvent
         at java/awt/EventDispatchThread.run
    </IE 5.0 Java Console>

  • Im getting exceptional error for website ...what is the problem for that error..error message is posted below

    The initial exception that caused the request to fail, was:
    com.sap.tc.useragent.UserAgentServiceException: Syntax Error in number '$4' of User-Agent Number Element ID 'engineVersion'.
    at com.sap.tc.useragent.ElementTypeNumber.createElement(ElementTypeNumber.java:34)
    at com.sap.tc.useragent.UserAgentElement.createElement(UserAgentElement.java:34)
    at com.sap.tc.useragent.UserAgentElement.copy(UserAgentElement.java:71)
    at com.sap.tc.useragent.UserAgentTemplate.instantiate(UserAgentTemplate.java:45)
    at com.sap.tc.useragent.detection.RegExpDetector.detectUserAgent(RegExpDetector.java:33)
    ... 62 more
    See full exception chain for details.
    Failed to process request. Please contact your system administrator.
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    For further information about the Web Dynpro error page, error analysis and a description of well-known error situations, see SAP note 1113811.
    Correction Hints
    Exception could be caused by the development component: com.sap.tc.useragent.interface
    Note: The above hints are only a guess. They are automatically derived from the exception that occurred and therefore can't be guaranteed to address the original problem in all cases.
    System Environment
    Client
    Web Dynpro Client Type AJAX Client
    User agent Mozilla/5.0 (Android; Mobile; rv:24.0) Gecko/24.0 Firefox/24.0
    Client Type ff
    Client Type Profile nn7
    ActiveX disabled
    Java Applets enabled
    Accessibility mode disabled
    Inline CSS n/a
    Validate by rendering true
    Server
    Web Dynpro Runtime vendor: 'sap.com', name: 'tc/wd/webdynpro', scV: 'sap.com', scN: 'WD-RUNTIME', location: 'SAP AG', counter: '7.3005.20130111125833.0000', R: '7.30', SP: '5', PL: '20', change number: '255333', codeline: NW730CORE_05_REL
    J2EE Engine 7.30.3710.270166.20130816104554
    System ID (SID) FP1
    Server Node ID |13769650|137696|Server 00 01_137696|ciFP1/10.72.16.58|SERVER|RUNNING
    Java VM SAP Java Server VM, version:6.1.038 19.1-b02, vendor: SAP AG
    Operating system Linux, version: 2.6.32-220.el6.x86_64, architecture: amd64
    Application
    Java EE Application (deployable object) sap.com/pb
    Web Dynpro Application PageBuilder
    Request URI /webdynpro/resources/sap.com/pb/PageBuilder
    Version vendor: 'sap.com', name: 'pb', scV: 'sap.com', scN: 'EP-RUNTIME', location: 'SAP AG', counter: '7.3005.20111228115104.0000', R: '7.30', SP: '5', PL: '4', change number: '160458'
    Session &amp; Other
    Session Locale en_GB
    Session Timezone India Standard Time
    Time of Failure Sun Oct 27 09:59:27 IST 2013 (Java Time: 1382848167814)
    Session User ClientUser(id=USER.PRIVATE_DATASOURCE.un:CC172020, name=CC172020)
    Http Session Id 978BAO1ZCsh8JZ7REyIA575jsir4QQGyG9IA_SAP
    Client Window Id WID1382848129974
    Application Session Id CrXVdgZ0571vfwcUljh9Bw--Q4*zmQ0kblXVHMfCG18ZBg--
    Web Dynpro Code Generation Infos
    sap.com/pb
    WD web module webdynpro/resources/sap.com/pb: SapDictionaryGenerationCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:24:28+0000, changelist=159000, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapDictionaryGenerationTemplates 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:24:57+0000, changelist=159000, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapGenerationFrameworkCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:14:41+0000,
    WD web module webdynpro/resources/sap.com/pb: SapMetamodelCommon 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:17:37+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapMetamodelCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:15:03+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapMetamodelDictionary 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:20:22+0000, changelist=159002, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapMetamodelWebDynpro 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:25:40+0000, changelist=159462, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapWebDynproGenerationCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:37:46+0000, changelist=159461, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapWebDynproGenerationTemplates 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:37:55+0000, changelist=159461, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb: SapWebDynproRuntimeGen 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:35:55+0000, changelist=159464, host=pwdfm257, is-central=true)
    sap.com/pb_api
    WD (release=NW730CORE_05_REL, buildtime=2011-12-28T16:24:57+0000, changelist=159000, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapGenerationFrameworkCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:14:41+0000, changelist=159048, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapIdeWebDynproCheckLayer 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:37:31+0000, changelist=159461, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapMetamodelCommon 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:17:37+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapMetamodelCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:15:03+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapMetamodelDictionary 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:20:22+0000, changelist=159002, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapMetamodelWebDynpro 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:25:40+0000, changelist=159462, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapWebDynproGenerationCore 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:37:46+0000, changelist=159461, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapWebDynproGenerationTemplates 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:37:55+0000, changelist=159461, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/pb_api: SapWebDynproRuntimeGen 7.3005.20111228114942.0000 (release=NW730CORE_05_REL, buildtime=2011-12-28T16:35:55+0000, changelist=159464, host=pwdfm257, is-central=true)
    sap.com/tc~wd~api
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapDictionaryGenerationCore 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:27:04+0000, changelist=159000, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapDictionaryGenerationTemplates 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:27:18+0000, changelist=159000, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapGenerationFrameworkCore 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:05:47+0000, changelist=159048, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapIdeWebDynproCheckLayer 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:39:20+0000, changelist=180142, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapMetamodelCommon 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:10:50+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapMetamodelCore 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:07:26+0000, changelist=159372, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapMetamodelDictionary 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:22:41+0000, changelist=210375, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapMetamodelWebDynpro 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:27:36+0000, changelist=159462, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapWebDynproGenerationCore 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:39:36+0000, changelist=180142, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapWebDynproGenerationTemplates 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:39:43+0000, changelist=180142, host=pwdfm257, is-central=true)
    WD web module webdynpro/resources/sap.com/tc~wd~api: SapWebDynproRuntimeGen 7.3005.20130109144853.0000 (release=NW730CORE_05_REL, buildtime=2013-01-11T17:37:00+0000, changelist=223591, host=pwdfm257, is-central=true)

    Oh man it looks like a problem with the web server.
    Its an error that happens on SAP, even my dad reported an error like this to me but i wasn't able to solve it.
    What i find is that its an error with browser incompatibility,
    Check this http://scn.sap.com/message/10338540

  • Problem Viewing Flash Movies in Windows 8.1 Internet Explorer 11

    I am running a fully patched/updated copy of Windows 8.1 and Internet Explorer version 11 (on the desktop)
    If I try and run the test movie at
    http://helpx.adobe.com/flash-player/kb/flash-player-issues-windows-8html I get the following message:
    Either Flash Player is disabled or ActiveX Filter is ON.
    Please follow trouble shooting steps to play Flash content.
    I have checked and double-checked that...
    Flash Player is enabled
    ActiveX Filtering is turned off
    Internet Explorer is running the latest version of Flash Player 
    The only way I can get this to run at all is to enable'Compatibility Mode' for the web site.  Is it the case that Compatibility Mode has to be enabled to view any web site containing Flash content?
    Any information would be much appreciated.

    Hi,
    Do you mean the issue is only occurred on the website you provided? How about other websites?
    I can run the test movie with no issue in my test machine, I suspect this issue is caused by browser incompatibility.
    As I know, if the issue is caused by a compatibility problem between Internet Explorer and the site you're on. The issue can be fixed by adding the site to your Compatibility View list.
    I also would like to suggest you reset Internet Explorer Settings for a test. Also make sure you're not using InPrivate Browsing.
    Hope it helps.
    Regards,
    Kelvin Xu
    TechNet Community Support

  • Cannot highlight specific things in tables with the new CC Dreamweaver

    I'm an interactive designer, so I code and design emails for my company. Since DIVS are not able to be used in emails (too much browser incompatibility), our emails are coded with tables (sadly).
    That being said, in CS6, whenever I selected something in the design view, Dreamweaver would immediately highlight whatever I selected. So, for example, the "hero" image in the email - I would click it and the URL to the image would then be highlighted. Same for text, links, anything. Worked great, saved lots of time.
    My coworkers and I, after having a crap top of issues even installing CC in the first place, can now no longer do this. When I select that hero image in design view, Dreamweaver highlights the whole table that it is in, or something else completely irrelevant, instead of the image link. We now have to search through our code to find the URL or whatever we're looking to edit, which is extremely time consuming and opens up a whole lot of QA issues. We notices with DIVs, that this highlighting function works fine, but since we mostly work with tables it's very frustrating.
    Is there a setting, a work around? Anything? Help D:

    Nothing changed in DW in regards to selecting something in Design View and having it highlight in Code View, but, your explanation of what's happening gave me a thought...
    Are you certain you are actually in Design View?
    DWCC 2014.1 did some strange stuff to Design/Code/Split/Live preferences. It's possible you are actually editing in Live View (you'll see light blue outlines around selected items) which doesn't work as well as Design View and will highlight the wrong code a very similarly way to what you describe.
    Make sure Design is selected from the dropdown menu next to Split in your Document Toolbar.

  • Trying to sign in on one web site, I get this message: Cancel OpenID

    The web site is for my electric bill. I have to open Safari, and sign in from there. The message I get using Fireox when I put in my user name and password is: Cancel OpenID. The web site is EPB.NET, and they have checked everything on their end and have no suggestions other than it's a browser incompatibility.
    Yes, I've deleted cookies, history, cache and such. Yes, I've disabled all extensions.
    It has been a problem for months.
    Should I just make Safari my default browser?
    Thanks for any effective help!

    You can go back to the release, but need to consider the different options.
    You may either run both versions, but they will need separate profiles. Or you may downgrade to the Release version. It would be relatively easy to copy bookmarks etc
    '''Whatever you do it is worth backing up the current profile first.'''
    * [[Back up and restore information in Firefox profiles]]
    You will want to try to use at least some of those files. Put them somewhere safe outside Firefox profile or program paths. Your Desktop or My Documents would do.
    Also if you only want to retain bookmarks the easiest method without messing with profile files is to use the backup option before you change over.
    * [[Restore bookmarks from backup or move them to another computer#w_manual-backup]]'''_manual-backup'''
    If you have both versions running with separate profiles it does have the advantage that you can take your time in migrating profile files. Here is the info on running multiple versions and profiles
    * http://kb.mozillazine.org/Testing_pre-release_versions#Installing_multiple_versions
    Incidentally the Firefox version & channel previously known as Aurora and now know as Developer Edition now installs by default as an additional version and installs with its own separate profiles.
    * See [[Firefox keeps crashing at startup#w_try-a-clean-install]]'''_try-a-clean-install'''
    * https://developer.mozilla.org/Firefox/Developer_Edition
    You could simply try installing Firefox 35.x over Firefox beta.
    It will probably work. But issues could occur with the profile. More generally problems will occasionally also occur with program files when downgrading.
    It would be best to do a clean install (explained in article linked above) removing the program files; and also renaming the profile folder. After installing overwrite only some of the files such as places.sqlite
    * This article goes into the fine details of what to transfer http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox#Suggested_profile_contents_to_transfer

  • Spry tooltip problem in IE 7 & IE 8

    Does the Spry tooltip have a browser incompatibility with IE 7 and IE 8, or is there something on my test page that interferes with the function of the tooltip?  
    I inserted a tooltip in this page using DW CS5--very straightforward as shown on every tutorial I have found:
    http://www.piie.com/dev/cite-this.htm
    Yet in IE 7 and IE 8, the tooltip appears at the bottom of the page at all times.  There is no activity when mousing over the trigger area ("Cite This", upper right of main content area).  It is as if the js / css files are not working, so I put in absolute paths for those files.
    In any event, I know that the js / css Spry tooltip files are live because in FF 3, the tooltip works exactly as expected.
    The Spry tooltip files I am using show they are the latest version, 1.6.1.
    Is this a browser bug, or is there something on my page that is interfering with the Spry tooltip in IE 7 and IE 8?  I have tried in vain to find any information.  Thanks for any pointers anyone can give me.

    I checked here to find out why my
    www.museumsforeningen-lf.dk works nicely with spry tooltips in firefox but not at all in explorer 8 (and didn't get any the wiser). the base jpg kind of jumps a bit but no
    tips or anything.  I've only just got my eyes on this spry tooltips - and have basically totally
    dumped using explorer myself because it's too troublesome whatever you want to do (reading papers without a gazillion errors in particular) but
    I need to accomodate the potential viewers who might use explorer (it's a
    museum 'friends of'' webpage).
    can this spry stuff work in explorer at all? I've tried using explorer without add-ons and with various settings in security but nothing worked. can something be done via the code - the old dears in the friends group probably aren't up to much change in settings on their browsers, but they sure do use the net.
    Freya

  • PDF form not opening in the IE 7.0.6 version

    Hi,
    I am facing a problem with E-Travel application. The user needs to attach document. After attached the pdf document unable to view the attachment in the browser it shows the blank page not the pdf. But in the earlier version of IE it is able to view the pdf. Is there any specific setting needed for the IE 7.0.6 and after?
    Kind Regards
    Mukesh

    Hi Otto,
    We have find one solution for this.
    The browser incompatibility causes the problem. The PDF attachments are unable to open via the URL provided by the application.
    So we customized the class CL_WD_RUNTIME_SERVICES-> ATTACH_FILE_TO_RESPONSE parameter i_inplace as blank.
    Kind Regards
    Mukesh

Maybe you are looking for

  • My ipod doesn't want to restore what should I do?

    I forgot the password to my ipod 3G and I am trying to restore it but I keep getting a pop up that says I need to remove the password before It can begin the restore.

  • Bapi for Picking, Packing and Post goods issue (WS_DELIVERY_UPDATE)

    Hi, I have a requirement to update the outbound delivery. In that, I need to update the picking, Packing details and have to complete the PGI for the particular delivery. I got the suitable function module for the same is : WS_DELIVERY_UPDATE. Can an

  • Oracle9i jdbc on linux with Sun App Server7

    Hello all, I'm having trouble setting up oracle9i jdbc drivers on linux. I downloaded ojdbc14.jar from oracle's download site and put it in sun/domains/domain1/lib. I also added the jar file in the server classpath suffix, but somehow the connections

  • HT5278 i keep getting an error occured installing iOS5.1.1

    I keep getting an error message, as i try to install the update ios5.1.1. How do I fix this problem? It has not let me install since receiving the message. HELP

  • Centralised payment system

    Hi, Can anyone guide to set APP. My client has 8 company codes. Most of them having the same vendors. They would like to make payment only from one entity for the combined outstading from all the company codes for a particular vendor by way of one ch