Simple code compiled in 1.6 but not in 1.5

Can any one tell me if this is bug in 1.5 or 1.6 ?
This code seems to me perfectly legal, but in 1.5 compiler issues an error, in 1.6 it does not.
Is any opened bug related to it so i can learn some more.
class TKey<T> {}
class TKeyWrapped<T, W extends Wrapper<T>> extends TKey<T> {}
public class AlonProblem<T extends Number> {
    public void test() {
        // this assignment cause the error
        TKeyWrapped<T, ? extends Wrapper<T>> resolved = getKey();
    protected TKeyWrapped<T, ? extends Wrapper<T>> getKey() {
        return null;
}The error is:
D:\views.dat\BoazAdonisS\Q\wf\core\AlonProblem.java
Error:Error:line (18)incompatible types
found : wf.core.TKeyWrapped<T,capture of ? extends wf.core.Wrapper<T>>
required: wf.core.TKeyWrapped<T,? extends wf.core.Wrapper<T>>
Thanks
Boaz
Message was edited by:
boaznahum

FYI, I just compiled this with 1.5.0_7. I get the same error from IDEA 5.2.1) (so presumably also from javac directly), but Eclipse 3.2.1 compiles it just fine.

Similar Messages

  • Can anyone explain why the code compiles on one database but not another?

    I have two databases, both running 10.2.0.4, same hardware/OS platform.
    On one database, this code compiles just fine, on the second database, I get errors as shown below:
    SQL> SET SERVEROUTPUT ON SIZE 1000000;
    SQL>
    SQL> create or replace procedure testproc as
    2 vCount number;
    3 vCmd varchar2(2048);
    4 vLastName varchar2(30);
    5 vFirstName varchar2(30);
    6 vPK integer := 0;
    7 vSortLN varchar2(30);
    8 vSortFN varchar2(30);
    9 cursor cPERSON is
    10 select LastName,
    11 FirstName
    12 from GENERIC.PERSON
    13 order by LastName, FirstName;
    14 BEGIN
    15 select count(*) into vCount from USER_OBJECTS where object_name = 'ML4TEMPPERSON';
    16
    17 IF (vCount = 0) THEN
    18 /* NOTE: Omit semi-colon from command. */
    19 vCmd := 'create table ML4TEMPPERSON (PK integer not null, LastName varchar2(30), SortLN varchar2(30), FirstName varchar2(30), SortFN varchar2(30))';
    20 Execute Immediate vCmd;
    21 vCmd := 'alter table ML4TEMPPERSON add (constraint XPKML4TEMPPERSON PRIMARY KEY (PK))';
    22 Execute Immediate vCmd;
    23 END IF;
    24
    25 delete from ML4TEMPPERSON;
    26
    27 for P in cPERSON
    28 loop
    29 vLastName := rpad(P.LastName, 30, ' ');
    30 vFirstName := rpad(P.FirstName, 30, ' ');
    31 vSortLN := vLastName;
    32 vSortFN := vFirstName;
    33 DBMS_OUTPUT.PUT_LINE(vLastName || ', ' || vFirstName);
    34 vPK := vPK+1;
    35 INSERT into ML4TEMPPERSON
    36 ( PK, LastName, SortLN, FirstName, SortFN)
    37 values
    38 (vPK, vLastName, vSortLN, vFirstName, vSortFN);
    39 end loop;
    40 IF (vPK > 0) THEN
    41 COMMIT;
    42 END IF;
    43 END;
    44 /
    Warning: Procedure created with compilation errors.
    SQL> show errors
    Errors for PROCEDURE TESTPROC:
    LINE/COL ERROR
    25/3 PL/SQL: SQL Statement ignored
    25/15 PL/SQL: ORA-00942: table or view does not exist
    35/7 PL/SQL: SQL Statement ignored
    35/19 PL/SQL: ORA-00942: table or view does not exist
    SQL>

