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: 

Abtree Database

Former Member
0 Kudos

Hi,

Can anyone tell me how to upload or Export images into Abtree database?

2 REPLIES 2

Former Member
0 Kudos

HI,

check this link

Hope it will be helpfull.

Regards,

Anirban

0 Kudos

I tried with this following code. This code is updating the table. But I am not able to view the images while importing. But I can able to view the existing pictures.

DATA pict_line(256) TYPE c.

data: pict_tab like table of pict_line.

CALL FUNCTION 'GUI_UPLOAD'

EXPORTING

FILENAME = 'C:\TEST.GIF' "File path with file name

FILETYPE = 'BIN'

TABLES

DATA_TAB = pict_tab.

export pict_tab = pict_tab to database abtree(pi) id 'ZX_SAP_LOGO'.

if sy-subrc = 0.

write: 'Success'.

endif.