Application Development 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: 

importing bin data from DB.

Former Member
0 Kudos

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.

4 REPLIES 4

nablan_umar
Active Contributor
0 Kudos

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.

0 Kudos

no they r same p_tab is my internal tab.

and zsbsp_indx is indx DB table.

that is mis type i am sorry.

0 Kudos

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.

0 Kudos

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.