Hi there!
I would like to know, how to initialize a two dimensional table in COBOL. STATICALLY! Clearly, I could initialize it in a seperate section and fill the table with my prefferred values. But in fact, that the table should contain only error messages (those can not be changed with the program), it would be nice to do it somehow statically.
Is there a way in COBOL to do that? My first choice would be to initialize it through the 'VALUE' clause. But I don't know if that is the correct way of doing it.
What do you think about?