Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 898111
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T14:59:28+00:00 2026-05-15T14:59:28+00:00

Is it possible to abend your job intentionally through COBOL program. suppose I have

  • 0

Is it possible to abend your job intentionally through COBOL program.
suppose I have an Input file having Header,Detail and Trailer records. I will write a COBOL pgm which reads this file.If no Detail records are found in this file then I want to abend my job by giving some Abend Message and some Abend Code.Is it Possible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T14:59:29+00:00Added an answer on May 15, 2026 at 2:59 pm

    Do you want to ABEND your program or just set a RETURN-CODE?

    I suspect setting a RETURN-CODE, writing a message
    and then terminating the program via a STOP RUN or GOBACK is all that
    you really want to do. Causing an actual ABEND may not be necessary.

    In an IBM batch environment, the RETURN-CODE set by your program becomes the
    RC for the JCL job step the program was run under. This is typically what you
    want to set and test for.

    The RETURN-CODE is set by MOVEing a numeric value to it. For example:

             DISPLAY 'No Detail Records found in file.'
             MOVE 16 TO RETURN-CODE
             GOBACK.
                
    

    You may also issue a program dump from a program run under Language Environment (IBM
    Mainframe option) using
    the CEE3DMP–Generate dump
    utility.

    In older IBM Mainframe COBOL programs, you might see calls to the ILBOABN0 routine. This call
    abended your program and issued a dump. This routine is now depreciated in favour of the
    technique outlined above.

    Finally, really old programs might have code in them to generate abends. This can be done in any number of ways, but division by zero was
    often a favourite:

            DIVIDE SOME-NUMBER BY ZERO GIVING SOME-NUMBER.
            
    

    Works every time!

    Personally, I recommend setting the RETURN-CODE over calling ILBOABN0 or data-exception tehcniques.

    Note: The RETURN-CODE special-register is not part of the COBOL-85 standard. It is available as an IBM extention to the language. You may need to resort to a different mechanism if you are working in a non-IBM compatible environment.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: How does the Google Did you mean? Algorithm work? Suppose you have
Possible Duplicate: Python urllib2 Progress Hook I have a script which uploads a file
I'm using CICS in Cobol program and I've noticed that sometimes data are written
Possible Duplicate: regex for URL including query string I have a text or message.
Possible Duplicate: Extracting dollar amounts from existing sql data? I have a column in
Possible Duplicate: What are the stages of compilation of a C++ program? I find
What JCL EXEC and DD statements would be required to run a COBOL program
Possible Duplicate: remove multiple whitespaces in php I have a stream of characters, a
Possible Duplicate: Trying to get tables next to each other horizontal I have two
Is it possible for me to 'git commit --amend' 2 commits AFTER I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.