unstring 文がdelimited 句なしで指定されました。
 
	 マネージ COBOL では、文字列オブジェクトを参照する際に
delimited 句を指定する必要があります。
		  
01 prodname string value "Micro Focus - Visual COBOL".
01 compname string.
unstring prodname into compname                  *> incorrect
unstring prodname delimited by "-" into compname *> correct