Screens not working in ECC 6 after upgradation from 4.6c.

Hi,
The custom developed screens which where developed in 4.6c version is not working properly in ECC 6 after upgradation.Do i have to make any more changes for this .? If anyone have an idea please help me in this issue.The custom developed things are an extended functionality we have done to r/3.
Regards,
jinesh kumar c.

Hi,
Check the Transportatation Logs in STMS for the programs/screens and check whether they are successfully tranported or not?
Because some times we get Dynpro errors for transportation of the screens.
Reward if useful.
regards,
Anji

Similar Messages

  • I have this empty black box in middle of screen with cursor in it after upgrading from SnowLeopard to Mavericks - any help???

    I have this black outlined box with cursor stuck in it after upgrading from Snow Leopard to Mavericks -- any help??? I can't get rid of it.

    From another thread.
    https://discussions.apple.com/message/24902799#24902799
    Go to accesibility/zoom/more options/show rectangle... and uncheck that.
    Strange outline rectangle on my screen...

  • Fullscreen mode not working in aperture after upgrading to Lion

    I recently upgraded to Lion and Aperture is not working at all in Full screen mode. I have followed the ideas in the forum (unchecking the preferences for spaces) and nothing has worked. I have reinstalled the Aperure update and this did not work either. Any other ideas?
    regards, Jim

    Jim,
    Try this:
    if Aperture is running, quit;
    control click Aperture's icon in the dock;
    in the menu that pops up, navigate to the Options sub-menu;
    make sure "None" is selected in the "Assign To" section at the bottom.
    Mine was originally set to "This Desktop", probably as a hold-over from Snow Leopard, where I had Aperture assigned to its own Space. After I updated to Lion, Aperture was misbehaving in full screen mode until I changed it to "None".
    I hope this helps...
    - Bob

  • BINARY SEARCH does not work as before after upgrade

    We recently upgraded from HRSP 26 to HRSP 40 as well as similar upgrades in non-HR areas on our ECC 6.04 system.  We've been in SAP since 1998, and have a lot of old custom programs which were written when we were still new at ABAP.  In a few, we put records into an internal table sorted the table, maybe added a few more records to the table, and did a READ BINARY SEARCH.  Granted, this is not correct, adding records to a table after it is sorted.  But these programs have worked for more than 10 years and now, since our upgrade, the READ BINARY SEARCH does not always find a record where it did before the upgrade.
    So this is mostly just a heads-up.  If you are missing data in reports after upgrading, this might be the issue.  Also I am wondering if anyone has experienced this.
    Heads-up!
    Janice Ishee

    Hi Janice,
    you did not give any context. Please note that it is a popular error to think that a SELECT statement will fetch data in order of the primary key of the table - although it happens quite frequently. So always first sort, then binary search.
    Probably not related to upgrade.
    Regards,
    Clemens

  • Simple Query working on 10G and not working on 11gR2 after upgrade

    Hi Folks,
    This is the first time i am posting the query in this Blog.
    I have a small issue which preventing the UAT Sigoff.
    Simple query working fine on 10.2.0.1 and after upgrade to 11.2.0.1 its error out
    10.2.0.4:
    =====
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=1;
    COUNT(*)
    1
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=00001;
    COUNT(*)
    1
    SQL> select ATTRIBUTE1 FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=1;
    ATTRIBUTE1
    00001
    11.2.0.1:
    =====
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=1
    ERROR at line 1:
    ORA-01722: invalid number
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=00001
    ERROR at line 1:
    ORA-01722: invalid number
    SQL> select ATTRIBUTE1 FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1='1';
    no rows selected
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1='00001';
    COUNT(*)
    1
    SQL> select ATTRIBUTE1 FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1='00001';
    ATTRIBUTE1
    00001
    ++++++++++++++++++++++++++++++++++++++++++++++
    SQL > desc APPS.HZ_PARTIES
    Name Type
    ======== ======
    ATTRIBUTE1 VARCHAR2(150)
    ++++++++++++++++++++++++++++++++++++++++++++++
    Changes:
    Recently i upgraded the DB from 10.2.0.4 to 11.2.0.1
    Query:
    1.If the type of that row is VARCHAR,why it is working in 10.2.0.4 and why not working in 11.2.0.1
    2.after upgrade i analyzed the table with "analyze table " query for all AP,AR,GL,HR,BEN,APPS Schemas--Is it got impact if we run analyze table.
    Please provide me the answer for above two questions or refer the document is also well enough to understand.Based on the Answer client will sigoff to-day.
    Thanks,
    P Kumar

    WhiteHat wrote:
    the issue has already been identified: in oracle versions prior to 11, there was an implicit conversion of numbers to characters. your database has a character field which you are attempting to compare to a number.
    i.e. the string '000001' is not in any way equivalent to the number 1. but Oracle 10 converts '000001' to a number because you are asking it to compare to the number you have provided.
    version 11 doesn't do this anymore (and rightly so).
    the issue is with the bad code design. you can either: use characters in the predicate (where field = 'parameter') or you can do a conversion of the field prior to comparing (where to_num(field) = parameter).
    I would suggest that you should fix your code and don't assume that '000001' = 1I don't think that the above is completely correct, and a simple demonstration will show why. First, a simple table on Oracle Database 10.2.0.4:
    CREATE TABLE T1(C1 VARCHAR2(20));
    INSERT INTO T1 VALUES ('1');
    INSERT INTO T1 VALUES ('0001');
    COMMIT;A select from the above table, relying on implicit data type conversion:
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    C1
    1
    0001Technically, the second row should not have been returned as an exact match. Why was it returned, let's take a look at the actual execution plan:
    SELECT
    FROM
      TABLE(DBMS_XPLAN.DISPLAY_CURSOR(NULL,NULL,NULL));
    SQL_ID  g6gvbpsgj1dvf, child number 0
    SELECT   * FROM   T1 WHERE   C1=1
    Plan hash value: 3617692013
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |       |       |     2 (100)|          |
    |*  1 |  TABLE ACCESS FULL| T1   |     2 |    24 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter(TO_NUMBER("C1")=1)
    Note
       - dynamic sampling used for this statementNotice that the VARCHAR2 column was converted to a NUMBER, so if there was any data in that column that could not be converted to a number (or NULL), we should receive an error (unless the bad rows are already removed due to another predicate in the WHERE clause). For example:
    INSERT INTO T1 VALUES ('.0001.');
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    SQL> SELECT
      2    *
      3  FROM
      4    T1
      5  WHERE
      6    C1=1;
    ERROR:
    ORA-01722: invalid numberNow the same test on Oracle Database 11.1.0.7:
    CREATE TABLE T1(C1 VARCHAR2(20));
    INSERT INTO T1 VALUES ('1');
    INSERT INTO T1 VALUES ('0001');
    COMMIT;
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    C1
    1
    0001
    SELECT
    FROM
      TABLE(DBMS_XPLAN.DISPLAY_CURSOR(NULL,NULL,NULL));
    SQL_ID  g6gvbpsgj1dvf, child number 0
    SELECT   * FROM   T1 WHERE   C1=1
    Plan hash value: 3617692013
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |       |       |     2 (100)|          |
    |*  1 |  TABLE ACCESS FULL| T1   |     2 |    24 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter(TO_NUMBER("C1")=1)
    Note
       - dynamic sampling used for this statement
    INSERT INTO T1 VALUES ('.0001.');
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    SQL> SELECT
      2    *
      3  FROM
      4    T1
      5  WHERE
      6    C1=1;
    ERROR:
    ORA-01722: invalid numberAs you can see, exactly the same actual execution plan, and the same end result.
    The OP needs to determine if non-numeric data now exists in the column. Was the database characterset possibly changed during/after the upgrade?
    Charles Hooper
    Co-author of "Expert Oracle Practices: Oracle Database Administration from the Oak Table"
    http://hoopercharles.wordpress.com/
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • Date Picker on Manual Tabular form not working on 4.1 upgrade from 4.0

    Hi
    my application is upgrade from Apex 4.0 to 4.1 .
    Oracle DB is 11g.
    I have a manual tabular form with a date field:- apex_item.text(12,null,15,15,'class="datepicker3"') as end_date, After upgrade to 4.1 it's not working .
    I changed the code to:- apex_item.date_popup2(12,null,15,15) as end_date, still not working .
    I have to use apex_item.date_popup2 .
    Thanks in advance !!!
    -Amu

    Hi Diana,
    Is this you are trying to achieve:
    piepdate = startdate + typeduration
    The id attribute of the items in normal or APEX_ITEM based tabular form are of the type:
    fxx_xxxx
    For example: f10_0001, f10_0002, ..., f10_0010.
    So, correct the vRow variable accordingly
    >
    // get row
    var vRow = pThis.id.substr(pThis.id.indexOf('_')+1);
    >
    Hope it helps!
    Regards,
    Kiran

  • Time machine can not access time capsule after upgrade from snow leopard to mountain lion

    Two days ago I upgraded my 2009 17" MBP from Snow Leopard to Mountain Lion. That evening my time capsule/time machine combination worked fine and did an incremental backup of about 12 gigabyte. Yesterday - only one day later - the time machine backup did not work anymore.
    It appears that the system can not find the time capsule - even though it shows the remaining free space on the time capsule (so it did find it after all).
    The message is always the same:
    Time Machine can not complete the backup "Time Capsule"
    The image of the backup volume "/Volumes/Data/Pauls MacBookPro.sparsebundle" is not accessable (Error -1).
    I also can not delete the backup image on the time capsule since it is read-only. And I do not want to format the time caspsule yet since my wife's MBAir is also using the same time casule.
    I tried out all kinds of suggestions (hard and soft resetting both the MBP and the TC, entering the password again, setting the TC up again) all to no avail. No backup is possible anymore.

    Mr. Zooot wrote:
    Time Machine can not complete the backup "Time Capsule"
    The image of the backup volume "/Volumes/Data/Pauls MacBookPro.sparsebundle" is not accessable (Error -1).
    I also can not delete the backup image on the time capsule since it is read-only.
    Sounds like you got this message earlier:
    If so, see #C13 in Time Machine - Troubleshooting.
    Offhand, I don't recall anyone not being able to delete one via the Finder (but most were only backing-up one Mac, so just erased the disk).
    You may have to wait for that message to appear again (24 hours later), or you might try holding Alt/Option with the TM icon in the menubar, and select Verify Backups if it will let you.

  • Web Query (.iqy) not working in Excel after upgrade to 11.1.1.6

    After upgrade 11.1.1.5 to 11.1.1.6, the Web Query (.iqy) does not work. After open the .iqy file in Excel, entered the user and password, it only pulls in "PK" in one cell, instead of the expected analysis report. This was working in 11.1.1.5 before upgrade.
    Does anyone know how to correct this issue? Is this a bug in 11.1.1.6, or required some new configuration settings?
    Thanks in advance.
    DX

    A bug has been registered.
    Bug 14040587 - OBIEE 11.1.1.6: OPENING WEB QUERY (.IQY) FILE IN EXCEL SHOWS JUNK CHARACTERS.

  • Swf previews in browser and doesn't work on server after upgrade from cs3 to cs5

         I have upgraded from CS3 to CS5. My site uses a template created in dreamweaver 8.  When I edit a page and embed a .swf file created in flash cs5, it doesn't work on my server, but works on my computer when I 'test in browser'.  I have uploaded all the files in the 'scripts' directory.  I am streaming video.  I have tried using both actionscript 2.0 and 3.0 and streaming .flv and .f4v.  None work.
    I have a big site and do not wan't to redo my template unless I absolutely have to.
    Here is the link:
    http://retinavitreous.com/educationalvideo2010/clips/intro_eyesees.html
    Here is the code on my page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- saved from url=(0014)about:internet -->
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/mainnopop.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>video vitrectomy for macular hole re-operation ilm peel</title>
    <!-- InstanceEndEditable -->
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style type="text/css">
    td img {display: block;}body {
    background-color: #0000FF;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    a:link {
    color: #FFFF00;
    a:visited {
    color: #00FFFF;
    a:hover {
    color: #FFFFFF;
    a:active {
    color: #99CC00;
    #main {
    position:absolute;
    width:579px;
    height:815px;
    z-index:1;
    left: 168px;
    top: 96px;
    #right {
    position:absolute;
    width:238px;
    height:817px;
    z-index:2;
    left: 792px;
    top: 98px;
    </style>
    <!--Fireworks 8 Dreamweaver 8 target.  Created Tue May 26 14:59:01 GMT-0400 (Eastern Daylight Time) 2009-->
    <script language="JavaScript1.2" type="text/javascript">
    <!--
    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 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_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];}}
    //-->
    </script>
    <!-- InstanceBeginEditable name="head" -->
    <script src="../../Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    <script src="../../Scripts/swfobject_modified.js" type="text/javascript"></script>
    <!-- InstanceEndEditable -->
    <link href="../../css/yellowblue.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    <!--
    body,td,th {
    color: #FFFBF0;
    -->
    </style></head>
    <body bgcolor="#ffffff" onload="MM_preloadImages('../../Templates/tempanimation/temp_animation_r1_c1_f2.gif','../ ../Templates/tempanimation/tempanimation_r1_c1_f2.gif','../../Templates/tempanimation/temp _animation_r1_c2_f2.gif','../../Templates/tempanimation/tempanimation_r1_c2_f2.gif','../.. /Templates/tempanimation/temp_animation_r1_c4_f2.gif','../../Templates/tempanimation/tempa nimation_r1_c4_f2.gif','../../Templates/tempanimation/temp_animation_r1_c5_f2.gif','../../ Templates/tempanimation/tempanimation_r1_c5_f2.gif','../../Templates/tempanimation/temp_an imation_r1_c7_f2.gif','../../Templates/tempanimation/tempanimation_r1_c7_f2.gif','../../Te mplates/tempanimation/temp_animation_r1_c8_f2.gif','../../Templates/tempanimation/tempanim ation_r1_c8_f2.gif','../../Templates/tempanimation/temp_animation_r2_c6_f2.gif','../../Tem plates/tempanimation/tempanimation_r2_c6_f2.gif','../../Templates/tempanimation/temp_anima tion_r4_c1_f2.gif','../../Templates/tempanimation/tempanimation_r4_c1_f2.gif','../../Templ ates/tempanimation/temp_animation_r5_c1_f2.gif','../../Templates/tempanimation/tempanimati on_r5_c1_f2.gif','../../Templates/tempanimation/temp_animation_r6_c1_f2.gif','../../Templa tes/tempanimation/tempanimation_r6_c1_f2.gif','../../Templates/tempanimation/temp_animatio n_r7_c1_f2.gif','../../Templates/tempanimation/tempanimation_r7_c1_f2.gif','../../Template s/tempanimation/temp_animation_r8_c1_f2.gif','../../Templates/tempanimation/tempanimation_ r8_c1_f2.gif','../../Templates/tempanimation/temp_animation_r9_c1_f2.gif','../../Templates /tempanimation/tempanimation_r9_c1_f2.gif','../../Templates/tempanimation/temp_animation_r 11_c1_f2.gif','../../Templates/tempanimation/tempanimation_r11_c1_f2.gif')">
    <table border="0" cellpadding="0" cellspacing="0" width="1440">
    <!-- fwtable fwsrc="tempanimation.png" fwbase="tempanimation.gif" fwstyle="Dreamweaver" fwdocid = "41244840" fwnested="0" -->
      <tr>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="99" height="1" border="0" alt="" /></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="68" height="1" border="0" alt="" /></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="14" height="1" border="0" alt="" /></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="85" height="1" border="0" alt="" /></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="121" height="1" border="0" alt="" /></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="114" height="1" border="0" alt="" /></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="160" height="1" border="0" alt="" /></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="163" height="1" border="0" alt="" /></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="616" height="1" border="0" alt="" /></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="1" height="1" border="0" alt="" /></td>
      </tr>
      <tr>
       <td rowspan="2"><a href="../../index.php" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('tempanimation_r1_c1','','../../Templates/tempanimation/temp_an imation_r1_c1_f2.gif','tempanimation_r1_c1','','../../Templates/tempanimation/tempanimatio n_r1_c1_f2.gif',1)"><img name="tempanimation_r1_c1" src="../../Templates/tempanimation/tempanimation_r1_c1.gif" width="99" height="24" border="0" id="tempanimation_r1_c1" alt="" /></a></td>
       <td rowspan="2" colspan="2"><a href="../../ouroffices/alloffices.html" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('tempanimation_r1_c2','','../../Templates/tempanimation/temp_an imation_r1_c2_f2.gif','tempanimation_r1_c2','','../../Templates/tempanimation/tempanimatio n_r1_c2_f2.gif',1)"><img name="tempanimation_r1_c2" src="../../Templates/tempanimation/tempanimation_r1_c2.gif" width="82" height="24" border="0" id="tempanimation_r1_c2" alt="" /></a></td>
       <td rowspan="2"><a href="../../patientinfo/forms.html" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('tempanimation_r1_c4','','../../Templates/tempanimation/temp_an imation_r1_c4_f2.gif','tempanimation_r1_c4','','../../Templates/tempanimation/tempanimatio n_r1_c4_f2.gif',1)"><img name="tempanimation_r1_c4" src="../../Templates/tempanimation/tempanimation_r1_c4.gif" width="85" height="24" border="0" id="tempanimation_r1_c4" alt="" /></a></td>
       <td rowspan="2"><a href="../../treatments/overviewtreatments.html" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('tempanimation_r1_c5','','../../Templates/tempanimation/temp_an imation_r1_c5_f2.gif','tempanimation_r1_c5','','../../Templates/tempanimation/tempanimatio n_r1_c5_f2.gif',1)"><img name="tempanimation_r1_c5" src="../../Templates/tempanimation/tempanimation_r1_c5.gif" width="121" height="24" border="0" id="tempanimation_r1_c5" alt="" /></a></td>
       <td><img name="tempanimation_r1_c6" src="../../Templates/tempanimation/tempanimation_r1_c6.gif" width="114" height="1" border="0" id="tempanimation_r1_c6" alt="" /></td>
       <td rowspan="2"><a href="../../video files/videostart.html" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('tempanimation_r1_c7','','../../Templates/tempanimation/temp_an imation_r1_c7_f2.gif','tempanimation_r1_c7','','../../Templates/tempanimation/tempanimatio n_r1_c7_f2.gif',1)"><img name="tempanimation_r1_c7" src="../../Templates/tempanimation/tempanimation_r1_c7.gif" width="160" height="24" border="0" id="tempanimation_r1_c7" alt="" /></a></td>
       <td rowspan="2"><a href="../../flash/animations/overview_animations.html" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('tempanimation_r1_c8','','../../Templates/tempanimation/temp_an imation_r1_c8_f2.gif','tempanimation_r1_c8','','../../Templates/tempanimation/tempanimatio n_r1_c8_f2.gif',1)"><img name="tempanimation_r1_c8" src="../../Templates/tempanimation/tempanimation_r1_c8.gif" width="163" height="24" border="0" id="tempanimation_r1_c8" alt="" /></a></td>
       <td><img name="tempanimation_r1_c9" src="../../Templates/tempanimation/tempanimation_r1_c9.gif" width="616" height="1" border="0" id="tempanimation_r1_c9" alt="" /></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="1" height="1" border="0" alt="" /></td>
      </tr>
      <tr>
       <td><a href="../../patientinfo/insurancepar.html" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('tempanimation_r2_c6','','../../Templates/tempanimation/temp_an imation_r2_c6_f2.gif','tempanimation_r2_c6','','../../Templates/tempanimation/tempanimatio n_r2_c6_f2.gif',1)"><img name="tempanimation_r2_c6" src="../../Templates/tempanimation/tempanimation_r2_c6.gif" width="114" height="23" border="0" id="tempanimation_r2_c6" alt="" /></a></td>
       <td><img name="tempanimation_r2_c9" src="../../Templates/tempanimation/tempanimation_r2_c9.gif" width="616" height="23" border="0" id="tempanimation_r2_c9" alt="" /></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="1" height="23" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="9"><img name="tempanimation_r3_c1" src="../../Templates/tempanimation/tempanimation_r3_c1.gif" width="1440" height="69" border="0" id="tempanimation_r3_c1" alt="" /></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="1" height="69" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="2"><a href="../../patientinfo/overview_patientinfo.html" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('tempanimation_r4_c1','','../../Templates/tempanimation/temp_an imation_r4_c1_f2.gif','tempanimation_r4_c1','','../../Templates/tempanimation/tempanimatio n_r4_c1_f2.gif',1)"><img name="tempanimation_r4_c1" src="../../Templates/tempanimation/tempanimation_r4_c1.gif" width="167" height="30" border="0" id="tempanimation_r4_c1" alt="" /></a></td>
       <td rowspan="9" colspan="7"                  ><div id="main"><!-- InstanceBeginEditable name="main" -->
         <h2 align="center">How the Eye Sees Animation
         </h2>
         <p align="center">
           <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="874" height="520" id="FlashID" title="eye sees">
             <param name="movie" value="eyeseesas2.swf" />
             <param name="quality" value="high" />
             <param name="wmode" value="opaque" />
             <param name="swfversion" value="6.0.65.0" />
             <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
             <param name="expressinstall" value="../../Scripts/expressInstall.swf" />
             <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
             <!--[if !IE]>-->
             <object type="application/x-shockwave-flash" data="eyeseesas2.swf" width="874" height="520">
               <!--<![endif]-->
               <param name="quality" value="high" />
               <param name="wmode" value="opaque" />
               <param name="swfversion" value="6.0.65.0" />
               <param name="expressinstall" value="../../Scripts/expressInstall.swf" />
               <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
               <div>
                 <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                 <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
               </div>
               <!--[if !IE]>-->
             </object>
             <!--<![endif]-->
           </object>
         </p>
       <!-- InstanceEndEditable --></div>
        <div id="right"><!-- InstanceBeginEditable name="right" -->
          <p> </p>
          <script type="text/javascript">
    swfobject.registerObject("FlashID");
          </script>
        <!-- InstanceEndEditable --></div></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="1" height="30" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="2"><a href="../../diseases/overview_diseases.html" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('tempanimation_r5_c1','','../../Templates/tempanimation/temp_an imation_r5_c1_f2.gif','tempanimation_r5_c1','','../../Templates/tempanimation/tempanimatio n_r5_c1_f2.gif',1)"><img name="tempanimation_r5_c1" src="../../Templates/tempanimation/tempanimation_r5_c1.gif" width="167" height="33" border="0" id="tempanimation_r5_c1" alt="" /></a></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="1" height="33" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="2"><a href="../../refdoc/overview_refdoc.html" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('tempanimation_r6_c1','','../../Templates/tempanimation/temp_an imation_r6_c1_f2.gif','tempanimation_r6_c1','','../../Templates/tempanimation/tempanimatio n_r6_c1_f2.gif',1)"><img name="tempanimation_r6_c1" src="../../Templates/tempanimation/tempanimation_r6_c1.gif" width="167" height="32" border="0" id="tempanimation_r6_c1" alt="" /></a></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="1" height="32" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="2"><a href="../../ourdocs/alldocs.html" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('tempanimation_r7_c1','','../../Templates/tempanimation/temp_an imation_r7_c1_f2.gif','tempanimation_r7_c1','','../../Templates/tempanimation/tempanimatio n_r7_c1_f2.gif',1)"><img name="tempanimation_r7_c1" src="../../Templates/tempanimation/tempanimation_r7_c1.gif" width="167" height="31" border="0" id="tempanimation_r7_c1" alt="" /></a></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="1" height="31" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="2"><a href="../../ouroffices/alloffices.html" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('tempanimation_r8_c1','','../../Templates/tempanimation/temp_an imation_r8_c1_f2.gif','tempanimation_r8_c1','','../../Templates/tempanimation/tempanimatio n_r8_c1_f2.gif',1)"><img name="tempanimation_r8_c1" src="../../Templates/tempanimation/tempanimation_r8_c1.gif" width="167" height="31" border="0" id="tempanimation_r8_c1" alt="" /></a></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="1" height="31" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="2"><a href="../../contactus/contacthome.html" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('tempanimation_r9_c1','','../../Templates/tempanimation/temp_an imation_r9_c1_f2.gif','tempanimation_r9_c1','','../../Templates/tempanimation/tempanimatio n_r9_c1_f2.gif',1)"><img name="tempanimation_r9_c1" src="../../Templates/tempanimation/tempanimation_r9_c1.gif" width="167" height="32" border="0" id="tempanimation_r9_c1" alt="" /></a></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="1" height="32" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="2"><img name="tempanimation_r10_c1" src="../../Templates/tempanimation/tempanimation_r10_c1.gif" width="167" height="13" border="0" id="tempanimation_r10_c1" alt="" /></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="1" height="13" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="2"><a href="../../lowvision/lowvisionhome.html" onmouseout="MM_swapImgRestore();" onmouseover="MM_swapImage('tempanimation_r11_c1','','../../Templates/tempanimation/temp_a nimation_r11_c1_f2.gif','tempanimation_r11_c1','','../../Templates/tempanimation/tempanima tion_r11_c1_f2.gif',1)"><img name="tempanimation_r11_c1" src="../../Templates/tempanimation/tempanimation_r11_c1.gif" width="167" height="102" border="0" id="tempanimation_r11_c1" alt="" /></a></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="1" height="102" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="2"><img name="tempanimation_r12_c1" src="../../Templates/tempanimation/tempanimation_r12_c1.gif" width="167" height="503" border="0" id="tempanimation_r12_c1" alt="" /></td>
       <td><img src="../../Templates/tempanimation/spacer.gif" width="1" height="503" border="0" alt="" /></td>
      </tr>
    </table>
    </body>
    <!-- InstanceEnd --></html>

    It's not 100% clear from your post, but you should be aware that CS5 plugins should not work in CS5.5. Because of a CS5.5 bug, CS5 plugins will load in InDesign 7.5.0, but that is fixed in 7.5.1 so they will not load.
    You should lean a bit harder on Virginia Systems. They should be able to tell you how to get them the stack trace from the crash which they should be able to look at and tell you which plugin (if any) is responsible for the crash. I could do it for Mac OS X but I don't know how under Windows. You could start by looking at the Event Viewer, though. That may have some helpful information about the crashes and the faulting module.

  • Send button not working on sms after upgrade

    My send is no longer working on sms after i upgraded. I have done factory setting and still not working . Any ideas of anything else i can try ? frustrated

    I have same problem. Can open message. As if keyboard is frozen.
    Unable to type then send. Also, tried shutting off preview.

  • Calender not working in 4s after upgrading to IOS 8 and and after synching with my new iphone 6  , calender not working in 6  as well. Please help.

    Hi my old phone 4s after upgrading to IOS 8, Calender is not working. Just a blank page and it quits automatically. I bought a new iphone 6+ and after synching , it also showing the same issue.

    There's no way a software update causes a hardware issue.  This is just coincidental.  Bring your phone to Apple for evaluation and possible replacement.

  • Ipod not working in car after upgrade

    After an upgrade ipod touch shows unreadable in my volvo s80 2010

    cjwj, downgrading the iOS is not supported by Apple and the method you outlined does not work. When restoring an iPod, iTunes contacts Apple and will only allow restoring using the latest available update file.
    flcolvin7, Contact Volvo and get them to issue a firmware update for the car.

  • Finger print reader not working 'post' Windows 10 upgrade from windows 7

    Ok I have succumbed to upgrading to Windows 10 as I did to Windows 8, perhaps this time I won't 'rollback' but already things don't look good .  As a part of the upgrade the Windows 10 the installer spat about the HP Protect Tools Security Manager and asked me to uninstall in order to proceed with the upgrade. I started to get a little concerned from this point on that I would lose my fingerprint reader as a result of going to Win 10 and low and behold that’s happened. It was only after following several threads online that I originally got the fingerprint reader working on windows 7.  I went in and out of the BIOS resetting this and that but in the end despite having all the HP drivers for the readers (latest ones) the only thing that ‘fixed’ my fingerprint reader was the installation of the HP Protect Tools Security Software. So the question is where’s the Windows 10 version of the HP Protect Tools Security Software or the ‘fix’ is there one?? Hate to think an operating system is blocking such a great HP laptop feature!

    I want to upgrade from windows7 to  windows10 (probook 4350s) I have the same question about compatible version, which I hope HP or somebody answer soon and help us...I also cant uninstall my protect tools as upgrade needs me to.I want to know is it possible for finger scanner to work in windows10 after uninstalling HPPTM. thanks,Nazanin Mirzabeigi 

  • IPhone does not work in car after upgrading to os5

    After upgrading to os5 my build in hands free device does not work properly anymore, lot of noise, disconnects, connects in general not usable anymore.
    How to fix this?

    Does your aftermarket solution connect to the Nano's headphone jack or to the dock connector?
    If it connects to the headphone jack I would suggest buying an iPhone headphone adapter. I'm expecting mine to arrive via FedEx tomorrow so that I can use my iPhone in the car with a cassette adapter.
    Hope this helps.

  • Sound effects not working with SoundSticks after upgrade to 10.4.4

    After upgrading to 10.4.4, the sound effects of OS X, such as emptying trash, iChat effects, etc, doesn't come out from the SoundSticks (first generation, connected via USB), even though I've turned it (effects) to the highest level, and selected to have it come out of the SoundSticks.
    The effects are fine if I select Built-in Audio as sound output.

    The names are updated to the following (although the documentation doesn't reflect this):
    addDataSourceConnectionPool == createJDBCConnectionPool
    addManagedDataSource == createManagedDataSource
    addNativeDataSource == createNativeDataSource
    testDataSourceConnectionPool == testConnectionPool
    Hope it helps ...
    Cheers!
    Nimesh

Maybe you are looking for

  • Java CAPS 5.1.3 edesigner problem?

    Hi, In my Business Process, i changed something in a business rule designer (changed return type from number to string) then build and deployed. But changes did NOT show up! Any suggestions please. thanks in advance.

  • Multiple Event Handler

    Hey, This is probably a really stupid question but is there a way to declare an event handle on an Actions layer that handles multiple events? For example, both of these are equivalent: // on button on (rollOut) // on action layer btnTest.onRollOut =

  • How do you right click on an ipad?

    How do I right click on the iPad screen?

  • How make master data object available for ACR

    Hi, I remember that there is a program to run so that we can make the master data object available for ACR. i am not getting the program name. Please advice. Thanks, Dev

  • Disk lost?

    I have an external drive (WD) and have been using it up until just ten minutes ago. I did, however, have problems today that a lot of files could not open. Then I ejected (properly) and opened it again (because of the issue with the files) and now it