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 |
can you please let me know if there is any walkins for COBOL/PLI/DB2/IMS/JCL in pune other than IBM and ITC infotech
what is sort? whis is internal & external sort ?when do u go for inter sort & external sort? tell about some sort utilites?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
When search all is used in cobol program without sorted input data?
6 Answers CGI, Principal Finance,
how to pass 100 to s9(4) how r they inserted ?
Under which scenario you would go for a static call as opposed to dynamic call?
What is the difference beetween Arrays and Tables in Cobol? please dont give the answer that arrays in cobol terminology is called tables......
HOw can I get the negative sign while deduct high value from low value
how to move the records from file to array table. give with code example
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 ?
Can we access the a[0] in the array ?
using redefine can you redefine lower variable size to higher variable size?