008D8FBA Field "<...>" from view cannot be used as a value. Explanation: Your statement tried to access data using the name of the field in the OCCURS clause of the definition of the view domain. You must use one of the names associated with the FROM clause to access data. For example, suppose your view domain is defined: DOMAIN PARTS_PUBLIC OF PART_S USING 01 PART_T OCCURS FOR PART_S WITH PART_SUPPORT = "FS". 03 PART_ID FROM PART_S. 03 PART_DESC FROM PART_S. 03 PART_PRICE FROM PART_S. ; The statement PRINT PART_T OF PARTS_PUBLIC will generate the NODATA error. User Action: Reenter the statement, giving the name of a valid field.