How to compile report6i on unix prompt [message #88515] |
Fri, 25 October 2002 10:43 |
avinash
Messages: 22 Registered: February 2001
|
Junior Member |
|
|
Hi,
Could you please let me know how to compile report file from unix command prompt. I am using reflection x to compile form file. for form compile I am using followinf command
f60genm module=$i userid=???/???@icmmh161_438.world batch=yes compile_all=YES
But I am not sure about report. Is there any command or file is available like f60genm or reports can not compile on unix prompt.
OS :- unix
Oracle 817
Thanks in advance
Avinash
|
|
|
Re: How to compile report6i on unix prompt [message #88516 is a reply to message #88515] |
Fri, 25 October 2002 13:54 |
Ravi
Messages: 251 Registered: June 1998
|
Senior Member |
|
|
Hi Avinash,
In unix u have to use rwcon60............
Like how we will create Batch file in windows(Convert.bat) like that in unix vi editor u copy the below text and save that file as convert.sh.
Suppose u create some directory in unix lets say ReportFile and in that directory u have kept all your Rdf file. Copy this Convert.sh file and execute this automatically it will compile all the Rdf file which are there in that directory.
-----------Copy this text to vi editor--------
for %%f in (*.rdf) do rwcon60 userid=scott/tiger@system source=%%f batch=yes dtype=repfile stype=rdffile
-----------------------------------------------
Regards
Ravi
|
|
|
|
|
|