Hi. sorry about english
i have some modules on 6i and i want to upgrade to 12c.
There is a module, which contains a procedure for calling a program .exe by using DDE library.
PSEUDOCODE:
PROCEDURE Attach
(ArchiveName Varchar2) IS
ImgAttachScanId Pls_Integer;
Arch_Status Varchar2(1);
BEGIN
ImgAttachScanId := dde.initiate('Imaging','ImgScan');
dde.poke(ImgAttachScanId,'ArchiveName',ArchiveName,dde.cf\_text,1000000);
dde.terminate(ImgAttachScanId);
Exception
WHEN DDE.DDE\_INIT\_FAILED THEN
MESSAGE('Error: Can not Initiate Image Scan Tools');
WHEN DDE.DMLERR\_NO\_CONV\_ESTABLISHED THEN
MESSAGE('Error: Conversation With Image Scan Tools Has Failed');
WHEN OTHERS THEN
NULL;
End;
i know DDE Library no longer exists, i installed and made webutil settings.
What is the alternative?
THANKS