On Fri, 2 Apr 2004 14:54:14 -0800 , you wrote:

>>LIST CUST EVAL "@1+1" CUST.NAME
>
>Well OK, I'll 'fess up to being clueless... what is @1? Why does this work?
>(running UV 9.6.1.3). What other @ variables are left out of my docs?

The most common use I've  found for @1, @2, etc are within very
complex I-Types, where statements are separated by semi-colons.  @1
refers to the determined value of the first statement, @2 to the
second, etc.

What follows is an off the cuff example, meant merely to demonstrate
the concept...

<0> TAXABLE.YN
<1> I
<2> IF (STATE EQ "CT" "MA" "RI") THEN 10 ELSE 0; IF (JOB.CODE EQ 12)
THEN 0 ELSE @1; IF (@2 GT 0) THEN "Y" ELSE "N"

-- 
Allen Egerton
[EMAIL PROTECTED]
--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users

Reply via email to