‎2008 Feb 04 1:50 PM
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'.
‎2008 Jul 07 12:24 PM
done uploading the graphic file from some other way. thanx,
Naveen Vishal
‎2008 Feb 04 1:58 PM
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^
‎2008 Feb 04 1:58 PM
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^
‎2008 Feb 04 2:03 PM
no yaar.. that ive already done..but image is not uploading in abtree dabase..
i specifically want the soln for uplaod into abtree database....
‎2008 Jul 07 12:24 PM
done uploading the graphic file from some other way. thanx,
Naveen Vishal
‎2008 Sep 22 7:20 AM
‎2011 May 28 7:23 AM
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.