cancel
Showing results for 
Search instead for 
Did you mean: 

Importing Bitmap Images

Former Member
0 Kudos

Can we Import Bitmap Images from Application Server?

My Requirement is Importing Several Bitmap Images at a time using ABAP Program. Iam using perform import_bitmap_bds(saplstxbitmaps) in my Program. But I think we can't upload Application Server Files using the above Perform. Is there any other way to Import Application Server Bit map files?

Thanks,

Kishore

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

This message was moderated.

Former Member
0 Kudos

Hi kishore singh,

To import several Bitmap images, my idea is do BDC for T-code SE78 and upload what ever images you want.....

Regards,

Suneel G

Former Member
0 Kudos

Hi Suneel,

Even if we go for BDC , We can't Upload Application Server files. Is it Right? Correct me if it is wrong.

My requirement is to Schedule the Progam in background to upload Images. My files will be in Application Server.

Thanks,

Kishore

Former Member
0 Kudos

To read the file.

Frontend file -> function GUI_UPLOAD.

(It is not possible to use it on the back ground. )

Application Server file -> OPEN DATASET server file FOR INPUT IN BINARY MODE.

Former Member
0 Kudos

Hi.

FORM IMPORT_BITMAP_BDS is using function GUI_UPLOAD.

Copy FORM IMPORT_BITMAP_BDS,

and change GUI_UPLOAD to OPEN DATASET server file FOR INPUT IN BINARY MODE.

Perhaps, a lot of INCLUDE might be needed for the copied program.