2012 Feb 14 2:28 PM
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.
2012 Feb 15 6:26 AM
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.