We get images from a document management system. Images are sent through a web-service which sends us a base64 version of the image as a string.
We have to convert that into a Blob and show in the form (Forms 10g Release 2) as an image.
We can convert the base64 to a blob, but unable to show it in the form.
We cannot reference any image item directly in code. i.e. We can't do this
:control.image11 := p_blob;
How can we do this please??