shrivatsahosabettu/mainframeadventures 1
Me doing stuff on IBM mainframes (mainly MVS 3.8j TK4-)
shrivatsahosabettu/tk4-hercules 1
Hercules Mainframe Emulator Running The MVS 3.8j Tur(n)key 4- System
shrivatsahosabettu/abendanalysis 0
MVS 3.8 Abend Analysis Learning Material
One framework. Mobile & desktop.
shrivatsahosabettu/awesome-cheatsheets 0
📚 Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file.
MVS version of Vasilis Vlachoudis awesome rexx implementation
shrivatsahosabettu/cobol-programming-course 0
COBOL Programming Course
shrivatsahosabettu/coursera-test 0
Coursera Test Repository
Data Structure and Algorithms
All New HTML Learning
startedmoshix/XEDITcommands
started time in a day
issue commentIBM/IBM-Z-zOS
Problem with USERKEY_COMMON_AREA.TRS
@tdanekkb - In case you're interested @utkarsh-goswami uploaded a new terse file
https://github.com/IBM/IBM-Z-zOS/pull/146
comment created time in 4 days
push eventIBM/IBM-Z-zOS
commit sha cff2026715df848402e7a2524060186f7267cec6
Removed old TRS file
commit sha f5f5da9eda89ae72bedc732f850d034df9ba58c4
Adding the TRS file
commit sha 57bb6f23381fc58bfa78c4c98f497af16c88eaa3
Merge branch 'master' of https://github.com/IBM/IBM-Z-zOS
commit sha 45794f44351845e31af997f43ac2d5c07a1636d3
Merge pull request #146 from utkarsh-goswami/master Resolving Problem with USERKEY_COMMON_AREA.TRS #144
push time in 4 days
issue closedopenmainframeproject/cobol-programming-course
Feature: forward retcode to the output
Program:
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
PROCEDURE DIVISION.
DISPLAY "Hello!".
MOVE 1 TO RETURN-CODE.
STOP RUN.
END PROGRAM HELLO.
Now:
$ zowe jobs submit local-file hello.jcl --view-all-spool-content
...
Hello!
$ echo $?
0
$ zowe jobs submit local-file hello.jcl --wait-for-output --rff retcode --rft string | cut -d" " -f 2
0001
Proposal:
$ zowe jobs submit local-file hello.jcl --view-result-with-exit-code
Hello!
$ echo $?
1
Pros:
- get rid of retcode parsers in CI pipelines (see Zowe tutorials with CircleCI)
- single-line job submission with result and exit-code
closed time in 6 days
OlegKunitsynissue closedopenmainframeproject/cobol-programming-course
Feature: upload several files at once
Now:
$ zowe zos-files upload file-to-data-set a/aaa.cbl <USER ID>.CBL
$ zowe zos-files upload file-to-data-set b/bbb.cbl <USER ID>.CBL
Proposal:
$ zowe zos-files upload files-to-data-set a/aaa.cbl b/bbb.cbl <USER ID>.CBL
Pros:
- less code
- less upload time
closed time in 6 days
OlegKunitsynpush eventmvslovers/brexx370
commit sha 0af6da7e0e63a5c7011158975bfef483baffa5b3
added dereg2 function for debugging purposes
push time in 7 days
fork moshix/piping-server
Infinitely transfer between every device over pure HTTP: designed for everyone including people using Unix pipe and even for browser users
fork in 8 days
push eventmvslovers/brexx370
commit sha 1f1010796a7d7f0d7a03bbc6e63325289f0a9746
first rxnje impl
push time in 8 days
created repositorymoshix/OSVS1
the release 6.0 distribution libraries of IBM's OS/VS1 as assembled by M. Waterbury and K. Leonard
created time in 9 days
push eventIBM/IBM-Z-zOS
commit sha 2a0344b6c2c18031e35e3aecd2e276a9ab91d43c
Migrate from Tools & Toys repo
commit sha 9a17a35f72282c5ed521c08d26803913a872a907
Update licensing.
commit sha ae35f5d39c772f768e79479fc4b1f9df0baada4b
Update license text
commit sha 3f62383f12027205422c866f3a2b12cf389fd3c3
Update license text.
commit sha 6007a63891171e6a917093aaf1009bb63b64dc41
Update license text
commit sha a15eda080bfa9e498ba9053d62b439a506afddf6
Update license text
commit sha 2a2402cabea31799e011c43f630ba3a74bdb6024
Update license text
commit sha bb5e71001ca87d743d5c37bd7bbd3b4a1f18aa51
Trim prolog message.
commit sha dc7f865a6d34ed9a6ca3cb6980dab1504e92bab6
Update license text
commit sha 7e91e80acb3264a0543cc40b488ef194f5ca53be
Update license text
commit sha fd02776d04314f143022d8dd184ffab0ba91771c
Add license text.
commit sha 701073e6007beb69af89cd5fa721ae270a6b4fbf
Add license text
commit sha 08c1aeaa91188c45438a45c02d9248abce09e71f
Update license text
commit sha b354b28fca0f5db2ce2ebc022a05b9b517732419
Clean up formatting
commit sha 5c319a8ec72db842ae4710b3a410edf0e5124b42
Add license text
commit sha bb7e569cc4542cff77346c3b392a3c109a9d0c58
Add license text
commit sha debd92cd56a5f4d089845ef7c8a1ea8843acf988
Add license text
commit sha 7dad60963e518181579050119cae8dd00b4eabff
Add license text
commit sha 3c119d133c209f67f658961dad2cce0e68760512
Update license text & convert readmes to MD format
commit sha 6edb02b0b47d9c46237723342e5ed8f861c192b6
Update license & convert readme to MD format
push time in 9 days
Pull request review commentIBM/IBM-Z-zOS
Migrate Tools & Toys repo to z/OS official repo
+/** REXX **************************************************************+** **+** Copyright 1998-2020 IBM Corp. **+** **+** Licensed under the Apache License, Version 2.0 (the "License"); **+** you may not use this file except in compliance with the License. **+** You may obtain a copy of the License at **+** **+** http://www.apache.org/licenses/LICENSE-2.0 **+** **+** Unless required by applicable law or agreed to in writing, **+** software distributed under the License is distributed on an **+** "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, **+** either express or implied. See the License for the specific **+** language governing permissions and limitations under the **+** License. **+** **+** ----------------------------------------------------------------- **+** **+** Disclaimer of Warranties: **+** **+** The following enclosed code is sample code created by IBM **+** Corporation. This sample code is not part of any standard **+** IBM product and is provided to you solely for the purpose **+** of assisting you in the development of your applications. **+** The code is provided "AS IS", without warranty of any kind. **+** IBM shall not be liable for any damages arising out of your **+** use of the sample code, even if they have been advised of **+** the possibility of such damages. **+** **+** ----------------------------------------------------------------- **+** List colony address spaces **+** **+** COPYRIGHT IBM CORP. 1998 **
I assume this line should be removed since you already have a copyright above
comment created time in 9 days
push eventIBM/IBM-Z-zOS
commit sha d1a3e6933172f50ae58e8c24cdfcaa0deb6e05b5
Updated information in this education module This information is what is used in conference presentations and labs, and can be used to learn about deploying a software instance using z/OSMF, screen shot by screen shot.
push time in 9 days
push eventmvslovers/brexx370
commit sha 909437f3568e903f3bc8d9787071e6b55c616a5c
temp. added new nje functions
push time in 10 days
issue closedopenmainframeproject/cobol-programming-course
The course explains usage of 'D' without working example. Programming Guide Version 6.2 and googling did not help. hello.cbl:
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
PROCEDURE DIVISION.
DISPLAY 'Hello'.
D DISPLAY 'World'.
STOP RUN.
END PROGRAM HELLO.
hello.jcl:
//HELLO JOB 1,NOTIFY=&SYSUID
//COMPILE EXEC IGYWCL,PARM='TEST'
//CEEOPTS DD * DEBUG
//COBOL.SYSIN DD DSN=&SYSUID..CBL(HELLO),DISP=SHR
//LKED.SYSLMOD DD DSN=&SYSUID..LOAD(HELLO),DISP=SHR
// IF RC = 0 THEN
//RUN EXEC PGM=HELLO,PARM='TEST'
//CEEOPTS DD * DEBUG
//STEPLIB DD DSN=&SYSUID..LOAD,DISP=SHR
//PRTLINE DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//SYSDEBUG DD SYSOUT=*
//CEEDUMP DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
// ELSE
// ENDIF
displays Hello
only.
Which PARM
or/and CEEOPTS
will compile debug lines?
closed time in 10 days
OlegKunitsynissue commentopenmainframeproject/cobol-programming-course
Seems there is no JCL flags for that. Thank you for an idea!
comment created time in 10 days
issue commentopenmainframeproject/cobol-programming-course
@OlegKunitsyn I'm not sure. Maybe @paulnewt knows.
All I know is that the 'D' can serve as a comment/debug point. If I really need to debug my program, I use a different tool (e,g. Intertest)
comment created time in 10 days
issue commentIBM/IBM-Z-zOS
Problem with USERKEY_COMMON_AREA.TRS
I was not able to unterse the archive but I noticed that the code is in fact also included unpacked in this repo (as I was asking in this issue) - JCL_CODE.txt, REXX_CODE.txt.
comment created time in 11 days
issue commentIBM/IBM-Z-zOS
Problem with USERKEY_COMMON_AREA.TRS
@tdanekkb is this still an issue? I see you've closed it already.
If it's still an issue @utkarsh-goswami may be able to investigate
comment created time in 11 days
issue openedopenmainframeproject/cobol-programming-course
Feature: forward retcode to the output
Program:
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
PROCEDURE DIVISION.
DISPLAY "Hello!".
MOVE 1 TO RETURN-CODE.
STOP RUN.
END PROGRAM HELLO.
Now:
$ zowe jobs submit local-file hello.jcl --view-all-spool-content
...
Hello!
$ echo $?
0
$ zowe jobs submit local-file hello.jcl --wait-for-output --rff retcode --rft string | cut -d" " -f 2
0001
Proposal:
$ zowe jobs submit local-file hello.jcl --view-result-with-exit-code
Hello!
$ echo $?
1
Pros:
- get rid of retcode parsers in CI pipelines (see Zowe tutorials with CircleCI)
- single-line job submission with result and exit-code
created time in 12 days
issue openedopenmainframeproject/cobol-programming-course
Feature: upload several files at once
Now:
$ zowe zos-files upload file-to-data-set a/aaa.cbl <USER ID>.CBL
$ zowe zos-files upload file-to-data-set b/bbb.cbl <USER ID>.CBL
Proposal:
$ zowe zos-files upload files-to-data-set a/aaa.cbl b/bbb.cbl <USER ID>.CBL
Pros:
- less code
- less upload time
created time in 12 days
issue commentopenmainframeproject/cobol-programming-course
Yes, I'm aware of the solution on COBOL-level which enables debugging in particular program. Is there a way to enable debugging mode compiling all sub-programs and included libraries without changing all the source-code?
comment created time in 12 days
issue commentopenmainframeproject/cobol-programming-course
@OlegKunitsyn Add WITH DEBUGGING MODE in SOURCE-COMPUTER.
https://www.ibm.com/support/knowledgecenter/SSQ2R2_9.1.1/com.ibm.ent.cbl.zos.doc/PGandLR/ref/rlconsou.html
comment created time in 13 days
push eventmvslovers/brexx370
commit sha 5a0da69d9eada0b7b7fb8971d2a448ec49c8ae8c
STEMHI: straighten coding
push time in 13 days
issue closedmvslovers/brexx370
I like to see the sysnode name be available.
Network node name of the installation's JES
closed time in 13 days
JohanD66