Regarding .bat file
Hi alll,
i got a .bat file which will be running in a window.
My requirement is ,i need that .bat file to be in the RUNNING MODE in the background even though the window is closed
Here is my .bat file Content:
rem *****************************************************************
rem $Header: wfjvlsnrNT.sbs 26.6 2005/05/30 11:13:03 viksingh noship $
rem USAGE:
rem1) Workflow Schema User/Password@Database
rem2> "Workflow Schema User Password Database [protocol]" [charset]
rem To disable output, use the jrew command instead of jre
rem *****************************************************************
set WF_UN=owf_mgr
set WF_PSD=oracle
set WF_CHARSET=
IF "%2" NEQ "" set WF_CHARSET=-DCHARSET=%2
set WF_CLASSPATH=;C:\oracle\product\10.2.0\db\wf\java;C:\j2sdk1.4.2_10\lib\tools.jar;C:\j2sdk1.4.2_10\lib\dt.jar;C:\oracle\product\10.2.0\db\jdk\jre\lib\rt.jar;C:\oracle\product\10.2.0\db\wf\java;C:\oracle\product\10.2.0\db\jlib\wfjava.jar;C:\oracle\product\10.2.0\db\lib\xmlparserv2.jar;C:\oracle\product\10.2.0\db\jlib\fndctx.jar;C:\oracle\product\10.2.0\db\jlib\wfapi.jar;C:\oracle\product\10.2.0\db\jdbc\lib\classes12.jar;C:\oracle\product\10.2.0\db\jlib\share.jar;C:\oracle\product\10.2.0\db\jlib\ewt3.jar;C:\oracle\product\10.2.0\db\jlib\ewt3-nls.jar;C:\oracle\product\10.2.0\db\jlib\swingall-1_1_1.jar;C:\oracle\product\10.2.0\db\jlib\orai18n-collation.jar;C:\oracle\product\10.2.0\db\jlib\orai18n-mapping.jar;C:\wrkng\Flow.jar;C:\wf_demo\internal.jar;C:\wf_demo\mailapi.jar;C:\oracle\product\10.2.0\db\ultrasearch\lib\agent\wkagent.jar;
"C:\j2sdk1.4.2_10\bin\java" -classpath "%WF_CLASSPATH%" %WF_CHARSET% oracle.apps.fnd.wf.WFFALsnr %WF_UN% %WF_PSD% gis42:1521:acp thin

