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..!!!

naveenvishal
Contributor
0 Likes
835

how to export image in DATABASE abtree(pi), so that it can be imported using:

IMPORT pict_tab = pict_tab FROM DATABASE abtree(pi) ID 'ENJOY'.

1 ACCEPTED SOLUTION
Read only

naveenvishal
Contributor
0 Likes
776

done uploading the graphic file from some other way. thanx,

Naveen Vishal

6 REPLIES 6
Read only

Former Member
0 Likes
776

hi

good

1.Go to transaction SE78.

2.Select tree menu: Form Graphics -> Stroed on Document Server -> Graphics General Graphics -> BMAP Bitmap Images

3.Select <IMPORT> to import bitmap image file to SAP. System will popup screen for input file information and target name.

4.Select <Tick> After you already input data. System will upload image and return message to tell you success or fail.

5.You can preview the picture that uploaded by select<print prv>

If u want to store the images and retrive it from the server corresponding to the person id then just save the image by person id and code it as per the requirement.

U can save ur images using se78 and also u can c it using TCODE AL11.By navigating thru the exact path u can get the images.

thanks

mrutyun^

Read only

Former Member
0 Likes
776

hi

good

1.Go to transaction SE78.

2.Select tree menu: Form Graphics -> Stroed on Document Server -> Graphics General Graphics -> BMAP Bitmap Images

3.Select <IMPORT> to import bitmap image file to SAP. System will popup screen for input file information and target name.

4.Select <Tick> After you already input data. System will upload image and return message to tell you success or fail.

5.You can preview the picture that uploaded by select<print prv>

If u want to store the images and retrive it from the server corresponding to the person id then just save the image by person id and code it as per the requirement.

U can save ur images using se78 and also u can c it using TCODE AL11.By navigating thru the exact path u can get the images.

thanks

mrutyun^

Read only

0 Likes
776

no yaar.. that ive already done..but image is not uploading in abtree dabase..

i specifically want the soln for uplaod into abtree database....

Read only

naveenvishal
Contributor
0 Likes
777

done uploading the graphic file from some other way. thanx,

Naveen Vishal

Read only

0 Likes
776

Hi,

Can you tell me how to upload images in ABTREE Database?

Read only

Former Member
0 Likes
776

TYPES PICT_LINE(256) TYPE X.

DATA: pict_tab TYPE 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 'KANSOO'.

IF sy-subrc = 0.

WRITE: 'Success'.

ENDIF.