python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Message MCH1202 in PROGRAM in LIBRARY (C D F G)
I get MCH1202 message when calling program CALCULADOR.
But I've tried to change the precision of type data, but remains the same message.
I'm novice in learning of cobol and IBMi, and I don't know how...
reymagnus
Votes: 0
Answers: 3
z/OS COBOL V6 calling a DLL
I am primarily a C developer. I have a sample COBOL driver that calls my C DLL in z/OS.
The COBOL driver was working fine in z/OS COBOL V4 when we used the Pre-Linker and IMPORT statements to define t...
Ed Danley
Votes: 0
Answers: 1
Single source for IBM i and z/OS
I am primarily a C developer, not a regular COBOL developer. I would like my COBOL program to have the same source on IBM-i as it does on z/OS.
My COBOL program calls a subroutine. On z/OS I do the ca...
Ed Danley
Votes: 0
Answers: 3
How to Remove Leading and Trailing spaces in COBOL
05 WS-IN-MRKT-TYPE PIC X(20).
05 WS-OUT-MRKT-TYPE PIC X(20).
Procedure Divison
Move Function Trim(WS-IN-MRKT-TYPE) TO WS-OUT-MRKT-TYPE
Move WS-OUT-MRKT-TYPE to OUTPUT File.
Here Trim function is...
Yasaswini Yerra
Votes: 0
Answers: 0