Search found 97 matches

by zum13
Mon Jan 22, 2024 8:25 pm
Forum: Ask for Job Guidance and referrals here.
Topic: ways to practice COBOL, JCL, VSAM, DB2 & CICS in any emulator for free?
Replies: 9
Views: 2572

Re: ways to practice COBOL, JCL, VSAM, DB2 & CICS in any emulator for free?

I think ZD&T is a paid service, not free. I knew someone would point that out! Yes, I did list services that require payment. The ZD&T Learner's edition, if it were available right now, would be the cheapest option if it maintained its previous pricing of 120USD, but other than IBM's Zxplor...
by zum13
Mon Jan 22, 2024 8:10 pm
Forum: Ask for Job Guidance and referrals here.
Topic: ways to practice COBOL, JCL, VSAM, DB2 & CICS in any emulator for free?
Replies: 9
Views: 2572

Re: ways to practice COBOL, JCL, VSAM, DB2 & CICS in any emulator for free?

How easy it for someone to install Hercules? If one has never done it before. Probably the easiest way to install it is through what are called the "Turnkey" systems. These consist of the emulator software and a pre-installed copy of MVS 3.8j so it should just be a matter of copying the r...
by zum13
Thu Jan 18, 2024 7:58 am
Forum: TSO, ISPF & REXX (Do you still do CLIST?!).
Topic: attribute of VSAM in REXX
Replies: 5
Views: 1053

Re: attribute of VSAM in REXX

Hello. Assuming that you have no nice REXX add-on function packages to play with that will allow you to get the information more easily, you can trap the output of the TSO "LISTCAT" command. For example, this will pull the value of "KEYLEN": /*REXX*/ Call OutTrap "OUTPUT.&qu...
by zum13
Wed Jan 17, 2024 11:33 pm
Forum: Ask for Job Guidance and referrals here.
Topic: ways to practice COBOL, JCL, VSAM, DB2 & CICS in any emulator for free?
Replies: 9
Views: 2572

Re: ways to practice COBOL, JCL, VSAM, DB2 & CICS in any emulator for free?

It has occurred to me to suggest non-mainframe versions of some of these products. IBM did produce a version of CICS for OS/2 along with a version of DB2 and the VisualAge COBOL compiler. All have long since falled out of production and support. Now this is of questionable legality, but those produc...
by zum13
Wed Jan 17, 2024 10:58 pm
Forum: Ask for Job Guidance and referrals here.
Topic: forced to replace a person who has 7 years of experience whereas I only have 2 years
Replies: 1
Views: 667

Re: forced to replace a person who has 7 years of experience whereas I only have 2 years

Hello. If this is one of those no choice situations, then yes, look on this as something you can learn from. As a subcontractor, I've had to jump in to new systems repeatedly over the years and it does take a little time to get accustomed to each system and it's particular foibles, but it does ease ...
by zum13
Wed Jan 17, 2024 10:48 pm
Forum: JCL - Job Control Language.
Topic: JCL steps are not executing.
Replies: 1
Views: 868

Re: JCL steps are not executing.

Hello. If the job is not ending with an error or abend, then the most likely reason would be down to condition code checks. These will take the form of the "COND" parameter on the "EXEC" statement or steps being enclosed within "IF ... ENDIF" statements. The reason for ...
by zum13
Sat Jan 13, 2024 4:02 am
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: compile error IGYDS1145-S
Replies: 1
Views: 918

Re: compile error IGYDS1145-S

Hello. The COBOL standards specified a maximum numeric length of 18 digits. By default, the compiler is configured to enforce this limit which is where the message is coming from. The IBM compiler does have the facility to override this if the "ARITH" option is specified. The default is &q...
by zum13
Fri Dec 29, 2023 8:11 pm
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: Setting up JNI for calling Java from COBOL on z/OS
Replies: 14
Views: 4799

Re: Setting up JNI for calling Java from COBOL on z/OS

The "FindClass" function does return an exception, but you need to explicitly call the exception's "printStackTrace" method in order to get the output for it. However, first things first; what does your working storage look like?
by zum13
Thu Dec 28, 2023 12:22 am
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: how to convert Gregorian date to julian date in cobol?
Replies: 1
Views: 1176

Re: how to convert Gregorian date to julian date in cobol?

Hello.

You've got the answer already. The code you've clipped will do the job!
by zum13
Thu Dec 28, 2023 12:12 am
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: What is IBM's mainframe division?
Replies: 1
Views: 1655

Re: What is IBM's mainframe division?

Hello.

