I have a Native COBOL program which opens two files, with similar structures, where the field name of the 01 level is the same.
For example
FD FILE1.
01 NAME.
02 TITLE.
02 AGE.
FD FILE2.
01 NAME.
02 TITLE.
In Inspect on G-series, I could display using
"Display file1.name.title" or just "display file1" would display the complete structure
In einspect on J-series though I am getting
No symbol FILE1 in current context on giving "PRINT FILE1"
PRINT "file1.name.title" gives
Reference to NAME is not unique.
Add more qualification to disambiguate the reference.
Any way to correctly find & reference
file1.name versus
fil2.name in einspect for cobol programs