    Your table ML4TEMPPERSON doesn't exist in your second database, and you want do delete ans insert, may be in first database the table ML4TEMPPERSON exist
    Try this code. /* Formatted on 2009/05/21 09:10 (Formatter Plus v4.8.8) */
    SET SERVEROUTPUT ON SIZE 1000000;
    CREATE OR REPLACE PROCEDURE testproc
    AS
       vcount       NUMBER;
       vcmd         VARCHAR2 (2048);
       vlastname    VARCHAR2 (30);
       vfirstname   VARCHAR2 (30);
       vpk          INTEGER         := 0;
       vsortln      VARCHAR2 (30);
       vsortfn      VARCHAR2 (30);
       CURSOR cperson
       IS
          SELECT   lastname, firstname
              FROM generic.person
          ORDER BY lastname, firstname;
    BEGIN
       SELECT COUNT (*)
         INTO vcount
         FROM user_objects
        WHERE object_name = 'ML4TEMPPERSON';
       IF (vcount = 0)
       THEN
    /* NOTE: Omit semi-colon from command. */
          vcmd :=
             'create table ML4TEMPPERSON (PK integer not null, LastName varchar2(30), SortLN varchar2(30), FirstName varchar2(30), SortFN varchar2(30))';
          EXECUTE IMMEDIATE vcmd;
          vcmd :=
             'alter table ML4TEMPPERSON add (constraint XPKML4TEMPPERSON PRIMARY KEY (PK))';
          EXECUTE IMMEDIATE vcmd;
       END IF;
       vcmd := 'delete from ML4TEMPPERSON';
       EXECUTE IMMEDIATE vcmd;
       FOR p IN cperson
       LOOP
          vlastname := RPAD (p.lastname, 30, ' ');
          vfirstname := RPAD (p.firstname, 30, ' ');
          vsortln := vlastname;
          vsortfn := vfirstname;
          DBMS_OUTPUT.put_line (vlastname || ', ' || vfirstname);
          vpk := vpk + 1;
          vcmd :=
                'INSERT into ML4TEMPPERSON
    ( PK, LastName, SortLN, FirstName, SortFN)
    values
             || vpk
             || ', '
             || vlastname
             || ','
             || vsortln
             || ','
             || vfirstname
             || ','
             || vsortfn
             || ')';
          EXECUTE IMMEDIATE vcmd;
       END LOOP;
       IF (vpk > 0)
       THEN
          COMMIT;
       END IF;
    END;
    /Edited by: Salim Chelabi on 2009-05-21 06:12

  • Compiles well with eclipse but not with javac

