rem WFTLoad download/upload Script rem Make sure all arguments are assigned except for itemtype, which is for download only rem Valid parameters are /mode [upload | forceupload | download ],[/effectivedate ] /user , /password /connectstring /filename /debug true /language [/itemtype /itemtype ...] rem /effectivedate - set effective date instead of sysdate (optional) rem /itemtype - download particular item type(s) (optional) rem /debug true - debug mode (optional) rem /language - for download only (language setting is hardcoded in the wft file and is not needed for upload) rem Example wftload.bat /mode upload /user owf_mgr /password welcome /connectstring "(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=host.example.com) (PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=ora)))" /filename /oraclehome/wf/res/US/wfstd.wft setlocal set JAVA_HOME= "D:\app\Administrator\product\11.2.0\dbhome_1\jdk\bin\java" -classpath ";D:\app\Administrator\product\11.2.0\dbhome_1\jdk\jre\lib\rt.jar;D:\app\Administrator\product\11.2.0\dbhome_1\jlib\orai18n.jar;D:\app\Administrator\product\11.2.0\dbhome_1\jlib\wfjava.jar;D:\app\Administrator\product\11.2.0\dbhome_1\jlib\fndctx.jar;D:\app\Administrator\product\11.2.0\dbhome_1\jlib\wfapi.jar;D:\app\Administrator\product\11.2.0\dbhome_1\jdbc\lib\ojdbc14.jar;D:\app\Administrator\product\11.2.0\dbhome_1\jdbc\lib\nls_charset12.jar" oracle.apps.fnd.wf.WFTLoad %* endlocal