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 |
how many bytes does a s9(12)COMP-4 field occupy?? a.2 b.4 c.8 d.1 ans with reason please
What is LENGTH in COBOL II?
What are the steps you go through while creating a COBOL program executable?
How to solve SOC7. I have the cobol coded as below 01 A PIC 9(4). 01 AIN REDEFINES A. 05 AIN1 PIC S9(4) 01 B PIC 9(4)V99. 01 BIN REDEFINES B. 05 BIN1 PIC S9(4)V99. PROCEDURE DIVISION. START-PARA. INITIALIZE A AIN B BIN. ACCEPT A B. DISPLAY 'VALUE OF A=' A. DISPLAY 'VALUE OF B=' B. DISPLAY 'VALUE OF BIN1=' BIN1. DISPLAY 'VALUE OF AIN1=' AIN1. COMPUTE AIN1 = BIN1 - AIN1. DISPLAY 'VALUE OF AIN1=' AIN1. When i'm executing this code i'm getting SOC7 for A = 12 & B=34. Can someone explain SDSF OUTPUT DISPLAY TCOM058R JOB05458 DSID 102 LINE 0 COLUMNS 02- 81 COMMAND INPUT ===> SCROLL ===> CSR ********************************* TOP OF DATA ********************************** VALUE OF A=12 VALUE OF B=34 VALUE OF BIN1=34 VALUE OF AIN1=12 CEE3207S The system detected a data exception (System Completion Code=0C7). From compile unit PROG1 at entry point PROG1 at statement 29 at compile +000004CE at address 00007ECE. Please address how to solve this issue Thanks in advance.
01 a pic 9(9v99) 01 b pic 9(9.99) wht will be the stored vales in both cases
Why we are using comp and comp-3 in real time projects?
What COBOL construct is the COBOL II EVALUATE meant to replace?
what is the use of outrecord?
What is the default value(s) for an initialize and what keyword allows for an override of the default?
How to know whether the module is dynamical or statistical?
What the difference is between continue and next sentence?
Read filea And file b write the same records in both files? Records in a but not in b record in b but not in a