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 off was your error which was saying it could find the
insert_grouped_field() subroutine in the main package, because it's in
the MARC::Field package.

//Ed

Reply via email to