And unless there is a need to work with attributes rather than
values, eliminate the SWAP to get:
  CUST.NUM = IN.LINE<1,1>
  CUST.DESC = IN.LINE<1,2> 


> From: Joshua Gallant
> Try something like this instead:
> 
> LOOP
> REMOVE IN.LINE FROM IN.TAB SETTING MARK
>   SWAP @VM WITH @AM IN IN.LINE
>   CUST.NUM  = IN.LINE<1>
>   CUST.DESC = IN.LINE<2>
> WHILE MARK DO
> REPEAT
> 
> That will keep track of where you were in the array and pick up
where
> you left off.
-------
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

Reply via email to