difference between escape(top or bottom) and escape
immediate(top or bottom?
Answer Posted / nitin
Program
000010 define data local
000020 1 #ACCOUNT_ID (N10)
000030 end-define
000040 LIMIT 5
000050 SELECT ACCOUNT_ID
000060 INTO #ACCOUNT_ID
000070 FROM CIS_ACCOUNT
000080 WHERE COY = 1
000090 AND ACCOUNT_ID = 12344
000100 *
000120 IF #ACCOUNT_ID = 7232
000130 WRITE 'INSIDE1' #ACCOUNT_ID
000140 ESCAPE ROUTINE IMMEDIATE
000150 END-if
000150 *
000160 AT END OF PAGE
000170 WRITE 'GOOD'
000180 END-ENDPAGE
000190 *
000200 WRITE 'INSIDE3'
000210 END-SELECT
000220 WRITE 'HELLO'
000230 end
Output
INSIDE3 3682
INSIDE3 4340
INSIDE3 7200
INSIDE1 7232
GOOD
I have written above program to test the scinarion. But in
all situations Good is getting printed. Will somebody help
me what escape statement should I use so that Good will not
get printed.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain the difference between external subroutine and subprogram?
What happens when you issue a escape routine in a program? Will there be any compilation /run time erro?
Explain the like inverted list?
Explain is it possible to code goto statement in natural? If yes please provide the syntax of the same?
Can we see the copy book length using file-aid?
Can you explain control variable in online screens?
What is a hyperdescriptor? How does it work?
Explain how to ftp the natural program to desktop? (From mainframe to pc), is it possible?
What is a hyperdescriptor?
Explain how many work file we can code in jcl?
What is the difference between read(1) and read work file once?
What is data trace system 2.0 used for?
What is the quality process in development?
What is cobol coding sheet?
Explain difference between escape(top or bottom) and escape immediate(top or bottom?