How do u find the programs calling the given module,
without having doing 3.13 on loadlib/source library?
Answers were Sorted based on User's Feedback
Answer / abhijit
Suppose You have a Module 'ABCXYZ' which is called from
different Procedures & If you know your procedure library
Suppose 'RSCRT.DEV.PROCLIB' which is a PDS which have many
of the Procedures which Calls 'ABCXYZ'
Then get inside the PDS 'RSCRT.DEV.PROCLIB'
Type SRCHFOR 'ABCXYZ' in command line
Click on Prompt
You will get the List of Procedures which uses this Module
with status *Found.
Is This Answer Correct ? | 14 Yes | 7 No |
Answer / neeraj
Search command is 3.14 not 3.13(compare command)..
using this command , you can find.
Is This Answer Correct ? | 0 Yes | 0 No |
using redefine can you redefine lower variable size to higher variable size?
what is qualification on occurs clause?
consider the following two IF statements: IF X AND NOT Y MOVE A TO B IF Z=1 OR 9 MOVE A TO B select one of the following data divusion entries which gives identical results for both the above IF statements a.01 Z PIC 9 88 X VALUE 1.9 88 Y VALUE 0.2 THRU 8 b.01 Z PIC 9 88 X VALUE 0.2 THRU 8 Y VALUE 1.9 c.01 Z PIC 9 88 X VALUE 1.9 88 NOT-Y VALUE 0.2 THRU 1.9 d.none of yhe above
how to crack cts interview apps? NOVEMBER 21 2010
what is amode(24), amode(31), rmode(24) and rmode(any)?
What is difference between COBOL and VS COBOL II?.
IF there 5 to 6 files in a JCL and there is some space abends, how can we identify which file has space abend and what can be done to get off that abend or rectify that abend.
What is comp-1 and comp-2?
Write a program to explain size error.
Is it possible that the redefines clause has different picture clauses compared to the one it redefined?
which of the following can be used as a check protection symbol a.Z b.S c.* d.+
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?