Write Image from Forms6i to Client local system [message #676952] |
Wed, 31 July 2019 08:24 |
|
vraghul86@gmail.com
Messages: 11 Registered: December 2017
|
Junior Member |
|
|
Dear All,
how to use the Wite_image_File from Forms 6i to Client local system.
I have already use the viewing image using Read_image_file from particular path.But, client need to download the viewing image in their local System.
The below code is use for Read_image_file. i need to write this image on Client local system.
--------------------------------------------------------------------------
:GLOBAL.M_PARA_2 := '\\raghul\common\srinu\';
:System.Message_Level := '25';
BEGIN
SELECT ITEM_CODE INTO M_IMG FROM SF_OMITEM_VW WHERE ITEM_CODE = :IICODE;
EXCEPTION WHEN OTHERS THEN
NULL;
END;
READ_IMAGE_FILE(M_PARA||M_IMG||'.JPG','JPEG','DUMMY.ITEMPIC');
IF NOT FORM_SUCCESS THEN
READ_IMAGE_FILE(M_PARA||'NOIMAGE.GIF','GIF','DUMMY.ITEMPIC');
END IF;
:System.Message_Level := '0';
|
|
|