    Hello.
    I am using Windows XP and eclipse 3.0.2.
    I have j2sdk-1_4_2_07-windows also.
    I built class files from the code below with eclipse.
    On jre, It silently runs and exits as expected.
    But when compiled with javac, It does not.
    It dumps a stack trace.
    Which compiler is right?
    public class ANullPointerException {
         private Object o = new Object();
         private Sub sub = new Sub();
         private abstract static class Super {
              protected abstract Object access();
              private Super() {
                   access();
         private class Sub extends Super {
              protected Object access() {
                   return o;
         public static void main(String[] args) {
              new ANullPointerException();
    }the stack trace was as below
    java.lang.NullPointerException
         at ANullPointerException.access$200(ANullPointerException.java:1)
         at ANullPointerException$Sub.access(ANullPointerException.java:15)
         at ANullPointerException$Super.<init>(ANullPointerException.java:9)
         at ANullPointerException$Super.<init>(ANullPointerException.java:5)
         at ANullPointerException$Sub.<init>(ANullPointerException.java:13)
         at ANullPointerException$Sub.<init>(ANullPointerException.java:13)
         at ANullPointerException.<init>(ANullPointerException.java:3)
         at ANullPointerException.main(ANullPointerException.java:20)
    Exception in thread "main" I found 3 class files built by eclipse. They were
    ANullPointerException$Sub.class,
    ANullPointerException$Super.class and
    ANullPointerException.class.
    No missing or extra files found, I think.
    But I found 4 class files built by javac. They were
    ANullPointerException$1.class,
    ANullPointerException$Sub.class,
    ANullPointerException$Super.class and
    ANullPointerException.class.
    I do not know why ANullPointerException$1.class is needed.
    Thank you in advance.

    I found the answer myself.
    I have been setting the eclipse's .class file compatibility to 1.4.
    But it is not javac's default.
    So all I need to do is javac -target 1.4 ANullPointerException.java.
    Sorry for a noise

  • Input Tax code from logical partner LS but not from indiv vendor partner LI

    Hi,
    Find that tax code at vendor invoice is being taken from logical partner (LS) , but not from the individual vendor partner number (LI) . Bothe the partners are maintained in WE20 , OBCA , OBCD & OMRY.
    Like to know the reason / setting to pick up tax code from logical partner (tax rates are same in both cases).
    With regards,
    Mrinal

    Hi Dove,
    I think you can use a substitution for field Bank Type at Item Level (TCODE OBBH). This would fill your bank type when you post the document in FI, then you won't have problems in F110.
    Hope that helps.Cheers.
    Ignacio.

  • Why would code work for an application but not an applet?

    Hey there,
    i'm trying to build a java ftp upload applet. I'm using the enterprisedt ftp class.
    The code works fine when i run it as an application but not when i put it in the applet. The applet has been signed and is running off a plug in. I get no error messages, just nothing happens.
    Would really appreciate some comments.
    regards
    hagen
    the code
    FTPClient ftp = new FTPClient("****");
    ftp.login("user1", "***");
    ftp.put("C:/INSTALL.log","test.log");

    hi
    im a manuel, from argentina
    i would appreciate too much if you can give me that piece of code
    i need for a site, an applet that could read files the visitor chosse from his pc and then upload that files to a server
    is it possible?? you could help me ?
    i think i need to sing my applet alright? how i do this? how it cost??
    if anyone can give my a bit of code, to star�t programming, ill be very happy!
    thanks!
    mi mail: [email protected]

  • Code works in old Joomla but not in plain HTML

    Having trouble with playing a SWF movie on our test site as
    we are moving to a different environment.
    On the main site, in a Joomla environment, this works <
    http://www.fumcmaumelle.org/component/option,com_wrapper/Itemid,43/>
    But the same codebase in Expression Web HTML shows the movie
    buffering but won't play <
    http://www.fumcmmmedia.org/testing_123.html>
    Attaching the relevant code at the bottom of this note.
    Any thoughts/hints? Is there possibily something installed in
    the Joomla environment that I can't see (don't have control over
    it, which is why the new environment being created)?
    thanks for any assistance, this is driving me nuts and we
    have like 10 movies to post.
    LJ

    i am having a similair issue but i am new to adobe flash and
    i cant get it to work when i use a code on a different site

  • Why do I get a "NullReferenceException was not handled by user code" error in one situation but not in the other?

    We are using Sharepoint 2010 and Infopath 2010.  In my form, I have a Managed Metadata field that I need to test for a Null value.  I found, with the help of this forum's participatns, that a [field]_Changed event for one MMD field runs multiple
    time because of the underlying XML elements (Terms, TermInfo, TermName, TermId).  So I'm trying to figure out how to test the XML to see when the TermName has a value.  By doing this, I hope to limit when the additional code in my form runs, i.e.
    I'll only trigger it when TermName is not null. 
    Just to test for null/empty (before doing anything that calls the addtional code) when I run this code, it completes correctly but always shows a message box:
    Dim strTest As String = Me.CreateNavigator.SelectSingleNode("/pr:properties/p:properties/documentManagement/ns2:h2b59c4ae4144c01973b1d8571d217ad", Me.NamespaceManager).InnerXml
                If String.IsNullOrEmpty(strTest) Then
                Else
                    MessageBox.Show("This is the value of the States InnerXML   " & strTest)
                End If
    But when I run this code, I get a "NullReferenceException was not handled by user code.  Object reference not set to an instance of an object" at the "Dim strTest..." line:
       Dim strTest As String = Me.CreateNavigator.SelectSingleNode("/pr:properties/p:properties/documentManagement/ns2:h2b59c4ae4144c01973b1d8571d217ad/pc:Terms/pc:TermInfo/pc:TermName", Me.NamespaceManager).InnerXml
                If String.IsNullOrEmpty(strTest) Then
                Else
                    MessageBox.Show("This is the value of the States InnerXML   " & strTest)
                End If
    Can any one explain why drilling down like this gives me this error?  And can you tell me how to get around it so I can limit how many times the code in my Infopath form needs to run?
    Thanks in advance.  Carol.

    Never mind, I think I've got it figured out.  When I do it this way, I get to the If Not...Nothing at the correct time. Thanks for sending me down the correct path, Scott. Carol.:
    Dim
    firstStr As
    String =
    String.Empty         
    Dim xNav
    As XPathNavigator = MainDataSource.CreateNavigator()
    Dim xFirst
    As XPathNavigator = xNav.SelectSingleNode("/pr:properties/p:properties/documentManagement/ns2:h2b59c4ae4144c01973b1d8571d217ad/pc:Terms/pc:TermInfo/pc:TermName",
    Me.NamespaceManager)
    If
    Not xFirst
    Is
    Nothing
    Then               
    Dim strxFirst
    As
    String = xFirst.InnerXml
                    MessageBox.Show(
    "Value of InnerXML   " & strxFirst)
    Else
                    MessageBox.Show(
    "Empty or Null")           
    End
    If

  • MyRIO simple code compilation FPGA

    Hello,
    I am new to FPGA and I want to compile some simple code. I know that myRIO comes with default FPGA configuration so I want to create new one and compile it. Lets say that I want blinking LED. So I create new VI on FPGA and here is simple code:
    then I add it to build and start compilation
    As compilation goes it says that it will use 30% of FPGA resources:
    Why is that? Whole compilation on cloud server takes more than 20 minutes. I have seen some example videos on CRio FPGA and that simple code should use no more than 2% of resources and shuld compile in 2 to 3 minutes.
    What I am doing wrong?
    Thanks in advice

    Hey Pawhan11,
    There are two main reasons for the FPGA resource consumption.  First is that the FPGA on the myRIO (Zynq Z-7010) is relativly small compared to some other NI targets you may have used.  The second reason that even a simple FPGA application takes ~20% of the FPGA fabric is because some of the FPGA fabric is already being used for other purposes.  For example some NI Real-Time targets implement UARTs, RS232 or even ethernet in the FPGA to ensure consistency between devices. 
    Since myRIO is based on the Xilinx Zynq chip it uses a different toolchain than previous FPGA devices which may cause the difference in compile/synth times.
    -Sam K
    LabVIEW Hacker
    Join / Follow the LabVIEW Hacker Group on google+

  • Code runs correctly when compiled by SQL developer but not SQL Plus

    I have a rather large package body I need to deploy and compile ... It's big and complex (I inherited the project). Our it dept is huge and scripts are deployed by the dba team and they seem to only use sql plus. My code deploys and runs fine when compiled in sql developer. Once I compile it from SQL plus it stops working. It runs and using debug statements I can see the values are correct but it no longer inserts the data into the proper tables. I get ZERO errors or warnings when this is compiled in SQL Plus and no errors are generated from the code at run time. I've diffed the extracts of the code from the DB after each deployment and the only difference is the blank lines which SQL Plus strips out when you load the file. Has anyone run into anything remotely similar and if so how did you solve it? I've tried modifying the code to no avail, adding in comments to preserve the white space makes no difference. The thing that really kills me is that there is no error at all.

    Ok this is the problem area.... vReplyMessage is a clob. I've replaced it in this section of processing with a varchar2(32000). And now it works. I still would like to know why though. Nothing is changed when I load it though sqlplus or sql developer but this line " update swn_recip_response_t set SWN_RECIP_RESPONSE = vTextReply where notification_id = v_notification_id; " would never execute with the clob. Logging showed that the clob had the correct value though. I am puzzled.
    begin
    call_SWNPost('http://www.sendwordnow.com/usps/getNotificationResults',vMessageText, vReplyMessage, v_status_code, v_status_phrase, '');
    exception
    when others then
    raise eJavaException;
    end;
    vTextReply := dbms_lob.substr( vReplyMessage, 32000, 1 );
    if (vDebug) then
    update PEMS_PROD_2.SWN_POST_LOG set response = 'notif_id == '|| v_notification_id || 'status code == '|| v_status_code|| ' '||vTextReply where log_pk = vLogPK;
    commit;
    end if;
    IF v_status_code = 200 then
    v_has_error := 'N';
    ELSE
    v_has_error := 'Y';
    END IF;
    -- we handle all exceptions below in case something goes wrong here.
    -- this area can die silently.
    vTextReply := replace(vTextReply,'<getNotificationResultsResponse xmlns="http://www.sendwordnow.com/usps">', '<getNotificationResultsResponse xmlns:xyz="http://www.sendwordnow.com/usps">');
    begin
    insert into swn_recip_response_t(notification_id) values (v_notification_id);
    exception
    when others then
    if (vDebug) then
    err_num := SQLCODE;
    err_msg := SUBSTR(SQLERRM, 1, 100);
    insert into PEMS_PROD_2.SWN_POST_LOG (LOG_PK, create_date, REQUEST, notification_id) values(pems_prod_2.swn_post_log_seq.nextval,sysdate,
    'err_num - '||to_char(err_num)|| ' error_msg - '|| err_msg, v_notification_id);
    commit;
    else
    null;
    end if;
    end;
    commit;
    begin
    update swn_recip_response_t
    set SWN_RECIP_RESPONSE = vTextReply
    where notification_id = v_notification_id;
    exception
    when others then
    if (vDebug) then
    err_num := SQLCODE;
    err_msg := SUBSTR(SQLERRM, 1, 100);
    insert into PEMS_PROD_2.SWN_POST_LOG (log_pk, create_date, REQUEST, notification_id) values(pems_prod_2.swn_post_log_seq.nextval,sysdate,
    'err_num - '||to_char(err_num)|| ' error_msg - '|| err_msg, v_notification_id);
    commit;
    else
    null;
    end if;
    end;
    commit;
    -- parse through the XML document and update the notification and recipient records
    -- parse the clob into an xml dom object
    begin
    vReplyMessage := vTextReply;
    ...

  • Simple Script works on 10.6 but not 10.5.8

    Hi,
    Brand new to Applescript...I made a simple script (saved as an application) to rename Excel Sheet Tabs and it works on my MBP (10.6.2) however when I try sharing with other users (10.5.8), it fails to carry out properly. It opens a blank workbook rather than the "test.xls" workbook and won't go any further. Am thinking it might be due to:
    1) where the script and .xls file were originally created/saved?
    2) 10.6.2 vs. 10.5.8?
    3) method of sharing? Tried attaching to Mac OSX Server Wiki, NAS and e-mailing but still wouldn't work.
    here's the script-
    tell application "Microsoft Excel"
    try
    open workbook workbook file name "test.xls"
    activate object worksheet "names"
    set myRange to range "A2" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 3 to myName
    set myRange to range "A3" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 4 to myName
    set myRange to range "A4" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 5 to myName
    set myRange to range "A5" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 6 to myName
    set myRange to range "A6" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 7 to myName
    set myRange to range "A7" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 8 to myName
    set myRange to range "A8" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 9 to myName
    set myRange to range "A9" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 10 to myName
    set myRange to range "A10" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 11 to myName
    set myRange to range "A11" of worksheet "names"
    set myName to input box prompt "Please type a Student Name" title "Students"
    set value of myRange to myName
    set name of sheet 12 to myName
    end try
    end tell
    Any suggestions will be greatly appreciated! THANKS!

