Quote:
Originally posted by muiee80
i know we can always call store procedure from 4gl,
but how abt call a 4gl from a informix store procedure?
and hows the code look like?
thanks
|
Hi,
Please test the following:
create procedure run4gl ()
define cmd varchar(100);
.....
.....
let cmd="/informix/bin/fglgo program.4gi";
system (cmd);
end procedure
Gustavo.