Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rthiele84

    UNIX 198 "Load Error" with dynamically called MF COBOL subprogram

    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...
  2. rthiele84

    UNIX 198 "Load Error" with dynamically called MF COBOL subprogram

    jmanj Can you reply back and let me know if this is the change you are suggesting? Thanks
  3. rthiele84

    UNIX 198 "Load Error" with dynamically called MF COBOL subprogram

    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...
  4. rthiele84

    UNIX 198 "Load Error" with dynamically called MF COBOL subprogram

    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...
  5. rthiele84

    Search and Replace using wildcards

    Thank you for the help feherke! Its just what I was looking for.
  6. rthiele84

    Search and Replace using wildcards

    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...
  7. rthiele84

    UNIX 198 "Load Error" with dynamically called MF COBOL subprogram

    Would changing the Call of DATECONV from a Dynamic to a Static call fix the problem? This program is very stable and rarely changes.
  8. rthiele84

    UNIX 198 "Load Error" with dynamically called MF COBOL subprogram

    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...

Part and Inventory Search

Back
Top