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

IMPORT_UNEXPECTED_END_OF_DATA unicode issue‏

Former Member
0 Kudos
1,579

I've got the error IMPORT_UNEXPECTED_END_OF_DATA

it works on system without unicode

during upgrade to ECC6 this code below got short dump


 
 DATA: BEGIN OF lt_vbid,
          timestamp LIKE vbmod-vbkey,
          id        LIKE vbmod-vbmodcnt,
        END OF lt_vbid.
...
...
...
 
IMPORT caufvta TO lt_caufvdb FROM LOGFILE ID lt_vbid.

I tried to change

id LIKE vbmod-vbmodcnt, to id(10) type N, & id(10) type C

but it's not working.

1 REPLY 1
Read only

Former Member
0 Kudos
1,280

Data objects are imported from update data records.

As key, you have to specify the update key that was assigned by the system (inclusive ongoing order number).

If the update key specified does not exist in the database table VBDATA, the runtime error IMPORT_UNEXPECTED_END_OF_DATA occurs.