Hi

Thank you. I 'm making a GIMAPI for this kind of query.
The problem was that I even didn't kown that it is an UTIN type entry.

If I can ask you:
The ISPF SMPE "CSI query" without entry name, gave me back, that CELHS003 was an UTIN type.
Can I get  the same via GIMAPI ?

On 22.06.2012 16:07, Kurt Quackenbush wrote:
We have now the following problem:
Try to install some PTF's for C/C++ compiler and got an error during
APPLY LKED, as turned out
in the CEE.SCEELIB lib CELHS003 import specification member, some lines
are missing.

Now I wanted to know, how this CELHS003 member arrived to the target
library, so see all the SMPE/ entries with this member.

How can I find out this ?

I think you want to identify all of the load modules that include CELHS003. If that is the correct, then you can use the LIST command to list all of the LMOD entries and then manually filter/search the output to find occurrences of CELHS003.

SET BDY(tgtzone).
LIST LMOD.

Or you can write a program to use GIMAPI to query the target zone to find LMOD entries with a UTIN subentry of 'CELHS003,SCEELIB'.

I believe all of the load modules that include CELHS003 have a CALLLIBS of SCEEBND2. Therefore, if you have want to link edit all the load module that include CELHS003, you can use the LINK command, like this:

SET BDY(tgtzone).
LINK LMODS CALLLIBS(SCEEBND2) CHECK.

Kurt Quackenbush -- IBM, SMP/E Development

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN


----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN

Reply via email to