‎2008 Nov 07 2:04 PM
Hi experts,
I'm using the following piece of code to export:
Fill the data fields before CLUSTR
before the actual export
z_user_tab-date = sy-datum.
Export der Daten.
EXPORT int_text FROM int_text
TO DATABASE z_user_tab(ST) FROM WA_INDX ID INDXKEY.
If I'm right z_user_tab-date should appear in the table also, but I cannot see it? Why is it?
‎2008 Nov 07 2:19 PM
Hi
No! Your statament is to set the data to a cluster table
z_user_tab has to be a cluster table, so it has to be a table like INDX
Max
‎2008 Nov 07 2:19 PM
Hi
No! Your statament is to set the data to a cluster table
z_user_tab has to be a cluster table, so it has to be a table like INDX
Max
‎2008 Nov 07 2:20 PM