$PUTLINE Prints the current line constructed by $PRINTFIELD. (C) Invocation CALL $PUTLINE Usage Notes • Format the printline using $PRINTFIELD. • When the line is printed, subsequent calls to $PRINTFIELD construct a new line. Exceptions LOGLIMIT Too much output is sent to the message log. ROUTINEFAIL $PUTLINE is not preceded by a call to $RESETPRINT or $SETPRINT. Example The following rule constructs a string using $PRINTFIELD and then prints it to the message log: PUTLINE_1; _ _ ------------------------------------------------------------------------ _ ------------------------------------------------------------+----------- _ CALL $SETPRINT(10, 70, 1, 'SCR', 'N'); | 1 _ CALL $PRINTFIELD( | 2 _ 'THIS LINE IS PRINTED TO THE MESSAGE LOG', 1, 70, '*', | _ 'C'); | _ CALL $PUTLINE; | 3 _ ------------------------------------------------------------------------ Resulting Output Pressing PF2 after executing this rule displays the following screen: ------------------------- INFORMATIONAL MESSAGE LOG ----------------- COMMAND ===> SCROLL ===> P ------------------------------ NEW PAGE ------------------------------ Page 1 ***************THIS LINE IS PRINTED TO THE MESSAGE LOG****************