RLIST question (OpenInsight 32-bit Specific)
At 20 SEP 2003 05:27:06PM Dave Berkovsky wrote:
For some unknown to me reason I can not get RLIST to work.
After following code I get "INVALID TARGET TYPE: 5"
returned by get_status().
Any ideas what is wrong?
$insert RList_Equates
status=Set_Status (0)
CMD=SELECT CUSTOMERS"
Rlist (CMD , TARGET_ACTIVELIST$,
,
, '')status=get_status(status_code)
if status then
x=msg(@window,"Rlist failed." : @tm : status_code)returnend
TIA
Dave
At 20 SEP 2003 06:59PM Don Miller - C3 Inc. wrote:
Looks as though you have one parameter too many in the command line. It allows for 5 and you show 6 (or are my eyes decieving me).
Don M.
At 20 SEP 2003 08:12PM Richard Bright wrote:
Yes. There is only 5 paramaters - as required.
I cut and pasted the code into a SSP and it compiles and runs just fine. Producing a latent select list.
The insert is being correctly picked up from the error code ie
EQU TARGET_ACTIVELIST$ TO 5
So looks like the RList routine is trashed? How about doing an LH_Verify on the system.
Richard Bright
BrightIdeas New Zealand
At 20 SEP 2003 08:31PM Dave Berkovsky wrote:
Richard,
What do you mean by LH_Verify on system?
Which tables?
Thanks,
Dave
At 21 SEP 2003 02:51AM Barry Stevens wrote:
You could have a GFE in file CUSTOMERS.
Verify the table via DataBase manager menus.
At 21 SEP 2003 03:57PM Jonathan Bird wrote:
Open OI in the SYSPROG application, go into DATABASE MANAGER and select the LH verify option. Select ALL the tables in the selection box, and then hit the verify button.
J
At 23 SEP 2003 10:01AM Dave Berkovsky wrote:
Thank you all