What is IMPACT analysis?
Answers were Sorted based on User's Feedback
Answer / guest
Impact Analysis:
If a change requested to an existing process, need to
analyse the impact on entities
Interview Purpose
-----------------
Requirement - Size of a field need to be increased in a
copybook
Before giving estimation to above requirement, we need to
do impact analysis
1. Validate the changes required to the copybook
- If FILLER (unused space) exist, use that space to
increase above field. This will save from increasing
copybook length
- If no FILLER exist in copybook, increase field length,
which will increase copybook length
2. Search for Programs used this copybook. Analyse the
usage of field in these programs. If the field value is
moving to any working storage field, start analyse the
impact of that working storage variable
- If the program is a sub-program, validate if this
field moving to main program through linkage section
variable
3. Validate the files linked to the copybook, requires file
attribute changes in the job
4. If the filed value is moving to any database, then
validate DCLGEN
5. If the value moving to any online programs, analyse if
it require any changes to online screen
| Is This Answer Correct ? | 15 Yes | 0 No |
What are the differences between OS VS COBOL and VS COBOL II?
can we read in input the file with a variable length ? please , how ..could you help me ?
HOW TO MOVE REDEFINES CLAUSE FROM INPUT TO OUTPUT ?
what do you mean by copybook? and what is the difference between the copybook which we are using in working storage and procedure division.
what is the difference between occurs and occurs depending on? i dont think so there is the difference in storage..then why we should use occurs depending on?
How to use the same cobol program in Batch and CICS onlines ? Please expalin with an example. Thanks in advance.
I have a Main Program which is calling Sub-Program which is a DB2 pgm. What will happen if I am not closing the cursor used in the Sub-program? Please advise..
how would find total records in files using seqientional
can any one help -s806
Can you REWRITE a record in an ESDS file? Can you DELETE a record from it?
6 Answers ABC, IBM, Mphasis, Wipro,
consider the following piece of code 01 GROSS-PAY 05 BASIC-PAY PIC 9(5) 05 ALLOWENCES PIC 9(3) if BASIC-PAY has a value 1000 and ALLOWENCES has a value of 250,what will be displayed by the statement DISPLAY GROSS-PAY a.1250 b.01000250 c.01250 d.1.250
i have two file one is ksds another one is esds i want store matching records in flat file how to you matching.