I'm developing a system in Cobol using screen section and I can't call a customer registration program when I select an option in the menu that I created in another program. I am using opencobol with GnuCOBOL compiler.
CALL "ANOTHER-PROGRAM"
USING BY CONTENT SUBMENU-IN-WS
CANCEL "ANOTHER-PROGRAM"
which I get this error:
libcob: module "ANOTHER-PROGRAM" not found.
How do I call another program in Cobol using opencobol? Do I need to use linkage section in the ANOTHER-PROGRAM
even than I will not use it?