Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
recursive program in vs-cobol

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Mainframe COBOL
Author Message
muthukumar

New User


Joined: 24 Mar 2004
Posts: 32

PostPosted: Mon Apr 05, 2004 6:59 pm    Post subject: recursive program in vs-cobol
Reply with quote

I tried writing a recursive program with VS-COBOL II. I got the following error during run time.

IGZ0015S A recursive call was attempted to a program that was already active.

Does this mean VS-COBOL II does not support recursive functionality or else some problem with the functionality of my code.

find the code below
IDENTIFICATION DIVISION.
PROGRAM-ID. COBOL1.
ENVIRONMENT DIVISION.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 WORK-NUM PIC 9(02) VALUE 1.
01 INCREM PIC 9(01) VALUE 5.
PROCEDURE DIVISION.
COMPUTE WORK-NUM = WORK-NUM * INCREM.
COMPUTE INCREM = INCREM - 1
CALL 'COBOL1'.
IF INCREM = 0
DISPLAY ' FACTORIAL ' WORK-NUM
GOBACK.

regards
Muthu
Back to top
View user's profile Send private message
References
PostPosted: Mon Apr 05, 2004 6:59 pm    Post subject: Re: recursive program in vs-cobol Reply with quote

mdtendulkar

Active User


Joined: 29 Jul 2003
Posts: 257
Location: USA

PostPosted: Tue Apr 06, 2004 11:29 am    Post subject:
Reply with quote

Hello muthukumar,

Take a look at the following link for more details and example on recursive programming.

Recursive Programming

Hope this helps

Regards
Mayuresh Tendulkar
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> Mainframe COBOL All times are GMT + 6 Hours
Page 1 of 1