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

help with export statement

Former Member
0 Likes
402

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?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
378

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

2 REPLIES 2
Read only

Former Member
0 Likes
379

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

Read only

Former Member
0 Likes
378

Thanks