XSU ERROR when reading from a OR-Table

When i try to read Data (SELECT * from named_pointlist) from a Nasted Table with the function "getXMLString()" i get the following Error:
java.lang.reflect.InvocationTargetException: java.lang.NoSuchMethodError: oracle
.jdbc.oracore.OracleTypeCOLLECTION: method getElementType()Loracle/jdbc/oracore/
OracleType; not found at...
reading Data from a normal Table or a Table with Object Type's works fine. Only Lists, Arrays make problems.
I tried it also with the example from Steven Muench in the Topic "http://technet.oracle.com:89/ubb/Forum11/HTML/003915.html"
Hope to get Help
Regards Remo

Sas..
From your example code it appears you are trying to use a wild card for both your dbtable and the internal table.
To do this, you will lilkely need to use a Field Symbol for the target internal table and your FROM will need to be a varible
FROM (dbtabname)
The ABAP Helps gives this example for the Select Table
DATA  TABNAME(10).
DATA: BEGIN OF WA,
        ID   LIKE SCUSTOM-ID,
        NAME LIKE SCUSTOM-NAME,
        REST(134),
      END OF WA.
TABNAME = 'SCUSTOM'.
SELECT * INTO WA FROM (TABNAME).
  WRITE: / WA-ID, WA-NAME.
ENDSELECT.

Similar Messages

Maybe you are looking for