They most certainly do. It can be found in Poughkeepsie, New York.
by zum13
Wed Dec 27, 2023 11:57 pm
Forum: Interview Questions.
Topic: Compress a PDS.
Replies: 1
Views: 1162

Re: Compress a PDS.

Hello. As far as I'm aware, there isn't really a way around it. If you've used the primary and all the secondary extents or all the entries in the directory then you need to change the allocation information and the only way around that is the reallocate/copy/delete/rename method. One possible alter...
by zum13
Wed Dec 27, 2023 11:32 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: What a CSECT?
Replies: 1
Views: 1351

Re: What a CSECT?

Hello. A CSECT is a code section within a program. With high level languages it's not something that's really visible, but with an assembler program you need to specify one in which to write your code and its associated data. Generally, you'll only write one within a program, but there are situation...
by zum13
Wed Dec 27, 2023 11:18 pm
Forum: Ask for Job Guidance and referrals here.
Topic: ways to practice COBOL, JCL, VSAM, DB2 & CICS in any emulator for free?
Replies: 9
Views: 2572

Re: ways to practice COBOL, JCL, VSAM, DB2 & CICS in any emulator for free?

Hello. IBM did put out a version of the ZD&T package called the "ZD&T Learner's Edition" for a while. It was basically IBM's emulator along with the ADCD distribution of z/OS for which they were charging 120USD a year. The trouble is, it was only available in the US, and they have ...
by zum13
Wed Dec 13, 2023 6:45 pm
Forum: Testing Tools, Mainframe Application Testing, Abends Solution & QA.
Topic: edit in tracing in CICS
Replies: 6
Views: 5904

Re: edit in tracing in CICS

Haven't seen that one since around 1997! Page 5-11 of the Xpediter/TSO COBOL User Guide has a section on "Displaying and Modifying Program Variables". There's reference to a "PEEK" command that seems to suggest that the values can just be overtyped. It's a bit difficult for me to...
by zum13
Wed Dec 13, 2023 6:12 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: Error space issue : 0E37.
Replies: 1
Views: 2673

Re: Error space issue : 0E37.

Hello. An E37 abend usually indicates that the dataset needs to be extended but there is no space available on the volume. The dataset name you've given implies that this may belong to a running instance of TCP/IP; if that's the case, you won't be able to reallocate it until it's shut down. One alte...
by zum13
Thu Dec 07, 2023 8:41 pm
Forum: Testing Tools, Mainframe Application Testing, Abends Solution & QA.
Topic: edit in tracing in CICS
Replies: 6
Views: 5904

Re: edit in tracing in CICS

Hello. I'm presuming that you're using some sort of debugging software, in which case most of the ones that I have come across (both mainframe and non-mainframe) have the facility to alter the current in-storage data. How you do that will depend upon which debugger you are using. I've certainly done...
by zum13
Mon Nov 27, 2023 3:11 am
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: Setting up JNI for calling Java from COBOL on z/OS
Replies: 14
Views: 4799

Re: Setting up JNI for calling Java from COBOL on z/OS

The linkage editor can read from USS, it's just a matter of providing the appropriate "INCLUDE" statements. I've managed to dig out a rather old example of linking a JNI program from my brief period of tinkering with it several years ago: INCLUDE NCAL(TESTPROG) INCLUDE '/usr/lpp/java/IBM/J...
by zum13
Thu Nov 23, 2023 9:03 pm
Forum: JCL - Job Control Language.
Topic: IEBCOPY handling.
Replies: 3
Views: 2324

Re: IEBCOPY handling.

Hello.

It should just issue a warning like this for the members that weren't found

Code: Select all

IEB177I <member> WAS SELECTED BUT NOT FOUND IN ANY INPUT DATA SET
and give you condition code 4. The rest of the selected members (where they exist) should have been copied.
by zum13
Thu Nov 23, 2023 8:44 pm
Forum: Interview Questions.
Topic: JOB CLASS and priority question.
Replies: 1
Views: 2883

Re: JOB CLASS and priority question.

Hello. What controls when a job can run is the availability of a free initiator. The PRTY option is a way of prioritising which job gets the next free initiator. Who submitted the job doesn't come into the decision making, although it should be noted that the running job names need to be unique and ...
by zum13
Wed Nov 22, 2023 9:49 pm
Forum: Other Mainframe Topics, Off-Topics, FAQs.
Topic: S906 abend in mainframe
Replies: 4
Views: 3017

Re: S906 abend in mainframe

MVS abend codes can be found in the manual entitled "z/OS MVS System Codes". The "S" prefix indicates a system completion code.

https://www.ibm.com/docs/en/zos/3.1.0?topic=codes-906

Go to advanced search