Hi,
I have data in a excel file which has to be inserted into a custom table. End users sometime does bulk insertion (hundreds of rows) through excel rather than key-in the data.
Custom table has string, int, enum fields.
data is inserted into fields as below
table1.field1 = any2str(cells.item(row,1).value().bstr()); --> String field
table1.field2 = any2str(cells.item(row,2).value().bstr()); --> String field
table1.field3 = any2int(cells.item(row,3).value().int()); --> Integer field
table1.field4 = any2int(cells.item(row,4).value().int()); --> Enum field
The data type in excel file for field 3 and field 4 is integer.
Still no value is getting populated into integer and enum fields.
Could some one guide me how to resolve this?
Thanks,
Lakshmi