    more info:
    a co-worker with a MacBook (10.5.8) was able to download the script and .xls file from our server and it worked...
    An eMac (10.4.11) was not able to run the script.
    All machines are running 2008 Office for Mac

  • Simple Table Displays OK in Mozilla But Not Showing in IE??

    I'm updating our company website and am looking to add sections to each page with bullet points.  (Note: I am using Dreamweaver CS4 version 10.0.)
    I tried using the Unordered List feature but for those bullet points that were extremely long, the 2nd line would never align properly.  So...someone in our IT Dept suggested using a table.
    The table works GREAT in Firefox but only the first bullet point shows when I view using IE 8.  Even the rest of the page does not display.
    Relative newcomer to Dreamweaver so ANY assistance would be GREATLY APPRECIATED!
    Here is the HTML code:
    <table width="346" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="27" scope="row"><div align="center">&#8226</div></td>
        <td width="319"><span class="BulletText">Direct integration with other ABC-developed products such as PKonRx, eSignature, and A/R</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226</div></td>
        <td><span class="BulletText">POS A/R transactions automatically update pharmacy A/R module - no more double entry</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226</div></td>
        <td><span class="BulletText">Record all “paid-in” and “paid-out” transactions through POS</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Post Customer A/R and PBM payments</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Eliminate analyzing register tapes with clear and concise POS reports</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">End-of-day takes just minutes</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Create start and stop dates for promotions ahead of time</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Add item messages that remind clerks of promotions, cross-sell and up-sell product</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Identify sales trends by item, department or after each promotion</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Protect margins by tracking price overrides</span></td>
      </tr>
      </table>
    Here is what it looks like in Mozilla:
    Here is what it looks like in IE 8:

