Page 1 of 1
R&R report in a file (by commands)
Posted: Tue Sep 12, 2006 4:09 am
by Nicolas_(Guest)
Hello,____I search commands to succeed in create a report ".TXT" thanks to a file ".RRW" what I have yet.____I can do this in graphic by "RRW Reports" but I want to do this by commands and so create a Windows task.____I try a lot of command (RRWRUN /....) but nothing run.____If somebody can help me and give few commands,____Thank you____Nicolas__Ps: sorry I french and my english is bad
=> R&R report in a file (by commands)
Posted: Wed Sep 13, 2006 11:42 am
by kfleming
To do this, you first need to create a text file using notepad or wordpad.__ __In this file you need the lines:__ __RI_REPORT=C:
eportsmyreport.rrw__RI_PRINTER =A__RI_OUTFILE=C:
eportsmyoutput.txt__ __RI_REPORT is set to the report you wish to run.__RP_PRINTER as A sets the report output to an ASCII text file.__RI_OUTFILE is the output file that will be created when the report is run.__ __Once you have the file created, you then put this on the runtime command line. So if your text file is c:
eportsinput.txt, your command line would be:__ __"c:program filesReportWorks
rwrun.exe" /T"c:
eportsinput.txt"__ __leave a space before the /T and then put the text file path/name immediately after the T.__It is a good idea to use quotes around the file names.__