[ic] data tag in UserTag

Mike Heins mike at perusion.com
Wed Nov 5 18:03:58 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');


-- 
Mike Heins
Perusion -- Expert Interchange Consulting    http://www.perusion.com/
phone +1.513.523.7621      <mike at perusion.com>

Friends don't let friends use Outlook. -- Bob Blaylock

-- 
Mike Heins
Perusion -- Expert Interchange Consulting    http://www.perusion.com/
phone +1.513.523.7621      <mike at perusion.com>

Friends don't let friends use Outlook. -- Bob Blaylock


More information about the interchange-users mailing list