SlideShare una empresa de Scribd logo
1 de 7
COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES                                   Page 1 of 7



   COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES
                          June 1, 1979

                                           CONTENTS

1. INTRODUCTION

2. IDENTIFYING THE ERROR CODE

2.1. COMMONLY OCCURRING ABEND CODES

      ABEND CODE 013
      ABEND CODE 0C1
      ABEND CODE 0C4
      ABEND CODE 0C5
      ABEND CODE 0C7
      ABEND CODE 106
      ABEND CODE 213
      ABEND CODE 222
      ABEND CODE 2F3
      ABEND CODE 322
      ABEND CODE 613
      ABEND CODE 722
      ABEND CODE 804
      ABEND CODE 806
      ABEND CODE 80A
      ABEND CODE 813
      ABEND CODE 913
      ABEND CODE A13
      ABEND CODE B37
      ABEND CODE D37
      ABEND CODE E37



                                       1. INTRODUCTION

Interpretation of IBM operating system error codes and messages can be tedious and
frustrating. Many times the appropriate manuals are not readily available for the user's access.
If the manuals are available, the error description and corrective procedure are often
impossible to interpret. A list of the errors most commonly encountered at the CIS Technical
Support Department with a brief understandable description of their meaning and a suggested
procedure for correcting the error is given below.

                              2. IDENTIFYING THE ERROR CODE

Identifying the error code is the first step in the process. The first page or pages of the printed
output generated by a job is the JES3 job log or JESMSG dataset. This is a chronological
listing that specifies JES3 and system operator messages issued during processing of your
job. If your job abended (ABnormally ENDed), a message near the end of JESMSG will



http://www.eits.uga.edu/hostsys/mvs/ibm-mainframe-system-abend-codes.html                  5/12/2010
COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES                                    Page 2 of 7



appear, resembling:

hh.mm.ss SYS2 R=IEF450I jobname procname stepname-ABEND Snnn Ummmm
-
          TIME=hh.mm.ss

The characters "IEF450I" are a message identifier code which can be looked up in the "IBM
OS/VS Message Library: VS2 System Messages" manual for a description of the message.
The actual jobname, procedure name, and stepname for your job will appear in the indicated
locations in the message. The "Snnn" and "Ummmm" identify the more helpful parts of the
message. The "Snnn" is a code denoting a SYSTEM abend. These codes can be found in the
"IBM OS/VS Message Library: VS2 System Codes" manual. The "Ummmm" is a code
denoting a USER abend. These codes will vary from one user's program to another, therefore
these will not be discussed.

Following the JES3 joblog will be a print file referred to as JESJCL. This is a list that specifies
JCL and any additional job control statements from included procedures.

The next section of output is referred to as the SYSMSG dataset. Within this file all system
messages will be printed which will include a more descriptive message associated with the
error message appearing in JESMSG. Quite commonly, one error code has several meanings,
thereby making the extra information in this section very useful in identifying the problem. For
example:

IEC150I 913-38,IFG0194C,jobname,procname,ddname,35D,UGS004,dsname
IEF472I jobname procname stepname - COMPLETION CODE - SYSTEM=913
USER=0000

The characters "IEC150I" are another message identifier code, which may be looked up in the
system messages manual. To the right of this code is the system abend code. In this example
it is "913". The "-38" is an additional code number occasionally used to distinguish between
different errors under the same system abend code.

The following are the most commonly found system abend codes. If assistance is needed with
the less common system codes, the Technical Support staff is available.

                        2.1 COMMONLY OCCURRING ABEND CODES

2.1.1 ABEND CODE 013

      1. ERROR ID: IEC141I

      2. DESCRIPTION: The system could not OPEN one of your datasets properly,
      generally because of an incorrect DCB parameter (BLKSIZE), or it could not find
      the specified member of a partitioned dataset.

      3. CORRECTIVE PROCEDURE: Check the BLKSIZE in the DCB parameter to
      insure that it matches the BLKSIZE of the dataset. Verify the spelling and existence
      of the member of the partitioned dataset.




http://www.eits.uga.edu/hostsys/mvs/ibm-mainframe-system-abend-codes.html                  5/12/2010
COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES                               Page 3 of 7




