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: Lock the Android device programmatically I want to lock the screen through
Possible Duplicates: Why shouldn't I use Objective C 2.0 accessors in init/dealloc? dealloc, use
Possible Duplicate: Parse string into argv/argc I'm trying to write a fake shell using
Possible Duplicate: What's the difference between a temp table and table variable in SQL
Possible Duplicate: What are the common workarounds for multi-line comments in Perl? How do
Possible Duplicates: Iterate with for loop or while loop? Loops in C - for()
Possible Duplicate: Can we change the device time using an application? is that possible
Possible Duplicate: string1 >= string2 not implemented in Linq to SQL, any workarround? To
I am facing a problem when implementing some new code to an existing library.
I need to amend (via CONCAT, presumably) something to every wordpress post if it

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.