Skip to Content
0
Former Member
Jul 15, 2005 at 01:32 PM

Re: java.lang.NoClassDefFoundError: com/sap/mdi/ddtypes/DDObject

30 Views

Hi,

I have an iView that makes a R/3-connection and receives a result-table. I can get the metadata of the table

IRecordMetaData meta = structure.retrieveMetaData();

and I can ask the metadata about the column-count and column-names

for (int i = 0; i < meta.getColumnCount(); i++) {

String columnName = meta.getColumnName(i);

}

but asking for the column-type

meta.getColumnType(i);

raises the error "java.lang.NoClassDefFoundError: com/sap/mdi/ddtypes/DDObject"

Does anyone have any idea?

Thanks and Regards

Padmaja