2.1.2 ABEND CODE 0C1

     1. ERROR ID: none

     2. DESCRIPTION: The computer tried to execute an invalid machine instruction
     and an operation exception occurred.

     3. CORRECTIVE PROCEDURE: Check the overlaying portion of your program.
     Accidentally overlaying part of your program with data (subscript out of range) or
     bad addresses will produce this error.


2.1.3 ABEND CODE 0C4

     1. ERROR ID: none

     2. DESCRIPTION: This is a storage protection violation generally caused by your
     program trying to STORE data in memory that is not allocated for your use.

     3. CORRECTIVE PROCEDURE: Make sure any subscripts used do not exceed the
     boundary specified. Correct all bad addresses in a store-type statement.


2.1.4 ABEND CODE 0C5

     1. ERROR ID: none

     2. DESCRIPTION: The computer tried to ADDRESS an area in a non-existent part
     of memory (beyond the bounds of our installation memory).

     3. CORRECTIVE PROCEDURE: Check for improper subscripts and for
     inconsistent lists for subprograms.


2.1.5 ABEND CODE 0C7

     1. ERROR ID: none

     2. DESCRIPTION: This is a DATA exception error. The system tried to execute an
     instruction that works with packed decimal numbers and found the numbers to be
     incorrectly formatted. This error commonly occurs in PL/I and COBOL programs
     when working with data that has been incorrectly converted after inputting from
     cards or some other file or when numeric fields declared to contain packed decimal
     data are not initialized prior to use.

     3. CORRECTIVE PROCEDURE: Either correct the data or the conversion format in
     your program.




http://www.eits.uga.edu/hostsys/mvs/ibm-mainframe-system-abend-codes.html             5/12/2010
COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES                                 Page 4 of 7



2.1.6 ABEND CODE 106

     1. ERROR ID: none

     2. DESCRIPTION: A system software or disk problem occurred during the
     execution of a LINK or LOAD instruction.

     3. CORRECTIVE PROCEDURE: Insure that the load request in the problem was
     specified correctly and was not incorrectly modified, then resubmit the job.


2.1.7 ABEND CODE 213

     1. ERROR ID: IEC143I

     2. DESCRIPTION: The system tried to open a DASD data set and encountered
     difficulties. This ABEND customarily occurs when the dataset name specified in the
     DSNAME parameter does not exist.

     3. CORRECTIVE PROCEDURE: If the dataset is catalogued, make sure the
     spelling is correct. If the dataset is not catalogued, insure that the proper volume
     was specified on the VOL=SER parameter


2.1.8 ABEND CODE 222

     1. ERROR ID: IEF301I

     2. DESCRIPTION: The operator cancelled the job.

     3. CORRECTIVE PROCEDURE: If no message is given in JESMSG, contact the
     operator for an explanation. Many times the error is caused by improperly
     accessing a magnetic tape


2.1.9 ABEND CODE 2F3

     1. ERROR ID: none

     2. DESCRIPTION: The job was executing when a system failure occurred

     3. CORRECTIVE PROCEDURE: Resubmit the job if your results are unsatisfactory
     and contact Technical Support for a job cost reimbursement


2.1.10 ABEND CODE 322

     1. ERROR ID: none




http://www.eits.uga.edu/hostsys/mvs/ibm-mainframe-system-abend-codes.html               5/12/2010
COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES                                    Page 5 of 7



     2. DESCRIPTION: Execution of a job, job step, or catalogued procedure step took
     longer than the time specified. If no time was specified in the TIME parameter on
     your jobcard, the job was given the default value of 30 seconds.

     3. CORRECTIVE PROCEDURE: Check for program errors, such as endless loops.
     Correct any such errors and rerun the job. If no such errors were found, increase
     the time and rerun the job.


2.1.11 ABEND CODE 613

     1. ERROR ID: IEC147I

     2. DESCRIPTION: An input/output (I/O) error occurred during execution of an
     OPEN instruction for a dataset on magnetic tape. The error resulted in either
     reading or writing incorrectly a tape label or mark, or positioning a tape volume.
     This error typically occurs in standard label processing for multiple tape files.

     3. CORRECTIVE PROCEDURE: Rerun the job, since malfunctioning equipment
     has likely produced the error


