Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Dump error for download

Former Member
0 Likes
462

Hi,

here i use a program with an internal table and am using to upload the internal table into an excel sheet on to the PC. am using WS_DOWNLOAD function module. am getting a dump says OBJECT_NOT_CHAR.

thank u

Hi,

here i use a program with an internal table and am using to upload the internal table into an excel sheet on to the PC. am using WS_DOWNLOAD function module. am getting a dump says OBJECT_NOT_CHAR.

thank u

1 REPLY 1
Read only

Former Member
0 Likes
317

What is the structure of your internal table? Is every field of your internal table a character field? Depending on this and the file type, here is the recommended field definitions.

Recommended table structures

'ASC' : 1-column, type C

'DAT' : n-columns, mixed types (C, P, F, I)

'BIN' : 1-column, type C, width < 1023 bytes,

otherwise INVALID_TABLE_WIDTH

'WK1' : n-columns, mixed types (C, P, F, I)

So if you are downloading the file as ASC, all fields should be of type C.

Srinivas