What is SSRANGE, NOSSRANGE ?
Answers were Sorted based on User's Feedback
Answer / ms. stanley
SSRANGE is a compiler option used to handle an array overflow
Default Compiler Option is NOSSRANGE and hence when required
to handle the overflow condition, SSRANGE Compiler Option
needs to be specified in the COBOL Program (The first Line
of the program)
| Is This Answer Correct ? | 57 Yes | 5 No |
Answer / harish
suppose in your program your are using array occurs 10 time
in this case if you use NOSSRANGE (WHEN YOUR PROGRAM TRY TO
ACCESS 11TH TIME PROGRAM WILL NOT ABEND INURN IT ENDS THE
LOOP,ERROR FREE)
SUPPOSE IN CASE OF SSRANGE
YOUR PROGRAM STOP WITH ERROR ,PROGRAM ABENDS,(I THINK SOC4)
Harish poomgame shivappa
NIIT Technolgies
Kolkata
| Is This Answer Correct ? | 41 Yes | 6 No |
Answer / msa
I think this is how.
=COLS> ----+----1----+----2----+----3
****** *****************************
000001 PROCESS NOSSRANGE
| Is This Answer Correct ? | 9 Yes | 3 No |
Answer / avinanda mukherjee
Stanley, please le me any example to introduce SSRANGE in
COBOL program..
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / laxman
SSRANGE is compiler option,array is overflow means declare
in 10 and access 11th position,the program does not
abend.default is NOSSRANGE,u want SSRANGE in your program
declare in first line of program.
| Is This Answer Correct ? | 6 Yes | 3 No |
How did the release of cobol/370 version 1.3 improve the performance of release 1.1?
How will you find the currepted records in a file
i have the job which has written updated 100 records into the table and for 101th record it got abended and i want to start the job again and should wirte from 101th record not from 1st record..how to do it..?
How you can characterize tables in cobol?
What are the different ways to run a COBOL DB2 program using JCL?
Explain about different table spaces.
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?
What is the Purpose of POINTER Phrase in STRING command
level number 77 is used to define a)group data b)elementary data c)redefine d)none
1)what is the maximum limit for occurs? Eg: 01 A PIC X(10) OCCURS N TIME. What is the max value for N?
What is an explicit scope terminator?
if i am reading a file with some 50000 records and moving to a DB2 table and suddenly the program abends in between, is there anyway i could restart from the exact record at which the job failed once the program restarts.