2.1.12 ABEND CODE 722

     1. ERROR ID: none

     2. DESCRIPTION: The system cancelled your job because an output limit was
     exceeded for lines being printed or cards being punched.

     3. CORRECTIVE PROCEDURE: Assuming that the program is correct, increase
     the appropriate specification by use of a MAIN card. IF lines were exceeded
     (default=5000), the LINES parameter (in thousands) should be increased
     accordingly. If cards were exceeded (default=500), the CARDS parameter (in
     hundreds) should be increased.


2.1.13 ABEND CODE 804

     1. ERROR ID: none

     2. DESCRIPTION: Your job requested more virtual storage (memory) than the
     amount that was available.

     3. CORRECTIVE PROCEDURE: Increase the REGION parameter on the abending
     step's EXEC card. If no region parameter was specified, the default value for the
     procedure being executed was assumed.


2.1.14 ABEND CODE 806




http://www.eits.uga.edu/hostsys/mvs/ibm-mainframe-system-abend-codes.html                  5/12/2010
COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES                               Page 6 of 7



     1. ERROR ID: none

     2. DESCRIPTION: This error occurred during execution of a LINK or LOAD
     instruction. The system was unable to locate a load module.

     3. CORRECTIVE PROCEDURES: Make sure the spelling of the load module name
     or program name is correct or that the appropriate STEPLIB or JOBLIB DD card
     defining which library the load module resides in is included in you JCL stream.


2.1.15 ABEND CODE 80A

     1. DESCRIPTION: This error is complimentary to system abend code 804,
     discussed above.

     2. CORRECTIVE PROCEDURES: The same procedures should be exercised for
     this error.


2.1.16 ABEND CODE 813

     1. ERROR ID: IEC149I

     2. DESCRIPTION: During execution of an OPEN instruction for a dataset on
     magnetic tape, the dataset name on the header label of the tape did not match that
     specified on the DD card.

     3. CORRECTIVE PROCEDURE: Insure that the DD statement specifies the correct
     DSNAME, volume serial number, and label for the tape being accessed.


2.1.17 ABEND CODE 913

     1. ERROR ID: IEC150I

     2. DESCRIPTION: An OPEN instruction was issued for a RACF-protected dataset
     on a DASD volume which your userid was not authorized to access. RACF only
     allows you to access datasets with a high level qualifier the same as your userid or
     which you have been explicitly given access permission to by the owner of the
     dataset.

     3. CORRECTIVE PROCEDURE: Make sure you have the needed access authority
     to the dataset. Attention should be given to the publication "RACF, A Component of
     the IBM Operating System of The University of Georgia." This is a brief general
     information manual published specifically for IBM users at the University. It may be
     obtained at the Technical Support Department.


2.1.18 ABEND CODE A13




http://www.eits.uga.edu/hostsys/mvs/ibm-mainframe-system-abend-codes.html             5/12/2010
COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES                                 Page 7 of 7



     1. ERROR ID: IEC151I

     2. DESCRIPTION: The system tried to OPEN a non-existent dataset on magnetic
     tape. The system encountered the end-of-volume tape mark when forward spacing
     to the file you specified in the LABEL parameter on the DD card.

     3. CORRECTIVE PROCEDURE: Check the file sequence number and volume
     serial number from the previous job that created the dataset.


2.1.19 ABEND CODE B37

     1. ERROR ID: IEC030I

     2. DESCRIPTION: This error results if either one of two situations occurs. Firstly, if
     the DASD volume to which the system has assigned one of the program's output
     datasets does not have enough available space to allow the necessary secondary
     allocations to be made. Secondly, this ABEND can occur if the output dataset used
     all 16 extents of secondary allocations but still required more space.

     3. CORRECTIVE PROCEDURE: Estimate the space required for the output
     dataset before rerunning your program. If possible, decrease the amount of space
     requested or if more space is obviously needed increase the primary and/or
     secondary allocations.


2.1.20 ABEND CODE D37

     1. ERROR ID: IEC031I

     2. DESCRIPTION: An output dataset used all the primary space and no secondary
     space was requested.

     3. CORRECTIVE PROCEDURE: Increase the primary allocation or add a
     secondary allocation to the space parameter for that output dataset.


