[ic] data tag in UserTag

Grant listbox at email.com
Wed Nov 5 15:47:06 EST 2003


> Quoting Rene Hertell (interchange-users at hertell.com):
> > > It looks like the following line is fouling up my UserTag.  What can I
> > > change it to so it will work properly?
> > >
> > > my $requestuserid = "$Tag->data( table => 'ebay_variable', field
> > > => 'value',
> > > key => 'user_id' )";
> >
> > Try:
> >
> > my $requestuserid = $Tag->data( table => 'ebay_variable', field
> => 'value',
> > key => 'user_id' );
>
> This will work better:
>
>     my $requestuserid = $Tag->data({
> 			 table => 'ebay_variable',
> 			 field => 'value',
> 			 key => 'user_id',
> 			});
>
>
> This also works:
>
>     my $requestuserid =  tag_data('ebay_variable', 'value', 'user_id');

I went with the above and it's working great.  Thanks to Mike, Rene, and
Paul for their help!

- Grant



More information about the interchange-users mailing list