Peter Farr wrote:
> I am trying to use the ARS Perl interface to extract some data from Remedy
> (v5 and v7). I will say up front that I am not extremely Remedy-literate.
> When I open some (many) forms using:
> 
> $f = new ARS::form(-form => $schema, -connection => $ars);
> 
> I get error 339 "Incorrect format for a diary field". Is there some way
> around this?
> 
> ARSPerl-1.90 on Linux 2.6. ars_APIVersion() tells me I am compiled against
> API version 7 on one system and version 9 on the other. I get the same
> message on either system.
> 



try

my $a = new ARS($server, $user, $pass);
my $f = $a->openForm($schema);
my @e = $f->query('1 = 1');
print join(', ', @e), "\n";




-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Arsperl-users mailing list
Arsperl-users@arsperl.org
https://lists.sourceforge.net/lists/listinfo/arsperl-users

Reply via email to