[Arsperl-users] FieldID ?
Brought to you by:
jeffmurphy
|
From: Paul W. <pwi...@cs...> - 2008-09-02 05:02:36
|
I'm triying to find the best API to retireve fields from a couple of Forms I've copied the example for (ars_GetListEntryWithFields) : http://www.arsperl.org/manual/ars_GetListEntryWithFields.html but its failing as follows: ARSperl-1.82: $ perl -Iblib/arch -Iblib/lib dump_tt.pl Undefined subroutine &main::FieldID called at dump_tt.pl line 46. Here is my snipet of code: ( @entries = ars_GetListEntryWithFields( $ctrl, $SCHEMA, $qual, 20, [ FieldID("Trouble Ticket #"), FieldID("Short Description"), FieldID("Business Support Group"), FieldID("Client Company Name"), FieldID("Create date") ], FieldID("Create date"), 1 ) ) || die( "GLEWF Failed: $ars_errstr" ); Is FieldID apart of ARSPerl or inbuilt in another Perl module? Thanks Paul |