    osgood:
    Thanks for the quick response and finding the missing ;!
    Here is the full HTML code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <title>SRS Pharmacy Systems: POS (Point-of-Sale)</title>
    <link href="style.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    <!--
    .style9 {
        font-size: 13px;
        font-weight: bold;
    .style12 {
        font-size: 13px
    .style13 {font-size: 11px; }
    .style16 {color: #000000}
    .style17 {color: #4F5162}
    .style18 {
        font-size: 9px;
        font-style: italic;
    -->
    </style>
    <link href="Level1_Arial.css" rel="stylesheet" type="text/css">
    </head>
    <body>
        <table >
          <tr>
            <td style="height:351px; background:url(images/bg-top.gif) top  repeat-x" align="center">
                <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
                       codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
                       width="766" height="351">
                <param name="movie" value="flash/header_v7.swf?button=3">
                <param name="quality" value="high">
                <param name="menu" value="false">
                <!--[if !IE]> <-->
                <object data="flash/header_v7.swf?button=3"
                        width="766" height="351" type="application/x-shockwave-flash">
                 <param name="quality" value="high">
                 <param name="menu" value="false">
                 <param name="pluginurl" value="http://www.macromedia.com/go/getflashplayer">
                 FAIL (the browser should render some flash content, not this).
                </object>
                <!--> <![endif]-->
               </object>
            </td>
          </tr>
          <tr>
            <td style="height:368px" align="center" class="m_text">
                <table style="width:766px;">
                  <tr>
                    <td style="height:34px"></td>
                  </tr>
                  <tr>
                    <td >
                        <table >
                          <tr>
                          <td style="width:445px;">
                              <div  style="margin:0px 40px 0 33px">
                                <div align="left"><span class="style9"><span class="ParagraphHead"> <img src="images/Solutions_Spotlight.jpg" width="257" height="27" alt="POS"><br>
                                <br>
                                </span></span><strong><span class="ParagraphHead">Point-of-Sale</span></strong><span class="ParagraphSUBHeading"><br>
                                More Effective Cash Management</span><br>
                              <span class="ParagraphText">Once thought to be a fixture in only large pharmacies, <span class="style9"><span class="style12"><img src="images/POS-3.jpg" alt="Computer Pic" width="117" height="110" align="left" style="margin-right:15px; margin-top:3px"></span></span>an efficient point-of-sale system is now a necessity for <em>any</em> pharmacy looking to more effectively manage their overall business. From complying with recent IRS regulations for FSA/HRA cards, to creating a more accurate and efficient checkout process for customers, to managing pharmacy will-call bins, SRS’ PKon POS is the answer!<br>
                                      <br>
                            </span><strong><span class="ParagraphSUBHeading">Increased Efficiencies</span></strong><span class="ParagraphSUBHeader2"><br>
                                        </span><span class="ParagraphText">Creating a single point of entry for all sales transactions, charges and payments, PKon POS
                                          makes your once tedious end-of-day processes quicker and more efficient as well as adds profitability by improving margins,
                                          identifying sales trends and opportunities.<br>
      <br>
      <table width="346" border="0" cellpadding="0" cellspacing="0">
      <tr>
        <td width="27" scope="row"><div align="center">&#8226</div></td>
        <td width="319"><span class="BulletText">Direct integration with other SRS-developed products such as PKonRx, eSignature, and A/R</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226</div></td>
        <td><span class="BulletText">POS A/R transactions automatically update pharmacy A/R module - no more double entry</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226</div></td>
        <td><span class="BulletText">Record all “paid-in” and “paid-out” transactions through POS</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Post Customer A/R and PBM payments</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Eliminate analyzing register tapes with clear and concise POS reports</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">End-of-day takes just minutes</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Create start and stop dates for promotions ahead of time</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Add item messages that remind clerks of promotions, cross-sell and up-sell product</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Identify sales trends by item, department or after each promotion</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Protect margins by tracking price overrides</span></td>
      </tr>
      </table>
                                        </span> <br>
                                    <span class="ParagraphSUBHeading">Increased Security</span><br>
                                    <span class="ParagraphText">Enhance your security and employee accountability by implementing the following security
                                      features:<br>
      <br>
      <table width="346" border="0">
      <tr>
        <td width="17" scope="row"><div align="center">&#8226;</div></td>
        <td width="319"><span class="BulletText">Clerk tracking for every POS transaction</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Track unauthorized price overrides, voided transaction or discounts</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">Restrict register(s) and POS tasks to specific users</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">PCI DSS-compliant software protects customers’ credit card data from fraud and abuse</span></td>
      </tr>
      </table>
                                    </span>
                                     <br>
                                      <span class="ParagraphSUBHeading">Improved Customer Experience</span><br>
                                      <span class="ParagraphText">Customers will quickly judge their shopping experience by an efficient and fast checkout process.
                                      Pharmacies cannot afford a slow checkout system when a customer is ready to pay.</span><br>
                                  <br>
                                  </ul>
                                    <table width="346" border="0">
                                      <tr>
        <td width="17" scope="row"><div align="center">&#8226</div></td>
        <td width="319"><span class="BulletText">POS conveys a more professional image to your customers</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226</div></td>
        <td><span class="BulletText">POS delivers faster sales transactions and reduces the amount of time customers spend in
                              checkout lines</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226</div></td>
        <td><span class="BulletText">POS allows the pharmacy to offer convenient payment options (e.g. credit, debit, FSA, HRA or
                              in-store charge account)</span></td>
      </tr>
      <tr>
        <td scope="row"><div align="center">&#8226;</div></td>
        <td><span class="BulletText">One signature pad to handle all PBM, HIPAA, NSC, A/R and credit/debit card signatures</span></td>
      </tr>
      </table>
                                </span><br>
                                    <span class="ParagraphText">Click on the brochure link for additional information. If you still have questions, <A HREF="mailto:[email protected]" ONCLICK="openWindow('tell_me_more.html','516','381')">contact  us</A> today for a personal response. </span></span><span class="style12"><br>
                                    </span><br>
                                    <br>
                                <a href="PDFs/SRS PKon POS.pdf" class="style13" ><img alt="arrow" src="images/a1.gif" style=" margin-right:5px"></a><span class="Clickhere"><a href="PDFs/SRS_POS.pdf" >Click here </a>for the  POS brochure</span></div>
                                  <a href="PDFs/SRS PKon POS.pdf" class="style13"><span class="Clickhere"><a href="PDFs/SRS_POS.pdf" >
                                  </a>
                            <div align="justify"></div>                          </div>                        </td>
                            <td style="width:40px; background:url(images/bg-line.gif) repeat-y"></td>
                            <td style="width:260px;">
                                <div  style="margin:0px 26px 0 0px">
                                    <img src="images/Pharmacy_Solutions.jpg" alt="" width="192" height="27" ><br>
                                  <strong><br>
                                  </strong><span class="ParagraphText"><span class="ParagraphText">Browse our full suite of pharmacy management applications:</span><br><br><span class="SolutionsBullets">
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 PKon Rx.html" >PKon Rx</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 340B.html" >340B</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 AutoFax.html" >Auto-Fax</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 EPrescriptions.html" >e-Prescriptions</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 ESig.html" >eSignature</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 IVR.html" >IVR</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 MAR.html" >MAR Printing</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 Offsite Backup.html" >Off-Site Backup</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 POS.html" >Point-of-Sale (POS)</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 Receivables.html" >Receivables (A/R)</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 SystemsSupport.html" >Systems Support</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 Thermal Printing.html" >Thermal Printing</a><br>
                                  <img alt="Read More" src="images/a1.gif" style=" margin-right:5px"><a href="index-3 Timeclock.html" >Timeclock</a></span><br>
                                  <br>
    </div>                        </td>
                          </tr>
                      </table>
                    </td>
                  </tr>
                  <tr>
                    <td style="height:16px"></td>
                  </tr>
                </table>
            </td>
          </tr>
          <tr>
            <td >
                <table >
                  <tr>
                    <td style="width:50%; background:url(images/bg-left.gif) top repeat-x #E6E8E9"></td>
                    <td style="width:766px; background:url(images/bg-bot.gif) repeat-y">
                        <table style="width:766px;height:81px; background:url(images/bg-bot2.gif) top repeat-x">
                          <tr>
                            <td height="147" bgcolor="#999999" style="width:271px;"><br>
                                <br>
                                <br>
                                <span class="c_text" style="margin:29px 0px 0 0px">&copy;2010 SRS Pharmacy Systems</span><br>
                            </td>
                            <td bgcolor="#999999" style="width:303px;"><br>
                                <br>
                                <br>
                                <span class="c_text"><span class="style16"><a href="index-1.html">Home</a>  |  <a href="index-2.html">Technology</a>  |  <a href="index-3.html">Solutions</a>  |  <a href="index-4.html">News</a>  |  <a href="index-6.html">Contact Us</a> </span></span></td>
                          </tr>
                        </table>
                    </td>
                    <td style="width:50%; background:url(images/bg-right.gif) top repeat-x #D3D5D6"></td>
                  </tr>
                </table>
            </td>
          </tr>
        </table>
    </body>
    </html>
    Here is the CSS:
    body{
        padding:0px;
        margin:0px;
    table {border-collapse:collapse; border:0px;}
    table, td {
        height:100%;
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10px;
        list-style-type: disc;
        vertical-align: top;
        color: #666;
        border-top-width: thin;
        border-right-width: thin;
        border-bottom-width: thin;
        border-left-width: thin;
    td {
        vertical-align:top;
        padding:0px;
    a:hover{text-decoration:none;}
    img {
        border:2px;
        float: left;
        border-top: 3px;
    .m_text, table, li, input, textarea
        font-size:13px;
        color: #005891;
        vertical-align: top;
        display: table;
    .m_text a{
        color:#005891
    .m_text span a{ }
    .m_text strong a{ color:#4A4A4A}
    .h_text {}
    .s_text a{ color:#414F66; font-size:10px; text-decoration:none}
    .s_text a:hover{ text-decoration:underline}
    .l_text {}
    .c_text {
        color:#FFF;
        font-size:8pt;
    .c_text a{
        color:#FFF
    .no_class, form, .no_class td
            width:auto;
            height:auto;
            margin:0px;
            padding:0px;
            border:0px;
    .line {
        background:url(images/line.gif) repeat-x;
        width:170px;
        height:2px;
        top: 12px;
    .line2 { background:url(images/line.gif) repeat-x; width:121px; height:1px}
    .form{height:20px; margin-top:3px;}
    .form input {width:213px; height:17px; padding-left:5px}
    textarea {width:213px; height:152px; padding-left:5px; overflow:auto; margin-top:3px}
    ul {
        margin:0;
        list-style-type: disc;
        list-style-position: inside;
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
        color: #666;
        font-family: Verdana, Geneva, sans-serif;
        font-size: 12px;
    li  {
        margin: 0px;
        background-image: none;
        background-repeat: no-repeat;
        background-position: left center;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    li a  {font-family:Tahoma; font-size:11px; line-height:18px; color:#B23737}
    .ParagraphHead {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        color: #005891;
        text-align: left;
    .ParagraphText {
        font-family: Verdana, Geneva, sans-serif;
        font-size: 13px;
        color: #333;
    .BulletText {
        font-family: Verdana, Geneva, sans-serif;
        font-size: 13px;
        color: #333;
    .Clickhere {
        font-family: Tahoma, Geneva, sans-serif;
        font-size: 11px;
        color: #333;
    .ParagraphSUBHeading {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: bold;
        color: #333;
    .ParagraphSUBHeader2 {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: bold;
        color: #005891;
    .SolutionsBullets {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 13px;
        color: #005891;

  • Simple JS works in Acrobat 7, but not 8 - why?

    I have a simple form with 2 fields: "myname" and "phone". "myname" is a drop down list populated with 3 names. I want to be able to populate the "phone" field with a phone number corresponding to the "myname" field automatically.
    I have the following JS attached to the calculate event of the myname field. This works perfect in Acrobat 7.0.9, but does not work at all in Acrobat 8.0 professional or Adobe Reader 8. Does anyone know why?
    switch (myname.rawValue){
    case "Beth Voigt" :
    phone.rawValue = "431-3833";
    break;
    case "Bobbie Hartfiel" :
    phone.rawValue = "431-2019";
    break;
    case "Dave Brown" :
    phone.rawValue = "431-2448";
    break;
    default : phone.rawValue = "";
    event.newText = myname.rawValue;

    I was just asking where those scripts are located.
    You can configure Chrome to use Reader instead of its built-in viewer: http://blogs.adobe.com/vikrant/2010/12/use-adobe-plugins-to-view-pdfs-inside-google-chrome /

  • I have the product code for adobe creative suite but not the serial/redeem number. What do i do?

    I have the adobe creative suite and  have the product code that comes on the paper but i do not have the redeem number.

    Redemption Code Help
    http://helpx.adobe.com/x-productkb/global/redemption-code-help.html

  • Form Compiles in Forms Builder but not Unix?

    I have a form that compiles fine in Forms Builder (Version 6.0.8.11.3). When trying to compile the form on a Solaris Middleware Server it fails and gives several errors similar to the following:
    Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block...
    Compilation error on WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block:
    PL/SQL ERROR 201 at line 4, column 37
    identifier 'SATURN.SFTREGS' must be declared
    PL/SQL ERROR 0 at line 4, column 4
    SQL Statement ignored
    I realize that these same errors in Forms Builder if I have not connected to the database (Version 9.2.0.4.0) before compiling so I'm guessing that there is some environment variable set incorrectly on the middleware server. I'm quite new to Unix and am not sure what variables I should be looking at...any thoughts?

    We have tried both commands as indicated. We get the same errors that were in the original post as outlined below;
    Compiling PRE-INSERT trigger on form...
    No compilation errors.
    Compiling WHEN-NEW-FORM-INSTANCE trigger on form...
    No compilation errors.
    Compiling POST-QUERY trigger on SPRIDEN data block...
    No compilation errors.
    Compiling POST-BLOCK trigger on SPRIDEN data block...
    No compilation errors.
    Compiling KEY-NEXT-ITEM trigger on SPRIDEN_ID item in SPRIDEN data block...
    No compilation errors.
    Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block...
    Compilation error on WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block:
    PL/SQL ERROR 201 at line 4, column 37
    identifier 'SATURN.SFTREGS' must be declared
    PL/SQL ERROR 0 at line 4, column 4
    SQL Statement ignored
    PL/SQL ERROR 320 at line 4, column 11
    the declaration of the type of this expression is incomplete or malformed
    PL/SQL ERROR 0 at line 13, column 7
    SQL Statement ignored
    Compiling WHEN-VALIDATE-ITEM trigger on SFTREGS_TXT_TOTAL_BILLING_HOUR item in SFTREGS data block...
    Compilation error on WHEN-VALIDATE-ITEM trigger on SFTREGS_TXT_TOTAL_BILLING_HOUR item in SFTREGS data block:
    PL/SQL ERROR 201 at line 2, column 6
    identifier 'SATURN.SFTREGS' must be declared
    PL/SQL ERROR 0 at line 1, column 1
    SQL Statement ignored
    Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SYSMUSA data block...
    No compilation errors.
    Compiling PRE-INSERT trigger on SYSMUSA data block...
    No compilation errors.
    Compiling POST-UPDATE trigger on SYSMUSA data block...
    Compilation error on POST-UPDATE trigger on SYSMUSA data block:
    PL/SQL ERROR 201 at line 3, column 6
    identifier 'SMLOCAL.SYSMUSA' must be declared
    PL/SQL ERROR 0 at line 1, column 1
    SQL Statement ignored
    Compiling ON-ERROR trigger on SYSMUSA data block...
    No compilation errors.
    Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SGRSATT data block...
    No compilation errors.
    Compiling POST-QUERY trigger on SGRSATT data block...
    No compilation errors.
    Compilation errors have occurred.
    Any further thoughts?

  • Code works in DW8 but not DW CS3

    Why would the following code work in Dreamweaver 8 but not in
    Dreamweaver CS3?
    Expires in
    <select name="mnuExpires" id="mnuExpires">
    <option value="0"
    >0</option>
    <option value="30" <% if true then
    response.write("selected") %>
    >30</option>
    <option value="60"
    >60</option>
    <option value="90"
    >90</option>
    <option value="120"
    >120</option>
    </select> days.
    Dreamweaver CS3 shuts down after throwing an error: "Adobe
    Dreamweaver CS3 has encountered a problem and needs to close. We
    are sorry for the inconvenience." Event ID 1000 appears in the
    Application Events Log.

    Brad Boyink wrote:
    > Dreamweaver CS3 shuts down after throwing an error:
    "Adobe Dreamweaver CS3 has
    > encountered a problem and needs to close. We are sorry
    for the inconvenience."
    > Event ID 1000 appears in the Application Events Log.
    http://www.adobe.com/go/kb402776
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

Maybe you are looking for

  • How can I see the full email address of whoever has sent me a message without opening it?

    I am new to mac and used to viewing email addresses without opening messages. Can't this be done in Mail in OS X mountain lion? Thanks.

  • Installation Errors on Solaris 8

    Hello.I am attempting to install weblogic server 6.0 on a Solaris 8 system. I have successfully used the installer on Solaris 7, but when I run the 'weblogic600_sol.bin' file on the Solaris 8 machine, I get the error "Error: Cant' find libjava.so.".

  • Crop tool has stopped working

    I have been scanning slides into iPhoto, then cropping them to fit into iMovie to make a slide show. After doing about ten of them the crop tool stopped working. It still saves any other editing that I do but will not save the crop. Any ideas? Please

  • SSRS 2008 subfolder access denied but only partly

    Dear all After removing authorizations from the root folder we have an access issue with subfolders. A user with seemingly proper authorizations (Content Manager, Publisher, Browser, MyReports, ReportBuilder) is able to upload reports, delete reports

  • Consuming Webservices Causes length of IP-address (2) != length of netmask

    I am trying to consume Beehive webservices on a Mac OSX machine (with the examples from http://www.oracle.com/technology/products/beehive/examples/ws.html) but it's failing with a long stacktrace, being this the important part: \[java\] WARNING: Unab