2.1.21 ABEND CODE E37

     1. ERROR ID: IEC032I

     2. DESCRIPTION: If creating a dataset on tape, all space available on the volume
     specified was used and the system attempted to write another record. If creating a
     partitioned dataset on direct access, 16 extents of secondary space were used
     when the program attempted to write another record.

     3. CORRECTIVE PROCEDURE: Specify at least one more tape volume or specify
     more primary space if creating a partitioned dataset.




http://www.eits.uga.edu/hostsys/mvs/ibm-mainframe-system-abend-codes.html               5/12/2010

Más contenido relacionado

La actualidad más candente

Mainframe refresher-part-1
Mainframe refresher-part-1Mainframe refresher-part-1
Mainframe refresher-part-1
vishwas17
 
Parallel Sysplex Implement2
Parallel Sysplex Implement2Parallel Sysplex Implement2
Parallel Sysplex Implement2
ggddggddggdd
 
A First Look at the DB2 10 DSNZPARM Changes
A First Look at the DB2 10 DSNZPARM ChangesA First Look at the DB2 10 DSNZPARM Changes
A First Look at the DB2 10 DSNZPARM Changes
Willie Favero
 

La actualidad más candente (20)

Mainframe refresher-part-1
Mainframe refresher-part-1Mainframe refresher-part-1
Mainframe refresher-part-1
 
Introduction of Oracle Database Architecture
Introduction of Oracle Database ArchitectureIntroduction of Oracle Database Architecture
Introduction of Oracle Database Architecture
 
Z4R: Intro to Storage and DFSMS for z/OS
Z4R: Intro to Storage and DFSMS for z/OSZ4R: Intro to Storage and DFSMS for z/OS
Z4R: Intro to Storage and DFSMS for z/OS
 
Parallel Sysplex Implement2
Parallel Sysplex Implement2Parallel Sysplex Implement2
Parallel Sysplex Implement2
 
Db2 tutorial
Db2 tutorialDb2 tutorial
Db2 tutorial
 
Db2 Important questions to read
Db2 Important questions to readDb2 Important questions to read
Db2 Important questions to read
 
オリジナルからデータ・ポンプに移植するツボ
オリジナルからデータ・ポンプに移植するツボオリジナルからデータ・ポンプに移植するツボ
オリジナルからデータ・ポンプに移植するツボ
 
DB2 and storage management
DB2 and storage managementDB2 and storage management
DB2 and storage management
 
JCL MAINFRAMES
JCL MAINFRAMESJCL MAINFRAMES
JCL MAINFRAMES
 
Tso and ispf
Tso and ispfTso and ispf
Tso and ispf
 
A First Look at the DB2 10 DSNZPARM Changes
A First Look at the DB2 10 DSNZPARM ChangesA First Look at the DB2 10 DSNZPARM Changes
A First Look at the DB2 10 DSNZPARM Changes
 
Z OS IBM Utilities
Z OS IBM UtilitiesZ OS IBM Utilities
Z OS IBM Utilities
 
100 COOL MAINFRAME TIPS
100 COOL MAINFRAME TIPS100 COOL MAINFRAME TIPS
100 COOL MAINFRAME TIPS
 
End-to-end Troubleshooting Checklist for Microsoft SQL Server
End-to-end Troubleshooting Checklist for Microsoft SQL ServerEnd-to-end Troubleshooting Checklist for Microsoft SQL Server
End-to-end Troubleshooting Checklist for Microsoft SQL Server
 
Same plan different performance
Same plan different performanceSame plan different performance
Same plan different performance
 
Oracle 19c initialization parameters
Oracle 19c initialization parametersOracle 19c initialization parameters
Oracle 19c initialization parameters
 
Oracle statistics by example
Oracle statistics by exampleOracle statistics by example
Oracle statistics by example
 
SKILLWISE-DB2 DBA
SKILLWISE-DB2 DBASKILLWISE-DB2 DBA
SKILLWISE-DB2 DBA
 
JCL SORT TOOL
JCL SORT TOOLJCL SORT TOOL
JCL SORT TOOL
 
SQL Overview
SQL OverviewSQL Overview
SQL Overview
 

Similar a COMMON ABEND CODES

