Hercules/MVS (card image exceeds maximum 80)

Finally solved a nagging Hercules/MVS problem that has had me stumped for days (card image exceeds maximum 80). After watching the YouTube video… “MVS 3.8 or z_OS – Installing and using the Assist Assembler – M17” which documents Jay Mosley’s Assist Assembler install procedure. I decided I wanted to do the same with 1 exception…I …

Extract Jobs from Hercules local printer

It is so much easier to look at MVS Job output locally on Linux (taking into account the choices of tools and editors available) than on the TSO, 80 column 3270 terminal. If you specify MSGCLASS=A in your JCL your output gets sent to the Hercules local prt subdirectory. However Hercules just appends each output …

COBOL review and a little Assembler

I guess I don’t remember COBOL as well as I thought, because when the below COBOL move statement gives me an error…it’s time for a review. 00032 05 WS-AMOUNT1 PIC 999.99.00033 05 WS-AMOUNT2 PIC 999.99.00080 MOVE WS-AMOUNT1 TO WS-AMOUNT2. 80 IKF4052I-E DNM=1-254 (NE) MAY NOT BE TARGET FIELD FOR DNM=1-225 (NE) IN MOVE STATEMENT, AND …