You do not call .CBL programs, you call the compiled programs as either .INT, .GNT or .DLLs depending on the compile options that you are using. If you have a main .EXE which issue the call statement: CALL 'DATE-TIME' USING ... It would be looking for a program called DATE-TIME.int, DATE-TIME.gnt or DATE-TIME.dll in the same folder as the main .EXE. If it is in a different location then you would need to point to that folder by setting COBPATH. What is the name of your subprogram as it resides on disk?
↧