Trouble launching Rev Reporter from script (OpenInsight Specific)
At 20 OCT 1998 08:04:21PM R. Bagley wrote:
Having trouble getting
x=Repository("EXECUTE","REPORTER.EXE /ap=APP /un=USER /pv=1")
to launch the reporter in 3.5.
??
At 21 OCT 1998 11:50AM Mike Ruane, WinWin Solutions Inc. wrote:
You seem to have combined two different functions in OI.
Repository will execute a repository item, which has a four part key of application*type*class*name.
The Utility function can be used to run executables.
try:
X=UTILITY('RUNWIN','REPORTER.EXE /AP=…..', 1)
Fill in the correct parameters.
Hope it helps-
Mike Ruane
At 21 OCT 1998 12:28PM R. Bagley wrote:
Mike,
Thanks that worked great!
Richard
At 21 OCT 1998 05:09PM R. Bagley wrote:
Mike,
What would be the correct way to call the reporter to open
an already created report and just go to the preview screen so
the person could look at it then print it?
At 21 OCT 1998 06:01PM Steve C. wrote:
Give this a try:
CMD_R=!REPORTER.EXE /AP=TEST_APP /UN=REPORTER /PW=REPORTER /RP=FB_APPROVED.RPT /PV=1 /QU=1"
TEMP=SET_PROPERTY("SYSTEM","IDLEPROC",CMD_R)
At 22 OCT 1998 09:35AM DSig (SigSolutions) wrote:
Steve,
1) Why use the 'setproperty' instead of the Repository or Utility Function? What does this gain/lose?
DSig
David Tod Sigafoos ~ SigSolutions
dsig@teleport.com
At 22 OCT 1998 10:27AM Steve C. wrote:
David,
Look at this