cancel
Showing results for 
Search instead for 
Did you mean: 

show image from binary string

Former Member
0 Kudos

Hi,

i'm trying to show an image which i get from the FM BAPI_SRM_DOC_CHECKOUT_VIA_TAB

I get a xstring with the raw format of the image (tiff and/or jpg) and now i want do display it in my wd application.

Do you have any ideas how to implement this ?

Thank you very much & best regards

Accepted Solutions (1)

Accepted Solutions (1)

thomas_szcs
Active Contributor
0 Kudos

Hello Michael,

There are several possibilities:

(a) put it into the cache

(b) put it into the mime repository

(c) write a sicf handler that returns the image

Personally, I would prefer (c), because it does not have the drawbacks of (a) and (b). It ensures that the image will always be there as long as you wish (and not longer). The excellent BSP book of Brian McKellar shows you how to create an SICF handler. Probably, there's also a blog available on SDN regarding this topic.

Best regards,

Thomas

Answers (1)

Answers (1)

Former Member
0 Kudos

thanks