cancel
Showing results for 
Search instead for 
Did you mean: 

Dynamic Images on webdynpro with interactive forms

Former Member
0 Kudos

Hi,

I need to implement a webdynpro with interactive form but the logo of the company is dynamic. It is possible to do that on interactive form.

Thank you in advance

Accepted Solutions (1)

Accepted Solutions (1)

vaibhav_tiwari
Contributor
0 Kudos

Hi,

Its possible to do that. Please search SDN forum or Google for such questions:

you will get several links like below explaining the answer:

Regards,

Vaibhav

Answers (1)

Answers (1)

Former Member
0 Kudos

HI Vaibhav,

Thank you for the reply, sorry but i try to found on the forum as always but never found anything. So i always post a new thread.

I figure out how to do

If you would like to display an image within a form with XML generated interface:

- Create a STRING context attribute (i.e. IMAGE);

- Get the image contents from your system in binary format (XSTRING);

- Translate contents from XSTRING to BASE64 with function module: SSFC_BASE64_ENCODE, like this:

CALL FUNCTION 'SSFC_BASE64_ENCODE'

EXPORTING

bindata = image_xstring

IMPORTING

b64data = image_string.

- Leave image string contents into context attribute IMAGE.

- Map IMAGE context attribute into your form to an IMAGE FIELD and check "Embed image data".

This is the solution .

Thank you very much for the help.

Best Regards

Miguel Silva