So it sounds like I don't need the CALL "SYSTEM". I'm doing what you have stated above. The COBPATH is pointing to the correct directory of my subprogram DATECONV.gnt. The Driver programs and subprograms are all MF COBOL. I've linked it dynamically and statically and either way I still go...
Thanks jmanj,
So for my example, my call was originally:
01 DATECONV PIC X(08) VALUE 'DATECONV'.
CALL DATECONV USING WS-DATE-FIELDS.
You are saying I should change it to:
INITIALIZE CALLSWS-CMD-STRING.
STRING "CALL_mail.ksh"
DELIMITED BY SIZE
INTO...
I changed the call of the subprogram from dynamic to static by changing the call from
01 DATECONV PIC X(08) VALUE 'DATECONV'.
CALL DATECONV USING......
to
CALL 'DATECONV' USING......
I'm still getting the same load error as before. Anyone have any ideas on what may be the...
I'm trying to do a search and replace of multiple files. I'm searching for the pattern:
CALL xxxxxxxx
Where xxxxxxxx can be anything
And I want to replace with
CALL 'xxxxxxxx'
The are always 8 characters in the called program, so just trying to figure out what I can use as a wildcard...
When running our UNIX job scripts we randomly get the following 198 error below. When we restart the job it works fine. The Driver and subprogram are both coded in MF COBOL and create a .gnt executable. I haven't been able to recreate the problem in test, so I'm wondering if it has something to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.