Re: [Arsperl-users] Incorrect format for a diary field
Brought to you by:
jeffmurphy
|
From: Jeff M. <jcm...@je...> - 2007-07-31 18:39:50
|
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";
|