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 do u initialize an array?
What are the different rules of SORT operation?
what are the working storage fields in BMS macro?
How can we find that module can be called – whether DYNAMICALLY or STATICALLY?
Please let me know at which Scenarios we will go for STATIC call or DYNAMIC
What is diff betn PS and ESDS file? What is the diffrent compiler options in cobol and there discription? What is retrive nth maximum salary from salary DB2 table. Can we redefine COM-3 variable with varchar variable?
I want to remove a duplicates form a given input field using cobol program. please Any one help me out to solve this ... Thanks in Advance.
db2 variable decimal(15,2) what is the equalent size of cobol variable
OCCURS clause is used in the DATA DIVISION on data names at (a) 01 level (b) 77 level (c) 88 level (d) any level from 02 to 49
what is a zoned decimal data type and how it will be stored?
Can we use goto statement in inline_perform ?
please..could u give an example about USAGE IS POINTER ..and explain why and when we use it ?