OCP Server Memory Channel Testing DRAFT
OCP Server Memory Channel Testing DRAFTOCP Server Memory Channel Testing DRAFT
OCP Server Memory Channel Testing DRAFT
Barbara Aichinger
 
Error management
Error managementError management
Error management
daniil3
 
Chapter9and10
Chapter9and10Chapter9and10
Chapter9and10
Saurav
 
Bypassing anti virus scanners
Bypassing anti virus scannersBypassing anti virus scanners
Bypassing anti virus scanners
martacax
 
Instructions 3-5 pages double space research paper about Eric Sc.docx
Instructions 3-5 pages double space research paper about Eric Sc.docxInstructions 3-5 pages double space research paper about Eric Sc.docx
Instructions 3-5 pages double space research paper about Eric Sc.docx
normanibarber20063
 

Similar a COMMON ABEND CODES (20)

Kk3
Kk3Kk3
Kk3
 
Internal memory
Internal memoryInternal memory
Internal memory
 
OCP Server Memory Channel Testing DRAFT
OCP Server Memory Channel Testing DRAFTOCP Server Memory Channel Testing DRAFT
OCP Server Memory Channel Testing DRAFT
 
Error management
Error managementError management
Error management
 
Chapter 12.0
Chapter 12.0Chapter 12.0
Chapter 12.0
 
Troubleshooting
TroubleshootingTroubleshooting
Troubleshooting
 
Chapter9 and10
Chapter9 and10Chapter9 and10
Chapter9 and10
 
Chapter9and10
Chapter9and10Chapter9and10
Chapter9and10
 
Barcodegenrationsystem
BarcodegenrationsystemBarcodegenrationsystem
Barcodegenrationsystem
 
Virginiatools
VirginiatoolsVirginiatools
Virginiatools
 
Virginiatools
VirginiatoolsVirginiatools
Virginiatools
 
Virginiatools
VirginiatoolsVirginiatools
Virginiatools
 
Production Debugging at Code Camp Philly
Production Debugging at Code Camp PhillyProduction Debugging at Code Camp Philly
Production Debugging at Code Camp Philly
 
Bypassing anti virus scanners
Bypassing anti virus scannersBypassing anti virus scanners
Bypassing anti virus scanners
 
Audit
AuditAudit
Audit
 
Memory Management in Trading Platforms
Memory Management in Trading PlatformsMemory Management in Trading Platforms
Memory Management in Trading Platforms
 
Computer Hardware & Software Lab Manual 2
Computer Hardware & Software Lab Manual 2Computer Hardware & Software Lab Manual 2
Computer Hardware & Software Lab Manual 2
 
Overview
OverviewOverview
Overview
 
Instructions 3-5 pages double space research paper about Eric Sc.docx
Instructions 3-5 pages double space research paper about Eric Sc.docxInstructions 3-5 pages double space research paper about Eric Sc.docx
Instructions 3-5 pages double space research paper about Eric Sc.docx
 
Windows Debugging Tools - JavaOne 2013
Windows Debugging Tools - JavaOne 2013Windows Debugging Tools - JavaOne 2013
Windows Debugging Tools - JavaOne 2013
 

Más de Nirmal Pati (10)

DB2 DOCUMENT
DB2 DOCUMENTDB2 DOCUMENT
DB2 DOCUMENT
 
JCL BEYOND DFSORT
JCL BEYOND DFSORTJCL BEYOND DFSORT
JCL BEYOND DFSORT
 
JCL ICETOOL
JCL ICETOOLJCL ICETOOL
JCL ICETOOL
 
JCL DFSORT
JCL DFSORTJCL DFSORT
JCL DFSORT
 
JCL FOR FRESHERS
JCL FOR FRESHERSJCL FOR FRESHERS
JCL FOR FRESHERS
 
COBOL FOR FRESHER
COBOL FOR FRESHERCOBOL FOR FRESHER
COBOL FOR FRESHER
 
User manual for cobol
User manual for cobolUser manual for cobol
User manual for cobol
 
A beginner's guide to cobol programming
A beginner's guide to cobol programmingA beginner's guide to cobol programming
A beginner's guide to cobol programming
 
Windows keyboard shortcuts
Windows keyboard shortcutsWindows keyboard shortcuts
Windows keyboard shortcuts
 
