The 2-dimensional tables are not the problem. This is:
Code:
04 REC3-1 PIC X(80).
04 REC3-1 PIC X(80).
Note that you have two elements named 'REC3-1' in the same structure. The error message says this is not allowed unless they have the same type. In your copybook, they are both 'PIC X(80)', but the COBOL importer probably created a local type definition for each field, triggering this error.
The simple solution is to rename the second one to 'REC3-2'.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum