Hi All !
I would like to know if possible execute linux command in oracle forms 12 with callback
I did something like executing windows command and works fine using webutil functions below
v_command := ‘cmd /c dir’ ;
v_process := webutil_host.blocking( v_command ) ;
v_output := webutil_host.get_standard_output( v_process ) ;
I need something like above to capture output linux cmd
thanks