2004 Nov 19 3:39 PM
hello,
i used gui_upload for upload.
i have exported a tab using
export p_tab to database z_indx(PA) id aux_srtfd.
here p_tab is tble of sdokcntbin.
and i am trying to import with idaux_srtfd using
aux_srtfd = 'co68-04f' .
import pic_tab to pic_tab from database zsbsp_indx(pa) id aux_srtfd.
where(which field) it stores the data in z_indx.
when i debug application p_tab is always intial.
what is the prob.
can anyone help me?.
thanx
regards ravi.
2004 Nov 19 3:54 PM
Your export database table Z_INDX is not the same as ZSBSP_INDX. Is this a mistype? You export internal table name is not the same as import internal table name.
2004 Nov 19 4:00 PM
no they r same p_tab is my internal tab.
and zsbsp_indx is indx DB table.
that is mis type i am sorry.
2004 Nov 19 4:03 PM
the correct statements r
export p_tab to database zsbsp_indx(PA) id aux_srtfd.
import p_tab to pic_tab from database zsbsp_indx(pa) id aux_srtfd.
2004 Nov 19 4:20 PM
When you are EXPORTing, try doing this
EXPORT P_TAB FROM P_TAB to database ZSBSP_INDX(PA) id aux_srtfd.
or
EXPORT P_TAB = P_TAB to database ZSBSP_INDX(PA) id aux_srtfd.