Bug Report: PLSQL variable names

Hello,
I am using Oracle 10g Release 2 and have come across an issue that I think maybe a bug.
I don't seem to be able to declare a PL/SQL variable using the %TYPE attribute where the variable name is the same as the table name.
For example:
CREATE TABLE week_day
( week_day_id NUMBER NOT NULL
, week_day VARCHAR2(3) NOT NULL );
DECLARE
week_day week_day.week_day_id%TYPE;
BEGIN
NULL;
END;
Executing this block of PL/SQL gives the following error:
ERROR at line 2:
ORA-06550: line 2, column 12:
PLS-00320: the declaration of the type of this expression is incomplete or malformed
ORA-06550: line 2, column 12:
PL/SQL: Item ignored
Normally I would prefix my variables in PL/SQL with l_ (or whatever depending on scope), but I discovered this "feature" when declaring a field in a PLSQL record.
Is this a known restriction? I looked in the PL/SQL User Guide & Reference and could not find any reference to this restriction.
Kind Regards
Andy

You shouldn't call variables the same as table names.Just to plus one BluShadow...
SQL> CREATE TABLE week_day
  2  ( week_day_id NUMBER NOT NULL
  3  , week_day VARCHAR2(3) NOT NULL );
Table created.
SQL> DECLARE
  2  week_day week_day.week_day_id%TYPE;
  3  BEGIN
  4  NULL;
  5  END;
  6  /
week_day week_day.week_day_id%TYPE;
ERROR at line 2:
ORA-06550: line 2, column 10:
PLS-00320: the declaration of the type of this expression is incomplete or
malformed
ORA-06550: line 2, column 10:
PL/SQL: Item ignored
SQL> drop  TABLE week_day;
Table dropped.
SQL> CREATE TABLE week_day
  2  ( w_day_id NUMBER NOT NULL
  3  , w_day VARCHAR2(3) NOT NULL );
Table created.
SQL> DECLARE
  2  week_day week_day.w_day_id%TYPE;
  3  BEGIN
  4  NULL;
  5  END;
  6  /
week_day week_day.w_day_id%TYPE;
ERROR at line 2:
ORA-06550: line 2, column 10:
PLS-00320: the declaration of the type of this expression is incomplete or
malformed
ORA-06550: line 2, column 10:
PL/SQL: Item ignored
SQL> drop  TABLE week_day;
Table dropped.
SQL> CREATE TABLE week_days
  2  ( week_day_id NUMBER NOT NULL
  3  , week_day VARCHAR2(3) NOT NULL );
Table created.
SQL> DECLARE
  2  week_day week_days.week_day_id%TYPE;
  3  BEGIN
  4  NULL;
  5  END;
  6  /
PL/SQL procedure successfully completed.
SQL> Cheers, APC
Blog : http://radiofreetooting.blogspot.com/

