| 
	END 
 
	The END statement terminates the ILF routine that it is contained in, and returns control to APPX. 
	  ?????   END(1)
 
	(1) T/F execution conditions 
	Using the Statement 
	Although an END statement can be used at any point in the ILF routine, it is not necessary at the end of an event point. 
	Related Statements 
	CANCEL, END PROC, EXIT, LOGOUT 
	Example 
	In this example, if the customer has a zero balance, the ILF routine terminates and control is returned to APPX.  
	         IF   TAR CUSTOMER BALANCE         EQ 0 T      END
 |