COBOL COMPILATION
COBOL COMPILATIONCOBOL COMPILATION
COBOL COMPILATION
 

Último

The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Último (20)

SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 

COMMON ABEND CODES

  • 1. COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES Page 1 of 7 COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES June 1, 1979 CONTENTS 1. INTRODUCTION 2. IDENTIFYING THE ERROR CODE 2.1. COMMONLY OCCURRING ABEND CODES ABEND CODE 013 ABEND CODE 0C1 ABEND CODE 0C4 ABEND CODE 0C5 ABEND CODE 0C7 ABEND CODE 106 ABEND CODE 213 ABEND CODE 222 ABEND CODE 2F3 ABEND CODE 322 ABEND CODE 613 ABEND CODE 722 ABEND CODE 804 ABEND CODE 806 ABEND CODE 80A ABEND CODE 813 ABEND CODE 913 ABEND CODE A13 ABEND CODE B37 ABEND CODE D37 ABEND CODE E37 1. INTRODUCTION Interpretation of IBM operating system error codes and messages can be tedious and frustrating. Many times the appropriate manuals are not readily available for the user's access. If the manuals are available, the error description and corrective procedure are often impossible to interpret. A list of the errors most commonly encountered at the CIS Technical Support Department with a brief understandable description of their meaning and a suggested procedure for correcting the error is given below. 2. IDENTIFYING THE ERROR CODE Identifying the error code is the first step in the process. The first page or pages of the printed output generated by a job is the JES3 job log or JESMSG dataset. This is a chronological listing that specifies JES3 and system operator messages issued during processing of your job. If your job abended (ABnormally ENDed), a message near the end of JESMSG will http://www.eits.uga.edu/hostsys/mvs/ibm-mainframe-system-abend-codes.html 5/12/2010
  • 2. COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES Page 2 of 7 appear, resembling: hh.mm.ss SYS2 R=IEF450I jobname procname stepname-ABEND Snnn Ummmm - TIME=hh.mm.ss The characters "IEF450I" are a message identifier code which can be looked up in the "IBM OS/VS Message Library: VS2 System Messages" manual for a description of the message. The actual jobname, procedure name, and stepname for your job will appear in the indicated locations in the message. The "Snnn" and "Ummmm" identify the more helpful parts of the message. The "Snnn" is a code denoting a SYSTEM abend. These codes can be found in the "IBM OS/VS Message Library: VS2 System Codes" manual. The "Ummmm" is a code denoting a USER abend. These codes will vary from one user's program to another, therefore these will not be discussed. Following the JES3 joblog will be a print file referred to as JESJCL. This is a list that specifies JCL and any additional job control statements from included procedures. The next section of output is referred to as the SYSMSG dataset. Within this file all system messages will be printed which will include a more descriptive message associated with the error message appearing in JESMSG. Quite commonly, one error code has several meanings, thereby making the extra information in this section very useful in identifying the problem. For example: IEC150I 913-38,IFG0194C,jobname,procname,ddname,35D,UGS004,dsname IEF472I jobname procname stepname - COMPLETION CODE - SYSTEM=913 USER=0000 The characters "IEC150I" are another message identifier code, which may be looked up in the system messages manual. To the right of this code is the system abend code. In this example it is "913". The "-38" is an additional code number occasionally used to distinguish between different errors under the same system abend code. The following are the most commonly found system abend codes. If assistance is needed with the less common system codes, the Technical Support staff is available. 2.1 COMMONLY OCCURRING ABEND CODES 2.1.1 ABEND CODE 013 1. ERROR ID: IEC141I 2. DESCRIPTION: The system could not OPEN one of your datasets properly, generally because of an incorrect DCB parameter (BLKSIZE), or it could not find the specified member of a partitioned dataset. 3. CORRECTIVE PROCEDURE: Check the BLKSIZE in the DCB parameter to insure that it matches the BLKSIZE of the dataset. Verify the spelling and existence of the member of the partitioned dataset. http://www.eits.uga.edu/hostsys/mvs/ibm-mainframe-system-abend-codes.html 5/12/2010
  • 3. COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES Page 3 of 7 2.1.2 ABEND CODE 0C1 1. ERROR ID: none 2. DESCRIPTION: The computer tried to execute an invalid machine instruction and an operation exception occurred. 3. CORRECTIVE PROCEDURE: Check the overlaying portion of your program. Accidentally overlaying part of your program with data (subscript out of range) or bad addresses will produce this error. 2.1.3 ABEND CODE 0C4 1. ERROR ID: none 2. DESCRIPTION: This is a storage protection violation generally caused by your program trying to STORE data in memory that is not allocated for your use. 3. CORRECTIVE PROCEDURE: Make sure any subscripts used do not exceed the boundary specified. Correct all bad addresses in a store-type statement. 2.1.4 ABEND CODE 0C5 1. ERROR ID: none 2. DESCRIPTION: The computer tried to ADDRESS an area in a non-existent part of memory (beyond the bounds of our installation memory). 3. CORRECTIVE PROCEDURE: Check for improper subscripts and for inconsistent lists for subprograms. 2.1.5 ABEND CODE 0C7 1. ERROR ID: none 2. DESCRIPTION: This is a DATA exception error. The system tried to execute an instruction that works with packed decimal numbers and found the numbers to be incorrectly formatted. This error commonly occurs in PL/I and COBOL programs when working with data that has been incorrectly converted after inputting from cards or some other file or when numeric fields declared to contain packed decimal data are not initialized prior to use. 3. CORRECTIVE PROCEDURE: Either correct the data or the conversion format in your program. http://www.eits.uga.edu/hostsys/mvs/ibm-mainframe-system-abend-codes.html 5/12/2010
  • 4. COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES Page 4 of 7 2.1.6 ABEND CODE 106 1. ERROR ID: none 2. DESCRIPTION: A system software or disk problem occurred during the execution of a LINK or LOAD instruction. 3. CORRECTIVE PROCEDURE: Insure that the load request in the problem was specified correctly and was not incorrectly modified, then resubmit the job. 2.1.7 ABEND CODE 213 1. ERROR ID: IEC143I 2. DESCRIPTION: The system tried to open a DASD data set and encountered difficulties. This ABEND customarily occurs when the dataset name specified in the DSNAME parameter does not exist. 3. CORRECTIVE PROCEDURE: If the dataset is catalogued, make sure the spelling is correct. If the dataset is not catalogued, insure that the proper volume was specified on the VOL=SER parameter 2.1.8 ABEND CODE 222 1. ERROR ID: IEF301I 2. DESCRIPTION: The operator cancelled the job. 3. CORRECTIVE PROCEDURE: If no message is given in JESMSG, contact the operator for an explanation. Many times the error is caused by improperly accessing a magnetic tape 2.1.9 ABEND CODE 2F3 1. ERROR ID: none 2. DESCRIPTION: The job was executing when a system failure occurred 3. CORRECTIVE PROCEDURE: Resubmit the job if your results are unsatisfactory and contact Technical Support for a job cost reimbursement 2.1.10 ABEND CODE 322 1. ERROR ID: none http://www.eits.uga.edu/hostsys/mvs/ibm-mainframe-system-abend-codes.html 5/12/2010
  • 5. COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES Page 5 of 7 2. DESCRIPTION: Execution of a job, job step, or catalogued procedure step took longer than the time specified. If no time was specified in the TIME parameter on your jobcard, the job was given the default value of 30 seconds. 3. CORRECTIVE PROCEDURE: Check for program errors, such as endless loops. Correct any such errors and rerun the job. If no such errors were found, increase the time and rerun the job. 2.1.11 ABEND CODE 613 1. ERROR ID: IEC147I 2. DESCRIPTION: An input/output (I/O) error occurred during execution of an OPEN instruction for a dataset on magnetic tape. The error resulted in either reading or writing incorrectly a tape label or mark, or positioning a tape volume. This error typically occurs in standard label processing for multiple tape files. 3. CORRECTIVE PROCEDURE: Rerun the job, since malfunctioning equipment has likely produced the error 2.1.12 ABEND CODE 722 1. ERROR ID: none 2. DESCRIPTION: The system cancelled your job because an output limit was exceeded for lines being printed or cards being punched. 3. CORRECTIVE PROCEDURE: Assuming that the program is correct, increase the appropriate specification by use of a MAIN card. IF lines were exceeded (default=5000), the LINES parameter (in thousands) should be increased accordingly. If cards were exceeded (default=500), the CARDS parameter (in hundreds) should be increased. 2.1.13 ABEND CODE 804 1. ERROR ID: none 2. DESCRIPTION: Your job requested more virtual storage (memory) than the amount that was available. 3. CORRECTIVE PROCEDURE: Increase the REGION parameter on the abending step's EXEC card. If no region parameter was specified, the default value for the procedure being executed was assumed. 2.1.14 ABEND CODE 806 http://www.eits.uga.edu/hostsys/mvs/ibm-mainframe-system-abend-codes.html 5/12/2010
  • 6. COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES Page 6 of 7 1. ERROR ID: none 2. DESCRIPTION: This error occurred during execution of a LINK or LOAD instruction. The system was unable to locate a load module. 3. CORRECTIVE PROCEDURES: Make sure the spelling of the load module name or program name is correct or that the appropriate STEPLIB or JOBLIB DD card defining which library the load module resides in is included in you JCL stream. 2.1.15 ABEND CODE 80A 1. DESCRIPTION: This error is complimentary to system abend code 804, discussed above. 2. CORRECTIVE PROCEDURES: The same procedures should be exercised for this error. 2.1.16 ABEND CODE 813 1. ERROR ID: IEC149I 2. DESCRIPTION: During execution of an OPEN instruction for a dataset on magnetic tape, the dataset name on the header label of the tape did not match that specified on the DD card. 3. CORRECTIVE PROCEDURE: Insure that the DD statement specifies the correct DSNAME, volume serial number, and label for the tape being accessed. 2.1.17 ABEND CODE 913 1. ERROR ID: IEC150I 2. DESCRIPTION: An OPEN instruction was issued for a RACF-protected dataset on a DASD volume which your userid was not authorized to access. RACF only allows you to access datasets with a high level qualifier the same as your userid or which you have been explicitly given access permission to by the owner of the dataset. 3. CORRECTIVE PROCEDURE: Make sure you have the needed access authority to the dataset. Attention should be given to the publication "RACF, A Component of the IBM Operating System of The University of Georgia." This is a brief general information manual published specifically for IBM users at the University. It may be obtained at the Technical Support Department. 2.1.18 ABEND CODE A13 http://www.eits.uga.edu/hostsys/mvs/ibm-mainframe-system-abend-codes.html 5/12/2010
  • 7. COMMON IBM OS/VS SYSTEM ERROR MESSAGES AND ABEND CODES Page 7 of 7 1. ERROR ID: IEC151I 2. DESCRIPTION: The system tried to OPEN a non-existent dataset on magnetic tape. The system encountered the end-of-volume tape mark when forward spacing to the file you specified in the LABEL parameter on the DD card. 3. CORRECTIVE PROCEDURE: Check the file sequence number and volume serial number from the previous job that created the dataset. 2.1.19 ABEND CODE B37 1. ERROR ID: IEC030I 2. DESCRIPTION: This error results if either one of two situations occurs. Firstly, if the DASD volume to which the system has assigned one of the program's output datasets does not have enough available space to allow the necessary secondary allocations to be made. Secondly, this ABEND can occur if the output dataset used all 16 extents of secondary allocations but still required more space. 3. CORRECTIVE PROCEDURE: Estimate the space required for the output dataset before rerunning your program. If possible, decrease the amount of space requested or if more space is obviously needed increase the primary and/or secondary allocations. 2.1.20 ABEND CODE D37 1. ERROR ID: IEC031I 2. DESCRIPTION: An output dataset used all the primary space and no secondary space was requested. 3. CORRECTIVE PROCEDURE: Increase the primary allocation or add a secondary allocation to the space parameter for that output dataset. 2.1.21 ABEND CODE E37 1. ERROR ID: IEC032I 2. DESCRIPTION: If creating a dataset on tape, all space available on the volume specified was used and the system attempted to write another record. If creating a partitioned dataset on direct access, 16 extents of secondary space were used when the program attempted to write another record. 3. CORRECTIVE PROCEDURE: Specify at least one more tape volume or specify more primary space if creating a partitioned dataset. http://www.eits.uga.edu/hostsys/mvs/ibm-mainframe-system-abend-codes.html 5/12/2010