Similar Messages

  • XML Report displays Parameters instead of variable name

    I would like the actual variable name to be displayed in the XML report instead of "Parameters".  I have tried many things to make this happen with no success.  Any ideas?
    Solved!
    Go to Solution.

    Hello kwkengineer,
    What type of step are you utilizing, and which version of TestStand are you using?  I tried reproducing this behavior in TestStand 2012 with LabVIEW 2012 using a LabVIEW action step, passing a cluster of boolean arrays, and the result was the following:
    The parameters were set up as follows:
    Please let me know more details about your particular step, and I will try to reproduce the problem on my side.
    Warm Regards,
    Daniel D.
    National Instruments
    Automated Test Software R&D

  • Report failed to parse SQL query:ORA-01745: invalid host/bind variable name

    Hi,
    We are currently upgrading from v2.2.0.00.32 to v4.0.0.00.46.
    I have copied the applications onto our test server along with the various database objects and data etc.
    When I am running a report in v4, it is failing with the following error: "failed to parse SQL query: ORA-01745: invalid host/bind variable name".
    When I copy the SQL that builds the report into TOAD (on out test server) it runs OK so really cant see why it would fail in APEX. It works fine when I run the query in our APEX v2 and in TOAD in our live server.
    The query is as follows:
    SELECT
    aea.ALTERATION_ID
    ,aea.ALTERATION_ID "ALTERATION_ID_DISPLAY"
    ,aea.assembly_name "Revised BOM"
    ,assembly.description "Revised BOM Description"
    ,assembly.INVENTORY_ITEM_STATUS_CODE "Revised BOM Status"
    ,aea.BEFORE_CHANGE_QTY
    ,flv.MEANING "Alteration Type"
    ,aea.component_name "Part No"
    ,component.description "Part No Description"
    ,component.INVENTORY_ITEM_STATUS_CODE "Part No Status"
    ,aea.AFTER_CHANGE_QTY
    ,TO_CHAR(aea.last_update_date,'DD-MM-YYYY HH24:MI:SS')"Last Update Date"
    ,aea.LAST_UPDATE_BY
    ,aea.COMMENTS
    ,aea.ORACLE_CHANGE_NOTICE
    ,AEA.SELECTION_CRITERIA
    FROM XXMEL_APEX_ECO_ALTERATIONS aea
    , fnd_lookup_values flv
    , (SELECT INVENTORY_ITEM_STATUS_CODE
    ,segment1
    ,description
    FROM mtl_system_items_b
    WHERE 1=1
    AND organization_id = 26) component
    , (SELECT INVENTORY_ITEM_STATUS_CODE
    ,segment1
    ,description
    FROM mtl_system_items_b
    WHERE 1=1
    AND organization_id = 26) assembly
    WHERE 1=1
    AND aea.COMPONENT_NAME = component.segment1 (+)
    AND aea.assembly_NAME = assembly.segment1 (+)
    AND flv.lookup_code = aea.acd_type
    AND aea.eco = :P13_ECO
    AND flv.lookup_type = 'ECG_ACTION'
    AND modify_flag = 'Y'
    ANy help would be great,
    Thanks
    Chris
    Edited by: Cashy on 22-Nov-2010 04:13
    Edited by: Cashy on 22-Nov-2010 04:14

    For some reason, the updatable fields (this is a updateable report) where not connecting to the database properly. Whn I changed them to a report columns and removed the database field reference, the report rendered

  • Bug in PL/SQL - Does not update Table if table name & variable name same in

    Dear All,
    If tabale name & vairable name is same in a Stored Procedure, UPDATE to table does not take place.
    For example run following 2 procedures. First procedure does the insert properly to table but second procedure does not update the table.
    create or replace procedure BugDemo1
    as
    LAST_NAME VARCHAR2(30);
    FIRST_NAME VARCHAR2(30);
    Begin
    LAST_NAME := 'Prasad';
    FIRST_NAME := 'Raghnandan';
    Insert into com_people (id,Roles, LAST_NAME, FIRST_NAME) values (77777,'Patient', LAST_NAME, FIRST_NAME);
    end;
    create or replace procedure BugDemo2
    as
    LAST_NAME VARCHAR2(30);
    FIRST_NAME VARCHAR2(30);
    Begin
    LAST_NAME := 'Pra';
    FIRST_NAME := 'Raghu';
    Update com_people set
    LAST_NAME = LAST_NAME,
    FIRST_NAME = FIRST_NAME
    where id = 77777 ;
    end;
    ------------------------------------------

    Hi,
    It is not a bug. Oracle is updating the records. Here Oracle is treating the variable name as COLUMN_NAME. Since priority is higher for a COLUMN on variable so each column is getting updated by itself resulting no change in data.
    SQL> CREATE TABLE com_people
      2  (
      3  id NUMBER (5),
      4  Roles VARCHAR2(20),
      5  LAST_NAME  VARCHAR2(20),
      6  FIRST_NAME VARCHAR2(20)
      7  )
      8  ;
    Table created
    SQL> Insert into com_people (id,Roles, LAST_NAME, FIRST_NAME) values (77777,'Patient', 'LAST_NAME', 'FIRST_NAME');
    1 row inserted
    SQL> COMMIT;
    Commit complete
    SQL>
    SQL> create or replace procedure BugDemo2
      2  as
      3  LAST_NAME VARCHAR2(20);
      4  FIRST_NAME VARCHAR2(20);
      5  Begin
      6  LAST_NAME := 'Pra';
      7  FIRST_NAME := 'Raghu';
      8 
      9  Update com_people set
    10  LAST_NAME = LAST_NAME,
    11  FIRST_NAME = FIRST_NAME
    12  where id = 77777 ;
    13 
    14  DBMS_OUTPUT.PUT_LINE('UPDATED ROWS ='||SQL%ROWCOUNT);
    15  end;
    16  /
    Procedure created
    SQL> set serveroutput on
    SQL> execute BugDemo2;
    UPDATED ROWS =1
    PL/SQL procedure successfully completed
    SQL> Regards

  • How to get Variable name in output (Report Writer/Painter)

    Hello Experts,
    We have maintained one Repot by using Report Writer, this is the report for Cost center (periodic report), input fields are Fiscal year, Period and Cost Center. In out put system will display the selected cost center balances for individual cost element.
    Output: Excel format: in first sheet it will display balance of the total cost centers selected and from second sheet it will display individual cost center balances.
    My requirement is in the output system is displaying sheet name as CC1,CC2,CC3.......CC50, but my user want to display this as Cost Center 1, Cost Center 2, Cost Center 3...... like this. we have maintained variable name as Cost center 1, cost center 2....., but why system is displaying as CC1,CC2,.... .
    Please help me how to get the full description as sheet name in excel.
    Thanks ......Sudheer

    Hello Everybody,
    Please help me how to get variable name in Report Painter outout ( Excel format ).
    Thanks

  • Crystal Reports - Problem with too long BEx Query technical variable names?

    Hello!
    I have Crystal Reports 2008 SP3 and the SAP BO Integration Kit XI 3.1 SP3 installed and want to access a BEx query on a BW system within my Crystal Report.
    The problem is that the name of the BEx variable is not displayed correctly (just "[]" is displayed for the variable name) as a parameter within Crystal Reports when I import the query. Furthermore I can't navigate through the fields of the query within Crystal Reports.
    The technical names of the BEx query-variables have a length of 12 characters.
    The interessting thing is that if I change the technical names of the BEx query variables to a maximum length of 8 characters everything works fine.
    I use the SAP toolbar within Crystal Reports 2008 to create the report and have the "MDX-driver"-setting selected.
    Has anyone ever had the same problem? Any suggestions?
    I don't want to change the technical names of the variables of my queries...
    thanks,
    Dominik

    Hi!
    Just fixed the problem: The "Transports" for the Integration Kit had to be imported at the BW-System
    regards

  • BUG REPORT: new 10g Driver throws SQLExcpetion

    So far, i just replaced my old ORACLE JDBC driver jar file with a new version. Of course, i use the classes12.jar to be used by JDK 1.3. This worked for all the 9.xxx Drivers. Now, i tried to use the classes12.jar from the new "10g" Driver (10.1.0.2.0) but it doesn't work anymore. The first simple SELECT statement throws this error:
    java.sql.SQLException: Typlänge größer als Höchstwert
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:124)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:161)
         at oracle.jdbc.driver.DatabaseError.check_error(DatabaseError.java:884)
         at oracle.jdbc.driver.T4CMAREngine.buffer2Value(T4CMAREngine.java:2230)
         at oracle.jdbc.driver.T4CMAREngine.unmarshalUB2(T4CMAREngine.java:1047)
         at oracle.jdbc.driver.T4CTTIdcb.receiveCommon(T4CTTIdcb.java:111)
         at oracle.jdbc.driver.T4CTTIdcb.receive(T4CTTIdcb.java:94)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:590)
         at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:111)
         at oracle.jdbc.driver.T4CStatement.execute_for_describe(T4CStatement.java:350)
         at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:895)
         at oracle.jdbc.driver.T4CStatement.execute_maybe_describe(T4CStatement.java:382)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:985)
         at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1124)
    For the simple select statement:
    select REF_CLASS, REF_CODE, REF_TEXT_DE from refset order by REF_CLASS,REF_CODE
    so, nothing special. Going back to the last 9.x driver, it works again. Is the 10g driver knwon to be buggy?
    Is there an official bug report web page on the ORACLE site (similar to the sun Java bug database)?

    Hi all,
    I am seeing following exception while using Oracle 10.2.0.3 base release with WebSphere 6.1.0.9.
    ------Start of DE processing------ = [2/3/08 12:59:14:698 CST] , key = java.sql.SQLException com.ibm.ws.rsadapter.jdbc.WSJdbcStatement.pmiExecuteQuery 1315
    Exception = java.sql.SQLException
    Source = com.ibm.ws.rsadapter.jdbc.WSJdbcStatement.pmiExecuteQuery
    probeid = 1315
    Stack Dump = java.sql.SQLException: ORA-00942: table or view does not exist
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:745)
         at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:207)
         at oracle.jdbc.driver.T4CStatement.executeForDescribe(T4CStatement.java:801)
         at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1039)
         at oracle.jdbc.driver.T4CStatement.executeMaybeDescribe(T4CStatement.java:841)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1134)
         at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1274)
         at com.ibm.ws.rsadapter.jdbc.WSJdbcStatement.pmiExecuteQuery(WSJdbcStatement.java:1381)
         at com.ibm.ws.rsadapter.jdbc.WSJdbcStatement.executeQuery(WSJdbcStatement.java:754)
         at com.filenet.engine.dbpersist.DBContext.determineDatabaseType(DBContext.java:418)
         at com.filenet.engine.context.ServerCallContext._getDBContext(ServerCallContext.java:611)
         at com.filenet.engine.context.ServerCallContext.getDBContextFromJNDIValues(ServerCallContext.java:783)
         at com.filenet.engine.dbpersist.DBContext.determineDatabaseType(DBContext.java:380)
         at com.filenet.engine.gcd.GCDDBPersistence.<init>(GCDDBPersistence.java:135)
         at com.filenet.engine.gcd.GCDPersistence.getGCDPersistence(GCDPersistence.java:171)
         at com.filenet.engine.gcd.GCD.initialize(GCD.java:226)
         at com.filenet.engine.gcd.GCD.domainAvailable(GCD.java:183)
         at com.filenet.engine.gcd.GCD.isDomainAvailable(GCD.java:119)
         at com.filenet.engine.gcd.GCD.getContextInfo(GCD.java:142)
         at com.filenet.engine.init.StartupUtility.start(StartupUtility.java:136)
         at com.filenet.engine.init.StartupUtility.access$000(StartupUtility.java:39)
         at com.filenet.engine.init.StartupUtility$1.run(StartupUtility.java:68)
         at java.security.AccessController.doPrivileged(AccessController.java:274)
         at javax.security.auth.Subject.doAs(Subject.java:573)
         at com.ibm.websphere.security.auth.WSSubject.doAs(WSSubject.java:168)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:64)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
         at java.lang.reflect.Method.invoke(Method.java:615)
         at com.filenet.apiimpl.util.J2EEUtilWS.doAs(J2EEUtilWS.java:207)
         at com.filenet.engine.context.CallState.doAsSystem(CallState.java:385)
         at com.filenet.engine.init.StartupUtility.startASSystem(StartupUtility.java:63)
         at com.filenet.engine.jca.impl.ConnectionFactoryImpl.start(ConnectionFactoryImpl.java:120)
         at engine.EngineInit._init(EngineInit.java:60)
         at engine.EngineInit.init(EngineInit.java:132)
         at javax.servlet.GenericServlet.init(GenericServlet.java:256)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.init(ServletWrapper.java:190)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.init(ServletWrapper.java:317)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.initialize(ServletWrapper.java:1142)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.initialize(ServletWrapper.java:150)
         at com.ibm.wsspi.webcontainer.extension.WebExtensionProcessor.createServletWrapper(WebExtensionProcessor.java:99)
         at com.ibm.ws.webcontainer.webapp.WebApp.getServletWrapper(WebApp.java:787)
         at com.ibm.ws.webcontainer.webapp.WebApp.initializeTargetMappings(WebApp.java:467)
         at com.ibm.ws.webcontainer.webapp.WebApp.commonInitializationFinish(WebApp.java:304)
         at com.ibm.ws.wswebcontainer.webapp.WebApp.initialize(WebApp.java:285)
         at com.ibm.ws.wswebcontainer.webapp.WebGroup.addWebApplication(WebGroup.java:88)
         at com.ibm.ws.wswebcontainer.VirtualHost.addWebApplication(VirtualHost.java:157)
         at com.ibm.ws.wswebcontainer.WebContainer.addWebApp(WebContainer.java:655)
         at com.ibm.ws.wswebcontainer.WebContainer.addWebApplication(WebContainer.java:608)
         at com.ibm.ws.webcontainer.component.WebContainerImpl.install(WebContainerImpl.java:335)
         at com.ibm.ws.webcontainer.component.WebContainerImpl.start(WebContainerImpl.java:551)
         at com.ibm.ws.runtime.component.ApplicationMgrImpl.start(ApplicationMgrImpl.java:1312)
         at com.ibm.ws.runtime.component.DeployedApplicationImpl.fireDeployedObjectStart(DeployedApplicationImpl.java:1129)
         at com.ibm.ws.runtime.component.DeployedModuleImpl.start(DeployedModuleImpl.java:569)
         at com.ibm.ws.runtime.component.DeployedApplicationImpl.start(DeployedApplicationImpl.java:814)
         at com.ibm.ws.runtime.component.ApplicationMgrImpl.startApplication(ApplicationMgrImpl.java:965)
         at com.ibm.ws.runtime.component.ApplicationMgrImpl$AppInitializer.run(ApplicationMgrImpl.java:2131)
         at com.ibm.wsspi.runtime.component.WsComponentImpl$_AsynchInitializer.run(WsComponentImpl.java:341)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1469)
    Dump of callerThis =
    Object type = com.ibm.ws.rsadapter.jdbc.WSJdbcStatement
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.jdbc.WSJdbcStatement@53385338
    Displaying FFDC information for wrapper hierarchy,
    beginning from the Connection...
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.jdbc.WSJdbcConnection@7c9e7c9e
    com.ibm.ws.rsadapter.jdbc.WSJdbcConnection@7c9e7c9e
    Transaction Manager global transaction status is
    STATUS NO TRANSACTION (6)
    Underlying Connection: oracle.jdbc.driver.LogicalConnection@3dfc3dfc
    oracle.jdbc.driver.LogicalConnection@3dfc3dfc
    Key Object:
    [B@14f414f4
    DataStoreHelper:
    com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper@3ebc3ebc
    Connection Manager:
    [ConnectionManager]@4ee24ee2
    JNDI Name <FNGCDDS>
    shareable <true>
    ConnectionManager supports lazy association?
    true
    ConnectionManager supports lazy enlistment?
    true
    Handle is reserved? false
    AutoCommit value tracked by handle: true
    Detection of multithreaded access is:
    DISABLED
    Thread id:
    null
    Wrapper State:
    ACTIVE
    Parent wrapper:
    null
    Child wrapper:
    null
    # of Child Wrappers 1
    Child wrappers:
    com.ibm.ws.rsadapter.jdbc.WSJdbcStatement@53385338
    ConnectionRequestInfo:
    null
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.spi.WSManagedConnectionFactoryImpl@63666366
    Detection of multithreaded access is
    DISABLED
    Resource Adapter:
    null
    Hash Code:
    -1131425938 (0xbc8fcf6e)
    DataSource properties:
    {enable2Phase=false, serverName=localhost, statementCacheSize=10, user=gcduser, dataStoreHelperClass=com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper, URL=jdbc:oracle:thin:@localhost:1521:orcl, databaseName=orcl, selectMethod=direct, dataSourceClass=oracle.jdbc.pool.OracleConnectionPoolDataSource, password=******, portNumber=1521}
    Database Type:
    null
    DataStoreHelper:
    com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper@3ebc3ebc
    Description:
    null
    InternalDataStoreHelper:
    [email protected]8
    Log Writer:
    null
    Performance Monitoring Instrumentation:
    com.ibm.ws.pmi.server.modules.J2CModule@46cc46cc
    Statement Cache Size (maximum):
    10
    Transaction Branches are set to be Loosely Coupled:
    false
    Counter of fatal connection errors on ManagedConnections created by this MCF:
    0
    Validate existing connections on cleanup after a fatal connection error is detected?
    true
    ResetConnectionByBackendDatabase:
    false
    Backend id checking is:
    true
    JMSOnePhaseOptimization:
    false
    Reauthentication:
    false
    newDBConnectionValidationEnabled:
    false
    connectionRetriesDuringDBFailover:
    100
    connRetryDurationDuringDBFailover:
    3000
    Connection Factory Type:
    com.ibm.ws.rsadapter.jdbc.WSJdbcDataSource
    Listing PropertyChangeListeners:
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.spi.WSRdbDataSource@34003400
    DataSource Implementation Class Name:
    oracle.jdbc.pool.OracleConnectionPoolDataSource
    DataSource Name:
    null
    DataStoreHelper:
    com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper@3ebc3ebc
    DataSource properties:
    {enable2Phase=false, serverName=localhost, statementCacheSize=10, user=gcduser, dataStoreHelperClass=com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper, URL=jdbc:oracle:thin:@localhost:1521:orcl, databaseName=orcl, selectMethod=direct, dataSourceClass=oracle.jdbc.pool.OracleConnectionPoolDataSource, password=******, portNumber=1521}
    ONE PHASE ENABLED
    Underlying DataSource Object: oracle.jdbc.pool.OracleConnectionPoolDataSource@39703970
    oracle.jdbc.pool.OracleConnectionPoolDataSource@39703970
    Counter of unique, modified DataSource configurations: 0
    DynamicDSConfigManager
    null
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.spi.WSRdbManagedConnectionImpl@3f023f02
    ONE PHASE ENABLED
    Database Type:
    null
    Transaction State:
    NO_TRANSACTION_ACTIVE
    Statement Cache Size (maximum):
    10
    Key:
    [B@14f414f4
    Performance Monitoring Instrumentation:
    com.ibm.ws.pmi.server.modules.J2CModule@46cc46cc
    Log Writer:
    null
    Subject:
    null
    ManagedConnection:
    WSRdbManagedConnectionImpl@3f023f02
    Counter of fatal connection errors for the ManagedConnectionFactory as of the most recent getConnection on this ManagedConnection:
    0
    Default AutoCommit:
    true
    Current AutoCommit:
    true
    AutoCommit reported by the JDBC driver:
    true
    Current Isolation:
    READ COMMITTED (2)
    Isolation level has changed? :
    false
    Support isolation level switching:
    false
    Isolation reported by the JDBC driver:
    READ COMMITTED (2)
    Catalog, IsReadOnly, or TypeMap has changed? :
    false
    Default Holdability:
    DEFAULT CURSOR HOLDABILITY VALUE (0)
    Current Holdability:
    DEFAULT CURSOR HOLDABILITY VALUE (0)
    Holdability value has changed? :
    false
    Holdability reported by the JDBC driver:
    DEFAULT CURSOR HOLDABILITY VALUE (0)
    Thread ID:
    null
    Lazily enlisted in the current transaction? :
    false
    Underlying Connection Object: oracle.jdbc.driver.LogicalConnection@3dfc3dfc
    oracle.jdbc.driver.LogicalConnection@3dfc3dfc
    Underlying PooledConnection Object: oracle.jdbc.pool.OraclePooledConnection@64ec64ec
    oracle.jdbc.pool.OraclePooledConnection@64ec64ec
    SQLJ Default Context: null
    null
    Is statement caching enabled? :
    true
    Fatal connection error was detected? :
    false
    Currently cleaning up handles? :
    false
    Last ConnectionEvent sent for this ManagedConnection:
    com.ibm.ws.rsadapter.spi.WSConnectionEvent@3f583f58
    Connection Handle: null
    Event ID: UNKNOWN CONNECTION EVENT CONSTANT (0)
    Exception: null
    Driver version:
    10.2.0.3.0
    Database version:
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Connection Event Listeners:
    com.ibm.ejs.j2c.ConnectionEventListener@6f306f30
    Interaction Metrics:
    com.ibm.ejs.j2c.ConnectionEventListener@6f306f30
    Maximum Handle List Size: 15
    Handle Count: 1
    Handles:
    com.ibm.ws.rsadapter.jdbc.WSJdbcConnection@7c9e7c9e
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    State Manager:
    com.ibm.ws.rsadapter.spi.WSStateManager@6ec46ec4
    XA Resource:
    null
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.spi.WSRdbSpiLocalTransactionImpl@7c827c82
    Connection:
    oracle.jdbc.driver.LogicalConnection@3dfc3dfc
    ManagedConnection:
    WSRdbManagedConnectionImpl@3f023f02
    Detection of multithreaded access is:
    DISABLED
    ManagedConnectionMetaData:
    null
    Statement Cache:
    com.ibm.ws.rsadapter.spi.CacheMap@6d486d48
    Number of entries: 0
    Maximum entries: 10
    Number of buckets: 13
    Maximum bucket size: 5
    Number of discards: 0
    BUCKET SIZE PREV NEXT
    000 000 013 013
    001 000 013 013
    002 000 013 013
    003 000 013 013
    004 000 013 013
    005 000 013 013
    006 000 013 013
    007 000 013 013
    008 000 013 013
    009 000 013 013
    010 000 013 013
    011 000 013 013
    012 000 013 013
    013 LRU 014
    014 MRU 013
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.spi.WSConnectionRequestInfoImpl@345e345e
    extention DS properties =
    null
    extention DS properties key =
    0
    useHetrogeneous =
    false
    changable CRI =
    false
    optimizeForGetUseCloseUsage =
    false
    User Name:
    null
    Password:
    null
    Isolation Level:
    READ COMMITTED (2)
    Catalog:
    null
    Is Read Only?
    null
    Type Map:
    null
    Cursor Holdability:
    DEFAULT CURSOR HOLDABILITY VALUE (0)
    Config ID: 0
    Hash Code:
    0
    Support isolation switching on connection:
    false
    NoEnlistment:
    false
    ShareWithCMPOnly:
    false
    Handle type:
    java.sql.Connection
    TrustedContext_name:
    null
    TrustedContext_realm:
    null
    TrustedContext_userSecToken:
    null
    TrustedContext_originalUser:
    null
    trustedContextIdentityAttributesAreSet =
    false
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.spi.WSManagedConnectionFactoryImpl@63666366
    Detection of multithreaded access is
    DISABLED
    Resource Adapter:
    null
    Hash Code:
    -1131425938 (0xbc8fcf6e)
    DataSource properties:
    {enable2Phase=false, serverName=localhost, statementCacheSize=10, user=gcduser, dataStoreHelperClass=com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper, URL=jdbc:oracle:thin:@localhost:1521:orcl, databaseName=orcl, selectMethod=direct, dataSourceClass=oracle.jdbc.pool.OracleConnectionPoolDataSource, password=******, portNumber=1521}
    Database Type:
    null
    DataStoreHelper:
    com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper@3ebc3ebc
    Description:
    null
    InternalDataStoreHelper:
    [email protected]8
    Log Writer:
    null
    Performance Monitoring Instrumentation:
    com.ibm.ws.pmi.server.modules.J2CModule@46cc46cc
    Statement Cache Size (maximum):
    10
    Transaction Branches are set to be Loosely Coupled:
    false
    Counter of fatal connection errors on ManagedConnections created by this MCF:
    0
    Validate existing connections on cleanup after a fatal connection error is detected?
    true
    ResetConnectionByBackendDatabase:
    false
    Backend id checking is:
    true
    JMSOnePhaseOptimization:
    false
    Reauthentication:
    false
    newDBConnectionValidationEnabled:
    false
    connectionRetriesDuringDBFailover:
    100
    connRetryDurationDuringDBFailover:
    3000
    Connection Factory Type:
    com.ibm.ws.rsadapter.jdbc.WSJdbcDataSource
    Listing PropertyChangeListeners:
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.spi.WSRdbDataSource@34003400
    DataSource Implementation Class Name:
    oracle.jdbc.pool.OracleConnectionPoolDataSource
    DataSource Name:
    null
    DataStoreHelper:
    com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper@3ebc3ebc
    DataSource properties:
    {enable2Phase=false, serverName=localhost, statementCacheSize=10, user=gcduser, dataStoreHelperClass=com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper, URL=jdbc:oracle:thin:@localhost:1521:orcl, databaseName=orcl, selectMethod=direct, dataSourceClass=oracle.jdbc.pool.OracleConnectionPoolDataSource, password=******, portNumber=1521}
    ONE PHASE ENABLED
    Underlying DataSource Object: oracle.jdbc.pool.OracleConnectionPoolDataSource@39703970
    oracle.jdbc.pool.OracleConnectionPoolDataSource@39703970
    Counter of unique, modified DataSource configurations: 0
    DynamicDSConfigManager
    null
    ==> Performing default dump from com.ibm.ws.rsadapter.DiagnosticModuleForAdapter = Sun Feb 03 12:59:15 CST 2008
    This is a FFDC log generated for the Default Resource Adapter from source = com.ibm.ws.rsadapter.jdbc.WSJdbcStatement.pmiExecuteQuery
    The exception caught = java.sql.SQLException: ORA-00942: table or view does not exist
    SQL Error Code is 942 SQL State is = 42000
    Operating System = Windows Server 2003 5.2 build 3790 Service Pack 2 x86
    Classpath = C:\Program Files\IBM\WebSphere\AppServ\profiles\AppSrv02/properties;C:/Program Files/IBM/WebSphere/AppServ/properties;C:/Program Files/IBM/WebSphere/AppServ/lib/startup.jar;C:/Program Files/IBM/WebSphere/AppServ/lib/bootstrap.jar;C:/Program Files/IBM/WebSphere/AppServ/lib/j2ee.jar;C:/Program Files/IBM/WebSphere/AppServ/lib/lmproxy.jar;C:/Program Files/IBM/WebSphere/AppServ/lib/urlprotocols.jar;C:/Program Files/IBM/WebSphere/AppServ/deploytool/itp/batchboot.jar;C:/Program Files/IBM/WebSphere/AppServ/deploytool/itp/batch2.jar;C:/Program Files/IBM/WebSphere/AppServ/java/lib/tools.jar
    Ext dirs = C:\Program Files\IBM\WebSphere\AppServ\java\jre\lib\ext
    Other related data. If null, nothing was passed in =
    null
    The Objects' instance variables are printed below recursively 2 levels deep =
    Object type = com.ibm.ws.rsadapter.jdbc.WSJdbcStatement
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.jdbc.WSJdbcStatement@53385338
    Displaying FFDC information for wrapper hierarchy,
    beginning from the Connection...
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.jdbc.WSJdbcConnection@7c9e7c9e
    com.ibm.ws.rsadapter.jdbc.WSJdbcConnection@7c9e7c9e
    Transaction Manager global transaction status is
    STATUS NO TRANSACTION (6)
    Underlying Connection: oracle.jdbc.driver.LogicalConnection@3dfc3dfc
    oracle.jdbc.driver.LogicalConnection@3dfc3dfc
    Key Object:
    [B@14f414f4
    DataStoreHelper:
    com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper@3ebc3ebc
    Connection Manager:
    [ConnectionManager]@4ee24ee2
    JNDI Name <FNGCDDS>
    shareable <true>
    ConnectionManager supports lazy association?
    true
    ConnectionManager supports lazy enlistment?
    true
    Handle is reserved? false
    AutoCommit value tracked by handle: true
    Detection of multithreaded access is:
    DISABLED
    Thread id:
    null
    Wrapper State:
    ACTIVE
    Parent wrapper:
    null
    Child wrapper:
    null
    # of Child Wrappers 1
    Child wrappers:
    com.ibm.ws.rsadapter.jdbc.WSJdbcStatement@53385338
    ConnectionRequestInfo:
    null
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.spi.WSManagedConnectionFactoryImpl@63666366
    Detection of multithreaded access is
    DISABLED
    Resource Adapter:
    null
    Hash Code:
    -1131425938 (0xbc8fcf6e)
    DataSource properties:
    {enable2Phase=false, serverName=localhost, statementCacheSize=10, user=gcduser, dataStoreHelperClass=com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper, URL=jdbc:oracle:thin:@localhost:1521:orcl, databaseName=orcl, selectMethod=direct, dataSourceClass=oracle.jdbc.pool.OracleConnectionPoolDataSource, password=******, portNumber=1521}
    Database Type:
    null
    DataStoreHelper:
    com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper@3ebc3ebc
    Description:
    null
    InternalDataStoreHelper:
    [email protected]8
    Log Writer:
    null
    Performance Monitoring Instrumentation:
    com.ibm.ws.pmi.server.modules.J2CModule@46cc46cc
    Statement Cache Size (maximum):
    10
    Transaction Branches are set to be Loosely Coupled:
    false
    Counter of fatal connection errors on ManagedConnections created by this MCF:
    0
    Validate existing connections on cleanup after a fatal connection error is detected?
    true
    ResetConnectionByBackendDatabase:
    false
    Backend id checking is:
    true
    JMSOnePhaseOptimization:
    false
    Reauthentication:
    false
    newDBConnectionValidationEnabled:
    false
    connectionRetriesDuringDBFailover:
    100
    connRetryDurationDuringDBFailover:
    3000
    Connection Factory Type:
    com.ibm.ws.rsadapter.jdbc.WSJdbcDataSource
    Listing PropertyChangeListeners:
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.spi.WSRdbDataSource@34003400
    DataSource Implementation Class Name:
    oracle.jdbc.pool.OracleConnectionPoolDataSource
    DataSource Name:
    null
    DataStoreHelper:
    com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper@3ebc3ebc
    DataSource properties:
    {enable2Phase=false, serverName=localhost, statementCacheSize=10, user=gcduser, dataStoreHelperClass=com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper, URL=jdbc:oracle:thin:@localhost:1521:orcl, databaseName=orcl, selectMethod=direct, dataSourceClass=oracle.jdbc.pool.OracleConnectionPoolDataSource, password=******, portNumber=1521}
    ONE PHASE ENABLED
    Underlying DataSource Object: oracle.jdbc.pool.OracleConnectionPoolDataSource@39703970
    oracle.jdbc.pool.OracleConnectionPoolDataSource@39703970
    Counter of unique, modified DataSource configurations: 0
    DynamicDSConfigManager
    null
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.spi.WSRdbManagedConnectionImpl@3f023f02
    ONE PHASE ENABLED
    Database Type:
    null
    Transaction State:
    NO_TRANSACTION_ACTIVE
    Statement Cache Size (maximum):
    10
    Key:
    [B@14f414f4
    Performance Monitoring Instrumentation:
    com.ibm.ws.pmi.server.modules.J2CModule@46cc46cc
    Log Writer:
    null
    Subject:
    null
    ManagedConnection:
    WSRdbManagedConnectionImpl@3f023f02
    Counter of fatal connection errors for the ManagedConnectionFactory as of the most recent getConnection on this ManagedConnection:
    0
    Default AutoCommit:
    true
    Current AutoCommit:
    true
    AutoCommit reported by the JDBC driver:
    true
    Current Isolation:
    READ COMMITTED (2)
    Isolation level has changed? :
    false
    Support isolation level switching:
    false
    Isolation reported by the JDBC driver:
    READ COMMITTED (2)
    Catalog, IsReadOnly, or TypeMap has changed? :
    false
    Default Holdability:
    DEFAULT CURSOR HOLDABILITY VALUE (0)
    Current Holdability:
    DEFAULT CURSOR HOLDABILITY VALUE (0)
    Holdability value has changed? :
    false
    Holdability reported by the JDBC driver:
    DEFAULT CURSOR HOLDABILITY VALUE (0)
    Thread ID:
    null
    Lazily enlisted in the current transaction? :
    false
    Underlying Connection Object: oracle.jdbc.driver.LogicalConnection@3dfc3dfc
    oracle.jdbc.driver.LogicalConnection@3dfc3dfc
    Underlying PooledConnection Object: oracle.jdbc.pool.OraclePooledConnection@64ec64ec
    oracle.jdbc.pool.OraclePooledConnection@64ec64ec
    SQLJ Default Context: null
    null
    Is statement caching enabled? :
    true
    Fatal connection error was detected? :
    false
    Currently cleaning up handles? :
    false
    Last ConnectionEvent sent for this ManagedConnection:
    com.ibm.ws.rsadapter.spi.WSConnectionEvent@3f583f58
    Connection Handle: null
    Event ID: UNKNOWN CONNECTION EVENT CONSTANT (0)
    Exception: null
    Driver version:
    10.2.0.3.0
    Database version:
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Connection Event Listeners:
    com.ibm.ejs.j2c.ConnectionEventListener@6f306f30
    Interaction Metrics:
    com.ibm.ejs.j2c.ConnectionEventListener@6f306f30
    Maximum Handle List Size: 15
    Handle Count: 1
    Handles:
    com.ibm.ws.rsadapter.jdbc.WSJdbcConnection@7c9e7c9e
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    null
    State Manager:
    com.ibm.ws.rsadapter.spi.WSStateManager@6ec46ec4
    XA Resource:
    null
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.spi.WSRdbSpiLocalTransactionImpl@7c827c82
    Connection:
    oracle.jdbc.driver.LogicalConnection@3dfc3dfc
    ManagedConnection:
    WSRdbManagedConnectionImpl@3f023f02
    Detection of multithreaded access is:
    DISABLED
    ManagedConnectionMetaData:
    null
    Statement Cache:
    com.ibm.ws.rsadapter.spi.CacheMap@6d486d48
    Number of entries: 0
    Maximum entries: 10
    Number of buckets: 13
    Maximum bucket size: 5
    Number of discards: 0
    BUCKET SIZE PREV NEXT
    000 000 013 013
    001 000 013 013
    002 000 013 013
    003 000 013 013
    004 000 013 013
    005 000 013 013
    006 000 013 013
    007 000 013 013
    008 000 013 013
    009 000 013 013
    010 000 013 013
    011 000 013 013
    012 000 013 013
    013 LRU 014
    014 MRU 013
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.spi.WSConnectionRequestInfoImpl@345e345e
    extention DS properties =
    null
    extention DS properties key =
    0
    useHetrogeneous =
    false
    changable CRI =
    false
    optimizeForGetUseCloseUsage =
    false
    User Name:
    null
    Password:
    null
    Isolation Level:
    READ COMMITTED (2)
    Catalog:
    null
    Is Read Only?
    null
    Type Map:
    null
    Cursor Holdability:
    DEFAULT CURSOR HOLDABILITY VALUE (0)
    Config ID: 0
    Hash Code:
    0
    Support isolation switching on connection:
    false
    NoEnlistment:
    false
    ShareWithCMPOnly:
    false
    Handle type:
    java.sql.Connection
    TrustedContext_name:
    null
    TrustedContext_realm:
    null
    TrustedContext_userSecToken:
    null
    TrustedContext_originalUser:
    null
    trustedContextIdentityAttributesAreSet =
    false
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.spi.WSManagedConnectionFactoryImpl@63666366
    Detection of multithreaded access is
    DISABLED
    Resource Adapter:
    null
    Hash Code:
    -1131425938 (0xbc8fcf6e)
    DataSource properties:
    {enable2Phase=false, serverName=localhost, statementCacheSize=10, user=gcduser, dataStoreHelperClass=com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper, URL=jdbc:oracle:thin:@localhost:1521:orcl, databaseName=orcl, selectMethod=direct, dataSourceClass=oracle.jdbc.pool.OracleConnectionPoolDataSource, password=******, portNumber=1521}
    Database Type:
    null
    DataStoreHelper:
    com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper@3ebc3ebc
    Description:
    null
    InternalDataStoreHelper:
    [email protected]8
    Log Writer:
    null
    Performance Monitoring Instrumentation:
    com.ibm.ws.pmi.server.modules.J2CModule@46cc46cc
    Statement Cache Size (maximum):
    10
    Transaction Branches are set to be Loosely Coupled:
    false
    Counter of fatal connection errors on ManagedConnections created by this MCF:
    0
    Validate existing connections on cleanup after a fatal connection error is detected?
    true
    ResetConnectionByBackendDatabase:
    false
    Backend id checking is:
    true
    JMSOnePhaseOptimization:
    false
    Reauthentication:
    false
    newDBConnectionValidationEnabled:
    false
    connectionRetriesDuringDBFailover:
    100
    connRetryDurationDuringDBFailover:
    3000
    Connection Factory Type:
    com.ibm.ws.rsadapter.jdbc.WSJdbcDataSource
    Listing PropertyChangeListeners:
    First Failure Data Capture information for
    com.ibm.ws.rsadapter.spi.WSRdbDataSource@34003400
    DataSource Implementation Class Name:
    oracle.jdbc.pool.OracleConnectionPoolDataSource
    DataSource Name:
    null
    DataStoreHelper:
    com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper@3ebc3ebc
    DataSource properties:
    {enable2Phase=false, serverName=localhost, statementCacheSize=10, user=gcduser, dataStoreHelperClass=com.ibm.websphere.rsadapter.Oracle10gDataStoreHelper, URL=jdbc:oracle:thin:@localhost:1521:orcl, databaseName=orcl, selectMethod=direct, dataSourceClass=oracle.jdbc.pool.OracleConnectionPoolDataSource, password=******, portNumber=1521}
    ONE PHASE ENABLED
    Underlying DataSource Object: oracle.jdbc.pool.OracleConnectionPoolDataSource@39703970
    oracle.jdbc.pool.OracleConnectionPoolDataSource@39703970
    Counter of unique, modified DataSource configurations: 0
    DynamicDSConfigManager
    null
    +Data for directive [defaultadapter] obtained. =
    ==> Dump complete for com.ibm.ws.rsadapter.DiagnosticModuleForAdapter = Sun Feb 03 12:59:15 CST 2008
    Any Ideas?
    Thanks in advance.
    Regards,
    Rajan

  • Workbench Validation wrongly reports a variable as not referenced

    When I run validation on my process in workbench, I get a warning [WBP-170] Warning: The variable '[name of var]' is not referenced in the process '[name of process]'. The variable is referenced in a query single action using the syntax where you embed the variable in the sql to execute using {$ /process_data/@[name of var] $}. Anyone else experiencing the same issue? Anyone know where I can report the bug?

    I very much that the process validator will detect embedded xpath expressions. This is probably just a limitation of the validator.
    Howard
    http://www.avoka.com

  • Bug report: Naming a Bin after creating it with drag'n'drop

    There seems to be a small bug when giving a newly created bin a name after creating it by drag'n'drop of several clips onto the "New Bin" icon. 
    To reproduce:
    Select some clips in your project browser
    Drag them onto the New Bin button
    A new bin is created with the clips in it
    - the bin name for it appears to be selected, and editable - just as if you had created a new empty bin by clicking the New Bin button
    - type in a new name - it accepts the name fine, now press enter.
    - your new name disappears, and *now* you are really in the mode to edit the bin name
    - type your name again, and it works.
    Work around:
    When creating new bins by using drag'n'drop of clips onto the New Bin button, first press enter once to enter into the proper edit mode before giving the bin a new name.
    (is there a better place to file bug reports?)
    Version 6.0.1 (014 (MC: 264587))
    Hardware Overview:
      Model Name:          Mac Pro
      Model Identifier:          MacPro5,1
      Processor Name:          Quad-Core Intel Xeon
      Processor Speed:          2.8 GHz
      Number Of Processors:          1
      Total Number Of Cores:          4
      L2 Cache (per core):          256 KB
      L3 Cache:          8 MB
      Memory:          8 GB
      Processor Interconnect Speed:          4.8 GT/s
      Boot ROM Version:          MP51.007F.B03
      SMC Version (system):          1.39f11
      SMC Version (processor tray):          1.39f11
    OS X 10.6.8

    Er, just answered my question about bug reports by reading the "read this before posting" link above
    But I'll leave this here for the work-around in case anyone else needs it.

  • Bug Report: Feature Request/Bug Report Form

    Re: Feature Request/Bug Report Form
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    The Feature Request/Bug Report Form does not include a drop-down option for Creative Cloud.

    Hi Stephen,
    We are collecting feature requests as idea threads here on the forums versus using that form. If you believe you have discovered a bug with Creative Cloud please post about it here on the forums.
    Thanks,
    -Dave

  • Bug report, Beta 2.12 Standard Edition

    Bug report: redundant, confusing, and apparently erroneous calls to
    jdoPreClear
    and jdoPostLoad. Note in output the null name in the third iteration.
    Hi,
    A lot of information being sent. Sorry, but I think you'll find it
    helpful. I expected the exact same sequence of calls to jdoPreClear
    and jdoPostLoad on the 2nd and third iteration. In fact, since,
    retain values is true, and no changes are being made, I expected that
    jdoPreClear and jdoPostLoad would not be called at all on the 2nd and
    3rd iteration.
    David Ezzio
    Using 2.12 Beta, standard edition
    Business method uses one PM. Configured to datastore transaction,
    retainValues == true, non-TR == false, and non-TW == false.
    The business methods open a transaction and leave it open.
    The client calls commitTransaction() to close the open
    transaction.
    Two persistent objects, Widget and Box. Each implement
    InstanceCallbacks and put out a message in jdoPreClear ("will be
    made hollow") and in jdoPostLoad ("has been made persistent-clean").
    The Widget has a reference to its Box. The number in parenthesis
    is the sequence number obtained from the object ID.
    Business methods implementation:
    public ArrayList getWidgetsByName(String name)
    Transaction trans = pm.currentTransaction();
    if (!trans.isActive())
    trans.begin();
    Collection c = (Collection) widgetsByOneName.execute(name);
    ArrayList aList = new ArrayList(c);
    widgetsByOneName.close(c);
    return aList;
    public void commitTransaction()
    Transaction trans = pm.currentTransaction();
    if (trans.isActive())
    trans.commit();
    Output: from three loops that:
    call findWidgetsByName("Maxi-Widget")
    list the widgets returned
    call commitTransaction()
    finding Maxi-Widgets ...
    Widget Maxi-Widget (650) has been made persistent-clean
    Box Large (652) has been made persistent-clean
    Widget Maxi-Widget (650): Box Large (652) at location Top Shelf
    Widget Maxi-Widget (709) has been made persistent-clean
    Box Large (710) has been made persistent-clean
    Widget Maxi-Widget (709): Box Large (710) at location Middle Shelf
    Widget Maxi-Widget (708) has been made persistent-clean
    Box Large (713) has been made persistent-clean
    Widget Maxi-Widget (708): Box Large (713) at location Top Shelf
    Widget Maxi-Widget (700) has been made persistent-clean
    Box Large (717) has been made persistent-clean
    Widget Maxi-Widget (700): Box Large (717) at location Top Shelf
    Widget Maxi-Widget (707) has been made persistent-clean
    Box Large (716) has been made persistent-clean
    Widget Maxi-Widget (707): Box Large (716) at location Top Shelf
    Finding them again
    finding Maxi-Widgets ...
    Widget Maxi-Widget (650) will be made hollow
    Widget Maxi-Widget (650): Box Large (652) at location Top Shelf
    Widget Maxi-Widget (709) will be made hollow
    Widget Maxi-Widget (709): Box Large (710) at location Middle Shelf
    Widget Maxi-Widget (708) will be made hollow
    Widget Maxi-Widget (708): Box Large (713) at location Top Shelf
    Widget Maxi-Widget (700) will be made hollow
    Widget Maxi-Widget (700): Box Large (717) at location Top Shelf
    Widget Maxi-Widget (707) will be made hollow
    Widget Maxi-Widget (707): Box Large (716) at location Top Shelf
    Finding them yet again
    finding Maxi-Widgets ...
    Widget null (650) will be made hollow
    Widget Maxi-Widget (650) has been made persistent-clean
    Widget Maxi-Widget (650): Box Large (652) at location Top Shelf
    Widget null (709) will be made hollow
    Widget Maxi-Widget (709) has been made persistent-clean
    Widget Maxi-Widget (709): Box Large (710) at location Middle Shelf
    Widget null (708) will be made hollow
    Widget Maxi-Widget (708) has been made persistent-clean
    Widget Maxi-Widget (708): Box Large (713) at location Top Shelf
    Widget null (700) will be made hollow
    Widget Maxi-Widget (700) has been made persistent-clean
    Widget Maxi-Widget (700): Box Large (717) at location Top Shelf
    Widget null (707) will be made hollow
    Widget Maxi-Widget (707) has been made persistent-clean
    Widget Maxi-Widget (707): Box Large (716) at location Top Shelf
    -- All done!

    Due to better understanding on my part, and the fixes in Beta 2.2, the
    issues raised in this thread are put to rest.
    Abe White wrote:
    >
    We'll investigate further. Stay tuned...
    "David Ezzio" <[email protected]> wrote in message
    news:[email protected]..
    Abe,
    Actually, it doesn't make sense. The first iteration shows
    jdoPostLoad is called just prior to using the fields of Widget and Box.
    After the commit, the instances are not cleared. So far, so good.
    In the second iteration, we see that jdoPreClear is called, but
    jdoPostLoad is not called. Yet the values are there for use during the
    call to Widget.toString() and Box.toString() within the iteration. How
    did that happen?
    On the third iteration, now the value of name is null, but last we
    looked it was available in the second iteration. Other than that, I
    agree that the third iteration looks ok, since it is being cleared and
    loaded prior to use. But in the jdoPreClear, the values should be there
    since the values were used in the previous iteration and are not cleared
    at transaction commit due to retainValues == true.
    David
    Abe White wrote:
    David --
    I believe the behavior you are seeing to be correct. Section 5.6.1 of
    the
    JDO spec outlines the behavior of persistent-nontransactional instancesused
    with data store transactions. As you can see, persistentnon-transactional
    instances are cleared when they enter a transaction; thus the calls to
    jdoPreClear. When the default fetch group is loaded again (like whenyou
    access the name of the widget) a call to jdoPostLoad is made.
    You are seeing the name of one instance as 'null' in the third iterationof
    your loop because the instance has been cleared in the second iteration,and
    the jdoPreClear method is not modified by the enhancer (see section10.3).
    Make sense?

  • Help! Macbook Pro Keeps Crashing.  Here Is The Bug Report

    Please, please, please can someone help me my mac keeps crashing for the last week and I dont know why.
    I  keep getting the grey screen of death
    I have included the bug report below.
    Mac Specs
    I have a Macbook Pro 17"
    Model Identifier: MacBookPro8,3
    Late 2011 Version
    2.2ghz Intel Core i7
    Intel HD Graphics 3000 512 MB
    Software  OS X 10.9.4 (13E28)
    I am running  the OS off an SSD 750 GB Drive connected internally (have been for over a year with no issues)
    The drive that came with my mac got corrupted so I replaced it with the SSD
    I am using an external monitor AOC connected via thunderbolt (have had this set up for over 1.5 years with no issues.
    Bug Report
    Anonymous UUID:       DDEA4723-7244-E776-B61A-34B381E8523F
    Tue Jul 29 23:34:57 2014
    panic(cpu 5 caller 0xffffff8003e4e5ca): "A kext releasing a(n) GenericUSBXHCI has corrupted the registry."@/SourceCache/xnu/xnu-2422.110.17/libkern/c++/OSObject.cpp:218
    Backtrace (CPU 5), Frame : Return Address
    0xffffff81ee4cbe00 : 0xffffff8003a22f79
    0xffffff81ee4cbe80 : 0xffffff8003e4e5ca
    0xffffff81ee4cbed0 : 0xffffff8003e9b6e7
    0xffffff81ee4cbef0 : 0xffffff8003ea9d0f
    0xffffff81ee4cbf30 : 0xffffff8003eaf292
    0xffffff81ee4cbf80 : 0xffffff8003eaf367
    0xffffff81ee4cbfb0 : 0xffffff8003ad7417
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13E28
    Kernel version:
    Darwin Kernel Version 13.3.0: Tue Jun  3 21:27:35 PDT 2014; root:xnu-2422.110.17~1/RELEASE_X86_64
    Kernel UUID: BBFADD17-672B-35A2-9B7F-E4B12213E4B8
    Kernel slide:     0x0000000003800000
    Kernel text base: 0xffffff8003a00000
    System model name: MacBookPro8,3 (Mac-942459F5819B171B)
    System uptime in nanoseconds: 49357323350
    last loaded kext at 46443091940: com.apple.driver.AppleBluetoothMultitouch 80.14 (addr 0xffffff7f858c1000, size 77824)
    loaded kexts:
    com.bresink.driver.BRESINKx86Monitoring 9.0
    com.avatron.AVExFramebuffer 1.7
    com.displaylink.driver.DisplayLinkDriver 2.1
    net.telestream.driver.TelestreamAudio 1.1.0
    com.techsmith.TACC 1.0.2
    com.logmein.driver.LogMeInSoundDriver 1.0.3
    com.avatron.AVExVideo 1.7
    com.sonnet.driver.SXHCD 1.27.9b2
    net.osx86.kexts.GenericUSBXHCI 1.2.7
    com.apple.driver.AppleBluetoothMultitouch 80.14
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.2.6f1
    com.apple.driver.AGPM 100.14.28
    com.apple.driver.AppleTyMCEDriver 1.0.2d2
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.ApplePolicyControl 3.6.22
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.kext.AMDFramebuffer 1.2.4
    com.apple.driver.AppleHDAHardwareConfigDriver 2.6.3f4
    com.apple.iokit.IOBluetoothUSBDFU 4.2.6f1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AppleHWAccess 1
    com.apple.AMDRadeonX3000 1.2.4
    com.apple.driver.AppleIntelMCEReporter 104
    com.apple.driver.AppleIntelHD3000Graphics 8.2.4
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.kext.AMD6000Controller 1.2.4
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleIntelSNBGraphicsFB 8.2.4
    com.apple.driver.AppleMuxControl 3.6.22
    com.apple.driver.AppleBacklight 170.3.5
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyEventDriver 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 325.7
    com.apple.driver.AppleFileSystemDriver 3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.XsanFilter 404
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleFWOHCI 5.0.2
    com.apple.driver.AirPort.Brcm4331 700.20.22
    com.apple.iokit.AppleBCM5701Ethernet 3.8.1b2
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleUSBEHCI 660.4.0
    com.apple.driver.AppleUSBUHCI 656.4.1
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 217.92.1
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleIntelCPUPowerManagement 217.92.1
    com.apple.driver.IOBluetoothHIDDriver 4.2.6f1
    com.apple.driver.AppleMultitouchDriver 245.13
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.6
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOBluetoothFamily 4.2.6f1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.6f1
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOAcceleratorFamily 98.22
    com.apple.driver.AppleThunderboltEDMSink 2.1.3
    com.apple.driver.AppleThunderboltDPOutAdapter 3.1.7
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.kext.AMDSupport 1.2.4
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleUSBAudio 2.9.5f8
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.AppleGraphicsControl 3.6.22
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.driver.AppleUSBMultitouch 240.9
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.iokit.IOFireWireFamily 4.5.5
    com.apple.iokit.IO80211Family 640.36
    com.apple.iokit.IOEthernetAVBController 1.0.3b4
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOUSBFamily 683.4.0
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.pthread 1
    com.apple.kec.corecrypto 1.0

    Looks like the Open Source USB 3.0 driver GenericUSBXHCI is causing this. I'd suggest uninstalling it.

  • Bug report, how do I find out what is wrong?

    my computer keeps getting bug reports stuck all over the desktop. When I print them it is 3 pages long and I dont know how to use the information from it. It only occurs when my son is using Runescape an online game. My son says he has reported all the errors when the computer prompts him to. I did find an Bug Report that seems to be associated with this problem. Our computer did shut down occasionally also, but since I switched the location of the new memory I added it has not continued. The reason I am checking with this website is because this is where the reports are going. The first part of the error report from my computer is this:
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x809D50E
    Function=JVM_FindSignal+0x10882
    Library=C:\PROGRA~1\Java\J2RE14~1.2\bin\client\jvm.dll
    Current Java thread:
         at r.a(Unknown Source)
         at r.a(Unknown Source)
         at client.t(Unknown Source)
         at client.B(Unknown Source)
         at client.a(Unknown Source)
         at a.run(Unknown Source)
         at client.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    And the last part of the report reads this:
    Local Time = Fri Mar 04 21:38:29 2005
    Elapsed Time = 58
    # HotSpot Virtual Machine Error : EXCEPTION_ACCESS_VIOLATION
    # Error ID : 4F530E43505002EF
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2-b28 mixed mode)
    What do I need to do to fix this problem? Could it be Runescapes issue? Is there other information that is more important to this? I really appreciate any help I can get with this problem. And I am sorry for being so long. I have included the Bug Report I found that is an almost exact duplicate of our issue.
    Thank you again, Linda Peterson.
    COPIED FROM BUG REPORT SEARCH AREA
    Bug ID: 5092499
    Votes 1
    Synopsis IA64 - EXCEPTION_ACCESS_VIOLATION on IA664 W2003
    Category java:runtime
    Reported Against 1.4.2_05
    Release Fixed
    State In progress, bug
    Related Bugs
    Submit Date 26-AUG-2004
    Description OS: Windows2003 [5.2.3790]
    Chip: Itanium 2
    JVM: Sun 1.4.2_05-b04 64-bit server VM
    Error message:
    EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x84D5F10
    Function=[Unknown]
    Library=C:\j2sdk1.4.2_05\jre\bin\server\jvm.dll
    Error ID: 4F530E43505002EF
    xxxxx@xxxxx 10/5/04 20:02 GMT
    Work Around N/A
    Evaluation Post tiger
    xxxxx@xxxxx 2004-09-02
    Comments
    Include a link with my name & email
    Submitted On 05-FEB-2005
    JavaJava13 Hey just wondering. Java is used for runescape on my computer, and it seems to be constantly crashing lately. Not only the game is crshing, it seems to even take down the whole computer with it. Sometimes the computer restarts and I get an error message.
    "Your system has recovered from a serious error"
    Java continues to add error reports to my desktop with this code: 4F530E43505002EF
    Anyone help?

    try checking with runescapes FAQ/tech support. I play
    WC3: RoC and i only got that same memory location
    error(0xc0000005). I got that memory error when I
    used a no-cd third party program when they upgraded
    the server. So, my advice is check on the FAQ for
    errors and ask your son if he is using
    ANY third party programs.The 0xc0000005 error is a standard error on Windows that can occur for any number of reasons.
    It means something in the application tried to access memory to which windows knows the application should not be accessing.

  • FAQ: I found a bug. How do I write a useful bug report? Or send bug files to Adobe?

    If you think you've found a bug in Photoshop CS6, please post your findings here on the forums.
    Here is a list of the information we'll want for you to gather at a minimum:
    Clear and concise steps so that someone who isn't in front of your comptuer can reproduce the issue you are seeing
    Include information on the operating system/version you are running. (e.g. "Mac OS 10.7.3" or "Win XP Service Pack 3")
    Here are some more detailed instructions for writing a useful, complete bug report for us on the forums:
    Provide a descriptive title that includes your OS information:Example: "Photoshop crashes when I save a JPEG file using the File>Save For Web & Devices... command (Mac OS 10.7.3)"
    Provide concise, step-by-step details on how to reproduce the issue you are seeing.
    Example:
    Open an 8-bit, RGB image by selecting File>Open...
    Create a new layer by clicking the "Create New Layer" button on the bottom of the Layers panel
    Paint on the layer created in Step #2 using the default Brush tool
    Choose File>Save For Web & Devices...
    Make sure the optimized format is set to "JPEG" and set the Quality setting to "80"
    Click the Save button at the bottom of the Save For Web & Devices dialog, choose the desktop as the location for saving the file
    Provide a description of the "Result" you are observing:
    Example: "Result: Photoshop crashes"
    If there is an error dialog, please include the exact wording displayed in the dialog or provide a screen shot or video of the entire screen so we can see the dialog as well as the state of the application - i.e. what panels are shown, the state of the Layers panel, etc.
    If the error is a visual defect, either in the user interface or the image itself, provide a screen shot or video of the entire screen so we can see the dialog as well as the state of the application - i.e. what panels are shown, the state of the Layers panel, etc.
    Provide a description of the "Expected Result":
    Example: "Expected Result: Photoshop to save JPEG file to the desktop, no crash"
    In some cases this may be obvious (such as in the case of a crash) but in others, what you expect to happen may be different than what the application was designed to do. Please be as specific as possible.
    Provide the crash log by submitting all crash reports, including your email address, for every single crash your encounter:
    You may also include the contents of your crash log in your forum posts as well, but always submit them using the above instructions as well.
    Crash logs are located on Macintosh here: Users/<your user name>/Library/Logs/CrashReporter
    Provide your System Info from Photoshop: What's even more useful is if you can share your System Info from Photoshop as it contains all kinds of useful information (OS/version, graphics card, driver version, 3rd party plug-ins used, etc) that will help the team track down your issue.
    On occasion, the Photoshop engineers may request that you provide problematic files in order to reproduce and debug your issue.
    In these cases, please post the file somewhere using your own servers or one your favorite online document/distribution services and provide a URL/instructions to download the file:
    Dropbox
    Adobe SendNow
    YouSendIt
    If the file isn't something you can post publically, you can request that someone from the engineering team contact you to figure out a secure way to get the affected files.
    Thanks,
    The Photoshop Development Team

    First thing would be to realise the exact error. Second would be to check your logs to see what you have installed/upgraded which might be causing this error. Third, google your error and see if matches turn up. Fourth, search in Arch bugtracker to see if a match exist. Else file a report.

  • Bug Report: DW CS5.5 Crashes Every Time On An Image Map

    I am posting this in lieu of contacting Adobe support. I went to my account to send Adobe a bug report and was told I needed to contact support via phone. That's pretty crappy. As a licensed user who's owned it less than three months, there's no direct path to tell you guys that your software is broken?
    Here's the deal: I am working on an HTML landing page with one image map attached to one image. Literally, every time I make a modification to the code near the image (tied to the image map) then click into the live preview window, Dreamweaver CS5.5 crashes like a 70-year old on a bar of soap on the floor of the shower. It crashes hard. My only relief is to save the file before clicking into the live preview window. That's my only workaround to the problem.
    But I'm left amazed that I can crash it every single time over an image map, flicking from the code to the preview pane. You would think that at version 11.5, a minor thing like that wouldn't hemorrage the supposed creme de la creme of web design software.
    Here's the code I'm editing that causes it to crash:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
              <?php
              require_once("/var/www/html/c/index.php");
              $recip_name = $subscriber['first_name'].' '.$subscriber['last_name'];
              ?>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link href="/c/print.css" type="text/css" rel="stylesheet" media="print">
    <title>Membership Special - No Commitment</title>
    </head>
              <?php // Google Link Tracking Code ?>
              <script type='text/javascript' src='/c/google-analytics-code.js'></script>
              <?php // End Google Link Tracking Code ?>
        <!-- Source File -->
              <link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.9.0/build/reset/reset-min.css">
        <style type="text/css">
                        body {font:normal 14px/1.25em Georgia, "Times New Roman", Times, serif;}
                        h1,h2,h3,h4,h5,h6 {font-weight:bold;color:#333333;}
                        h1 {font:normal 28px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h2 {font:normal 24px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h3 {font:normal 20px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h4 {font:normal 16px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h5 {font:normal 12px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        h6 {font:normal  8px/1.5em "Trebuchet MS", Arial, Helvetica, sans-serif;}
                        a, a:link, a:visited, a:active {color:#0055FF;}
                        a:hover {color: #002AFF;}
                        #wrapper {margin:0 auto;width:432px;}
                        #header, #footer {margin:20px auto;text-align:center;position:relative;}
                        #footer {margin:40px auto;}
                        #coupon {position:relative;}
                        #coupon, #coupon img {margin:0 auto;text-align:center;}
                        .personalization {position:absolute;width:100%;text-align:center;text-transform:uppercase;}
                        .printcoupon {text-transform:uppercase;}
              </style>
    <body>
    <div id="wrapper">
    <div id="header">
              <h3 class="printcoupon"><a href="javascript:window.print();">Click here to print your coupon</a></h3>
    </div>
    <div id="coupon">
              <img src="images/19415coupon-01.jpg" width="432" height="432" />          <!-- <div class="personalization" style="left:0;top:818px;"><h1><?php echo $recip_name; ?></h1></div> -->
      <img src="images/19357coupon-02.jpg" width="550" height="602" usemap="#imagemap" class="dontprint"/>
    </div>
    <div id="footer">
              <h3 class="printcoupon"><a href="javascript:window.print();">Click here to print your coupon</a></h3>
    </div>
    </div>
    <map name="imagemap">
              <area coords="29,69,521,197" shape="rect" href="javascript:window.print();">
              <area coords="29,212,521,339" shape="rect" href="http://www.google.com" target="_blank" onClick="recordOutboundLink(this, 'Landing Page', 'http://www.google.com');return false;">
                        </map>
    </body>
    </html>

    Bug Report and Feature Request https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

Maybe you are looking for