Skip to content

PavelKondratiev/devops_mf_test

Repository files navigation

Sample COBOL, PL/I, and HLASM files for Devops as a Service project

This repository provides sample COBOL, PL/I, and HLASM programs, along with JCL and data files to compile and run them.

The sample applications consist of the following files:

COBOL Examples

  • COBOL programs: SAM1 and SAM2
  • COPYBOOKS: CUSTCOPY and TRANREC
  • Data source files: DEVASS.TESTPROG.INPUT.COBOL.CUSTFILE (CUSTFILE) and DEVASS.TESTPROG.INPUT.COBOL.CUSTFILE (TRANFILE)
  • JCL members that set up and run the application: COBOLALL, COBOLBLD and COBOLRUN.
    • Please Note - the JCL files are to be used as templates, you may need to update the compiler library name and you will need to update the HLQ parm with your TSO user id

SAM1 reads in both the CUSTFILE and TRANFILE data files, then performs different actions on the *.CUSTFILE based on transactions from TRANFILE. Valid transactions are ADD, UPDATE, and DELETE. When an UPDATE transaction is processed, SAM1 calls SAM2 to perform the requested update. At the end of processing the TRANFILE, SAM1 generates a report on the transactions processed and produces an updated CUSTFILE.

SAM2 also includes some base code in place for CRUNCH transactions which are mentioned in the Use Case below.

The COBOLALL file will allocate the necessary data sets on the MVS host that need to be in place prior to further actions. The COBOLBLD will compile and link-edit the program. The COBOLRUN will run the program.

The files created with the COBOLALL are:

<HLQ>.OBJ
<HLQ>.LOAD

The application creates a new output DVASS.TESTPROG.INPUT.COBOL.CUSTFILE and produces a customer report in DVASS.TESTPROG.INPUT.COBOL.CUSTRPT.

A Sample COBOL Use Case

The repository for these example files also has another branch called Tutorial-Complete which contains files that are the result of the following use case. Using VS Code's GIT capabilities, you can switch branches to Tutorial-Complete where you will notice some new files.

A sample use case might be that you have received requirements to enhance the Daily Customer File Update Report to include the total number of customers as well as information regarding "Crunch" transactions. A "Crunch" transaction is a request to calculate the average monthly order revenue for a specific customer. The current daily report simply displays the first 80 bytes of each transaction record as well as total counts for each type of transaction.

In looking at the files, you will notice a new COPYBOOK, SAM2PARM, which was created to contain the parameters necessary for SAM1.cbl to pass to SAM2.cbl in order to process a new transaction type. There is also a new TRANFILE which contains a record for the new CRUNCH transaction.

PL/I Examples

  • PL/I programs: PSAM1 and PSAM2
  • INCLUDES: BALSTATS and CUSTPLI
  • Data source files: DEVASS.TESTPROG.INPUT.PLI.TRANFILE (TRANFILE) and DEVASS.TESTPROG.INPUT.PLI.CUSTFILE (CUSTFILE)
  • JCL members that set up and run the application: PLIALL, PLIBLD and PLIRUN.
    • Please Note - the JCL files are to used as templates, you may need to update the compiler library name and you will need to update the HLQ parm with your TSO user id

PSAM1 reads in both the CUSTFILE and TRANFILE data files, then produces a report with customer information and a Totals summary section. Valid transactions are PRINT and TOTALS. A PRINT transaction prints the Customer records to the Customer section of the report. When PSAM1 reads in a TOTALS transaction, it generates the Totals Report section.

PSAM2 generates running totals from amounts passed in from PSAM1.

The PLIALL file will allocate the necessary data sets on the MVS host that need to be in place prior to further actions. The PLIBLD will compile and link-edit the program. The PLIRUN will run the program.

The files created with the PLIALL are:

<HLQ>.PLI.PLIOBJ
<HLQ>.PLI.PLILOAD

The application creates a report, DEVASS.TESTPROG.OUTPUT.PLI.CUSTRPT.

A Sample PL/I Use Case

A sample use case for the PL/I programs might be that PSAM1 needs to process a new type of Customer record called a Product record and generate a new line for Service Calls in the Totals Report section. You could accomplish this by creating a new program, PSAM3 to process these new records and produce the product statistics needed on the report.

Again, in the Tutorial-Complete branch, notice the new program PSAM3, the new Include PRODSTATS which is used for the data being passed between PSAM1 and PSAM3.

HLASM Examples

  • HLASM programs: ASAM1, ASAM2, and IRR@XACS
    • IRR@XACS is included to provide a better example for the Outline View, it can be found in the SYS1.SAMPLIB on the z host
  • Copybook: REGISTRS
  • Data source file: DEVASS.TESTPROG.INPUT.ASM.FILEIN (FILEIN)
  • JCL members that set up and run the application: ASSEMALL, ASSEMBLD and ASSEMRUN.
    • Please Note - the JCL files are to used as templates, you may need to update the compiler library, the z/OS Macro library, the Assembler Macro library, and the Assembler Modgen library names. You will also need to update the HLQ parm with your TSO user id

ASAM1 reads in a record from the FILEIN dataset. It will then write it to the output file DEVASS.TESTPROG.OUTPUT.ASM.FILEOUT as well as the record number and column number records.

The ASSEMALL file will allocate the necessary data sets on the MVS host that need to be in place prior to further actions. The ASSEMBLD will compile and link-edit the program. The ASSEMRUN will run the program.

The libraries created with the ASSEMALL are:

<HLQ>.ASM.OBJ
<HLQ>.ASM.LOAD

The application creates a file, DEVASS.TESTPROG.OUTPUT.ASM.FILEOUT.

A Sample HLASM Use Case

A sample use case for the ASM programs might be that ASAM1 needs to also write the character string in hexadecimal format. You could accomplish this by creating a new program, ASAM2 to translate the string into hex format and return to ASAM1.

ASAM2 can be found in the Tutorial-Complete branch as well as an updated ASAM1 with the necessary code to complete the use case.

About

Test repository for DVASS project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages