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

Abtree Database

Former Member
0 Likes
458

Hi,

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

2 REPLIES 2
Read only

Former Member
0 Likes
390

HI,

check this link

Hope it will be helpfull.

Regards,

Anirban

Read only

0 Likes
390

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.