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 |
how we rectify soc7 and soc4 errors in project?
What are ISOLATION LEVELS? Where do we need to specify them?
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
I have a sequential file. How do I access a record in this sequential file randomly in my program ?
consider the following PROCEDURE DIVISION entry OPEN EXTEND IN-FILE identify the correct statement a.organization of IN-FILE is sequential and records can be added in the beginning b.organization of IN-FILE is sequential and records can be added in the end c.organization of IN-FILE is indexed and records can be added in the beginning d.organization of IN-FILE is indexed and records can be added in the end
What are the functions like c or c++ in cobol?
What is 77 level used for ?
how many times PARA-A is performed : PERFORM PARA-A VARYING TIMES-COUNTER FROM 1 BY 1 UNTIL TIMES-COUNTER >0 PARA-A MOVE P TO Q MOVE H TO TIMES COUNTER a.10 b.1 c.11 d.0
What is the difference between Structured COBOL Programming and Object Oriented COBOL programming?
0 Answers TryTechnicals Pvt Ltd,
Whats the use of Examine command? can someone help me?
Scenario: I have 3 Input Files.Read the first i/p file and depending on certain business logic, I want to read wither i/p file-2 or i/p file-3.Now, depending on certain business logic applied to the record read from either file-2 or file-3, I decide to write them to either output file-2 or output file-2. Question: How many job steps are necessary to implement a solution for the above.
I have a cobol program with a sub program. How ca i find that it is a dynamic call? or static call..?