Previous Topic: &AOMNMDOM

Next Topic: &AOMNRD


&AOMNMIN

A system variable that contains the number of minor lines in a multi-line WTO.

&AOMNMIN contains the number of minor lines in a multi-line WTO message when any line of the message is current. It is used as the upper bound in a loop that reads all the minor lines (using &AOMREAD MINOR=YES), or accesses minor lines using the &AOMMINLN built-in function.

Example: &AOMNMIN

&AOMREAD SET MINOR=NO 
&IF &AOMMAJOR = YES &THEN &DO
   &I = 1
   &DOWHILE &I LE &AOMNMIN
   &LINE&I = &AOMMINLN &I
   &I = &I + 1   &DOEND 
&DOEND
 .
 .
 .

Note: This system variable is null when the current message is not part of a multi-line WTO.

More information:

&AOMREAD

&AOMMINLN

&AOMMINLT