callback a saved list in SYSLISTS with RBUILDER (None Specified)
At 21 JUL 1999 10:36:56AM Celest Celest wrote:
Hi
I are having problems using saved lists with RBUILDER report.
This is the code I use. In SYSLISTS is the record TEST with 10 keys devided by @fm (as normal)
What am I doing wrong ?
$insert rlist_equates
rlist(
,TARGET_CALLBACK$,'TEST',
,) rep=Repository('EXECUTE','TEST*OIREPORT*RBLAYOUT*RB_TEST',
,1)Regards
Celest
At 22 JUL 1999 11:12AM Chris Revelation wrote:
Celest -
This is the code that I have used in the past to save a list to SYSLISTS, then create a report based on that list:
RLIST("SELECT TableName WITH Field EQ "X" , 4 ,"TestList"," "," ")
where "TableName" is the name of the table you are using, "Field" is the field you are checking, and "X" is the value of that field. For example, the following line would save the fields that contain the LastName of "Smith" to SYSLISTS:
RLIST("SELECT MyTable WITH LastName EQ "Smith" , 4 ,"TestList"," "," ")
I use the UTILITY function to call Reporter and display the report. The code I use to do this would be:
RetVal=UTILITY("RUNWIN",".\REPORTER.EXE /AP=AppName /UN=UserNAme /PW=Password /PV=1 /RP=TestPerport.RPT /RE=1 /SEL=GETLIST TestList")
Where "AppName" and "UserName" are the application and user names, and "Password" is the password for the application, if any. "TestList" is the list you are saving to SYSLISTS.
Try this and let me know how it goes.
-Chris
Revelation Software
At 23 JUL 1999 05:11AM Celest Celest wrote:
OK Chris, thanks for answering
Thats for Report Designer and it works, I know.
But the problem was with Report Builder
Regards
Celest
At 23 JUL 1999 07:45AM Cameron Purdy wrote:
rlist(
,TARGET_CALLBACK$,'TEST',
,'')Don't you want to use Activate_Save_Select?
Cameron Purdy
Revelation Software