Re: problem with insert_grouped_field

2003-07-03 Thread Ed Summers
On Thu, Jul 03, 2003 at 10:25:57AM -0500, Anne Highsmith wrote: > Thanks. I don't think there's an example of how to use > insert_grouped_field in any of the doc; I was wrong, it's from the MARC::Record package not MARC::Field :-) http://marcpm.sourceforge.net/MARC/Record.html The MARC:

Re: problem with insert_grouped_field

2003-07-03 Thread Ed Summers
On Thu, Jul 03, 2003 at 09:59:41AM -0500, Anne Highsmith wrote: > insert_grouped_field($new_field); insert_grouped_field() is a object method, so you'll need to call it using the record object that you want to add the field to: $record->insert_grouped_field( $new_field ); The tip

problem with insert_grouped_field

2003-07-03 Thread Anne Highsmith
I am having trouble using insert_grouped_field(). The code below returns a "Undefined subroutine &main::insert_grouped_field called at ./test line 11." As you can see from the code, I am testing for the version of the perl module I'm using and the program prints out the VERSION as 1.29. Suggestions